body {
    background-color: #e8e8e8;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #1a1a1a;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0;
    margin-top: 32px;
    margin-bottom: 8px;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child{
    margin-top: 8px;
}

a {
    color: #00b3de;
    text-decoration: none;
}

a.logo {
    color: #1a1a1a;
}

i.orange {
    color: #f69f29;
    font-weight: bold;
}



/*************** Classes ******************/
span.muted {
    opacity: 0.2;
}







/*************** Navigation ******************/

.menubar {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 4px 20px;
}

.menubar .logo {
    padding: 8px 20px 8px 0;

}

.menubar .navigation {
    display: flex;
}

.menubar .navitem a {
    padding: 8px 20px;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-left: 10px;
}


.menubar .navitem a:hover {
    background-color: #f3f3f3;
}


.menubar .navitem a.active {
    color: #b44500;
}




/*************** Sub-Navigation ******************/

.subnavi-container {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.subnavi-item {

}

.subnavi-item a {
    display: block;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 6px 10px;
    transition: background-color 0.25s ease;
}

.subnavi-item a:hover {
    background-color: #1a1a1a;
}

.subnavi-item a.active {
    background-color: #1a1a1a;
}










/*************** Mains ******************/


.content {
    padding: 20px;
}

.card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: -20px;
}

.infocard {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    flex-grow: 1;
    padding: 12px;
    cursor: pointer;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.infocard:hover {
    background-color: rgba(255, 255, 255, 1);
}

.infocard > .label {
    display: block;
    opacity: 0.35;
    text-transform: uppercase;
    font-size: 0.9em;
}

.infocard > .value {
    display: block;
    font-size: 3em;
    font-weight: 800;
}

.infocard > .value a {
    display: block;
}

.infocard > .value a.on {
    color: #4d9400;
}

.infocard > .value a.off {
    color: #b44500;
}

.highlight {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    flex-grow: 1;
    padding: 12px;
    cursor: pointer;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: all 0.35s ease;
    width: 100%;
}

.highlight:hover {
    background-color: rgba(255, 255, 255, 1);
 }

.highlight > .comment {
    font-size: 1.4em;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
}

.highlight > .comment:before {
    opacity: 0.4;
    content: "«";
    margin-right: 2px;
}

.highlight > .comment:after {
    opacity: 0.4;
    content: "»";
    margin-left: 2px;
}

.highlight > .details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 4px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.05);
}

.highlight > .details > .datetime {
    padding: 2px;
}

.highlight > .details > .language {
    padding: 2px;
}