html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

h1 {
    text-align: center;
}

nav {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #EAEBEB;
    overflow: auto;
}

nav #logo {
    padding: 0 0 0 20px;
    /*width: 150px;*/
    height: 50px;
    float: left;
}

nav #searchSpan {
    width: 40%;
    float: right;
    margin: 10px 30% 10px 20px;
}

nav #searchSpan input {
    width: 100%;
    position: relative;
    padding: 6px 6px 6px 30px;
    border-radius: 10px;
    border: 1px solid #FAFAFA;
    background-color: #FAFAFA;
    outline: none !important;
    font-size: 1em;
    color: #333;
    background-image: url('../media/search.png');
    background-repeat: no-repeat;
    background-position: 6px;
    background-size: 18px 18px;
}

#map {
    margin: 0;
    padding: 0;
    width: 100%;
    height: -moz-calc(100% - 70px);
    height: -webkit-calc(100% - 70px);
    height: calc(100% - 70px);
    display:block
}

#watermark {
    z-index: 1000;
    position: absolute;
    opacity: 0.4;
    bottom: 2px;
    left: 3px;
}

#watermark {
    max-width: 150px;
}

#infoBoxContainer {
    position: absolute;
    right: 0;
    bottom: 100px;
}

.infoBox {
    display: flex;
    position: relative;
    z-index: 1000;
    background-color: #FAFAFA;
    border: 1px solid #EAEBEB;
    border-right: 0;
    padding: 10px !important;
    margin-bottom: 10px;
    font-size: 0.8rem;
    cursor: pointer;
    clear: both;
    float: right;
    border-radius: 10px 0 0 10px;
}

.infoBox .infoBoxContent {
    display: none;
}

#timeInfoBox .listItems {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#timeInfoBox ul li span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: blue;
    margin-right: 5px;
}

#task-chooser {
    width: 44px !important;
    height: 44px !important;
}

#task-chooser img {
    width: 26px;
    height: 26px;
    margin-top: 8px;
}

#task-chooser-content {
    padding: 6px 10px 6px 6px;
}

.easy-button-container button {
    margin: 0 !important;
    padding: 0 !important;
}

#refresh-img {
    height: 18px;
    width: 18px;
    margin: 13px;
}

.ui-menu {
    z-index: 3000;
}

#top-alert {
    z-index: 2500 !important;
    position: absolute;
    width: 100%;
    background: rgba(0,0,0,0.8);
    text-align: center;
    color: white;
    font-size: 18px;
    display: none;
    padding: 5px 8px 5px 8px;
}

#top-alert #content {
    display: inline;
}

#top-alert #hideAlert {
    margin-left: 5px;
    background: #FF7F00;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.infoBoxLabel {
    writing-mode: vertical-lr;
    /*text-orientation: upright; */
    font-weight: 600;
    margin-right: 10px !important;
}

.leaflet-top {
    top: 25px !important;
}

.faded {
    background-color: rgba(255,255,255,0.5) !important;
}

.easy-button-button {
    width: 44px !important;
    height: 44px !important;
}

@media all and (max-width: 750px) {

    nav #logo {
        width: 150px;
        padding: 2px 0 2px 2px;
        margin-bottom: 5px;
    }

    nav #searchSpan {
        float: none;
        width: 98%;
        margin: auto;
        display: block;
    }

    nav #searchSpan input {
        width: 100%;
    }
}