@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Roboto:wght@500&display=swap');

:root {
    --main-color: #618c03;
    --main-color-hover: #529a4f;
    --color1: white;
    --color2: white;
    --color3: #fdf8e7;
    --color4: #ffb300;
    /*--color2: #ffb300;*/
}

/* GLOBAL SETTINGS */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

table {
    border-collapse: collapse;
}

.content {
    flex-grow: 1;
    overflow: auto;
    display: block;
    min-height: 60vh;
    font-family: sans-serif;
    line-height: 1.5;
}

/* Various */

.content-title-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.content-title {
    display: block;
    color: var(--main-color);
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    text-align: left;
}

a {
    font-weight: bold;
    text-decoration: none;
    color: var(--main-color);
}

a:hover {
    text-decoration: none;
}

.non-mobile {
    display: block  !important;
}

.non-mobile-flex  {
    display: flex  !important;
}

.mobile {
    display: none  !important;
}


.cookie-info-wrapper {

    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ffb300;
    padding: 10px 0;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}

.cookie-info-text {
    text-align: center;
    margin: 0 20px;
    font-family: sans-serif;
    font-size: 12px;
    display: inline-block;
}

.cookie-info-buttons {
    margin: auto;
    justify-content: center;
}

.cookie-info-buttons button {
    width: 100px;
    height: 40px;
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    color: white;
    margin: 0 10px;
}

@media screen and (max-width: 900px) {
    td, table.list td {
        padding: 10px !important;
    }

    .content {
        font-size: 18px !important;
    }

    .second_stage_list_district_name + div {
        overflow: scroll;
    }

    .non-mobile {
        display: none  !important;
    }

    .non-mobile-flex  {
        display: none  !important;
    }

    .mobile {
        display: block  !important;
    }

    .cookie-info {
        display: flex;
    }
}

.second_stage_list_district_name.post-title{
    font-weight: bold;
    font-size: 15px !important;
    padding: 0;
    margin-bottom: 10px !important;
    border-bottom: 1px solid black;
}

.second_stage_list_district_name + div {
    display: none;
}

.animation {
    transition: opacity 0.5s;
}

.cookie-info {
    margin: auto;
}
