body {
    padding: 0;
    margin: 0;
    font-family: 'Helvetica';
    background: #f9f9f9;
}

#root {}


html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

h3 {
    font-size: 19px;
}

p {
    font-size: 17px;
}

#headRow {
    width: 100%;
    min-height: 4.3rem;
    color: black;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, .1);
    padding-top: .5rem;
}

.headElements,
.legalRow {
    display: flex;
    flex-wrap: wrap;
}

.legalRow {
    justify-content: end;
    grid-gap: 1rem;
}

.checkboxMenu {
    display: none;
}

.hamburger {
    display: none;
    user-select: none;
    margin-left: auto;
}

.hamburger,
#title {
    font-size: 2rem;
}

#menu {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    grid-gap: 1.75rem;
    overflow: hidden;
    transition: max-height .5s ease, padding-top .5s ease, padding-bottom .5s ease;

}

#title {
    align-self: flex-end;
    font-weight: bold;
}

.headElement {
    align-self: flex-end;
    font-size: 1.5rem;
    font-weight: bold;
}



.legalRowElement {
    align-self: center;
    font-size: .9rem;
}


.centeredBody,
.legalRow {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

@media (max-width: 575px) {
    .centeredBody {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #menu {
        max-height: 0px;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    input[type=checkbox]:checked ~ #menu {
        max-height: max-content;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .headElement {
        align-self: flex-start;
    }

    .hamburger {
        display: block;
    }
}

@media (min-width: 576px) {
    .centeredBody {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .centeredBody {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .centeredBody {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .centeredBody {
        max-width: 1140px;
    }
}

a,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: inherit;
}

.cookie-container {
    width: 30%;
    bottom: 10px;
    border: 2px;
    padding-top: 0px;
    border-radius: 5px;
    margin-bottom: 0px;
}

.cookie-container button {
    font-family: 'Helvetica';
    background-color: #FF0000;
    color: white;
    border: 0px;
    font-size: 19px;
    border-radius: 5px;
    font-weight: bold;
}

.dialog-footer {
    display: flex;
    justify-content: flex-end;

}

@media (max-width: 767px) {
    .cookie-container {
        width: calc(100% - 32px);
        border: 2px;
        border-color: green;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: darkgrey;
        border-radius: 0px;
    }
}
