/*** CSS-Variables ***/
:root {
    --pure-white: 255, 255, 255; /* rgba(255, 255, 255, 1), #ffffff */
    --pure-black: 0, 0, 0; /* rgba(0, 0, 0, 1), #000000 */    
    --text-dark: 75, 75, 75; /* rgba(75, 75, 75, 1), #4b4b4b */
    --light-gray: 244, 244, 244; /* rgba(244, 244, 244, 1), #f4f4f4 */
    --successful: 0, 204, 0; /* rgba(0, 204, 0, 1), #00cc00 */
    --error: 204, 0, 0; /* rgba(204, 0, 0, 1), #cc0000 */
}



/*** Fonts ***/



/*** Default ***/
/*
# Default Font-Size:
20px = 1rem
Bsp.: 40px : 20px = 2rem
*/
html {
    font-size: 20px;
}

html * {
    padding: 0;
    margin: 0;
    line-height: 1;
}

body.cncheck {
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgba(var(--text-dark), 1);
    padding-top: 200px;
    background-color: rgba(var(--pure-white), 1);
}

body.cncheck h1 {
    font-size: 1.8rem;
    padding-bottom: 1rem;
}

body.cncheck h2 {
    font-size: 1.6rem;
    padding-bottom: 1rem;
}

body.cncheck h3 {
    font-size: 1.4rem;
    padding-bottom: 1rem;
}

body.cncheck h4 {
    font-size: 1.2rem;
    padding-bottom: 1rem;
}

body.cncheck h5 {
    font-size: 1rem;
    padding-bottom: 0.75rem;
}

body.cncheck h6 {
    font-size: 0.8rem;
    padding-bottom: 0.5rem;
}

body.cncheck h1,
body.cncheck h2,
body.cncheck h3,
body.cncheck h4,
body.cncheck h5,
body.cncheck h6 {
    font-weight: 600;
}

body.cncheck p {
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 0.75rem;
}

body.cncheck h1,
body.cncheck h2,
body.cncheck h3,
body.cncheck h4,
body.cncheck h5,
body.cncheck h6,
body.cncheck p {
    line-height: 1.4;
}

body.cncheck h1,
body.cncheck h2,
body.cncheck h3,
body.cncheck h4,
body.cncheck h5,
body.cncheck h6 {
    color: rgba(var(--text-dark), 1);
}

body.cncheck div,
body.cncheck h1,
body.cncheck h2,
body.cncheck h3,
body.cncheck h4,
body.cncheck h5,
body.cncheck h6,
body.cncheck p,
body.cncheck li,
body.cncheck dt,
body.cncheck dd,
body.cncheck th,
body.cncheck td {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

body.cncheck h1:last-child,
body.cncheck h2:last-child,
body.cncheck h3:last-child,
body.cncheck h4:last-child,
body.cncheck h5:last-child,
body.cncheck h6:last-child,
body.cncheck p:last-child,
body.cncheck ul:last-child,
body.cncheck ol:last-child,
body.cncheck li:last-child {
    padding-bottom: 0;
}

body.cncheck h1.text-center,
body.cncheck h2.text-center,
body.cncheck h3.text-center,
body.cncheck h4.text-center,
body.cncheck h5.text-center,
body.cncheck h6.text-center,
body.cncheck p.text-center {
    text-align: center;
}

body.cncheck h1.text-right,
body.cncheck h2.text-right,
body.cncheck h3.text-right,
body.cncheck h4.text-right,
body.cncheck h5.text-right,
body.cncheck h6.text-right,
body.cncheck p.text-right {
    text-align: right;
}

body.cncheck a,
body.cncheck span,
body.cncheck b,
body.cncheck strong,
body.cncheck i,
body.cncheck em,
body.cncheck u {
    line-height: inherit;
    -webkit-hyphens: inherit;
    -ms-hyphens: inherit;
    hyphens: inherit;
}

body.cncheck a {
    display: inline-block;
    color: rgba(var(--text-dark), 1);
    text-decoration: none;
}

body.cncheck a:hover {
    color: rgba(var(--text-dark), 0.8);
}

body.cncheck b,
body.cncheck strong {
    font-weight: 600;
}

body.cncheck ul {
    position: relative;
    display: block;
    list-style: none;
}

body.cncheck li {
    font-size: 1rem;
    text-align: left;
}

body.cncheck img {
    width: 100%;
    height: auto;
}

body.cncheck form,
body.cncheck input,
body.cncheck select,
body.cncheck option,
body.cncheck button {
    font-family: inherit;
}

/*** CN-Check ***/
body.cncheck #main .main-cncheck .main-cncheck-wrapper {
    text-align: center;
}

body.cncheck #main .main-cncheck .main-cncheck-wrapper #conceptnet-logo-with-claim {
    margin-bottom: 3rem;
}

