.deep-blue {
    color: var(--deep-blue);
}

.m_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.m_left {
    width: 100%;
    height: 50%;
}

.m_map {
    max-width: 100%;
    height: 50%;
    border-radius: 0 0 3rem 3rem;
    border-width: 0 2px 2px 2px;
    border-style: solid;
    border-color: var(--deep-blue);
}

.m_header {
    border-width: 2px;
    border-style: solid;
    border-color: var(--deep-blue);
    border-top-right-radius: 3rem;
    border-top-left-radius: 3rem;
    padding: 1rem;
    text-align: center;
}

.m_content {
    border-width: 0 2px 0 2px;
    border-style: solid;
    border-color: var(--deep-blue);

    position: relative;
    height: 100%;
    padding: 4rem 1rem 6rem 1rem;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.m_header-title {
    font-size: 32px;
    line-height: normal;
    color: var(--deep-blue);
}

.m_header-content {
    font-size: 36px;
    line-height: normal;
    color: var(--deep-blue);
}

.status-label {
    font-size: 70px;
    line-height: 100%;
    font-style: normal;
    font-weight: 400;
}

.status-label__good {
    color: var(--green);
}

.status-label__moderate {
    color: #CBA730;
}

.status-label__sensitive {
    color: #F27F24;
}

.status-description {
    margin-top: 2rem;
    text-align: center;
    font-size: 20px;
}

.display-status-map-mobile {
    display: block;
}

.display-status-map-desktop {
    display: none;
}


@media screen and (min-width: 1024px) {

    .status-label {
        font-size: 6vw;
    }
    .status-description {
        
        font-size: 1.5vw;
    }

    .display-status-map-mobile {
        display: none;
    }

    .display-status-map-desktop {
        display: block;
    }

    .d_container {
        display: flex;
        flex-direction: row;
        width: 100%;
        position: relative;
        max-height: 98vh;
    }

    .d_left {
        width: 40%;
        border-width: 2px 0 2px 2px;
        border-style: solid;
        border-color: var(--deep-blue);
        border-radius: 3rem 0 0 3rem;

    }

    .d_left_head {
        padding: 1rem;
        text-align: center;
        border-bottom: 2px solid var(--deep-blue);
    }

    .d_head_body {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: calc(100% - 14rem);
    }

    .d_right {
        width: 60%;
        object-fit: cover;

        border-width: 2px;
        border-style: solid;
        border-color: var(--deep-blue);
        border-radius: 0 3rem 3rem 0;
    }


}