@charset "UTF-8";
.animation.zoom .ratio {
  overflow: hidden;
}
.animation.zoom img {
  transition: transform 0.5s ease;
}
.animation.zoom:hover img {
  transform: scale(1.1);
}
:root {
  --ff-d: "DM Sans", Arial;
  --ff-a: "Atyp", Arial !important;
  --fw-light: 300;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-extrabold: 800;
  --fs-xxl: 28px;
  --fs-xl: 20px;
  --fs-lg: 18px;
  --fs-normal: 16px;
  --fs-sm: 14px;
  --fs-xs: 12px;
  --default-line-height: 1.5;
  --color-dark: #1d1934;
  --color-red: #EA4E4F;
  --color-orange: #f18a48;
  --color-cream: #fefbf6;
  --color-cream-dark: #F6F1E9;
  --color-cream-darknes: #F0EAE2;
  --color-green: #33D47D;
  --color-green-dark: #3AB070;
  --color-disabled: #9D9DAB;
  --color-gray: #F0F0F0;
  --color-gray-dark: #D9D9D9;
  --color-dark-rgb: 29, 25, 52;
  --color-red-rgb: 234, 78, 79;
  --color-orange-rgb: 241, 138, 72;
  --color-cream-rgb: 254, 251, 246;
  --color-cream-dark-rgb: 246, 241, 233;
  --color-green-rgb: 51, 212, 125;
  --color-green-dark-rgb: 58, 176, 112;
  --color-dark-transparent: rgba(var(--color-dark-rgb), .5);
  --rounded-md: 8px;
  --rounded-lg: 16px;
  --rounded-xl: 24px;
  --bs-body-color: var(--color-dark);
}
.b-dark {
  background-color: var(--color-dark);
  color: var(--color-cream);
}
/* Předpokládám, že pro tmavé pozadí je vhodnější světlý text */
.b-red {
  background-color: var(--color-red);
  color: var(--color-cream-dark);
}
.b-orange {
  background-color: var(--color-orange);
  color: var(--color-cream-dark);
}
.b-cream {
  background-color: var(--color-cream);
  color: var(--color-dark);
}
.b-cream-dark {
  background-color: var(--color-cream-dark);
  color: var(--color-dark);
}
.b-cream-darknes {
  background-color: var(--color-cream-darknes);
  color: var(--color-dark);
}
.b-green {
  background-color: var(--color-green);
  color: var(--color-dark);
}
.b-gray {
  background-color: var(--color-gray);
  color: var(--color-dark);
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.bg-top {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../img/2024/top.png");
  z-index: 2;
}
.bg-bottom {
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../img/2024/bottom.png");
  z-index: 2;
}
.bg-variant-1 .bg-top {
  background-position: -50px top;
}
.bg-variant-1 .bg-bottom {
  background-position: right -50px bottom;
}
.bg-variant-2 .bg-top {
  top: -78px;
  width: 50%;
}
.bg-variant-2 .bg-bottom {
  top: 48px;
  right: 0;
  left: unset;
  height: calc(100% + 100px);
  width: 50%;
}
.bg-variant-3 .bg-top {
  background-position: 20% 100%;
  background-size: 100% auto;
  transform: rotate(180deg);
  height: 300%;
  width: 100%;
  left: -30%;
  background-image: url("../img/2024/bottom.png");
}
.bg-variant-4 .bg-top {
  background-position: right bottom;
  background-size: 100% auto;
  height: 150px;
  width: 100%;
  background-image: url("../img/2024/bottom.png");
}
.bg-variant-5 .bg-top {
  top: 20px;
  width: 100%;
}
.bg-variant-5 .bg-bottom {
  height: calc(100% + 100px);
  width: 100%;
}
.t-dark {
  color: var(--color-dark) !important;
}
.t-red {
  color: var(--color-red) !important;
}
.t-orange {
  color: var(--color-orange) !important;
}
.t-cream {
  color: var(--color-cream) !important;
}
.t-cream-dark {
  color: var(--color-cream-dark) !important;
}
.t-green {
  color: var(--color-green) !important;
}
.t-gray-dark {
  color: var(--color-gray-dark) !important;
}
.t-dark-transparent {
  color: var(--color-dark-transparent) !important;
}
a {
  color: inherit;
}
body {
  font-family: var(--ff-d);
  line-height: var(--default-line-height);
  -webkit-font-smoothing: antialiased;
}
.pointer {
  cursor: pointer !important;
}
.ff-a {
  font-family: var(--ff-a) !important;
}
.ff-d {
  font-family: var(--ff-d) !important;
}
.fw-italic {
  font-style: italic;
}
.fw-light {
  font-weight: 300;
}
.fw-medium {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-extrabold {
  font-weight: 800;
}
.fs-xxl {
  font-size: var(--fs-xxl);
  margin-bottom: calc(var(--fs-xxl) * (1 - var(--default-line-height)));
}
.fs-xl {
  font-size: var(--fs-xl);
  margin-bottom: calc(var(--fs-xl) * (1 - var(--default-line-height)));
}
.fs-lg {
  font-size: var(--fs-lg);
  margin-bottom: calc(var(--fs-lg) * (1 - var(--default-line-height)));
}
.fs-normal {
  font-size: var(--fs-normal);
  margin-bottom: calc(var(--fs-normal) * (1 - var(--default-line-height)));
}
.fs-sm {
  font-size: var(--fs-sm);
  margin-bottom: calc(var(--fs-sm) * (1 - var(--default-line-height)));
}
.fs-xs {
  font-size: var(--fs-xs);
  margin-bottom: calc(var(--fs-xs) * (1 - var(--default-line-height)));
}
.fs-6 {
  font-size: 6px;
}
.fs-7 {
  font-size: 7px;
}
.fs-8 {
  font-size: 8px;
}
.fs-9 {
  font-size: 9px;
}
.fs-10 {
  font-size: 10px;
}
.fs-11 {
  font-size: 11px;
}
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-17 {
  font-size: 17px;
}
.fs-18 {
  font-size: 18px;
}
.fs-19 {
  font-size: 19px;
}
.fs-20 {
  font-size: 20px;
}
.fs-21 {
  font-size: 21px;
}
.fs-22 {
  font-size: 22px;
}
.fs-23 {
  font-size: 23px;
}
.fs-24 {
  font-size: 24px;
}
.fs-25 {
  font-size: 25px;
}
.fs-26 {
  font-size: 26px;
}
.fs-27 {
  font-size: 27px;
}
.fs-28 {
  font-size: 28px;
}
.fs-29 {
  font-size: 29px;
}
.fs-30 {
  font-size: 30px;
}
.fs-31 {
  font-size: 31px;
}
.fs-32 {
  font-size: 32px;
}
.fs-33 {
  font-size: 33px;
}
.fs-34 {
  font-size: 34px;
}
.fs-35 {
  font-size: 35px;
}
.fs-36 {
  font-size: 36px;
}
.fs-37 {
  font-size: 37px;
}
.fs-38 {
  font-size: 38px;
}
.fs-39 {
  font-size: 39px;
}
.fs-40 {
  font-size: 40px;
}
.fs-41 {
  font-size: 41px;
}
.fs-42 {
  font-size: 42px;
}
.fs-43 {
  font-size: 43px;
}
.fs-44 {
  font-size: 44px;
}
.fs-45 {
  font-size: 45px;
}
.fs-46 {
  font-size: 46px;
}
.fs-47 {
  font-size: 47px;
}
.fs-48 {
  font-size: 48px;
}
.fs-49 {
  font-size: 49px;
}
.fs-50 {
  font-size: 50px;
}
.fs-51 {
  font-size: 51px;
}
.fs-52 {
  font-size: 52px;
}
.fs-53 {
  font-size: 53px;
}
.fs-54 {
  font-size: 54px;
}
.fs-55 {
  font-size: 55px;
}
.fs-56 {
  font-size: 56px;
}
.fs-57 {
  font-size: 57px;
}
.fs-58 {
  font-size: 58px;
}
.fs-59 {
  font-size: 59px;
}
.fs-60 {
  font-size: 60px;
}
.fs-61 {
  font-size: 61px;
}
.fs-62 {
  font-size: 62px;
}
.fs-63 {
  font-size: 63px;
}
.fs-64 {
  font-size: 64px;
}
.fs-65 {
  font-size: 65px;
}
.fs-66 {
  font-size: 66px;
}
.fs-67 {
  font-size: 67px;
}
.fs-68 {
  font-size: 68px;
}
.fs-69 {
  font-size: 69px;
}
.fs-70 {
  font-size: 70px;
}
.fs-71 {
  font-size: 71px;
}
.fs-72 {
  font-size: 72px;
}
@media (min-width: 576px) {
  .fs-sm-6 {
    font-size: 6px;
  }
  .fs-sm-7 {
    font-size: 7px;
  }
  .fs-sm-8 {
    font-size: 8px;
  }
  .fs-sm-9 {
    font-size: 9px;
  }
  .fs-sm-10 {
    font-size: 10px;
  }
  .fs-sm-11 {
    font-size: 11px;
  }
  .fs-sm-12 {
    font-size: 12px;
  }
  .fs-sm-13 {
    font-size: 13px;
  }
  .fs-sm-14 {
    font-size: 14px;
  }
  .fs-sm-15 {
    font-size: 15px;
  }
  .fs-sm-16 {
    font-size: 16px;
  }
  .fs-sm-17 {
    font-size: 17px;
  }
  .fs-sm-18 {
    font-size: 18px;
  }
  .fs-sm-19 {
    font-size: 19px;
  }
  .fs-sm-20 {
    font-size: 20px;
  }
  .fs-sm-21 {
    font-size: 21px;
  }
  .fs-sm-22 {
    font-size: 22px;
  }
  .fs-sm-23 {
    font-size: 23px;
  }
  .fs-sm-24 {
    font-size: 24px;
  }
  .fs-sm-25 {
    font-size: 25px;
  }
  .fs-sm-26 {
    font-size: 26px;
  }
  .fs-sm-27 {
    font-size: 27px;
  }
  .fs-sm-28 {
    font-size: 28px;
  }
  .fs-sm-29 {
    font-size: 29px;
  }
  .fs-sm-30 {
    font-size: 30px;
  }
  .fs-sm-31 {
    font-size: 31px;
  }
  .fs-sm-32 {
    font-size: 32px;
  }
  .fs-sm-33 {
    font-size: 33px;
  }
  .fs-sm-34 {
    font-size: 34px;
  }
  .fs-sm-35 {
    font-size: 35px;
  }
  .fs-sm-36 {
    font-size: 36px;
  }
  .fs-sm-37 {
    font-size: 37px;
  }
  .fs-sm-38 {
    font-size: 38px;
  }
  .fs-sm-39 {
    font-size: 39px;
  }
  .fs-sm-40 {
    font-size: 40px;
  }
  .fs-sm-41 {
    font-size: 41px;
  }
  .fs-sm-42 {
    font-size: 42px;
  }
  .fs-sm-43 {
    font-size: 43px;
  }
  .fs-sm-44 {
    font-size: 44px;
  }
  .fs-sm-45 {
    font-size: 45px;
  }
  .fs-sm-46 {
    font-size: 46px;
  }
  .fs-sm-47 {
    font-size: 47px;
  }
  .fs-sm-48 {
    font-size: 48px;
  }
  .fs-sm-49 {
    font-size: 49px;
  }
  .fs-sm-50 {
    font-size: 50px;
  }
  .fs-sm-51 {
    font-size: 51px;
  }
  .fs-sm-52 {
    font-size: 52px;
  }
  .fs-sm-53 {
    font-size: 53px;
  }
  .fs-sm-54 {
    font-size: 54px;
  }
  .fs-sm-55 {
    font-size: 55px;
  }
  .fs-sm-56 {
    font-size: 56px;
  }
  .fs-sm-57 {
    font-size: 57px;
  }
  .fs-sm-58 {
    font-size: 58px;
  }
  .fs-sm-59 {
    font-size: 59px;
  }
  .fs-sm-60 {
    font-size: 60px;
  }
  .fs-sm-61 {
    font-size: 61px;
  }
  .fs-sm-62 {
    font-size: 62px;
  }
  .fs-sm-63 {
    font-size: 63px;
  }
  .fs-sm-64 {
    font-size: 64px;
  }
  .fs-sm-65 {
    font-size: 65px;
  }
  .fs-sm-66 {
    font-size: 66px;
  }
  .fs-sm-67 {
    font-size: 67px;
  }
  .fs-sm-68 {
    font-size: 68px;
  }
  .fs-sm-69 {
    font-size: 69px;
  }
  .fs-sm-70 {
    font-size: 70px;
  }
  .fs-sm-71 {
    font-size: 71px;
  }
  .fs-sm-72 {
    font-size: 72px;
  }
}
@media (min-width: 768px) {
  .fs-md-6 {
    font-size: 6px;
  }
  .fs-md-7 {
    font-size: 7px;
  }
  .fs-md-8 {
    font-size: 8px;
  }
  .fs-md-9 {
    font-size: 9px;
  }
  .fs-md-10 {
    font-size: 10px;
  }
  .fs-md-11 {
    font-size: 11px;
  }
  .fs-md-12 {
    font-size: 12px;
  }
  .fs-md-13 {
    font-size: 13px;
  }
  .fs-md-14 {
    font-size: 14px;
  }
  .fs-md-15 {
    font-size: 15px;
  }
  .fs-md-16 {
    font-size: 16px;
  }
  .fs-md-17 {
    font-size: 17px;
  }
  .fs-md-18 {
    font-size: 18px;
  }
  .fs-md-19 {
    font-size: 19px;
  }
  .fs-md-20 {
    font-size: 20px;
  }
  .fs-md-21 {
    font-size: 21px;
  }
  .fs-md-22 {
    font-size: 22px;
  }
  .fs-md-23 {
    font-size: 23px;
  }
  .fs-md-24 {
    font-size: 24px;
  }
  .fs-md-25 {
    font-size: 25px;
  }
  .fs-md-26 {
    font-size: 26px;
  }
  .fs-md-27 {
    font-size: 27px;
  }
  .fs-md-28 {
    font-size: 28px;
  }
  .fs-md-29 {
    font-size: 29px;
  }
  .fs-md-30 {
    font-size: 30px;
  }
  .fs-md-31 {
    font-size: 31px;
  }
  .fs-md-32 {
    font-size: 32px;
  }
  .fs-md-33 {
    font-size: 33px;
  }
  .fs-md-34 {
    font-size: 34px;
  }
  .fs-md-35 {
    font-size: 35px;
  }
  .fs-md-36 {
    font-size: 36px;
  }
  .fs-md-37 {
    font-size: 37px;
  }
  .fs-md-38 {
    font-size: 38px;
  }
  .fs-md-39 {
    font-size: 39px;
  }
  .fs-md-40 {
    font-size: 40px;
  }
  .fs-md-41 {
    font-size: 41px;
  }
  .fs-md-42 {
    font-size: 42px;
  }
  .fs-md-43 {
    font-size: 43px;
  }
  .fs-md-44 {
    font-size: 44px;
  }
  .fs-md-45 {
    font-size: 45px;
  }
  .fs-md-46 {
    font-size: 46px;
  }
  .fs-md-47 {
    font-size: 47px;
  }
  .fs-md-48 {
    font-size: 48px;
  }
  .fs-md-49 {
    font-size: 49px;
  }
  .fs-md-50 {
    font-size: 50px;
  }
  .fs-md-51 {
    font-size: 51px;
  }
  .fs-md-52 {
    font-size: 52px;
  }
  .fs-md-53 {
    font-size: 53px;
  }
  .fs-md-54 {
    font-size: 54px;
  }
  .fs-md-55 {
    font-size: 55px;
  }
  .fs-md-56 {
    font-size: 56px;
  }
  .fs-md-57 {
    font-size: 57px;
  }
  .fs-md-58 {
    font-size: 58px;
  }
  .fs-md-59 {
    font-size: 59px;
  }
  .fs-md-60 {
    font-size: 60px;
  }
  .fs-md-61 {
    font-size: 61px;
  }
  .fs-md-62 {
    font-size: 62px;
  }
  .fs-md-63 {
    font-size: 63px;
  }
  .fs-md-64 {
    font-size: 64px;
  }
  .fs-md-65 {
    font-size: 65px;
  }
  .fs-md-66 {
    font-size: 66px;
  }
  .fs-md-67 {
    font-size: 67px;
  }
  .fs-md-68 {
    font-size: 68px;
  }
  .fs-md-69 {
    font-size: 69px;
  }
  .fs-md-70 {
    font-size: 70px;
  }
  .fs-md-71 {
    font-size: 71px;
  }
  .fs-md-72 {
    font-size: 72px;
  }
}
@media (min-width: 992px) {
  .fs-lg-6 {
    font-size: 6px;
  }
  .fs-lg-7 {
    font-size: 7px;
  }
  .fs-lg-8 {
    font-size: 8px;
  }
  .fs-lg-9 {
    font-size: 9px;
  }
  .fs-lg-10 {
    font-size: 10px;
  }
  .fs-lg-11 {
    font-size: 11px;
  }
  .fs-lg-12 {
    font-size: 12px;
  }
  .fs-lg-13 {
    font-size: 13px;
  }
  .fs-lg-14 {
    font-size: 14px;
  }
  .fs-lg-15 {
    font-size: 15px;
  }
  .fs-lg-16 {
    font-size: 16px;
  }
  .fs-lg-17 {
    font-size: 17px;
  }
  .fs-lg-18 {
    font-size: 18px;
  }
  .fs-lg-19 {
    font-size: 19px;
  }
  .fs-lg-20 {
    font-size: 20px;
  }
  .fs-lg-21 {
    font-size: 21px;
  }
  .fs-lg-22 {
    font-size: 22px;
  }
  .fs-lg-23 {
    font-size: 23px;
  }
  .fs-lg-24 {
    font-size: 24px;
  }
  .fs-lg-25 {
    font-size: 25px;
  }
  .fs-lg-26 {
    font-size: 26px;
  }
  .fs-lg-27 {
    font-size: 27px;
  }
  .fs-lg-28 {
    font-size: 28px;
  }
  .fs-lg-29 {
    font-size: 29px;
  }
  .fs-lg-30 {
    font-size: 30px;
  }
  .fs-lg-31 {
    font-size: 31px;
  }
  .fs-lg-32 {
    font-size: 32px;
  }
  .fs-lg-33 {
    font-size: 33px;
  }
  .fs-lg-34 {
    font-size: 34px;
  }
  .fs-lg-35 {
    font-size: 35px;
  }
  .fs-lg-36 {
    font-size: 36px;
  }
  .fs-lg-37 {
    font-size: 37px;
  }
  .fs-lg-38 {
    font-size: 38px;
  }
  .fs-lg-39 {
    font-size: 39px;
  }
  .fs-lg-40 {
    font-size: 40px;
  }
  .fs-lg-41 {
    font-size: 41px;
  }
  .fs-lg-42 {
    font-size: 42px;
  }
  .fs-lg-43 {
    font-size: 43px;
  }
  .fs-lg-44 {
    font-size: 44px;
  }
  .fs-lg-45 {
    font-size: 45px;
  }
  .fs-lg-46 {
    font-size: 46px;
  }
  .fs-lg-47 {
    font-size: 47px;
  }
  .fs-lg-48 {
    font-size: 48px;
  }
  .fs-lg-49 {
    font-size: 49px;
  }
  .fs-lg-50 {
    font-size: 50px;
  }
  .fs-lg-51 {
    font-size: 51px;
  }
  .fs-lg-52 {
    font-size: 52px;
  }
  .fs-lg-53 {
    font-size: 53px;
  }
  .fs-lg-54 {
    font-size: 54px;
  }
  .fs-lg-55 {
    font-size: 55px;
  }
  .fs-lg-56 {
    font-size: 56px;
  }
  .fs-lg-57 {
    font-size: 57px;
  }
  .fs-lg-58 {
    font-size: 58px;
  }
  .fs-lg-59 {
    font-size: 59px;
  }
  .fs-lg-60 {
    font-size: 60px;
  }
  .fs-lg-61 {
    font-size: 61px;
  }
  .fs-lg-62 {
    font-size: 62px;
  }
  .fs-lg-63 {
    font-size: 63px;
  }
  .fs-lg-64 {
    font-size: 64px;
  }
  .fs-lg-65 {
    font-size: 65px;
  }
  .fs-lg-66 {
    font-size: 66px;
  }
  .fs-lg-67 {
    font-size: 67px;
  }
  .fs-lg-68 {
    font-size: 68px;
  }
  .fs-lg-69 {
    font-size: 69px;
  }
  .fs-lg-70 {
    font-size: 70px;
  }
  .fs-lg-71 {
    font-size: 71px;
  }
  .fs-lg-72 {
    font-size: 72px;
  }
}
@media (min-width: 1200px) {
  .fs-xl-6 {
    font-size: 6px;
  }
  .fs-xl-7 {
    font-size: 7px;
  }
  .fs-xl-8 {
    font-size: 8px;
  }
  .fs-xl-9 {
    font-size: 9px;
  }
  .fs-xl-10 {
    font-size: 10px;
  }
  .fs-xl-11 {
    font-size: 11px;
  }
  .fs-xl-12 {
    font-size: 12px;
  }
  .fs-xl-13 {
    font-size: 13px;
  }
  .fs-xl-14 {
    font-size: 14px;
  }
  .fs-xl-15 {
    font-size: 15px;
  }
  .fs-xl-16 {
    font-size: 16px;
  }
  .fs-xl-17 {
    font-size: 17px;
  }
  .fs-xl-18 {
    font-size: 18px;
  }
  .fs-xl-19 {
    font-size: 19px;
  }
  .fs-xl-20 {
    font-size: 20px;
  }
  .fs-xl-21 {
    font-size: 21px;
  }
  .fs-xl-22 {
    font-size: 22px;
  }
  .fs-xl-23 {
    font-size: 23px;
  }
  .fs-xl-24 {
    font-size: 24px;
  }
  .fs-xl-25 {
    font-size: 25px;
  }
  .fs-xl-26 {
    font-size: 26px;
  }
  .fs-xl-27 {
    font-size: 27px;
  }
  .fs-xl-28 {
    font-size: 28px;
  }
  .fs-xl-29 {
    font-size: 29px;
  }
  .fs-xl-30 {
    font-size: 30px;
  }
  .fs-xl-31 {
    font-size: 31px;
  }
  .fs-xl-32 {
    font-size: 32px;
  }
  .fs-xl-33 {
    font-size: 33px;
  }
  .fs-xl-34 {
    font-size: 34px;
  }
  .fs-xl-35 {
    font-size: 35px;
  }
  .fs-xl-36 {
    font-size: 36px;
  }
  .fs-xl-37 {
    font-size: 37px;
  }
  .fs-xl-38 {
    font-size: 38px;
  }
  .fs-xl-39 {
    font-size: 39px;
  }
  .fs-xl-40 {
    font-size: 40px;
  }
  .fs-xl-41 {
    font-size: 41px;
  }
  .fs-xl-42 {
    font-size: 42px;
  }
  .fs-xl-43 {
    font-size: 43px;
  }
  .fs-xl-44 {
    font-size: 44px;
  }
  .fs-xl-45 {
    font-size: 45px;
  }
  .fs-xl-46 {
    font-size: 46px;
  }
  .fs-xl-47 {
    font-size: 47px;
  }
  .fs-xl-48 {
    font-size: 48px;
  }
  .fs-xl-49 {
    font-size: 49px;
  }
  .fs-xl-50 {
    font-size: 50px;
  }
  .fs-xl-51 {
    font-size: 51px;
  }
  .fs-xl-52 {
    font-size: 52px;
  }
  .fs-xl-53 {
    font-size: 53px;
  }
  .fs-xl-54 {
    font-size: 54px;
  }
  .fs-xl-55 {
    font-size: 55px;
  }
  .fs-xl-56 {
    font-size: 56px;
  }
  .fs-xl-57 {
    font-size: 57px;
  }
  .fs-xl-58 {
    font-size: 58px;
  }
  .fs-xl-59 {
    font-size: 59px;
  }
  .fs-xl-60 {
    font-size: 60px;
  }
  .fs-xl-61 {
    font-size: 61px;
  }
  .fs-xl-62 {
    font-size: 62px;
  }
  .fs-xl-63 {
    font-size: 63px;
  }
  .fs-xl-64 {
    font-size: 64px;
  }
  .fs-xl-65 {
    font-size: 65px;
  }
  .fs-xl-66 {
    font-size: 66px;
  }
  .fs-xl-67 {
    font-size: 67px;
  }
  .fs-xl-68 {
    font-size: 68px;
  }
  .fs-xl-69 {
    font-size: 69px;
  }
  .fs-xl-70 {
    font-size: 70px;
  }
  .fs-xl-71 {
    font-size: 71px;
  }
  .fs-xl-72 {
    font-size: 72px;
  }
}
body {
  font-size: var(--fs-normal);
  background-color: var(--color-cream-dark);
}
svg {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0);
}
a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a.no-decoration {
  text-decoration: none;
}
a.no-decoration:hover {
  text-decoration: underline;
}
a[class^="col"] {
  text-decoration: none;
}
a[class^="col"]:hover {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--ff-a);
}
h1, .h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: calc(56px * (1 - 1.2));
}
@media (max-width: 767.98px) {
  h1, .h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: calc(48px * (1 - 1.2));
  }
}
h2, .h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: calc(48px * (1 - 1.2));
  padding-bottom: 24px;
  font-weight: var(--fw-semibold);
}
@media (max-width: 767.98px) {
  h2, .h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: calc(40px * (1 - 1.2));
  }
}
h3, .h3 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: calc(40px * (1 - 1.3));
}
@media (max-width: 767.98px) {
  h3, .h3 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: calc(36px * (1 - 1.3));
  }
}
h4, .h4 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: calc(32px * (1 - 1.4));
}
h5, .h5 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: calc(24px * (1 - 1.4));
}
h6, .h6 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: calc(20px * (1 - 1.4));
}
p:last-of-type {
  margin-bottom: 0;
}
.p-c {
  padding-left: var(--container-padding) !important;
  padding-right: var(--container-padding) !important;
}
.ps-c {
  padding-left: var(--container-padding) !important;
}
.pe-c {
  padding-right: var(--container-padding) !important;
}
.p-c-2 {
  padding-left: calc(var(--container-padding) * 2) !important;
  padding-right: calc(var(--container-padding) * 2) !important;
}
.ps-c-2 {
  padding-left: calc(var(--container-padding) * 2) !important;
}
.pe-c-2 {
  padding-right: calc(var(--container-padding) * 2) !important;
}
.p-c-3 {
  padding-left: calc(var(--container-padding) * 3) !important;
  padding-right: calc(var(--container-padding) * 3) !important;
}
.ps-c-3 {
  padding-left: calc(var(--container-padding) * 3) !important;
}
.pe-c-3 {
  padding-right: calc(var(--container-padding) * 3) !important;
}
.p-c-4 {
  padding-left: calc(var(--container-padding) * 4) !important;
  padding-right: calc(var(--container-padding) * 4) !important;
}
.ps-c-4 {
  padding-left: calc(var(--container-padding) * 4) !important;
}
.pe-c-4 {
  padding-right: calc(var(--container-padding) * 4) !important;
}
.p-6, .px-6 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}
.p-6, .py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.ps-6 {
  padding-left: 5rem !important;
}
.pe-6 {
  padding-right: 5rem !important;
}
.pt-6 {
  padding-top: 5rem !important;
}
.pb-6 {
  padding-bottom: 5rem !important;
}
.p-section-lg {
  padding: 60px;
}
@media (max-width: 991.98px) {
  .p-section-lg {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767.98px) {
  .p-section-lg {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575.98px) {
  .p-section-lg {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.p-section {
  padding: 32px;
}
@media (max-width: 767.98px) {
  .p-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.p-section-sm {
  padding: 24px;
}
.p-section-xs {
  padding: 16px;
}
.break-60 {
  height: 60px;
}
@media (min-width: 576px) {
  .p-sm-c {
    padding-left: var(--container-padding) !important;
    padding-right: var(--container-padding) !important;
  }
  .ps-sm-c {
    padding-left: var(--container-padding) !important;
  }
  .pe-sm-c {
    padding-right: var(--container-padding) !important;
  }
  .p-sm-c-2 {
    padding-left: calc(var(--container-padding) * 2) !important;
    padding-right: calc(var(--container-padding) * 2) !important;
  }
  .ps-sm-c-2 {
    padding-left: calc(var(--container-padding) * 2) !important;
  }
  .pe-sm-c-2 {
    padding-right: calc(var(--container-padding) * 2) !important;
  }
  .p-sm-c-3 {
    padding-left: calc(var(--container-padding) * 3) !important;
    padding-right: calc(var(--container-padding) * 3) !important;
  }
  .ps-sm-c-3 {
    padding-left: calc(var(--container-padding) * 3) !important;
  }
  .pe-sm-c-3 {
    padding-right: calc(var(--container-padding) * 3) !important;
  }
  .p-sm-c-4 {
    padding-left: calc(var(--container-padding) * 4) !important;
    padding-right: calc(var(--container-padding) * 4) !important;
  }
  .ps-sm-c-4 {
    padding-left: calc(var(--container-padding) * 4) !important;
  }
  .pe-sm-c-4 {
    padding-right: calc(var(--container-padding) * 4) !important;
  }
  .p-sm-6, .px-sm-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .p-sm-6, .py-sm-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .ps-sm-6 {
    padding-left: 5rem !important;
  }
  .pe-sm-6 {
    padding-right: 5rem !important;
  }
  .pt-sm-6 {
    padding-top: 5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 768px) {
  .p-md-c {
    padding-left: var(--container-padding) !important;
    padding-right: var(--container-padding) !important;
  }
  .ps-md-c {
    padding-left: var(--container-padding) !important;
  }
  .pe-md-c {
    padding-right: var(--container-padding) !important;
  }
  .p-md-c-2 {
    padding-left: calc(var(--container-padding) * 2) !important;
    padding-right: calc(var(--container-padding) * 2) !important;
  }
  .ps-md-c-2 {
    padding-left: calc(var(--container-padding) * 2) !important;
  }
  .pe-md-c-2 {
    padding-right: calc(var(--container-padding) * 2) !important;
  }
  .p-md-c-3 {
    padding-left: calc(var(--container-padding) * 3) !important;
    padding-right: calc(var(--container-padding) * 3) !important;
  }
  .ps-md-c-3 {
    padding-left: calc(var(--container-padding) * 3) !important;
  }
  .pe-md-c-3 {
    padding-right: calc(var(--container-padding) * 3) !important;
  }
  .p-md-c-4 {
    padding-left: calc(var(--container-padding) * 4) !important;
    padding-right: calc(var(--container-padding) * 4) !important;
  }
  .ps-md-c-4 {
    padding-left: calc(var(--container-padding) * 4) !important;
  }
  .pe-md-c-4 {
    padding-right: calc(var(--container-padding) * 4) !important;
  }
  .p-md-6, .px-md-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .p-md-6, .py-md-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .ps-md-6 {
    padding-left: 5rem !important;
  }
  .pe-md-6 {
    padding-right: 5rem !important;
  }
  .pt-md-6 {
    padding-top: 5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 992px) {
  .p-lg-c {
    padding-left: var(--container-padding) !important;
    padding-right: var(--container-padding) !important;
  }
  .ps-lg-c {
    padding-left: var(--container-padding) !important;
  }
  .pe-lg-c {
    padding-right: var(--container-padding) !important;
  }
  .p-lg-c-2 {
    padding-left: calc(var(--container-padding) * 2) !important;
    padding-right: calc(var(--container-padding) * 2) !important;
  }
  .ps-lg-c-2 {
    padding-left: calc(var(--container-padding) * 2) !important;
  }
  .pe-lg-c-2 {
    padding-right: calc(var(--container-padding) * 2) !important;
  }
  .p-lg-c-3 {
    padding-left: calc(var(--container-padding) * 3) !important;
    padding-right: calc(var(--container-padding) * 3) !important;
  }
  .ps-lg-c-3 {
    padding-left: calc(var(--container-padding) * 3) !important;
  }
  .pe-lg-c-3 {
    padding-right: calc(var(--container-padding) * 3) !important;
  }
  .p-lg-c-4 {
    padding-left: calc(var(--container-padding) * 4) !important;
    padding-right: calc(var(--container-padding) * 4) !important;
  }
  .ps-lg-c-4 {
    padding-left: calc(var(--container-padding) * 4) !important;
  }
  .pe-lg-c-4 {
    padding-right: calc(var(--container-padding) * 4) !important;
  }
  .p-lg-6, .px-lg-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .p-lg-6, .py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .ps-lg-6 {
    padding-left: 5rem !important;
  }
  .pe-lg-6 {
    padding-right: 5rem !important;
  }
  .pt-lg-6 {
    padding-top: 5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 1200px) {
  .p-xl-c {
    padding-left: var(--container-padding) !important;
    padding-right: var(--container-padding) !important;
  }
  .ps-xl-c {
    padding-left: var(--container-padding) !important;
  }
  .pe-xl-c {
    padding-right: var(--container-padding) !important;
  }
  .p-xl-c-2 {
    padding-left: calc(var(--container-padding) * 2) !important;
    padding-right: calc(var(--container-padding) * 2) !important;
  }
  .ps-xl-c-2 {
    padding-left: calc(var(--container-padding) * 2) !important;
  }
  .pe-xl-c-2 {
    padding-right: calc(var(--container-padding) * 2) !important;
  }
  .p-xl-c-3 {
    padding-left: calc(var(--container-padding) * 3) !important;
    padding-right: calc(var(--container-padding) * 3) !important;
  }
  .ps-xl-c-3 {
    padding-left: calc(var(--container-padding) * 3) !important;
  }
  .pe-xl-c-3 {
    padding-right: calc(var(--container-padding) * 3) !important;
  }
  .p-xl-c-4 {
    padding-left: calc(var(--container-padding) * 4) !important;
    padding-right: calc(var(--container-padding) * 4) !important;
  }
  .ps-xl-c-4 {
    padding-left: calc(var(--container-padding) * 4) !important;
  }
  .pe-xl-c-4 {
    padding-right: calc(var(--container-padding) * 4) !important;
  }
  .p-xl-6, .px-xl-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .p-xl-6, .py-xl-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .ps-xl-6 {
    padding-left: 5rem !important;
  }
  .pe-xl-6 {
    padding-right: 5rem !important;
  }
  .pt-xl-6 {
    padding-top: 5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 5rem !important;
  }
}
.g-6, .gx-6 {
  --bs-gutter-x: 4rem;
}
.g-6, .gy-6 {
  --bs-gutter-y: 4rem;
}
.g-7, .gx-7 {
  --bs-gutter-x: 5rem;
}
.g-7, .gy-7 {
  --bs-gutter-y: 5rem;
}
@media (min-width: 1200px) {
  .row-cols-xl-7 > * {
    flex: 0 0 auto;
    width: 14.285714286%;
  }
}
@media (min-width: 1600px) {
  body:not(.shop) .container-xxl, body:not(.shop) .container-xl, body:not(.shop) .container-lg, body:not(.shop) .container-md, body:not(.shop) .container-sm, body:not(.shop) .container {
    max-width: 1520px;
  }
}
.ratio-3x4 {
  --bs-aspect-ratio: 125%;
}
.rounded-md {
  border-radius: var(--rounded-md);
}
.rounded-lg {
  border-radius: var(--rounded-lg);
}
.rounded-xl {
  border-radius: var(--rounded-xl);
}
@media (max-width: 575.98px) {
  section > .container > .row > .col-12 > .rounded-xl {
    border-radius: 0;
  }
  .rounded-md {
    border-radius: var(--rounded-md) !important;
  }
  .rounded-lg {
    border-radius: var(--rounded-lg) !important;
  }
}
section, article, header {
  position: relative;
}
section .mask, article .mask, header .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section > .mask + *, article > .mask + *, header > .mask + * {
  z-index: 5;
  position: relative;
}
body:not(.home) main {
  margin-top: var(--offset-body);
}
header + main {
  margin-top: 0 !important;
}
.section-dark + .section-noblock, .section-noblock + .section-dark, .section-noblock + .section-cream, main > section {
  padding-top: 80px;
}
.section-noblock + .section-noblock, .section-dark + .section-dark, .section-cream + .section-cream {
  padding-top: 60px;
}
.section-dark + .section-cream, .section-cream + .section-dark, main > .section-dark, main > .section-cream {
  padding-top: 20px;
}
@media (max-width: 575.98px) {
  .section-dark + .section-cream, .section-cream + .section-dark, main > .section-dark, main > .section-cream {
    padding-top: 0px;
  }
}
@media (max-width: 575.98px) {
  .no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}
body.shop section:nth-child(1) {
  padding-top: 40px;
}
@media (max-width: 575.98px) {
  section:has(.no-padding-mobile) {
    padding-top: 0;
  }
}
.z-index-5 {
  z-index: 5;
  position: relative;
}
i.round {
  padding: 4px;
  border-radius: 50%;
  background-color: var(--color-cream);
  color: var(--color-dark);
  width: 24px;
  height: 24px;
}
section#kosik .canc {
  position: absolute;
  top: calc(50% - 10px);
  left: -8px;
  background-color: var(--color-cream-dark);
  border-top: 1px solid var(--bs-border-color);
  border-right: 1px solid var(--bs-border-color);
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
}
section#kosik .basket-tickets {
  position: relative;
}
section#kosik .basket-tickets .canc {
  background-color: var(--color-cream-dark);
  border: 1px solid var(--color-cream-dark);
}
section#kosik .basket-tickets::after {
  content: "";
  position: absolute;
  right: 76px;
  top: 0px;
  width: 1px;
  height: 100%;
  border-left: 1px dashed var(--color-cream-dark);
}
@media (max-width: 575.98px) {
  section#kosik .basket-tickets::after {
    display: none;
  }
}
section#kosik .valChange svg {
  position: relative;
  top: -1px;
}
section#kosik .removeItem {
  position: absolute;
  top: 16px;
  right: 24px;
}
@media (min-width: 576px) {
  section#kosik .removeItem {
    top: calc(50% - 13px);
  }
}
section#kosik .removeItem svg path {
  transition: all 0.5s;
}
section#kosik .removeItem:hover svg path {
  fill: var(--color-red);
}
section#kosik form#order input {
  font-weight: 500;
}
section#kosik input#promo {
  border-radius: 0px;
  border: none;
  background-color: transparent;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
section#kosik input#promo:focus {
  border-color: var(--bs-border-color);
}
section#kosik .nacistPromo, section#kosik .odebratPromo {
  position: absolute;
  top: 10px;
  right: 10px;
}
section#kosik .odebratPromo {
  top: 14px;
}
section#kosik .odebratPromo svg path {
  transition: all 0.5s;
}
section#kosik .odebratPromo:hover svg path {
  fill: var(--color-red);
}
section#kosik .btn.btn-outline-payment {
  position: relative;
  border-radius: 6px;
  text-align: start;
  font-size: var(--fs-sm);
  line-height: 1;
  font-weight: 500;
  padding: 10px;
  color: var(--color-dark-transparent);
  border-color: var(--bs-border-color);
  transition: all 0.5s;
}
section#kosik .btn.btn-outline-payment svg path.bg {
  transition: all 0.5s;
  fill: var(--color-dark-transparent);
}
section#kosik .btn-check:checked + .btn.btn-outline-payment {
  color: var(--color-dark);
  border-color: var(--color-dark);
}
section#kosik .btn-check:checked + .btn.btn-outline-payment svg path.bg {
  fill: var(--color-dark);
}
section#kosik .discount-btc {
  position: absolute;
  right: 10px;
  top: 10px;
}
body.shop .d-hide-shop {
  display: none !important;
}
body.shop .d-block-shop {
  display: block !important;
}
body:not(.shop) .d-block-shop {
  display: none !important;
}
section#objednavka .canc {
  position: absolute;
  top: calc(56px);
  left: -8px;
  background-color: var(--color-cream-dark);
  border-top: 1px solid var(--color-cream-dark);
  border-right: 1px solid var(--color-cream-dark);
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
}
section#objednavka .cancLine::after {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: 1px;
  border-top: 1px solid var(--color-cream-dark);
  left: 12px;
  bottom: -24px;
}
#modalUpgradeTickets .canc {
  position: absolute;
  top: calc(50% - 10px);
  left: -8px;
  background-color: var(--color-cream-dark);
  border-top: 1px solid var(--color-cream-dark);
  border-right: 1px solid var(--color-cream-dark);
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
}
.swiper-reference, .swiper-photogallery {
  --swiper-scrollbar-drag-bg-color: var(--color-dark);
  --swiper-scrollbar-size: 2px;
  overflow: hidden;
}
.swiper-reference .swiper-scrollbar.swiper-scrollbar-horizontal, .swiper-photogallery .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: static;
}
.swiper-reference .swiper-button-lock, .swiper-photogallery .swiper-button-lock {
  display: none !important;
}
.swiper-reference .swiper-button-next, .swiper-reference .swiper-button-prev, .swiper-photogallery .swiper-button-next, .swiper-photogallery .swiper-button-prev {
  position: static;
  display: inline;
  background: none;
  /* Odeberte standardní pozadí */
  opacity: 0.5;
  transition: opacity 0.5s;
}
.swiper-reference .swiper-button-next:hover, .swiper-reference .swiper-button-prev:hover, .swiper-photogallery .swiper-button-next:hover, .swiper-photogallery .swiper-button-prev:hover {
  opacity: 1;
}
.swiper-reference .swiper-button-prev svg, .swiper-photogallery .swiper-button-prev svg {
  transform: scaleX(-1);
}
.swiper-reference .swiper-button-next svg, .swiper-reference .swiper-button-prev svg, .swiper-photogallery .swiper-button-next svg, .swiper-photogallery .swiper-button-prev svg {
  width: 40px;
  height: 40px;
}
.swiper-reference .swiper-button-next:after, .swiper-reference .swiper-button-prev:after, .swiper-photogallery .swiper-button-next:after, .swiper-photogallery .swiper-button-prev:after {
  display: none;
}
.swiper-slide {
  height: auto;
}
.alert {
  --bs-alert-border: none;
}
.btn {
  --bs-btn-padding-x: 28px;
  --bs-btn-padding-y: 16px;
  --bs-btn-font-family: ;
  --bs-btn-font-size: var(--fs-normal);
  --bs-btn-font-weight: 700;
  --bs-btn-line-height: 150%;
  --bs-btn-color: var(--color-dark);
  --bs-btn-hover-color: var(--color-dark);
  --bs-btn-bg: transparent;
  --bs-btn-border-radius: 50px;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-disabled-opacity: 0.5;
  --bs-btn-focus-box-shadow: none;
}
.btn:focus {
  box-shadow: none;
}
.btn.btn-sm {
  --bs-btn-padding-x: 16px;
  --bs-btn-padding-y: 6px;
  --bs-btn-border-radius: 37.5px;
  --bs-btn-font-size: var(--fs-sm);
}
.btn.btn-md {
  --bs-btn-padding-x: 16px;
  --bs-btn-padding-y: 12px;
  --bs-btn-border-radius: 37.5px;
  --bs-btn-font-size: var(--fs-sm);
}
.btn.btn-green {
  border: 1px solid var(--color-green);
  background-color: var(--color-green);
}
.btn.btn-green:hover {
  border: 1px solid var(--color-green-dark);
  background-color: var(--color-green-dark);
}
.btn.btn-green svg path {
  fill: var(--color-dark);
}
.btn.btn-dark {
  border: 1px solid var(--color-dark);
  background-color: var(--color-dark);
  color: var(--color-cream);
}
.btn.btn-dark:hover {
  background-color: var(--color-cream);
  color: var(--color-dark);
}
.btn.btn-cream {
  border: 1px solid var(--color-cream);
  background-color: var(--color-cream);
  color: var(--color-dark);
}
.btn.btn-cream:hover {
  border: 1px solid var(--color-cream-dark);
  background-color: var(--color-cream-dark);
  color: var(--color-dark);
}
.btn.btn-dark-outline {
  border: 1px solid var(--color-dark);
  background-color: transparent;
  color: var(--color-dark);
}
.btn.btn-dark-outline:hover {
  background-color: var(--color-dark);
  color: var(--color-cream);
}
.btn.disabled {
  background-color: var(--color-disabled);
  border-color: var(--color-disabled);
  color: var(--color-cream);
}
.btn.disabled svg path {
  fill: white;
}
.button-group {
  padding: 2px;
  border-radius: 100px;
}
.button-group .btn {
  min-width: 140px;
}
.button-group .btn-green:not(.active) {
  background-color: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-dark-transparent);
}
.button-group .btn-green:not(.active):hover {
  color: var(--color-dark);
}
section .countdownKonf span, section .countdownKonf-alert span {
  text-align: end;
  display: inline-block;
  min-width: 42px;
}
section#kosik .countdownKonf span, section#kosik .countdownKonf-alert span {
  display: inline-block;
  min-width: 20px;
}
@media (max-width: 767.98px) {
  .banner, .banner-alert {
    font-size: var(--fs-sm);
  }
}
.newsletter input {
  border-radius: 100px;
  border: none;
  padding: 16px 16px;
}
.newsletter .btn {
  position: absolute;
  top: 3px;
  right: 4px;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--color-dark);
}
.form-label {
  font-weight: 500;
  font-size: var(--fs-sm);
  line-height: 1.5;
  margin-bottom: 0;
}
.form-check-input {
  background-color: transparent;
}
.form-check-input:checked {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
}
.form-check-input:focus {
  box-shadow: none;
  border-color: var(--color-dark);
}
.go4258295619 iframe {
  border-radius: var(--rounded-lg);
}
.hs-form-field .hs-error-msgs {
  color: green;
}
/*.loader {
  border: 4px solid var(--color-cream);
  border-top: 4px solid var(--color-orange);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

*/
/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side,var(--color-orange) 90%,transparent);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
}
@keyframes l7 {
  33% {
    background-size: calc(100%/3) 0%, calc(100%/3) 100%, calc(100%/3) 100%;
  }
  50% {
    background-size: calc(100%/3) 100%, calc(100%/3) 0%, calc(100%/3) 100%;
  }
  66% {
    background-size: calc(100%/3) 100%, calc(100%/3) 100%, calc(100%/3) 0%;
  }
}
.bigLoader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-cream-dark-rgb), 0.8);
  z-index: 9999;
}
.modal .modal-content {
  background-color: var(--color-cream-dark);
  border: none;
}
.modal .close {
  position: absolute;
  top: 16px;
  right: 16px;
}
nav {
  --bs-border-width: 0px;
  /* Styl pro aktivní (otevřené) menu */
  /* Styl pro neaktivní (zavřené) menu */
}
nav.bg-light {
  background-color: var(--color-cream) !important;
}
nav .navbar-toggler {
  border: none;
  background: none;
  height: 54px;
}
nav .navbar-toggler-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  /* Barva proužků */
  position: relative;
  transition: all 0.5s ease-in-out;
}
nav .navbar-toggler-icon::before, nav .navbar-toggler-icon::after {
  content: "";
  background-color: #333;
  /* Barva proužků */
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  transition: all 0.5s ease-in-out;
}
nav .navbar-toggler-icon::before {
  top: -10px;
}
nav .navbar-toggler-icon::after {
  bottom: -10px;
}
nav .navbar-toggler.active .navbar-toggler-icon {
  background: transparent;
  /* Skryje prostřední proužek */
}
nav .navbar-toggler.active .navbar-toggler-icon::before {
  transform: translateY(10px) rotate(45deg);
}
nav .navbar-toggler.active .navbar-toggler-icon::after {
  transform: translateY(-10px) rotate(-45deg);
}
nav .navbar-toggler:not(.active) .navbar-toggler-icon {
  background-color: #333;
  /* Zobrazí prostřední proužek */
}
nav .navbar-toggler:not(.active) .navbar-toggler-icon::before {
  transform: translateY(0) rotate(0);
}
nav .navbar-toggler:not(.active) .navbar-toggler-icon::after {
  transform: translateY(0) rotate(0);
}
nav .navbar-toggler:focus {
  box-shadow: none;
}
nav .nav-link {
  --bs-nav-link-font-weight: 700;
  --bs-nav-link-color: var(--color-dark);
  --bs-nav-link-font-size: var(--fs-sm);
}
nav .dropdown-menu {
  --bs-dropdown-font-size: var(--fs-sm);
}
nav .dropdown-menu .dropdown-item {
  --bs-dropdown-link-active-bg: var(--color-orange);
  --bs-dropdown-link-color: var(--color-dark);
}
nav .badge {
  --bs-badge-padding-x: 6px;
  --bs-badge-padding-y: 6px;
  --bs-badge-font-size: 8px;
  --bs-badge-font-weight: 400;
  --bs-badge-color: var(--color-dark);
  width: 14px;
  height: 14px;
  bottom: 0;
  right: 0;
}
@media (min-width: 992px) {
  nav .lang-panel {
    height: 30px;
    width: 30px;
    transition: all 0.5s;
  }
  nav .lang-panel:hover > div {
    background-color: var(--color-green);
    height: 60px;
  }
  nav .lang-panel > div {
    background-color: transparent;
    border-radius: 4px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 30px;
    transition: all 0.5s;
    overflow: hidden;
  }
}
.banner a:hover, .banner-alert a:hover {
  text-decoration: underline;
}
.banner .fa-xmark, .banner-alert .fa-xmark {
  position: absolute;
  right: 15px;
  top: calc(50% - 8px);
  cursor: pointer;
}
/* common */
.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before, .ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  filter: brightness(0.8);
  border: 5px solid var(--color-red);
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  padding-left: 12px;
  background-color: var(--color-red);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: var(--color-cream);
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}
/* top left*/
.ribbon-top-left {
  top: -10px;
  left: -10px;
}
.ribbon-top-left::before, .ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}
/* top right*/
.ribbon-top-right {
  top: -10px;
  right: -10px;
}
.ribbon-top-right::before, .ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}
/* bottom left*/
.ribbon-bottom-left {
  bottom: -10px;
  left: -10px;
}
.ribbon-bottom-left::before, .ribbon-bottom-left::after {
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.ribbon-bottom-left::before {
  bottom: 0;
  right: 0;
}
.ribbon-bottom-left::after {
  top: 0;
  left: 0;
}
.ribbon-bottom-left span {
  right: -25px;
  bottom: 30px;
  transform: rotate(225deg);
}
/* bottom right*/
.ribbon-bottom-right {
  bottom: -10px;
  right: -10px;
}
.ribbon-bottom-right::before, .ribbon-bottom-right::after {
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.ribbon-bottom-right::before {
  bottom: 0;
  left: 0;
}
.ribbon-bottom-right::after {
  top: 0;
  right: 0;
}
.ribbon-bottom-right span {
  left: -25px;
  bottom: 30px;
  transform: rotate(-225deg);
}
.tag {
  border: 1px solid rgba(var(--color-cream-rgb), 0.5);
  border-radius: 100px;
  text-decoration: none;
  padding: 2px 10px;
  background-color: transparent;
  transition: all 0.5s;
  font-weight: 500;
  font-size: var(--fs-xs);
}
.tag.active {
  text-decoration: none;
  background-color: rgba(var(--color-cream-rgb), 0.5);
}
a.tag:hover {
  text-decoration: none;
  background-color: rgba(var(--color-cream-rgb), 0.5);
}
.tag-light {
  border: 1px solid rgba(var(--color-dark-rgb), 0.15);
}
.tag-light.active {
  background-color: rgba(var(--color-dark-rgb), 0.15);
}
a.tag-light:hover {
  background-color: rgba(var(--color-dark-rgb), 0.15);
}
.tag-dark {
  border: 1px solid rgba(var(--color-dark-rgb), 1);
  color: var(--color-cream);
  background-color: rgba(var(--color-dark-rgb), 1);
}
a.tag-dark:hover {
  background-color: rgba(var(--color-dark-rgb), 1);
}
.tag-red {
  border: 1px solid var(--color-red);
  color: var(--color-cream);
  background-color: var(--color-red);
}
section#dhd ul {
  margin-bottom: 0;
  padding-left: 1rem;
}
section#dhd .layers .layer {
  position: relative;
}
@media (min-width: 992px) {
  section#dhd .layers .layer:nth-child(1), section#dhd .layers .layer:nth-child(3) {
    top: -15px;
  }
  section#dhd .layers .layer:nth-child(2), section#dhd .layers .layer:nth-child(4) {
    top: 15px;
  }
}
@media (max-width: 1400.98px) {
  section#dhd .ratio-4x3 {
    --bs-aspect-ratio: 100% !important;
  }
}
section#dhd-program .mask {
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0.7847514006) 0%, rgba(255, 255, 255, 0.1544992997) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0.7847514006) 0%, rgba(255, 255, 255, 0.1544992997) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7847514006) 0%, rgba(255, 255, 255, 0.1544992997) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
section#dhd-program .mask img {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 100px;
  height: 80px;
}
@media screen {
  body.invoice {
    height: auto;
    background-color: var(--color-cream-dark);
  }
  body.invoice .a4-container {
    width: 210mm;
    height: 293mm;
    margin: 0px auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 10mm;
    /* Pokud chcete vnitřní okraj */
  }
  body.invoice .a4-container .logo {
    width: 151px;
    height: 53px;
  }
  body.invoice .a4-container .number {
    border-top: 2px solid var(--color-dark);
  }
  body.invoice .a4-container .vatSum {
    border-bottom: 2px solid var(--color-dark);
  }
}
.break-page {
  page-break-before: always;
}
@media print {
  /* Další tiskové styly zde */
  body.invoice .a4-container {
    box-shadow: none;
    margin: 0mm;
    padding: 0mm;
  }
}
@media (max-width: 767.98px) {
  #lineup .button-group .btn {
    min-width: 0px;
  }
}
@media (max-width: 767.98px) {
  #lineup-calendar .p-section {
    padding: 16px;
  }
}
#lineup-calendar .now {
  position: absolute;
  font-weight: bold;
  width: 100%;
  height: 12px;
  font-size: 12px;
  line-height: 12px;
  color: blue;
  top: 0;
  left: -44px;
  z-index: 5;
}
#lineup-calendar .now .line {
  position: absolute;
  content: "";
  height: 1px;
  width: calc(100% + 15px);
  background-color: var(--color-dark);
  top: 0px;
  left: 0px;
}
#lineup-calendar .casovy_blok {
  height: 44px;
  border-right: 1px solid var(--color-gray-dark);
  margin-right: 20px;
  position: relative;
}
#lineup-calendar .casovy_blok span {
  position: relative;
  top: -12px;
}
#lineup-calendar .casovy_blok::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--color-dark);
  right: -5px;
  top: 0;
}
#lineup-calendar .casovy_blok .line {
  position: absolute;
  height: 1px;
  width: 0px;
  transition: all 10s;
  background-color: var(--color-gray-dark);
  left: 60px;
  top: 0;
  z-index: 5;
}
#lineup-calendar .timecol {
  width: 85px;
}
#lineup-calendar .stage .dayArea::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-orange);
}
#lineup-calendar .event {
  top: 0px;
  left: 8px;
  width: calc(100% - 16px);
  z-index: 6;
}
@media (min-width: 992px) {
  #lineup-calendar .event {
    position: absolute;
  }
}
@media (max-width: 991.98px) {
  #lineup-calendar .event {
    height: auto !important;
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  #lineup-calendar .event .eventLine1 {
    height: 22px;
  }
  #lineup-calendar .event .eventLine1.eventTitle {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* počet řádků, na které chcete zkrátit text */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 22px;
  }
  #lineup-calendar .event .eventLine3 {
    height: 66px;
  }
  #lineup-calendar .event .eventLine3.eventTitle {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* počet řádků, na které chcete zkrátit text */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 66px;
  }
  #lineup-calendar .event .eventLine5 {
    height: 110px;
  }
  #lineup-calendar .event .eventLine5.eventTitle {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* počet řádků, na které chcete zkrátit text */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 110px;
  }
  #lineup-calendar .event .eventLine7 {
    height: 154px;
  }
  #lineup-calendar .event .eventLine7.eventTitle {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    /* počet řádků, na které chcete zkrátit text */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 154px;
  }
}
#lineup-calendar .infoIcon {
  width: 12px;
  height: 12px;
}
#lineup-calendar .label {
  color: var(--color-cream);
  background-color: var(--color-dark);
  width: 20px;
  height: 20px;
  text-align: center;
  position: relative;
  top: 2px;
  border-radius: 4px;
}
#lineup-calendar .label span {
  position: relative;
  top: -2px;
  font-weight: bold;
}
#lineup-calendar .eventTitle {
  font-size: var(--fs-sm);
  position: relative;
  top: 2px;
}
#lineup-calendar .stage-switcher {
  position: relative;
}
#lineup-calendar .stage-switcher::after {
  position: absolute;
  content: "";
  width: calc(100% + 8px);
  height: 2px;
  background: var(--color-gray-dark);
  bottom: 0;
  left: -4px;
}
#lineup-calendar .selectStage {
  position: relative;
  z-index: 5;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-dark-transparent);
}
#lineup-calendar .selectStage.active {
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
}
.modalLineup .label {
  background: var(--color-dark);
  color: var(--color-cream);
  width: 18px;
  height: 18px;
  text-align: center;
  border-radius: 4px;
}
.versus {
  position: relative;
}
.versus span {
  height: 56px;
  padding: 8px;
  border: solid 0.5rem var(--color-cream-dark);
  z-index: 2;
}
.versus::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-cream);
  top: 50%;
  transform: translateY(-50%);
}
.single-ticket header, .page-template-page-template-app header {
  min-height: calc(90vh - var(--offset-body) - 20px) !important;
}
.single-ticket .hero-video, .single-ticket .video-overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.single-ticket .hero-video {
  object-fit: cover;
}
@media (min-width: 768px) {
  .single-ticket .hero-video {
    border-bottom-left-radius: var(--rounded-xl);
    border-bottom-right-radius: var(--rounded-xl);
  }
}
.single-ticket #duvody .ratio-foto-duvody {
  --bs-aspect-ratio: 56.25%;
}
@media (min-width: 992px) {
  .single-ticket #duvody .ratio-foto-duvody {
    --bs-aspect-ratio: 100%;
  }
}
.page-template-page-template-app .playStore, .page-template-page-template-app .appStore {
  width: 200px;
  height: auto;
}
.page-template-page-template-app #duvody .ratio-foto-duvody {
  --bs-aspect-ratio: 133%;
}
@media (min-width: 992px) {
  .page-template-page-template-app #duvody .ratio-foto-duvody {
    --bs-aspect-ratio: 133%;
  }
}
.partners-other .h4 {
  position: relative;
}
.partners-other .h4 .kruh {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 0;
  top: calc(50% - 16px);
}
#partners-kontakt .mask {
  background: rgba(var(--color-dark-rgb), 7);
  background: linear-gradient(135deg, rgba(var(--color-dark-rgb), 0.8) 0%, rgba(var(--color-dark-rgb), 0) 100%);
}
@media (max-width: 767.98px) {
  #partners-kontakt .mask {
    border-radius: 0px !important;
  }
}
.hotel-card img.foto-1, .hotel-card img.foto-2 {
  transition: opacity 1s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.hotel-card .foto-1 {
  opacity: 1;
}
.hotel-card .foto-2 {
  opacity: 0;
}
.hotel-card:hover .foto-1 {
  opacity: 0;
}
.hotel-card:hover .foto-2 {
  opacity: 1;
}
section#venue-info .mhd, section#venue-info .parking {
  background-position: left 3px;
  background-repeat: no-repeat;
  padding-left: 30px;
  background-size: 20px auto;
}
section#venue-info .mhd {
  background-position: 3px 4px;
  background-size: 15px auto;
}
@media (min-width: 992px) {
  #compare-tickets i {
    font-size: 10px;
  }
  #compare-tickets .industry {
    background-color: var(--color-orange);
  }
  #compare-tickets .title-ticket {
    font-size: var(--fs-xl);
  }
}
@media (max-width: 991.98px) {
  #compare-tickets {
    font-size: var(--fs-sm);
  }
  #compare-tickets i {
    font-size: 8px;
  }
  #compare-tickets .title-ticket {
    font-size: var(--fs-sm);
  }
}
section#faq .plus {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 3px;
  width: 16px;
  /* Šířka znaku plus */
  height: 16px;
  /* Výška znaku plus */
}
section#faq .plus::before, section#faq .plus::after {
  content: "";
  position: absolute;
  background-color: var(--color-dark);
  /* Barva čar */
}
section#faq .plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  /* Délka horizontální čáry */
  height: 2px;
  /* Tloušťka horizontální čáry */
  transform: translateY(-50%);
}
section#faq .plus::after {
  opacity: 0;
  transition: all 0.5s;
  top: 0;
  left: 50%;
  width: 2px;
  /* Tloušťka vertikální čáry */
  height: 100%;
  /* Délka vertikální čáry */
  transform: translateX(-50%);
}
section#faq .collapsed .plus::after {
  opacity: 1;
}
section#footer {
  padding-top: 20px;
}
section#footer .b-dark {
  background-size: 100% auto;
  background-position: center bottom;
  padding-bottom: 100px;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  section#footer .b-dark {
    padding-bottom: 200px;
  }
}
header {
  margin-top: var(--offset-body);
  padding: 60px 0 60px;
  min-height: calc(100vh - var(--offset-body) - 20px);
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  background-color: var(--color-dark);
}
@media (max-width: 767.98px) {
  header {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
  header img {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
}
header h1 {
  font-size: 80px;
  line-height: 1.1;
}
@media (max-width: 991.98px) {
  header h1 {
    font-size: 52px;
  }
}
header .mask {
  background: rgba(var(--color-dark-rgb), 5);
  background: linear-gradient(135deg, rgba(var(--color-dark-rgb), 0.7) 0%, rgba(var(--color-dark-rgb), 0) 100%);
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}
@media (max-width: 767.98px) {
  header .mask {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
}
@media (max-width: 767.98px) {
  header {
    --fs-xl: 18px;
  }
}
body:not(.home, .single-ticket) header {
  min-height: calc(66vh - var(--offset-body) - 20px);
}
#mailchimp-ticket-compare .foto-1, #mailchimp-ticket-compare .foto-2 {
  top: 52px;
}
#mailchimp-ticket-compare .foto-1 .foto-top, #mailchimp-ticket-compare .foto-1 .foto-bottom, #mailchimp-ticket-compare .foto-2 .foto-top, #mailchimp-ticket-compare .foto-2 .foto-bottom {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: calc(-100% - 8px);
  left: 0;
}
#mailchimp-ticket-compare .foto-2 {
  top: unset;
  bottom: 52px;
}
#mailchimp-ticket-compare .foto-2 .foto-bottom {
  top: calc(100% + 8px);
}
section#praha .swiper-prague .ratio {
  overflow: hidden;
}
section#praha .swiper-prague .ratio .mask {
  background-color: rgba(var(--color-dark-rgb), 0.5);
  transition: all 1s;
  opacity: 0;
}
section#praha .swiper-prague .ratio .mask h3 {
  transform: scale(0.01);
  transition: all 1s;
}
section#praha .swiper-prague .ratio .mask:hover {
  opacity: 1;
}
section#praha .swiper-prague .ratio .mask:hover h3 {
  transform: scale(1);
}
section#procPrijit .foto-1 {
  position: absolute;
  width: 100%;
  top: calc(-100% - 16px);
  left: 0;
}
section#procPrijit .foto-2 {
  position: absolute;
  width: 100%;
  top: calc(100% + 16px);
  left: 0;
}
@media (max-width: 991.98px) {
  section#procPrijit .ratio-1x1 {
    --bs-aspect-ratio: 50%;
  }
}
section#reference .swiper-slide img {
  position: relative;
  top: 24px;
}
section#reference .swiper-slide .b-lazy {
  background-position: 248% 183%;
  background-size: 71% auto;
  background-repeat: repeat-x;
}
section#video .ratio-16x9, section#video iframe {
  border-radius: var(--rounded-xl);
}
section.vstupenky .polozka {
  background-repeat: no-repeat;
  padding-left: 25px;
  background-position: left 4px;
}
@media (min-width: 1200px) {
  section.vstupenky .normal-offer {
    padding-top: 24px;
  }
}
@media (min-width: 1200px) {
  section.vstupenky .best-offer {
    padding-bottom: 24px;
  }
}
section.vstupenky .best-offer .btc-svg {
  position: relative;
  top: -1px;
}
section.vstupenky .best-offer .btc-svg path.bg {
  fill: var(--color-dark);
}
section.vstupenky .best-offer .btc-svg path.znak {
  fill: white;
}
section.vstupenky .view-all {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 74px;
  background: rgb(var(--color-cream-rgb));
  background: linear-gradient(0deg, rgba(var(--color-cream-rgb), 1) 50%, rgba(var(--color-cream-rgb), 0) 100%);
  border-bottom-left-radius: var(--rounded-lg);
  border-bottom-right-radius: var(--rounded-lg);
}
@media (min-width: 992px) {
  section.vstupenky .view-all {
    display: none;
  }
}
section.vstupenky .view-all:hover {
  text-decoration: underline;
}
section.vstupenky .view-all svg {
  position: relative;
  top: -2px;
}
section.vstupenky .best-offer .view-all {
  background: rgb(var(--color-orange-rgb));
  background: linear-gradient(0deg, rgba(var(--color-orange-rgb), 1) 50%, rgba(var(--color-orange-rgb), 0) 100%);
}
section.vstupenky .canc {
  position: absolute;
  bottom: -13px;
  left: calc(100% - 23px);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 20px solid var(--color-dark);
  /* Šířka šipky, černá barva */
}
section.vstupenky .canc-mobile {
  position: absolute;
  top: 39px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--color-dark);
  /* Šířka šipky, černá barva */
}
section.vstupenky .dny {
  position: relative;
  z-index: 2;
}
section.vstupenky .dny::before {
  z-index: -1;
  content: "";
  width: calc(100% - 6px);
  height: 4px;
  background-color: var(--color-dark);
  position: absolute;
  top: calc(50% - 2px);
  left: 2px;
}
section.vstupenky .addItem svg {
  fill: var(--color-cream);
  position: relative;
  top: -2px;
  transition: all 0.5s;
}
section.vstupenky .addItem:hover svg {
  fill: var(--color-dark);
}
section.vstupenky .addItem.btn-dark-outline svg {
  fill: var(--color-dark);
}
section.vstupenky .addItem.btn-dark-outline:hover svg {
  fill: var(--color-cream);
}
@media (min-width: 992px) {
  section.vstupenky .order-3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 8px);
    height: 1px;
    border-bottom: 1px dashed rgba(var(--color-dark-rgb), 0.15);
  }
}
section.vstupenky .stav_prodeje_vyprodano {
  opacity: 0.5;
}
section.vstupenky.vstupenky-page .best-offer {
  padding-bottom: 0px;
}
section.vstupenky.vstupenky-page .normal-offer {
  padding-top: 0px;
}
section.vstupenky.vstupenky-page .countItemWrapper .inactive svg path {
  fill: var(--color-dark-transparent);
}
section.vstupenky.vstupenky-page .canc {
  position: absolute;
  bottom: calc(50% - 10px);
  left: 0;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--color-dark);
  /* Šířka šipky, černá barva */
  transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  section.vstupenky.vstupenky-page .canc {
    left: unset;
    right: 0;
    transform: rotate(0deg);
  }
}
@media (min-width: 992px) {
  section.vstupenky.vstupenky-page .ticketItem::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background-color: rgba(var(--color-dark-rgb), 0.07);
    top: 0;
    right: 126px;
  }
}
@media (max-width: 991.98px) {
  section.vstupenky.vstupenky-page .ticketItem {
    padding: 16px !important;
  }
  section.vstupenky.vstupenky-page .ticketItem .svgBestOffer {
    position: absolute !important;
    padding: 0 !important;
    top: 16px !important;
    right: 16px !important;
  }
}
html {
  scroll-behavior: auto !important;
}
