:root {
    --backgroundColor: hsla(222,11%,33%,0.21);
}
html {
    font-size: 16px;
}

body {
    margin: 0 !important;
    background-color: var(--backgroundColor); /*The "light grey" background*/
    color: hsl(0,0%,0%);
    font-style: normal;
    
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a, blockquote {
    color: #272727;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Lato",sans-serif;
}

body, input, button, select, textarea {
    font-family: "Lato",sans-serif;
}
/*Header design content*/
.Header {
    background-color: white;
    height: 100px;
    padding: 0px 15px 0px 15px;
    display: flex;
    justify-content: space-between;
}

    .Header a {
        text-decoration: none;
        color: black;
    }

    .Header .items {
        display: flex;
        z-index: 2;
    }


.Login-status {
    color: white;
    width: 100px;
}

.banner {
    height: 25%;
    background-repeat: round;
}

    .banner .banner-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

.banner-title {
    color: white;
    display: flex;
    margin-left: 5rem;
    margin-top: 2rem;
}
/*The content of the items*/
.Header .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;
    border-end-end-radius: 25px;
    border-end-start-radius: 25px;
}

    /*The subitems display formats*/
    .Header .dropdown-content a {
        color: black;
        padding: 18px 16px;
        text-decoration: none;
        display: block;
    }

.Header .collapsible-content a:hover {
    background-color: forestgreen;
    color: white;
}
/*the dropdown itself*/
.Header .dropdown {
    position: relative;
}

.Header .dropbtn {
    height: 100%;
    background-color: transparent;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

    .Header .dropbtn div {
        margin-left: 1px;
        font-size: 18px;
        margin-bottom: 10px;
    }

.Header .dropbtn-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: var(--backgroundColor);
    color: forestgreen;
    border-radius: 25px;
    font-weight: bold;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
header .dropdown:hover .dropbtn {
    color: forestgreen;
    font-weight: bold;
}

.Header .HomeButton {
    margin-right: 15px;
    background-color: transparent;
    border: none;
}

    .Header .HomeButton:hover .HomeButtonItem {
        color: forestgreen;
        cursor: pointer;
    }

    .Header .HomeButton .HomeButtonItem {
        color: black;
        padding: 5px;
        max-width: 15%;
        margin-right: 15px;
    }

.Header .dropdown a {
    pointer-events: auto;
}

.Header .dropdown-content .dropdown-content-toggle {
    display: none;
}

@media(min-width: 1301px) {
    .wrap-collabsible {
        display: none;
    }

    .Header .Items a {
        display: block;
    }

    #DropdownMenu {
        display: none;
    }

    .login {
        display: block;
    }
}

@media(max-width: 1300px) {
    footer .footerItems {
        display: none !important;
    }

    .Header .Items {
        display: none;
    }

    .Header .collapsible {
        display: block;
        background-color: #0c8d1b;
        color: white;
        cursor: pointer;
        padding: 18px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        border-radius: 15px 15px 0 0;
        z-index: 1;
    }

    .Header {
        flex-direction: column;
        height: 175px;
    }

        .Header .Items {
            flex-direction: column;
            width: 25%;
        }

            .Header .Items .collapsible {
                border-radius: unset;
            }

        .Header .dropdown-content {
            /*right: -150px;*/
            /*max-width: 170px; new*/
            /*top: 0;*/
            overflow: hidden;
            /*border-radius: 0 25px 25px 25px; new*/
            position: unset;
        }

            .Header .dropdown-content a {
                pointer-events: auto !important;
                /*right: -225px;*/
            }

            .Header .dropdown-content .dropdown-content-toggle {
                display: flex;
            }

        .Header .dropdown {
            display: none;
        }
}

@media(max-width: 1150px) {
    .Header .Items {
        width: 30%;
    }
}

@media(max-width: 950px) {
    .Header .Items {
        width: 40%;
    }
}

@media(max-width: 750px) {
    .Header .Items {
        width: 50%;
    }
}

@media(max-width: 600px) {
    .Header .Items {
        flex-direction: column;
        background-color: white;
        width: 100%;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        z-index: 2;
    }

    .Header .dropdown {
        justify-content: unset;
        /*height: 40px;*/
    }

    .Header .dropdown-content {
        right: -100px;
        top: 15px;
        border-radius: 0 25px 25px 25px;
    }
}

/*footer design content*/
footer {
    box-shadow: 2px -10px 20px lightgrey;
    width: 100%;
    height: 150px;
    bottom: 0;
    background-color: white;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 1;
    flex-direction: column;
}

    footer .footerItems {
        padding: 15px;
        display: flex;
    }
    /*placement of the items*/
    footer .Items {
        padding: 5px;
        max-width: 210px;
        margin-right: 15px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    /*The content of the items*/
    footer .dropdown-content {
        display: none;
        position: absolute;
        bottom: 35px;
        background-color: #f1f1f1;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 2;
        border-start-start-radius: 25px;
        border-start-end-radius: 25px;
    }

        /*The subitems display formats*/
        footer .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }
    /*the dropdown itself*/
    footer .dropdown {
        position: relative;
    }

    footer .dropbtn {
        background-color: transparent;
        color: black;
        font-weight: bolder;
        border: none;
    }

    footer .Items:hover .dropbtn {
        cursor: pointer
    }

    footer .Items:hover .reddot {
        display: flex;
    }

.reddot {
    content: '';
    background: #f00;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    left: 10px;
    top: 10px;
    display: none;
}

.copyright {
    color: rgba(0,0,0,0.35);
}

@media(max-width: 980px) {
    footer {
        height: 350px;
    }

        footer .footerItems {
            flex-direction: column;
        }

        footer .dropdown-content {
            bottom: 35px;
        }
}

/*Pagination*/
.pagination {
    margin: 20px 0 20px;
}

    .pagination ul {
        text-align: center;
        font-size: 0;
    }

    .pagination li {
        display: inline-block;
        margin: 0 2px;
        vertical-align: middle;
    }

        .pagination li > span {
            background-color: green;
            color: #fff;
            cursor: default;
            border-radius: 5px;
        }

        .pagination li > a, .pagination li > span {
            display: block;
            width: 35px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            color: var(--mainColor);
        }

            .pagination li > a:hover, .pagination li > span:hover {
                background-color: blue;
                color: #fff;
                border-radius: 5px;
            }

        .pagination li > span {
            color: #fff;
        }

/* Form design */

.Form-Container {
    display: flex;
    justify-content: center;
}

    .Form-Container form {
        padding: 15px;
        border: 1px solid black;
    }

    .Form-Container .input-group {
        display: flex;
        flex-direction: column;
        width: 300px;
        margin-top: 5px;
    }

        .Form-Container .input-group textarea {
            min-height: 150px;
        }
/*Other design content*/
.container {
    width: 100% !important;
}


    .container .row {
        display: flex;
    }

        .container .row .column {
            margin-right: 30px;
        }

@media(max-width: 1000px) {
    .container .row .column {
        margin-right: 0;
    }

    .filter-container .filter-options {
        flex-direction: column;
    }

    .filter-options .filter-options div {
        margin-right: 0;
    }
}

.filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .filter-container .filter-options {
        display: flex;
        margin-bottom: 25px;
    }

        .filter-container .filter-options div {
            margin-right: 15px;
        }

    .filter-container label {
        margin-left: 25px;
    }

    .filter-container .filterButton {
    }

img {
    min-width: 100px;
    max-width: 100%;
    max-height: 100%;
}

.container-fluid {
    padding: 15px;
}

.Grid-Container {
    margin: 30px;
    background-color: white;
    box-shadow: 2px 2px 20px grey;
    border: 1px solid black;
    border-radius: 5px;
    padding: 60px;
}

.grid-item-container {
    display: flex;
}

.Display-Grid-Container {
    /*display: flex;*/
    display: grid;
    grid-template-columns: 100px 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    /*grid-auto-rows: 1fr;*/
    margin-bottom: 20px;
}

    .Display-Grid-Container a, .Display-Grid-Container p {
        word-break: break-word;
    }

.projektor {
    grid-template-columns: 100px 1fr 1fr;
    width: 100%;
    grid-gap: 1px;
    background: black;
    border: 2px solid black;
    margin-bottom:0;
}
.Emner {
    width: 100%;
    grid-gap: 1px;
    background: black;
    border: 2px solid black;
    margin-bottom: 0;
}
.grid-item-toggle {
    display: none;
}

.Display-Grid-Container .grid-item {
    display: flex;
    padding: 5px;
    flex-direction: column;
    background: white;
}

.Display-Grid-Container .title {
    font-size: large;
    font-weight: bold;
    background: white;
    padding: 5px;
    border-bottom: 1px solid black;
}

.Display-Grid-Container .grid-item-container {
    display: flex;
}
.bigHidden {
    display: none;
}
SmallHidden {
    display: flex;
}

@media(max-width: 1000px) {
    .Emner, .Ember2{
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-bottom: 15px;
    }
        .bigHidden {
        display: flex;
        flex-direction: column;
    }
        .bigHidden .title {
            border-bottom: 2px solid black;
        }
    .SmallHidden {
        display:none;
    }

    .Grid-Container {
        padding: 5px;
        margin: 10px;
    }

    .grid-item-toggle {
        display: block;
    }
}

@media(max-width: 600px) {

    .Emner, .Emner2{
        grid-template-columns: 1fr 1fr;
    }
}

.content {
    display: flex;
    justify-content: center;
}


input[type='checkbox'] {
    display: block;
}
.umbraco-forms-field-wrapper {
    display:flex;
}

.wrap-collabsible label {
    margin: 0;
}

.wrap-collabsible label {
    margin: 0;
}

.lbl-toggle {
    display: block;
    font-weight: bold;
    font-family: monospace;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
    color: black;
    background: #dfdddd;
    cursor: pointer;
    transition: all 0.25s ease-out;
    border: 0.5px solid black;
}

    .lbl-toggle:hover {
        color: #FFF;
        background-color: #0c8d1b;
    }

.toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 350px;
}

.toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
    display: flex;
    flex-direction: column;
    background: #dfdddd;
    border-bottom: 1px solid rgba(0, 105, 255, .45);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: .5rem 1rem;
}

.collapsible-content a {
    height: 40px;
    align-items: center;
    display: flex;
}
