html,
body {
    font-family: 'Architects Daughter', cursive;
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    height: 100%;
}

.map-view {
    height: 100%;
    width: 100%;
}

.sidebar {
    background: #033048;
    color: #0fe6b6;
    text-align: center;
    position: absolute;
    z-index: 99;
    line-height: 35px;
    text-align: left;
    height: 100%;
    width: 22%;
    overflow: auto;
    padding: 10px 10px 30px 10px;
}

.text-search {
    border-radius: 1.4em;
    border-style: none;
    height: 30px;
    width: 100%;
    padding: 10px;
    font-style: italic;
    font-size: 15px;
}
.search-area {
    text-align: center;
    width: 90%
}

.list-box {
    margin: 5px;
    padding: 5px;
}

.list-item {
    font-size: 18px;
    list-style: none;
    padding: 3px;
    margin: 10px 0px 7px 0px;
    border-style: none none double none;
}

.heading-text {
    text-align: center;
}

.infowindow-heading {
    font-size: 15px;
}

/* make website responsive as the window size changes*/
@media screen and (min-width: 1121px){
    .sidebar {
        width: 335px;
    }
}

@media screen and (min-width: 701px) and (max-width: 1120px){
    .sidebar {
        max-width:100%;
        width: 30%;
        z-index: 99;
    }
    #map {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (min-width:550px) and  (max-width: 700px){
    .sidebar {
        max-width:30%;
        width: 30%;
        z-index: 99;
        font-size: 16px;
    }
    .list-item {
        font-size: 16px;
        padding: 0px;
        margin: auto;
    }
    #map {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (min-width:200px) and  (max-width: 550px){
    .sidebar {
        max-width:30%;
        width: 30%;
        z-index: 99;
        font-size: 14px;
    }
    .list-item {
        font-size: 14px;
        padding: 0px;
        margin: auto;
    }
    .infowindow-box {
        max-width: 120px;
        font-size: 10px;
    }
    .infowindow-heading {
        font-size: 11px;
    }
    #map {
        width: 100%;
        max-width: 100%;
    }
}
