/* Reset */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family: helvetica, sans-serif;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p {
    margin-top: 0.7rem;
    line-height: 1.5rem;
}

h1 {
    font-size: xx-large;
}

h2 {
    margin-bottom: 1rem;
}

h3{
    line-height: 1.5rem;
    margin-top: 1rem;
}

ol, ul {
    margin-left: 1.25rem;
    list-style-position: outside;
    line-height: 1.6;
    font-size: 1.2rem;
}

/* General navigation */

nav {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e6e6e6;
}

.remove-left-margin {
    margin-left: 0;
}

.menu-wrap{
    width: 75rem;
    margin: 0 auto;
}

a {
    color: #1779ba;
    text-decoration: none;
}

.menu {
    list-style-type: none;
}

.logo {
    padding: 7.5px 10px 7.5px 0;
}

.item a:hover{
    color: #6622cc;
}

/* Mobile navigation */

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 1;
}

.menu li a {
    display: block;
    padding: 15px 5px;
}

.toggle {
    order: 1;
    font-size: 20px;
}

.item {
    order: 2;
    padding: 10px;
    width: 100%;
    text-align: center;
    display: none;
}

.active .item{
    display: block;
}

/* Mobile */

@media all and (max-width: 699px) {
    .desktop-ads {
        display: none;
    } 
}

/* Tablet menu */

@media all and (min-width: 700px){
    .menu {
        justify-content: center;
    }

    .logo {
        flex: 1;
    }

    .toggle {
        flex: 1;
        text-align: right;
    }

    .columns {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        flex-direction: column;
    }

    .desktop-ads {
        display: none;
    }
}

/* Desktop navigation and body */

@media all and (min-width: 960px){
    .item {
        order: 1;
        display: block;
        width: auto;
        position: relative;
    }

    .toggle {
        display: none;
    }
    
    .columns {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        flex-direction: row;
    }

    .ads {
        display: none;
    }

    /*.main-columns {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }*/

    .desktop-ads{
        display: block;
    }

    /*.table-main {
        width: 65%;
    }*/
}

/* Table */

.main {
    margin: 1.0rem auto;
    width: 100%;
    max-width: 75rem;
    padding: 0 0.7rem;
    flex-grow: 1;
    overflow-y: auto;
}

.table-main {
    overflow-x: auto;
}

table{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #f8f8f8;
}

table > thead {
    font-weight: bold;
    color: #0a0a0a;
    background: #f8f8f8;
    text-align: left;
}

td, th {
    padding: 0.75rem 0.6rem;
}

tbody tr:nth-child(2n) {
    background: #f8f8f8;
}

.columns > * {
    margin-top: 0.7rem;
    padding: 0.7rem;
    flex: 1;
    border: 1px solid #f8f8f8;
    background-color: #f8f8f8;
}



/* Footer */

footer {
    background: #e6e6e6;
    width: 100%;
}

.footer-main{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 2rem 0.7rem;
}

/* GDPR box */

.gdpr-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 4rem;
    background: #cacaca;
    padding: 0.8rem;
}

.gdpr-text {
    margin-bottom: 1rem;
}

.button {
    padding: 0.85rem 1rem;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    background-color: #1779ba;
    color: #fefefe;
}

.deactive {
    display: none;
}

/* Articles */

.article-h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', 'Helvetica', 'Roboto', 'Arial', 'sans-serif';
    font-style: normal;
    font-weight: 400;
}

.article-h2 {
    font-size: 1,9375rem;
    line-height: 1.4;
    margin: 1rem 0 0.5rem 0;
    font-family: 'Helvetica Neue', 'Helvetica', 'Roboto', 'Arial', 'sans-serif';
    font-style: normal;
    font-weight: 400;
}

.article {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.img-center {
    text-align: center;
}

/*Ads*/

.annons {
    margin: 0 0 0.3rem 0;
    font-size: 0.6rem;
    color:#919191;
}

