body {
    margin: 0;
    font-family: 'Quicksand',
        sans-serif;
    font-family: 'Roboto',
        sans-serif;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;

}

/* .flexbox-header {
    padding-top: 20px;
    display: flex;
    text-align: center;
} */

.flexbox-container {
    display: flex;
}

.flexbox-container div {
    /* background-color: #4B8EE7; */
    /* border: 1px #ccc solid;*/
    padding: 10px;
}

/* .flexbox-menu {
    min-height: 40px;
    width: 100%;
    background-color: #4B8EE7; 
} */

.pageText {
    /* max-width: 90%; */
    margin-left: 10px;
    margin-right: 10px;

}

.flexbox-item {
    min-height: 100px;
    width: 100%;
    /* background-color: #4B8EE7; */
}

.img-mobile-image {
    width: 100px;
    display: block;
}


.flexbox-deco {
    min-width: 100px;
    background-image: url(deco-right.jpg);
    align-items: flex-end;
    display: flex;
}

.flexbox-deco-blank {
    min-width: 100px;
    margin-right: 10px;
}

header {
    position: sticky;
    top: 0;
}

.center {
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 50px;
}

/* Create four equal columns that sits next to each other */
.column {
    vertical-align: middle;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media all and (max-width: 800px) {
    body {
        margin-right: 80px;
    }

    .img-responsive {
        display: none;
    }

    .img-mobile-image {
        display: none !important;
    }

    .flexbox-container {
        display: block;
        flex-direction: row;
    }

    .flexbox-item {
        width: 100%;
    }

    .flexbox-deco {
        width: 100%;
        max-height: 0px;
        visibility: hidden;
    }

    .flexbox-deco-blank {
        width: 100%;
        max-height: 0px;
        visibility: hidden;
        /* background-image: url(backg.jpg); */
    }
}

/* Menu Settings */

.topnav {
    overflow: hidden;
    background-image: url(menue.jpg);
    position: relative;
    min-height: 40px;
}

.topnav a {
    float: left;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 14px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.active {
    background-color: #4CAF50;
    color: white;
}

/* Top Button */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    opacity: 0.5;
}

#myBtn:hover {
    background-color: #555;
}

/*Cookie Consent Begin*/
#cookieConsent {
    background-color: rgba(20, 20, 20, 0.8);
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}

#cookieConsent a {
    color: #4B8EE7;
    text-decoration: none;
}

#closeCookieConsent {
    background-color: red;
    color: #000;
    display: inline-block;
    padding: 2px 4px 4px 2px;
    cursor: pointer;

    width: 12px;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#closeCookieConsent:hover {
    color: #FFF;
}

#cookieConsent a.cookieConsentOK {
    background-color: #F1D600;
    color: #000;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    margin: 0 60px 0 10px;
}

#cookieConsent a.cookieConsentOK:hover {
    background-color: #E0C91F;
}

/*Cookie Consent End*/

