html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#viewDiv {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#header {
    padding: 10px;
}

#header * {
    display: inline-block;
    margin: 0;
}

#header img {
    height: 25px;
    float: right;
    padding-right: 10px;
}

#header h1 {
    float: left;
    font-family: "Roboto", "helvetica", "arial", sans-serif;
    font-weight: bold;
    color: #5A8FC5;
    font-size: 2rem;
    padding-left: 10px;
}

#tabDiv {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
}

.ui.secondary.menu {
    margin: 0;
}

#tableDiv {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#rightcol {
    overflow: hidden;
}

.ui.selection.dropdown {
    width: 290px;
}

.filter-widget {
    padding-left: 10px;
    padding-right: 10px;
}

.filter-widget p {
    font-weight: bold;
    clear: both;
    margin: 0;
    padding-top: 20px;
}

.radiorow {
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: row;
    max-width: 300px;
}

.button-pad {
    padding-top:20px;
}

.tabbutton {
    width: 100%;
    height: 38px;
    color: white;
    background-color: #70AE6E;
    border: 0;
    margin-top: 10px;
    clear: both;
    float: left;
    padding: 10px;
    margin-right: 10px;
}

.tabbutton:hover, .tabbutton:active {
    background-color: #474B24;
    border: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}


#version_text {
    position:absolute;
    right:0;
    bottom:0;
    padding-right:3px;
    padding-bottom:3px;
}

input:checked+.slider {
    background-color: #70AE6E;
}

input:focus+.slider {
    box-shadow: 0 0 1px #70AE6E;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.space-top {
    padding-top: 10px;
}

/* HIDE RADIO */

[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* IMAGE STYLES */

[type="radio"]+img {
    cursor: pointer;
    display: block;
    float: left;
    width: calc(100%/3);
    padding: 5px;
    filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    background-color: none;
}

/* CHECKED STYLES */

[type="radio"]:checked+img {
    filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
    /* IE6-9 */
    -webkit-filter: none;
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    background-color: #00598e;
}

.radio {
    display: inline-block;
    padding-right: 10px;
    width: 100%;
}

.radio label {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: white;
    background-color: #0079C1;
    padding: 10px;
    width: 100%;
    height: 100%;
}

.radio input[type="radio"] {
    display: none;
}

.radio input[type="radio"]:checked+label {
    background-color: #00598E;
}

.radio input[type="radio"]:disabled+label {
    background-color: #DDD;
}

.radio input[type="radio"]:checked:disabled+label {
    background-color: #AAA;
}

.hidden-toolbar {
	display:none;
}



/* LEGEND */
.esri-legend__symbol div svg g path {
	stroke-width: 1;
}
.esri-legend__symbol div svg g path[stroke-dasharray] {
	stroke-dasharray: 5,5;
}
.esri-legend__symbol div svg g path[stroke-dasharray=none] {
	stroke-dasharray: none;
}
.esri-legend__layer-caption {
	display:none;
}

#narrativeText {
    text-align: center;
}


.esri-widget h2 {
    font-size: 18px;
    padding:0;
    margin:0;
    padding-top:10px;
}

.vertical-spacer {
    
    width:290px;
    height:1px;
    background-color: #DEDEDF;

    margin-top:30px;
    margin-bottom:20px;

}