@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,900&display=swap');

html, body {
    font-family: -apple-system, 'Work Sans', Arial, sans-serif;
    font-size: 16px;
    color: #333;
}

html {
    overflow-x: hidden;
}

.logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100px;
    height: 100px;
    justify-content: space-around;
    align-items: center;
    margin: 1rem auto;
}

.logo div {
    width: 40%;
    height: 40%;
    background: #008B45;
}

.logo div:nth-child(2), .logo div:nth-child(3) {
    background: #D1EEEE;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    /* overflow-x: hidden; */
}

.main {
    display: flex;
    flex-direction: row;
}

.footer {
    text-align: center;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
    box-sizing: border-box;
}

.content {
    flex: 1;
    margin: 0 auto;
    max-width: 650px;
    width: 100vw;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.content h1 {
    font-size: 2rem;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    color: #B71C1C;
    font-weight: 900;
}

hr {
    width: 80%;
    border: 0;
    border-top: 1px dashed #aaa;
}

.content-wrapper a, .content-wrapper a:visited {
    color: #B71C1C;
    text-decoration: underline;
}

.content p {
    margin-top: 1rem;
    text-align: justify;
    line-height: 1.4;
}

.content p > img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}


.right {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    /* box-shadow: -5px 0 15px -10px #444; */
    padding: 1rem;
    text-align: center;
    /* border-left: 2px solid #eee; */
}
.right small {
    
    font-size: 0.75em;
}

.menu {
    font-size: 0.9rem;
    max-width: 250px;
    background: #222629;
    color: #fff;
    margin: 0;
    padding: 0;
    margin-right: 1rem;
    box-shadow: 5px 0 15px -10px #444;
}

.menu li {
    display: flex;
    list-style-type: square;
    margin: 1rem 0;
    padding-left: 10px;
    padding-right: 1em;
    padding-bottom: 0.5rem;
}

.menu li::before {
    content: "▣";
    color: #86C232;
    padding-right: 10px;
}

.menu section {
    text-align: center;
    color: #008B45;
    background: #fff;
    font-weight: 900;
    padding: 0.25rem;
    box-sizing: border-box;
    width: 100%;
}

.menu a, .menu a:visited {
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #222629;
}

.menu a:hover {
    border-bottom: 1px solid #86C232;
}

.mobile_menu {
    display: none;
}

section.spr_smo {
    font-size: 0.9rem;
    box-sizing: border-box;
    border: 1px solid #eee;
    text-align: left;
    margin-bottom: 1rem;
    padding: 0.5rem;
    box-shadow: 0 4px 2px -2px #ddd;
}
section.spr_smo .row {
    display: flex;
    flex-direction: row;
    padding: 0.25rem 0;
}
section.spr_smo p {
    text-align: center;
    color: #263238;

    display: block;
    width: 100%;
}
section.spr_smo .smo_license:before {
    content: "▣ ";
    color: #86C232;
}
select#smo_region {
    width: 100%;
    border: 1px solid #222629;
    background: #fff;
}



@media (max-width: 768px) {
    .content h1 {
        font-size: 1.5rem;
    }
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        overflow-y: scroll;
        width: 90%;
        z-index: 2;
        display:  none;
    }

    .mobile_menu {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: fixed;
        width: 100vw;
        background: #222629;
        box-shadow: 0 5px 5px -5px #333;
        padding: 0.5rem;
    }
    .mobile_menu .logo  {
        pointer-events: none;
        width: 50px;
        height: 50px;
        margin: 0;
    }
    .mobile_menu .sitename {
        flex: 1;
        text-align: center;
        margin-left: -50px;
        font-size: 1.5rem;
        color: #fff;
    }

    .content-wrapper {
        padding-top: 100px;
    }

    .right {
        display: none;
    }
}