﻿/* ******************************* */
/* Link-Liste auf Übersichts-Seite */
/* ******************************* */
.overview-link-list {
    margin-top: 20px;
    margin-bottom: 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}
.overview-link-list > div {
    width: 45%;
    text-align: center;
}
.overview-link-list > div a {
    white-space: nowrap;
    display: block;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* Icons */
a.icon:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    padding-right: 10px;
}
a.icon.school:before {
    content: '\f549';
}
a.icon.students:before {
    content: '\f0c0';
}
a.icon.tests:before {
    content: '\f70c';
}
a.icon.report:before {
    content: '\f570';
}
a.icon.documents:before {
    content: '\f15b';
}
a.icon.background:before {
    content: '\f05a';
}
a.icon.complete:before {
    content: '\f023';
}
a.icon.lock:before {
    content: '\f023';
}

/* Responsive */
@media screen and (max-width: 800px) {
    .overview-link-list {
        display: block;
    }
    .overview-link-list > div {
        width: 100%;
    }
    .overview-link-list > div:not(:first-child) {
        padding-top: 35px;
    }
    .overview-link-list > div a {
        white-space: normal;
    }
}
@media screen and (max-width: 400px) {
    .overview-link-list > div a.button.weiter {
        padding: 15px 15px !important;
        min-width: 100% !important;
    }    
    .overview-link-list a.icon:before {
        display: block;
        padding: 0 0 7px 0;
    }    
}



/* ******************************* */
/* Modale Warte-Fenster            */
/* ******************************* */
#modalWindowContainer {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

#modalWindowWaitForDownload {
    width: 80%;
    max-width: 800px;
    margin: 75px auto 0 auto;
    text-align: center;
    padding: 25px;
}

#modalWindowWaitForDownload h2,
#modalWindowWaitForDownload p {
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

#modalWindowWaitForDownload p {
    color: #000 !important
}

#modalWindowWaitForDownload img {
    padding: 45px 0;
}}