.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	z-index: 1;
}

.modal a {
    color: #2394a6;
}

.modal.open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.modal-bg {
    position: absolute;
    background: #5fa0b0;
    opacity: 0.8;
    width: 100%;
    height: 100%;
}

.modal-container {
    border-radius: 10px;
    background-color: #c2d065;
    background-image: url("../img/bg_gelb.jpg");
    position: relative;
    padding: 12px 36px 32px;
    margin: 0 16px;
    max-width: 680px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-close {
    position: absolute;
    padding: 0;
    right: 15px;
    top: 15px;
    outline: none;
    appearance: none;
    color: #5fa0b0;
    background: none;
    border: 0px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close img {
    width: 28px;
    height: auto;
}
