.app-imprint-container {
    position: fixed;
    top: 3em;
    left: 0;
    right: 0;
    bottom: 2em;
    z-index: 2;
}

.app-imprint-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 1s;
}

.app-imprint-wrapper.visible {
    overflow-y: scroll;
    background-color: rgba(0, 0, 0, .5);
    z-index: 50;
}

.app-imprint-content {
    width: 45%;
    margin: 10vh auto;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.app-imprint-wrapper.visible .app-imprint-content {
    z-index: 50;
}

div.imprint-header,
div.imprint-content,
div.imprint-footer {
    padding: 1em 2em;
}

div.imprint-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
}

div.imprint-footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid #E5E5E5;
}

div.imprint .close-imprint {
    cursor: pointer;
}

div.imprint span.close-imprint {
    font-size: 1.72em;
    color: #CCCCCC;
}

div.imprint span.close-imprint:hover {
    font-weight: bold;
    color: #AAAAAA;
}

div.imprint button.close-imprint {
    color: #666666;
    font-size: 1em;
    background-color: #EEEEEE;
    border: none;
    border-radius: 3px;
    padding: .3em .5em;
}

div.imprint h1 {
    font-size: 1.2em;
}

div.imprint h2 {
    font-weight: bold;
    margin: 2em 0 .5em;
}

div.imprint p {
    padding-left: 1em;
    margin-bottom: 1em;
}

@media (max-width: 700px) {

    .app-imprint-content {
        width: 100%;
        margin: 0;
        border: none;
        border-radius: 0;
    }
}
