.flex.spaceAround {
    justify-content: space-between;
}

.statItem {
    padding: 20px;
    background: white;
    margin-top: 30px;
    border-radius: 15px;
    width: 220px;
    text-align: center;
    width: 26%;
}

#Dashboard .chartSection{
    margin-top: 50px;
}

.customerGraphItem {
    display: flex;
    margin-bottom: 7px;
}

.customerGraphItem:hover {
    background: white;
    border-radius: 4px;
}

.customerGraphItem>div:first-of-type {
    width: 220px;
    font-weight: bold;
}

.information {
    position: relative;
    cursor: pointer;
    max-height: 18px;

    > span {
        font-size: 18px;
        color: rgb(22,200,60);
    }

    .informationBox {
        display: none;
        position: absolute;
        width: 200px;
        background: white;
        border-radius: 10px;
        left: 8px;
        padding: 8px;
        box-shadow: 1px 1px 4px 3px #00000014;
    }

    &:hover {
        .informationBox {
            display: block;
        }
    }
}
