#map{
    width: 100%;
    height: 720px;
}
#dropdown-search {
    position: absolute;
    width: calc(100% - 23px);
    height: 38px;
    display: none;
    left: 23px;
    appearance: none;
    border: none;
    background: #2d2b2b;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.dark-theme {
    filter: grayscale(100%);
}
.map__container{
    position: relative;
}
.map__container__badge{
    position: absolute;
    z-index: 1;
    top: 60px;
    left: 60px;
    background: #2D2B2B;
    padding: 60px;
    max-width: 600px;
    box-sizing: border-box;
}
.map__container__badge__header > h2{
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.map__container__badge__header > h1{
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.map__container__badge > p{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}
.map__container__badge > h2{
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 30px 0;
}
.map__container__badge__selector{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}
.map__container__badge__selector-left{
    display: flex;
    align-items: center;
    gap: 15px;
}
.map__container__badge__selector-left > p{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}
.map__container__badge__hr{
    background: #FFFFFF;
    height: 1px;
    margin-top: 15px;
    margin-bottom: 30px;
}
.map__container__badge__bottom > p{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}
.dropdown-list {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 80%;
    max-height: 250px;
    overflow-y: auto;
    position: absolute;
    z-index: 5;
    background: #FFFFFF;
	margin-top: 15px;
}

.dropdown-list li {
    padding: 10px;
    cursor: pointer;
}

.dropdown-list li:hover {
    background-color: #F51906;
    color: #fff;
}
.map__container__badge__bottom-btn{
    background-color: #F51906;
    width: 200px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.map__container__badge__bottom-btn > p{
    font-weight: 400;
    font-size: 13px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.map__container__badge__bottom{
    display: flex;
    gap: 20px;
}
.map__container__badge__bottom > a{
    text-decoration: none;
}
.map__container__badge__bottom-btn:hover{
    background: #C81000;
    transition: .3s;
}
@media (max-width: 1000px){
    .map__container__badge{
        top: 40px ;
        left: 20px ;
        max-width: 320px ;
        padding: 30px ;
    }
    .map__container__badge__header > h2{
        font-size: 24px ;
    }
	    .map__container__badge__header > h1{
        font-size: 24px ;
    }
    .map__container__badge > h2{
        font-size: 16px ;
    }
    #map{
        height: 600px ;
    }
    .map__container__badge__bottom {
        flex-direction: column;
    }
    .dropdown-list {
        width: 80% ;
    }
}
@media (max-width: 600px){
    #map{
        height: 720px ;
    }
    .map__container__badge{
        top: 40px ;
        left: 50% ;
        transform: translateX(-50%);
        min-width: 300px ;
    }
    .dropdown-list {
        width: 80% ;
    }
}