:root {
    --host-footer-height: 110px;
    --guest-footer-height: 50px;
    --host-button-height: 50px;
}

html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    background-color: #F1F1F1;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.host .navbar {
    background-color: var(--main-bg-color) !important;
    padding-left: 20px;
    padding-right: 20px;
}

    .host .navbar.fixed-menu {
        -webkit-animation-name: none;
        animation-name: none;
        -webkit-animation-duration: 0;
        animation-duration: 0;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    .host .navbar .navi {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

.host .navbar-light .navbar-nav .nav-link.current {
    border: 2px solid white;
    border-radius: 36px;
    padding: 6px 15px 6px 15px;
}

.host .error-page {
    padding: 20px;
}

.host #page-wrapper {
    height: 100vh;
    padding-top: 90px;
}

.host #page {
    height: 100%;
}

.host #content {
    background-color: #f1f1f1;
    height: calc(100% - var(--host-footer-height));
    overflow: auto;
}

.guest #content {
    height: calc(100% - var(--guest-footer-height));
}

.host #content section {
    height: 100%;
}

.host #footer {
    padding: 20px;
    max-height: var(--host-footer-height);
    height: var(--host-footer-height);
    color: white;
    font-size: 25px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.50);
    box-shadow: 0 0 10px rgba(0,0,0,.50);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}


.guest #footer {
    max-height: var(--guest-footer-height);
    height: var(--guest-footer-height);
}

@media screen and (max-width: 767px) {
    .guest #content {
        height: calc(100% - 40px);
    }

    .guest #footer {
        max-height: 40px;
        height: 40px;
    }

    .guest .footer .sub-heading {
        font-size: 12px;
    }
}

/*.host #footer #additional-links {
        color: white;
    }*/

.host #footer #additional-links ul {
    margin: 0;
    text-align: right;
}

.host #footer #additional-links li {
    list-style: none;
}

    .host #footer #additional-links li a {
        margin-right: 5px;
        text-decoration: none;
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
    }

.host .container:not(.navi) {
    padding: 20px;
}

.host .container-wide {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.host .container-full {
    padding: 20px 0;
}

@media screen and (max-width: 767px) {

    .host .container:not(.navi),
    .host .container-wide,
    .host .container-full {
        padding: 0;
    }
}

.host h2 {
    background-image: linear-gradient( 135deg, rgb(249, 119, 148) 0%, rgb(98, 58, 162) 100%);
    font-family: 'Montserrat', sans-serif;
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
}

.host #bg-header .bg-header {
    margin-top: 40px;
    height: auto;
    background-image: none;
    min-height: 300px;
}

.host.guest #bg-header .bg-header {
    margin-top: 80px;
}

.host .qr-code-col {
    text-align: center;
}

.host .qr-code {
    display: inline-block;
    /*border: 1px solid #c3c3c8;*/
    border-radius: 4px;
    -webkit-box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    -moz-box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    background-color: white;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    padding: 20px;
}

.host .title {
    text-align: center;
    width: 100%;
}

.host .form-description {
    padding: 20px;
    margin: 20px 0;
}

.host .edit-form-wrapper,
.guest .edit-form-wrapper {
    -webkit-box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    -moz-box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    background-color: #ffffff;
    border-radius: 4px;
    padding: 0;
}

.guest .edit-form-wrapper {
    margin-bottom: 40px;
}

.host .tabstrip-container .edit-form {
    display: flex;
    justify-content: center;
    height: 100%;
}

.host .tabstrip-container .inner-edit-form {
    margin: 20px 0;
    padding-right: 20px;
    height: calc(100% - 25px - var(--host-button-height));
    width: 100%;
    max-width: 800px;
    overflow-y: auto;
    overflow-x: hidden;
}

.guest .edit-form {
    padding: 20px;
}

.guest .inner-edit-form {
}

.host:not(.guest) .edit-form .button-wrapper {
    max-width: 180px;
    height: var(--host-button-height);
}

#host-document-link {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

    #host-document-link a:before {
        content: "\f01e";
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        margin-right: 10px;
        font-size: 23px;
    }

.edit-form-wrapper.guest-documents-wrapper {
    padding: 50px;
    height: 100%;
    overflow-y: auto;
}


    .edit-form-wrapper.guest-documents-wrapper li a:before {
        content: "\f56d";
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        margin-right: 10px;
    }

.here-doc-type-list {
    position: relative;
    width: 100%;
    max-width: 780px;
    border: 1px solid var(--main-bg-color);
    padding: 18px;
    margin-bottom: 20px;
}

    .here-doc-type-list ul {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .here-doc-type-list li {
        list-style-type: none;
        height: 100px;
        background-color: var(--main-bg-color);
        color: white;
        border-radius: 20px;
        font-weight: 700;
        padding: 20px;
        display: inline-flex; /* Breite auf Dateinamen anpassen */
        align-items: flex-end;
        margin: 5px;
        max-width: 215px;
    }

        .here-doc-type-list li a {
            width: 100%;
        }

.here-doc-type-title {
    position: absolute;
    top: -10px;
    padding: 0 10px;
    background: white;
    color: var(--main-bg-color);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.here-doc-list-item {
    position: relative;
}

    .here-doc-list-item a:hover {
        color: white;
    }

.here-doc-remove {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
}

    .here-doc-remove a:hover {
        color: red;
    }

.message-success {
    color: var(--main-bg-color);
}

.message-error {
    color: red;
}
