.unclickable {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:100;
}
.info-modal-background {
    position: absolute;
    border: 1px solid black;
    border-radius: 3px;
    box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.3);
    z-index: 200;
}
.info-modal {
    position: absolute;
    width: 400px;
    border: 3px solid #333;
    border-radius: 5px;
    background-color: white;
    z-index: 300;
}

.info-modal-title {
    padding: 0 0 0.5em 0;
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #ddd;
}
.info-modal-body {
    padding: 0.5em;
    text-align: left;
    color: black
}

.info-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    border-top: 1px solid #ccc;
}
/* 
.info-modal button:not(.info-modal-close) {
    margin: 0.5em;
    border: 1px solid #333;
    background-color: #f0f0f0;
    padding: 0.25em 1.25em;
    cursor: pointer;
} */
.info-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: hsl(0, 100%, 95%);
    padding: 0.5em 0.75em;
    cursor: pointer;
    outline: none;
    z-index: 251;
}
.info-modal-close:hover {
    color: white;
    background-color: hsl(0, 100%, 65%);
}
/* ----------- */

.info-modal-pfeil-rechts {
    background-color: #fff;
    border: none;
    border-top: 3px solid black;
    border-right: 3px solid black;

    position: absolute;
    top: 50%;
    right: 0;
    width: 1.5em;
    height: 1.5em;
    transform: translateX(60%) translateY(-50%) rotate(45deg);
    z-index: 250;
}
.info-modal-pfeil-links {
    background-color: #fff;
    border: none;
    border-top: 3px solid black;
    border-right: 3px solid black;

    position: absolute;
    top: 50%;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    transform: translateX(-60%) translateY(-50%) rotate(-135deg);
    z-index: 250;
}
.info-modal-pfeil-oben {
    background-color: #fff;
    border: none;
    border-top: 3px solid black;
    border-right: 3px solid black;

    position: absolute;
    top: 0;
    right: 50%;
    width: 1.5em;
    height: 1.5em;
    transform: translateX(50%) translateY(-60%) rotate(-45deg);
    z-index: 250;
}

