html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #394557;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #394557;
}

/* Map */
#map {
    min-height: 600px;
    min-width: 600px;
    height: 100%;
    width: 100%;
    margin: 7% 0 0 0%;
}

@media(max-width:768px) {
    #map {
        height: 80%;
        width: 80%;
        margin: 1% 0 0 10%;
    }
}

/* Header */
.header {
    overflow: hidden;
    background-color: #5680e9;
    padding: 10px 10px;
    height: 7%;
}

.header a {
    float: left;
    color: #84ceeb;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 15px;
    line-height: 10px;
    border-radius: 4px;
}

.header a.logo {
    font-size: 25px;
    font-weight: bold;
}

.header a:hover {
    background-color: transparent;
    color: #c1c8e4;
    text-decoration: none;
}

.header a.active {
    background-color: transparent;
    color: #84ceeb;
}

.header-right {
    float: right;
}

@media screen and (max-width: 500px) {
    .header a {
        float: none;
        display: block;
        text-align: left;
    }

    .header-right {
        float: none;
    }
}

/* Left-Side */
.form-group {
    margin-top: 10%;
}

.table {
    margin-top: 10%;
    background-color: #fff;
}

/* Footer */
.copyright {
    background: #5ab9ea;
    position: absolute;
    bottom: 0;
    /* padding: 1em 0; */
    text-align: center;
    height: 5%;
    width: 100%;
}

.copyright p {
    font-size: 1em;
    color: #ffffff;
    line-height: 1em;
    margin-top: 10px;
}

.copyright p a {
    color: #ffffff;
    font-weight: 700;
}

.copyright p a:hover {
    color: #24b8ff;
}