#map {
    height: 88vh;
    width: 100%;
    float: right;
    margin-top: 84px;
}

@media(max-width: 768px){
	#map {
    width: 100%;
	left: 0;
    float: none;
    margin-top: 64px;
	}
}

#sidebar {
    width: 70px;
    height: 88vh;
    background-color: #FFFFFF;
    overflow-y: auto;
    float: right;
    margin-top: 72px;
}

@media(max-width: 768px){
	#sidebar{
		display: none!important;
	}
}

.menu-icon {
    display: block;
    justify-content: center;
    margin: 12px;
}
.menu-icon img {
    width: 60%;
}

.image-wrapper {
    display: flex;
    justify-content: unset;
    align-items: center;
    margin: 20px 12px 12px 12px;
}

.image-wrapper img {
    width: 60%;
}

#location-modal {
    position: fixed;
    top: 0;
    left: -22%;
    bottom: 0;
    width: 20%;
    background-color: white;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.5s ease-in-out; 
    z-index: 9999;
}

@media(max-width: 768px){
	#location-modal {
    top: 0;
    left: -100%;
    width: 90vw;
    background-color: white;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.5s ease-in-out; 
    z-index: 9999;
}

}

#location-modal.open {
    left: 0;
}

.title-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.div-location-date {
    display: flex;
    align-items: center;
}

.total-initiative {
    display: flex;
    align-items: center;
}

.img-location {
    margin-bottom: 8px;
    margin-right: 8px;
}
.content-modal {
    padding: 20px;
}

.line-division {
    border: 1px solid #F4F4F4;
    margin-top: 10px;
    margin-bottom: 10px;
}

#location-name {
    margin-top: 0;
    margin-bottom: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #3F3F3F;
}

#location-image {
    /* width: 300px;
    height: 225px; */
    border-radius: 8px;
}

#location-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    height: 26px;
    background: #163D3C;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    border-radius: 100px;
}

#location-button:hover {
    opacity: 0.8;
}

#location-date {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: #AEB0B3;
    margin-bottom: 8px;
}

#location-title {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #094B60;
    margin-bottom: 8px;
}

#location-description {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    color: #656564;
	overflow-y: scroll;
    max-height: 50vh;
}

#backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* backdrop-filter: blur(5px); */
    transition: left 0.5s ease-in-out; 
    z-index: 999;
}

#ods-modal {
    position: absolute;
    top: 92px;
    right: 0;
    width: 495px;
    z-index: 1;
}

#ods-modal .container-modal {
    background: rgba(0, 0, 0, 0.20);
    padding: 20px 20px 31px 20px;
    height: 82vh;
    display: inline-block;
}

#ods-modal .container-modal h2 {
    border-bottom: 2px solid #fff;
    color: #FFF;
    font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 20px;
    width: 100%;
    box-sizing: border-box; 
}

#ods-modal .container-modal .list-ods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

#ods-modal .container-modal .list-ods a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 8px; 
    transition: transform 0.2s; 
}

#ods-modal .container-modal .list-ods a:hover {
    transform: scale(1.05); 
}

#ods-modal .container-modal .list-ods a img {
    max-width: 100%;
    height: auto; 
    display: block;
    filter: grayscale(100%);
}

#ods-modal .container-modal .list-ods a img:hover{
    filter: grayscale(0%);
}


@media(max-width: 991.98px){
    #ods-modal{
        display: flex;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }

    #ods-modal .container-modal{
        background: rgba(0, 0, 0, 0.90);
        padding: 20px 20px 20px 20px;
        height: 100%;
        width: 100%;
    }

    #ods-modal .container-modal .list-ods{
        display: grid;
        grid-template-columns: repeat(4, 2fr);
        gap: 0px;
    }

    #ods-modal .container-modal .list-ods a{
        flex-grow: 1;
        padding: 3px;
    }
}

@media (max-width: 1199.98px) { 
 }

@media (max-width: 1399.98px) { 
    #ods-modal .container-modal .list-ods {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
    }

    #ods-modal .container-modal .list-ods a img {
        max-width: 90%;
    }
}

