/* cmsms stylesheet: custom_styles modified: %-17.%-06.2026 11:27:40 */
section.section.section-default:nth-of-type(odd) {
    background-color: var(--grey-100); /* Světle šedá */
}

section.section.section-default:nth-of-type(even) {
    background-color: var(--light); /* Bílá */
}

.blog-section section.section.section-default {
    background-color: var(--light); /* Bílá */
}

section.season-notification h2 {
  padding: 4px;
}

section.season-notification strong {
 letter-spacing: 0px;
 background:#ff002a;
 padding-left:10px;
 padding-right:10px;
}

@media (max-width: 575px) {
  .season-notification h2 {
    font-size: 1.5em;
  }
}

.btn-pulsing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.owl-centered .owl-wrapper {
  display: table !important;
}
.owl-centered .owl-item {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
.owl-centered .owl-item > div {
  text-align: center;
  padding: 0 0px;
  margin: 0 10px;
}
.owl-centered .owl-item > div > img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.owl-centered .owl-item:hover > div > img {
  filter: grayscale(0%);
}

.rev_slider .caption, .rev_slider .tp-caption {
    text-shadow: 4px 4px 15px black;
}

.hp-category-links > span {
  margin-left: 5px;
  color: var(--primary--100);
}

.hp-category-links > span:first {
  margin-left: 0px;
}

.hp-badge-navigation-btn {
  transform: translate(-50%, -50%);
}

.portfolio-homepage .portfolio-list .portfolio-item {
    margin-bottom: 10px;
}

@media (max-width: 440px) {
  #header .header-nav-features .header-nav-features-dropdown.header-nav-features-dropdown-mobile-fixed {
    /* position: absolute; */
    top: auto;
  }

  .hp-badge-navigation-btn {
    font-size: 50%;
  }
}
.card .text-center {
    height: 300px;
}
.card-img, .card-img-bottom, .card-img-top { */
    width: 100%;
    height: 100%;
}
.card-img, .card-img-top {
    object-fit: contain;
}

#footer.footer-texts-more-lighten a:not(.btn):not(.no-footer-css).active {
  text-decoration: none;
  color: var(--light);
}

/* Základní styl pro box na desktopu */
  .custom-border-box {
    position: relative;
    border: 2px solid #a80f24;
    border-left: none; /* Otevřená levá strana */
    min-height: 180px;
  }

  /* Horní zobáček na desktopu */
  .custom-border-box::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -270px;
    width: 275px;
    height: 60px; /* Výška svislého zobáčku */
    border-top: 2px solid #a80f24;
    border-left: 2px solid #a80f24;
  }

  /* Spodní zobáček na desktopu */
  .custom-border-box::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: -270px;
    width: 275px;
    height: 60px; /* Výška svislého zobáčku */
    border-bottom: 2px solid #a80f24;
    border-left: 2px solid #a80f24;
  }

@media (max-width: 1200px) {
    .custom-border-box {
      border-left: 2px solid #a80f24 !important; /* Na mobilu box kompletně uzavřeme */
      margin-top: 20px;
    }
    /* Na mobilu skryjeme přesahující zobáčky, aby netrčely z displeje */
    .custom-border-box::before,
    .custom-border-box::after {
      display: none !important;
    }
  }
