html, body, #map_canvas {
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-family: Roboto;
}

.controls-group{
     padding:12px;
}

.controls {
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 32px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.controls2 {
    border: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

input[type=submit].controls,
button.controls{
    float: right;
    background-color: indianred;
    color: white;
}

input[type=submit].controls:hover,
button.controls:hover{
    background-color: red;
}

.map-input {
    background-color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
}
#pac-input {
    width: 300px;
}

.dim-input {
    width: 75px;
}

.map-input:focus {
    border-color: #4d90fe;
}

.pac-container {
    font-family: Roboto;
}


#legend {
    font-family: Roboto;
    background: white;
    padding: 10px;
    margin: 10px;
    border: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#legend h4 {
    margin-top: 0;
}

#legend input[type=checkbox]{
    margin-bottom: 12px;
}

#legend div.color-box {
    margin-left: 10px;
    margin-right:10px;
    display: inline-block;
    width: 15px;
    height: 15px
}

#legend span{
    margin-bottom: 2px;
}


#upload-container{
    font-family: Roboto;
    width: 400px;
    height:200px;
    margin: 12px;
    background: rgb(255, 255, 255); /* Fall-back for browsers that don't
                                    support rgba */
    background: rgba(255, 255, 255, .7);
}

/*
Container for table
*/

.divTables-header{
    height: 60px;
    width: 100%;
    padding:12px;
    background-color: lightsteelblue;
    border-bottom: 2px solid steelblue;
    border-top: none;
}

.divTables-header h3{
    font-size: 16px;
    display: inline;
}
.divTables-header span{
    float: right;
    cursor: pointer;
    color: #0f0f0f;
}

.divTables-header span:hover{
    text-decoration: underline;
}

.divTables-subheader{
    border-bottom: 1px solid lightsteelblue;
    font-size: 15px;
    padding: 12px;

}


.divTables-cont{
    width:100%;
    height: 700px;
    overflow-y: auto;
    padding:12px;
    margin-bottom: 10px;
}

.fetch-meta{
    font-size: 16px;
    font-family: Roboto;
    padding-top: 10px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
}

.fetch-table{
    font-family: Roboto;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom:10px
}

.elev-chart{
    padding-bottom: 14px;
}



#type-selector {
    color: #fff;
    background-color: #4d90fe;
    padding: 5px 11px 0px 11px;
}

#type-selector label {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 300;
}
#target {
    width: 345px;
}

/* Center the loader */
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.darkClass
{
    background-color: black;
    filter:alpha(opacity=50); /* IE */
    opacity: 0.5; /* Safari, Opera */
    -moz-opacity:0.50; /* FireFox */
    z-index: 20;
    height: 100%;
    width: 100%;
    background-repeat:no-repeat;
    background-position:center;
    position:absolute;
    top: 0px;
    left: 0px;
}


@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}