.ellipsecopgraph .ellipseAndCopChartContainer {
    display: flex;
    flex-direction: column;
    padding-left: 190px;
    margin-top: 30px;
}

.ellipsecopgraph .chartTitle {
    font-family: "Metropolis Bold";
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: 2.32px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    width: 100%;
}


.ellipsecopgraph .ellipseAndCopChartContainer .labelsWrapper {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin-bottom: 20px;
    padding-left: 40px;
}



.ellipsecopgraph .balanceChartContainer {
    display: flex;
    width: calc(100% - 30px);
    flex-direction: column;
}


/* The container */

.ellipsecopgraph .chkContainer {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */

.ellipsecopgraph .chkContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */

.ellipsecopgraph .chkContainer .checkmark {
    position: absolute;
    top: -8px;
    left: 7px;
    height: 25px;
    width: 25px;
    background-color: white;
    border-radius: 25%;
    border: 1px solid #ccc;
    z-index: 0;
}

/* On mouse-over, add a grey background color */

.ellipsecopgraph .chkContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

.ellipsecopgraph .chkContainer input:checked ~ .checkmark {
    background-color: #19a4fd;
    border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */

.ellipsecopgraph .chkContainer .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.ellipsecopgraph .chkContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.ellipsecopgraph .chkContainer .checkmark:after {
    left: 8px;
    top: 0px;
    width: 10px;
    height: 20px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.ellipsecopgraph .labelsContainer,
.ellipsecopgraph .labelsContainer .singleLabel {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    margin: 5px 10px;
}

.ellipsecopgraph .labelsContainer .singleLabel {
    width: 50%;
}

.ellipsecopgraph .labelsContainer .singleLabel .labelText {
    font-family: "Metropolis Regular";
    font-size: 14px;
    letter-spacing: 1.4px;
    color: #333333;
    margin-left: 5px;
}

.ellipsecopgraph .labelsContainer .totalLabel {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    font-family: "Metropolis Bold";
    font-size: 18px;
    letter-spacing: 1.4px;
}
