.modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: calc(100% - 0px);
    height: 100%;
    overflow: auto;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s;
}

.modal-content {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #fff;
    border-left: 1px solid #e8eaed;
    width: 100%;
    border-radius: 4px;
    height: calc(100% - 0px);
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.6s;
    animation-name: slideIn;
    animation-duration: 0.6s;
}

.modal-header {
    border-radius: 0px 0px 0px 0px;
    border-bottom: 1px solid #f9f9f9;
    background-color: undefined;
    background-color: #fff;
    color: undefined;
    color: var(--main-font);
    display: inherit;
    align-items: center;
}

.modal-header-links {
    display: block;
    text-align: left;
    float: left;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px 11px;
}

.modal-header-rechts {
    display: block;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px 11px;
}

.modal-inhalt {
    margin: 8px;
    border: 1px solid #e8eaed;
    box-shadow: none;
    border-radius: 4px;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {}



.center-modal {
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    padding-top: 20%;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
}

.center-modal-content {
    margin: auto;
    border-radius: 10px;
    background-color: #fefefe;
    width: 55rem;
    height: 25rem;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    box-shadow: 0 2px 100px 1px rgba(0,0,0,0.4);
    overflow: hidden;




}




@-webkit-keyframes slideIn {
    from {
        right: -300px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        right: -300px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}