*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{

    width:100%;
    height:100%;

    font-family:Tahoma,Arial,sans-serif;

    overflow:hidden;

    background:#f5f5f5;

}

#container{

    display:flex;

    width:100vw;

    height:100vh;

}

/* ========================= */
/* Sidebar */
/* ========================= */

#sidebar{

    width:340px;

    min-width:340px;

    background:white;

    padding:20px;

    box-shadow:0 0 15px rgba(0,0,0,.15);

    overflow-y:auto;

    z-index:1000;

}

#sidebar h2{

    color:#1565c0;

    margin-bottom:10px;

}

#sidebar p{

    color:#666;

    font-size:14px;

    margin-bottom:20px;

}

#sidebar hr{

    margin:20px 0;

    border:none;

    border-top:1px solid #ddd;

}

#sidebar label{

    display:block;

    margin-top:15px;

    margin-bottom:6px;

    font-weight:bold;

}

/* ========================= */
/* Inputs */
/* ========================= */

input,
select{

    width:100%;

    padding:10px;

    border:1px solid #ccc;

    border-radius:6px;

    outline:none;

    font-size:14px;

}

input:focus,
select:focus{

    border-color:#1565c0;

}

/* ========================= */
/* Button */
/* ========================= */

button{

    width:100%;

    padding:12px;

    margin-top:15px;

    border:none;

    border-radius:6px;

    background:#1565c0;

    color:white;

    cursor:pointer;

    font-size:15px;

    transition:.2s;

}

button:hover{

    background:#0d47a1;

}

/* ========================= */
/* Stats */
/* ========================= */

.stats{

    display:flex;

    justify-content:center;

}

.stat-box{

    width:100%;

    background:#f7f7f7;

    border-radius:8px;

    text-align:center;

    padding:15px;

}

.stat-box span{

    color:#777;

    font-size:13px;

}

.stat-box h3{

    margin-top:10px;

    color:#1565c0;

    font-size:30px;

}

/* ========================= */
/* Map */
/* ========================= */

#map{

    flex:1;

    width:100%;

    height:100%;

}

/* ========================= */
/* Popup */
/* ========================= */

.popup-title{

    font-size:17px;

    font-weight:bold;

    color:#1565c0;

    margin-bottom:8px;

}

.popup-row{

    margin:4px 0;

    font-size:14px;

}

/* ========================= */
/* Scroll */
/* ========================= */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#bbb;

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#888;

}

/* ========================= */
/* Mobile */
/* ========================= */

@media(max-width:900px){

#container{

    flex-direction:column;

}

#sidebar{

    width:100%;

    min-width:100%;

    height:330px;

}

#map{

    height:calc(100vh - 330px);

}

}