.chartcop {

}

/* The container */

.chartcop .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 */

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

/* Create a custom checkbox */

.chartcop .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 */

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

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

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

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

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

/* Show the checkmark when checked */

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

/* Style the checkmark/indicator */

.chartcop .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);
}


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

.chartcop .labelsContainer .singleLabel {
    width: 60%;
}

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

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



.chartcop .copPathAndLabelsContainer.hide {
    display: none;
}

.chartcop .copPathAndLabelsContainer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 80px;
}

.chartcop .copPathAndLabelsContainer .copPathLabel {
    font-family: "Metropolis Regular";
    font-size: 16px;
    line-height: 1.21;
    letter-spacing: 2.32px;
    text-align: center;
    color: #333333;
    height: 70px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 17px;
    margin-bottom: 20px;
}

.chartcop .copPathAndLabelsContainer .copPathLabel.active {
    background-color: #e4f4fc;
}

.chartcop .copPathAndLabelsContainer .copPathLabel:hover {
    background-color: #e4f4fc;
    transition: all 0.3s ease-in-out;
}



.chartcop .copPathChartContainer {
    display: flex;
    width: calc(100% - 220px);
    flex-direction: column;
}


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

.chartcop .labelsWrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    padding-left: 230px;
}