/* Initialization section
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#graphsection .bkgnd {
    background-image: url("../img/graphsmall.jpg");
    background-repeat: no-repeat;
    height: 500px;
    margin-top: 0px;
    background-size: contain;
    background-position: center;
}

#graphsection .container {
    padding-top: 20px;
    padding-bottom: 100px;
}


@media screen and (max-width: 500px) and (min-width: 100px) {
    #graphsection .chart-wrapper ul {
        margin-left: -30%;
        margin-top: 18%;
        background-color: green;
    }

    #graphsection .chart-wrapper {
        max-width: 50%;

    }

    #graphsection .chart-wrapper .chart-bars li {
        margin-bottom: 5px;
        font-size: 2px;
        border-radius: 1px;
        padding: 3px 5px;

    }
}

@media screen and (max-width: 800px) and (min-width: 501px) {
    #graphsection .chart-wrapper ul {
        margin-left: -20%;
        margin-top: 12%;
        background-color: blue;
    }
}

@media screen and (max-width:1000px) and (min-width: 801px) {
    #graphsection .chart-wrapper ul {
        margin-left: -20%;
        margin-top: 8%;
        background-color: red;
    }
}

@media screen and (max-width:1300px) and (min-width: 1001px) {
    #graphsection .chart-wrapper ul {
        margin-left: -2%;
        margin-top: 3%;
        background-color: black;
    }
}



#graphsection #graphid a {
    text-decoration: none;
    color: inherit;
}

#graphsection #graphid {
    background: var(--body);
    font-size: 6px;
    font-family: sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}

#graphsection .chart-wrapper {
    max-width: 70%;
    margin-left: 0px;
    margin-top: 2px;
    padding-top: 17%;
    padding-left: 18%;

}


/* CHART-VALUES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#graphsection .chart-wrapper .chart-values {
    position: relative;
    display: flex;
    margin-bottom: 0px;
    font-weight: bold;
    font-size: 1.2rem;

}

#graphsection .chart-wrapper .chart-values li {
    flex: 1;
    min-width: 80px;
    text-align: center;
}

#graphsection .chart-wrapper .chart-values li:not(:last-child) {
    position: relative;
}

#graphsection .chart-wrapper .chart-values li:not(:last-child)::before {
    content: '';
    position: absolute;
    right: 0;
    height: 510px;
    border-right: 1px solid var(--divider);
}


/* CHART-BARS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#graphsection .chart-wrapper .chart-bars li {
    position: relative;
    color: var(--white);
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 20px;
    padding: 12px 22px;
    width: 0;
    opacity: 0;
    transition: all 0.65s linear 0.2s;
    text-align: center;
}