.dvd-cover img {
    width: auto;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Fügt eine Übergangsanimation hinzu */
    cursor: pointer; /* Ändert den Mauszeiger zu einem Zeigefinger, wenn Sie über das Bild fahren */
    max-height: 350px;
}

@media (max-width: 1280px) {
  .dvd-cover img {
    width: auto;
    height: 100vh;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    max-height: 500px;
}
}
.dvd-cover-full {
  position: relative;
}
.dvd-cover-full img {
    border-radius: 5px;
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Fügt eine Übergangsanimation hinzu */
    cursor: pointer; /* Ändert den Mauszeiger zu einem Zeigefinger, wenn Sie über das Bild fahren */
}
@media screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .dvd-cover-full img {
        /* Experimentieren Sie mit den Werten, um die beste Darstellung zu erzielen */
        height: auto; 
        max-height: 500px;
    }
}

/* Zoom-Effekt beim Darüberfahren mit der Maus */
.dvd-cover img:hover {
    transform: scale(1.05); /* Das Bild wird um 5% vergrößert */
    box-shadow: 0 7px 14px 0 rgba(0,0,0,0.22), 0 6px 20px 0 rgba(0,0,0,0.19) !important; /* Erhöhter Schatten beim Darüberfahren */
}

/* Optional: Effekt beim Klicken */
.dvd-cover img:active {
    transform: scale(1); /* Das Bild kehrt zu seiner normalen Größe zurück, wenn es geklickt wird */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.16), 0 3px 10px 0 rgba(0,0,0,0.13) !important; /* Verringert den Schatten beim Klicken */
}
  .dvd-cover {
    position: relative;
  }
  
  .fsk-player, .anzahl-player {
    position: absolute; /* Absolute Positionierung */
    bottom: 0px; /* Position von unten des Elternelements */
    left: 10px; /* Position von links des Elternelements */
    background-color: rgba(0, 0, 0, 0.5); /* Schwarzer Hintergrund mit 50% Deckkraft für bessere Lesbarkeit */
    padding: 5px; /* Etwas Polsterung für Optik */
    border-radius: 5px; /* Abgerundete Ecken */
}

  .anzahl-player {
      bottom: 40px; /* Ein bisschen höher, um Platz für den FSK-Text zu machen */
  }
  
  .fsk-12 {
    background: #28a745;
  }  
  .fsk-16 {
    background: #007bff;
  }  
  .fsk-18 {
    background: #dc3545;
  }

.vr-alert {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;  /* Beispielhöhe, kann angepasst werden */
}

.vr-alert .left {
    position: absolute;
    left: 10px;
}

.vr-alert .right {
    position: absolute;
    right: 10px;
}

.rating > * {
  float: right;
}
@-webkit-keyframes pulse {
  50% {
    color: #5e5e5e;
    text-shadow: 0 0 15px #777777;
  }
}
@keyframes pulse {
  50% {
    color: #5e5e5e;
    text-shadow: 0 0 15px #777777;
  }
}
.rating label {
  display: block;
  position: relative;
  cursor: pointer;
}

 
.rating label:after {
  font-family: "Font Awesome 5 Free"; font-weight: 900;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  content: "\f729";
  color: #444;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 50px;
  -webkit-animation: 1s pulse ease;
          animation: 1s pulse ease;
}




.rating label:hover:after {
  color: #5e5e5e;
  text-shadow: 0 0 15px #5e5e5e;
}
.rating input {
  display: none;
}
.rating input:checked + label:after,
.rating input:checked ~ label:after {
  font-family: "Font Awesome 5 Free"; font-weight: 900;
  content: "\f729";
  color: #F9BF3B;
  text-shadow: 0 0 20px #F9BF3B;
}

.locked-slot {
    opacity: 0.5;
    pointer-events: none; /* Dies verhindert, dass der Benutzer darauf klicken kann */
}

.summary-header {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.summary-detail {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.summary-label {
    font-weight: bold;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-check:checked + .btn {
  background-color: #007bff; /* Die Standard-Bootstrap-Primärfarbe */
  color: #05a5a4;
}
.highlight {
    font-weight: bold;
    color: #d63384; 
}  
  
.payment-option {
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
}

.payment-label {
    display: block;
    padding: 10px 15px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    padding-left: 50px;
}

.payment-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.payment-label img {
    margin-right: 10px;
    vertical-align: middle;
}

.payment-name {
    font-weight: bold;
}

.payment-option input[type="radio"] {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.payment-option input[type="radio"]:checked + .payment-label {
    background-color: #e4e4e4;
    border-color: #bbb;
}


.goboo_calendar .goboo_calendar .goboo_day .goboo_slot span.goboo_slot_button {
    color: #706c6c !important;
}

.goboo_calendar .goboo_calendar .goboo_day .goboo_slot .goboo_slot_button .goboo_slot_mode .goboo_slot_mode_inner {
    position: absolute;
    display: block;
    top: -17px;
    left: -78px !important;
    width: 200px;
    padding: 3px 20px;
    transform: rotate(-45deg);
    transform-origin: 100% 0;
}
