.kinematicsection {
    margin-top: 40px;
}

.kinematicsection .titleContainer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
}

.kinematicsection .sectionTitle {
    font-family: "Metropolis Bold";
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 3.6px;
    color: #333;
}

.kinematicsection .hLine {
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background-color: #707070;
}

.kinematicsection .grfAndLabelsContainer {
    margin: auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    padding-left: 190px;
    padding-right: 30px;
}

.kinematicsection .grfAndLabelsContainer.hide {
    display: none;
}

.kinematicsection .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%;
}

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

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

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

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

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

.kinematicsection .kinematicLabelsAndCharts {
    display: flex;
    width: 100%;
    margin-top: 20px;
}

.kinematicsection .kinematicLabelsAndCharts.hide {
    display: none;
}

.kinematicsection .kinematicLabelsAndCharts .kinematicLabelsContainer {
    display: flex;
    flex-direction: column;
    width: 200px;
}

.kinematicsection .kinematicLabelsAndCharts .kinematicChartContainer {
    display: flex;
    width: calc(100% - 230px);
    flex-direction: column;
}

.kinematicsection .kinematicLabelsAndCharts .kinematicLabel {
    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;
    cursor: pointer;
    border-radius: 17px;
    margin-bottom: 20px;
}

.kinematicsection .kinematicLabelsAndCharts .kinematicLabel.active {
    background-color: #e4f4fc;
}

.kinematicsection .kinematicLabelsAndCharts .kinematicLabel:hover {
    background-color: #e4f4fc;
    transition: all 0.3s ease-in-out;
}

/* The container */

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

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

/* Create a custom checkbox */

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

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

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

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

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

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

/* Show the checkmark when checked */

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

/* Style the checkmark/indicator */

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