.ostern_close_btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 0;
    padding: 0.5rem 1rem;
}

.ostern_close_btn_background {
    background-color: #9c2572;
}

.ostern_close_btn:hover,
.ostern_close_btn:focus {
    color: #9c2572;
    text-decoration: none;
    cursor: pointer;
}

.wrapper_padding {
    padding: 1rem;
}

.modal-content {
    font-family: sans-serif;
}

.modal-content h1 {
    margin-bottom: 1rem;
}

.responsive_image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.max_height {
    max-height: 80vh;
}

#ostern2026 .modal-content div {
    padding: 0;
}

.ostern_images_container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ostern_images_container img {
    width: 100%;
}

.scroll_hint {
    
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: .5rem 1.2rem !important;
    background-color: #9c2572;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    z-index: 10001;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.scroll_hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll_hint_text {
    font-family: sans-serif;
}

.scroll_hint_arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
