:root {
    --contents-width: 967px;
    --top-bar-color: #8CB737;
    --font-size-main: 12pt;
    --font-size-h1: 18pt;
    --font-size-h3: 13pt;
}

@media only screen and (max-width: 768px) {
    :root {
        --contents-width: 100vw;
        --font-size-main: 11pt;
        --font-size-h1: 16pt;
        --font-size-h3: 12pt;
    }

    .content {
        padding: 0 5px;
    }

    input[type=range] {
        width: 90vw !important;
    }

    input, select, textarea, .slider-labels {
        max-width: 90vw !important;
    }
}

body {
    padding: 0;
    margin: 0;
    font-family: 'segoe ui', arial, sans-serif;
    font-size: var(--font-size-main);
}


.questions {
    /*border: 1px solid #4e4e4e;*/
}

.question {
    margin-top: 15px;
    border: 1px solid #EEEEEE;
    background-color: #F7F7F7;
    border-radius: 8px;
    /*box-shadow: 0 0 3px 0 rgba(0,0,0,0.33);*/
}

.navigation {
    margin-top: 15px;
    border: 1px solid #ccc;
    background-color: #ccc;
    border-radius: 8px;
    /*box-shadow: 0 0 3px 0 rgba(0,0,0,0.33);*/
    margin-bottom: 30px;
}

.padding {
    padding: 12px 16px;
}

#map img {
    position: relative;
}

h1 {
    font-size: var(--font-size-h1);
    margin: 0;
}

h3 {
    font-weight: bold;
    font-size: var(--font-size-h3);
    margin: 0 0 10px 0;
}

p {
    margin-bottom: 0;
}

.title-bar {
    background-color: var(--top-bar-color);
    box-shadow: 0 5px 10px rgb(238, 238, 238);
    color: white;
    margin: 0;
    padding: 5px;
    text-shadow: 1px 1px #333333;
}

.title-text {
    width: var(--contents-width);
    margin-left: auto;
    margin-right: auto;
    font-size: var(--font-size-h1);
    height: 42px;
}

.content {
    width: var(--contents-width);
    margin-left: auto;
    margin-right: auto;
}

.slider-labels {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.error-box {
    padding: 1em;
    margin: 5px;
    border: 1px solid rgba(0, 0, 0, 0.33);
    border-left-width: 3px;
    background-color: rgba(255, 0, 0, 0.05);
}


.debug-session pre {
    display: block; margin: 0;
}

.debug-session ul {
    padding: 0 0 0 12px; margin: 0; list-style-type: none;
}

.debug-menu {
    padding: 10px;
}

.debug-menu button, a {
    font-size: 10pt !important;
}

/*a, a:visited { text-decoration: none; color: #1144cc; }
a:hover { text-decoration: underline; }*/

table { border-spacing: 0; }
th { padding: 6px; position: sticky; top: 0; background-color: #F7F7F7; border-bottom: 1px solid #EEEEEE; z-index: 1; }
.evenRow { background-color: #EFEFEF; }
.evenRow td { padding: 4px; }
.oddRow td { padding: 4px; }
.evenRow:hover { background-color: #F4F2DC; }
.oddRow:hover { background-color: #FEFFE8; }

.form-check { padding: 6px 22px; }
.form-check input {  }

ul li { padding-bottom: 4px;  }