body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #0b0b0b;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.left-panel {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 320px;
    background-color: #4609C3;
    z-index: 2;
    border-radius: 6px;
    display: none;
}

.toggle-left-panel {
    position: absolute;
    left: 320px;
    top: calc(50% - 24px);
    width: 23px;
    height: 48px;
    text-align: center;
}

.toggle-left-panel button {
    width: 23px;
    height: 48px;
    border: none;
    border-radius: 0 8px 8px 0;
    background-color: #4609C3;
    color: white;
}

.map-style {
    position: absolute;
    right: 0;
    bottom: 10px;
}

.map-style ul {
    display: flex;
    flex-direction: row;
}

.map-style ul li {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    margin-right: 10px;
    border: 2px solid white;
    color: #FFFFFF;
    font-size: 5px;
}

.map-style ul li:not(:last-child) {
    display: none;
    cursor: pointer;
}

.map-style ul:hover li {
    display: block;
}

.mapboxgl-ctrl-geocoder--suggestion-title {
    font-weight: bold;
    font-size: 13px;
}

.mapboxgl-ctrl-geocoder--suggestion-address {
    font-size: 13px;
}

.mapboxgl-ctrl-geocoder {
    min-width: 100%;
    height: 36px;
    border-radius: 36px;
}

.mapboxgl-ctrl-geocoder--input:focus {
    outline: none;
    box-shadow: none;
}

.zoom-nav {
    position: absolute;
    right: 36px;
    bottom: 25%;
    width: 20px;
    background-color: #FFFFFF;
    text-align: center;
    border-radius: 15px;
}

.zoom-nav div {
    height: 120px;
}

.zoom-nav span {
    color: #0b0b0b;
    cursor: pointer;
    margin-top: 2px;
}

.countdown {
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 10px;
    width: 90px;
    height: 36px;
    border-radius: 36px;
    display: none;
    padding-left: 8px
}

.countdown span {
    color: #0b0b0b;
    position: relative;
    top: 5px;
    left: 15px;
}

.search-container {
    position: absolute;
    top: 10px;
    right: 0;
    display: none;
    flex-direction: row;
    width: 42%
}

.search-container > div {
    width: 50%;
    margin-right: 10px;
}

.search-container > button {
    display: none;
}

@media (max-width: 900px) {
    .left-panel {
        top: 52px;
    }

    .search-container {
        width: 100%
    }

    .search-container > div {
        width: 45%;
        margin-right: 10px;
    }

    .search-container > button {
        display: block;
        border-radius: 3px;
        height: 36px;
        width: 10%;
    }

    .mapboxgl-ctrl-geocoder {
        min-width: 100%;
        height: 36px;
        border-radius: 3px;
    }
}