/* Popup-Styles */
.easy-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.easy-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.easy-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 95%;
    max-height: 95%;
    overflow: auto;
}

.easy-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #aaa;
    z-index: 1;
}

.easy-popup-close:hover {
    color: #333;
}

.easy-popup-inner {
    padding: 20px;
}



/* Animation-Stile */
.easy-popup[data-animation="fade"] .easy-popup-content {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.easy-popup.active[data-animation="fade"] .easy-popup-content {
    opacity: 1;
}

.easy-popup[data-animation="slide"] .easy-popup-content {
    transform: translate(-50%, -40%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.easy-popup.active[data-animation="slide"] .easy-popup-content {
    transform: translate(-50%, -50%);
    opacity: 1;
}