.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-y: hidden;
}

.messagebox {
    width: 60%;
    min-width: 500px;
    background-color: #E95713;
    background: -webkit-gradient(linear,left top, right top,from(#E95713),to(#FAB631));
    background: -webkit-linear-gradient(left,#E95713,#FAB631);
    background: -o-linear-gradient(left,#E95713,#FAB631);
    background: linear-gradient(to right,#E95713,#FAB631);
    border-radius: 4px;
    color: white;
    padding: 40px;
}

    .messagebox h1 {
        color: white;
    }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin: 0;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /*min-width: 550px;*/
}

h1, h2 {
    font-family: Comfortaa, sans-serif;
    font-weight: 500;
    color: white;
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 3.2rem;
}

main {
    margin: 1rem;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    color: white;
    font-family: Comfortaa, sans-serif;
}

.cover {
    position: absolute;
    margin: 0;
    background: url(https://cdn.krabbl.nl/Krabbl/cover2.jpg);
    background-size: cover;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cover-sub {
    font-size: 2rem;
}

header {
    height: 100px;
    width: 100%;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: space-between;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    font-size: 1.2rem;
}

.header-left {
    padding-top: 2rem;
    padding-left: 4rem;
    font-family: Comfortaa, sans-serif;
}

    .header-left a {
        text-decoration: none;
        color: white;
    }

.header-right {
    padding-top: 2rem;
    padding-right: 4rem;
}

    .header-right a {
        text-decoration: none;
        font-size: 1.2rem;
        color: white;
    }

        .header-right a:hover {
            text-decoration: underline;
        }

.jwtwrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.jwt {
    max-width: 1200px;
    word-break: break-all;
}
.jwtmenu {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    color: white;
}
.jwtmenu:hover {
    color:white;
}
.payload {
    max-width: 1254px;
    word-break: break-all;
}
.privacy {
    max-width: 1200px;
    word-break: break-word;
    margin-left:3rem;
}

footer {
    height: 3rem;
    width: 100%;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    font-size: 0.9rem;
}

    footer a {
        text-decoration: none;
        color: white;
    }

        footer a:hover {
            text-decoration: underline;
            color: white;
        }
.footerwrapper {
    flex-wrap: wrap-reverse;
}

.userdetails {
    padding-top: 2rem;
    padding-right: 2rem;
    font-size: 1.2rem;
    display:inline;
}

.addedclaim {
    color: #fff795;
}

.noaccess {
    color: #E70020;
}

.wrap {
    word-wrap: break-word;
}

.jwtio {
    height: 1.7rem;
}

.wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

.scrollcontainer {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: white rgba(0,0,0,0.1);
    margin-right:1rem;
}

.scrollcontainer > div> ul {
    word-break: break-all;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}

::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 4px;
}

@media only screen and (max-width: 1024px) {
    .userdetails {
        display: none;
    }
    .header-left {
        padding-left: 2rem;
    }
    .header-right {
        padding-right: 2rem;
    }
}


@media only screen and (max-width: 640px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: calc(1.1rem + .3vw);
    }
    .cover-sub {
        font-size: 1rem;
    }
    header {
        font-size: 1rem;
    }
    .header-left {
        padding-left: 2rem;
    }
    .header-right {
        padding-right: 2rem;
    }
    .header-right a {
        font-size: 1rem;
    }
    .userdetails {
        display:none;
    }
}

@media only screen and (max-width: 400px) {
    body {
        font-size: 0.8rem;
    }
    h4 {
        font-size: calc(1rem + .3vw);
    }
    .header-left {
        padding-left: 2rem;
    }
    .header-right {
        padding-right: 2rem;
    }
    .header-right a {
        font-size: 0.9rem;
    }
    .privacy {
        margin-left: 1.2rem;
    }
    .scrollcontainer {
        max-width:340px;
    }
    .userdetails {
        display:none;
    }
}