
#mobile {
    display: block;
}

#desktop {
    display: none;
}

@media (min-width: 768px) {
    #desktop {
        display: block;
    }
    #mobile {
        display: none;
    }
}

#map {
        width: 100%;
        height: 300px;
    }
@media (min-width: 768px) {
    #map {
        height: 400px;
    }
}
.equal-height {
    display: flex;
    flex-direction: column;
    height: 50%;
}
.container1 {
    display: flex;
    width: 100%;
}

.chartCard {
    width: full-width;
    height: calc(100vh-40px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.chartBox {
    width: 100vw;
    height: 100vh;
    padding: 20px;
    border-radius: 20px;
}

@media only screen and (max-width: 600px) {
    .chartBox {
        height: 45%;
    }
}

@media only screen and (max-width: 400px) {
    .chartBox {
        height: 400px;
    }
}
