
html {
    font-family: sans-serif;
}

html, body, .map {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

header {
    background-color: maroon;
    color: white;
    position: absolute;
    top: 0;
    box-sizing: content-box;
    height: 90px;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
}

.header-title {
    padding: 10px 20px;
}

.header-title h1, .header-title h2 {
    margin: 0;
}

.content {
    position: absolute;
    top: 90px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}


#weather-forecast-wrapper {
    box-sizing: content-box;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;

    transition: height 0.5s;
}

#weather-forecast-wrapper.open {
    height: 175px;
}

#weather-forecast-close {
    display: block;
    position: absolute;
    padding: 0 5px;
    right: 0px;
    top: 0px;
    font-size: 24px;
    color: black;
    text-decoration: none;
    width: 50px;
    height: 50px;
    text-align: right;
    cursor: pointer;
}

#weather-forecast {
    width: 100%;
    height: 175px;
    outline: none;
    border: none;
}


.weather-marker {

}

.weather-marker-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: solid black 2px;
    border-radius: 5px;
    overflow: hide;
}

.weather-marker-icon {
    display: block;
    width: 50px;
    height: auto;
    margin: 0 auto;
}

.weather-marker-text {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    bottom: 0;
    color: white;
    font-size: 18px;
}


.weather-marker-temperature {
    display: block;
    text-align: center;
    background-color: #00000088;
    color: white;
    font-size: 18px;
}

.weather-marker-location {
    display: block;
    text-align: center;
    background-color: #000000;
    color: white;
    font-size: 12px;

}

