.sdbar {}

/* MOBILE */
.tooltip-mobile-container{
    padding: 0.5rem;
}

.tooltip-mobile-value {
    font-size: 1rem;
    font-weight: 400;
    text-wrap: nowrap;
}

.sdbar_container-mobile{
    height: 4px;
    border-radius: 4px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 2rem);
    
    position: absolute;
    bottom: 0;
}

.sdbar_container-mobile .sdbar_item-mobile{
    width: 16.7%;
    height: 100%;
}

.sdbar_container-mobile .sdbar_item-mobile:first-child{
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.sdbar_container-mobile .sdbar_item-mobile:last-child{
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.bg_mobile_good {
    background-color: var(--green);
}

.bg_mobile_moderate {
    background-color: var(--yellow);
}

.bg_mobile_sensitive {
    background-color: var(--orange);
}

.bg_mobile_unhealthy {
    background-color: var(--red);
}

.bg_mobile_very_unhealthy {
    background-color: var(--purple);
}

.bg_mobile_hazardous {
    background-color: var(--maroon);
}

/* DESKTOP */
.sdbar_container {
    display: none;
}
@media screen and (min-width: 1024px) {

    .sdbar_container-mobile{
        display: none;
    }
    .sdbar_container {
        position: absolute;
        bottom: 1.5rem;
        display: flex;
        align-items: center;
        border-radius: 12px;

        box-shadow: 0px 2px 3.5px 0px rgba(0, 0, 0, 0.25);
        width: calc(100% - 4rem);
        left: 2rem;

        height: 4rem;
    }

    ul {
        list-style-type: none;
    }

    .sdbar_container li {
        color: #fff;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .sdbar_container li:first-child {
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    .sdbar_container li:last-child {
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .sdbar-status-tooltip-container {
        padding: 0.75rem;
    }

    .sdbar-status-tooltip-value {
        font-size: 1.5rem;
        font-weight: 400;
        text-wrap: nowrap;
    }

    .bg_good {
        background-color: var(--green);
    }

    .bg_moderate {
        background-color: var(--yellow);
    }

    .bg_sensitive {
        background-color: var(--orange);
    }

    .bg_unhealthy {
        background-color: var(--red);
    }

    .bg_very_unhealthy {
        background-color: var(--purple);
    }

    .bg_hazardous {
        background-color: var(--maroon);
    }

    li.color_moderate {
        color: #605123;
    }



}