.hidden {
    display: none;
}


body {
    margin: 0;
    background-color: #BBD99B;
    font-family: "Mingzat", sans-serif;
}

.mingzat-regular {
    font-family: "Mingzat", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#bod {
    background-color: white;
}


.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
}

#routeOverlay {
    z-index: 2;
}

#routeSVG {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3;
    pointer-events: none;
}


#header {
    border-bottom: solid black 1px;
    position: fixed;
    background-color: white;
    width: 100%;
    height: 4rem;
    align-content: center;
    z-index: 20;
}

.blocker {
    height: 4rem;

}

select {
    width: 130px;
    border-radius: 5px;
    padding: 5px;
    border: none;
    background-color: white;
}

.dari {
    position: absolute;
    bottom: 60%;
    left: 10%;

}

.ke {
    position: absolute;
    bottom: 60%;
    left: 55%;

}

.container {
    position: fixed;
    bottom: 11%;
    padding: 10px;
    width: 100%;
    height: 100px;
    backdrop-filter: blur(3px);
    background: rgba(154, 190, 115, 0.50);
    z-index: 10;
}

.finder {
    background-color: #3C6902;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 7px;
    position: absolute;
    bottom: 20%;
    left: 38.5%;
}

.whole {
    height: auto;
    width: auto;
    position: absolute;
    padding-bottom: 50px;
    top: 10%;
}

.map {
    width: 40%;
}

.route {
    width: 40%;
}

.habitats {
    width: 40%;
}

.iket {
    margin-top: 20px;
    margin-bottom: 200px;
}

.africa {
    background-color: #CFBC90;
}

.ame {
    background-color: #AED286;
}

.aus {
    background-color: #B3BCD5;
}

.can {
    background-color: #EDD2C3;
}

.eur {
    background-color: #F6F3C3;
}

.indo {
    background-color: #FAD6A6;
}

.trek {
    background-color: #84E2E0;
}


.hidden {
    display: none;
}

.panah {
    position: relative;
    left: 43.5%;
    bottom: -10%;
    width: 35px;
}

#results {
    display: none;
    color: white;
    background-color: red;
    position: absolute;
    top: -55%;
    left: 31%;
    padding: 5px;
    border-radius: 5px;
}

nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}

.habitat {
    padding: 18px;
    width: 95%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 5px;
    margin: 10px;
    border: black solid 1px;

}

.arrow {
    width: 25px;
    position: absolute;
    left: 85%;
    transition: transform 0.3s ease;
}

.habitat.active .arrow {
    transform: rotate(180deg);

}

.panel {
    background-color: white;
    width: 95%;
    margin-left: 10px;
    margin-top: -10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.panel p {
    border: 1px solid black;
    padding: 10px;
    list-style-type: none;
    margin: 0;
    width: auto;
}


nav button {
    background-color: #579705;
    border: none;
    float: left;
    outline: none;
    padding: 16px;
    transition: 0.3s;
    width: 33.333%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}

.rsp {
    max-width: 100%;
}

.cell {
    background-color: rgb(220, 220, 220);
    height: 100px;
}



[class*="col"] {
    grid-column-end: span 12;
}

/* below 600px typically tablet*/

@media only screen and (max-width: 600px) {
    .padded {
        padding: 20px;
    }

    .sm1 {
        grid-column-end: span 12;
    }

    .sm2 {
        grid-column-end: span 6;
    }

    .sm3 {
        grid-column-end: span 4;
    }

    .sm4 {
        grid-column-end: span 3;
    }

    .sm6 {
        grid-column-end: span 2;
    }

    .sm12 {
        grid-column-end: span 1;
    }
}

/* above 601px typically tablet*/

@media only screen and (min-width: 601px) {
    .padded {
        padding: 80px;
    }

    .twothird {
        grid-column-end: span 8;
    }

    .md1 {
        grid-column-end: span 12;
    }

    .md2 {
        grid-column-end: span 6;
    }

    .md3 {
        grid-column-end: span 4;
    }

    .md4 {
        grid-column-end: span 3;
    }

    .md6 {
        grid-column-end: span 2;
    }

    .md12 {
        grid-column-end: span 1;
    }
}

/* above 1025px typically desktop*/

@media only screen and (min-width: 1025px) {
    .padded {
        padding: 80px 200px;
    }

    .twothird {
        grid-column-end: span 8;
    }

    .col1 {
        grid-column-end: span 12;
    }

    .col2 {
        grid-column-end: span 6;
    }

    .col3 {
        grid-column-end: span 4;
    }

    .col4 {
        grid-column-end: span 3;
    }

    .col6 {
        grid-column-end: span 2;
    }

    .col12 {
        grid-column-end: span 1;
    }
}