.activityzentrek {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

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

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

.activityzentrek .labelsAndCharts {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.activityzentrek .labelsAndCharts .chartLabelsContainer {
    display: flex;
    flex-direction: column;
    width: 200px;
    padding-top: 80px;
    justify-content: center;
}

.activityzentrek .labelsAndCharts .chartContainer {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-bottom: 10px;
}

.activityzentrek .labelsAndCharts .label {
    font-family: "Metropolis Regular";
    font-size: 13px;
    line-height: 1.21;
    letter-spacing: 4.32px;
    color: #333333;
    height: 70px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 17px;
    margin-bottom: 20px;
}

.activityzentrek .labelsAndCharts .label.active {
    background-color: #e4f4fc;
}

.activityzentrek .labelsAndCharts .label:hover {
    background-color: #e4f4fc;
    transition: all 0.3s ease-in-out;
}

.activityzentrek .tagsContainer .charts {
    margin-bottom: 30px;
}

.activityzentrek .labelsAndCharts .tagsLabels {
    display: flex;
    flex-direction: column;
    width: 225px;
    justify-content: space-evenly;
    padding-bottom: 80px;
    padding-top: 20px;
    margin-right: 15px;
}

.activityzentrek .labelsAndCharts .tagsContainer {
    display: flex;
    width: calc(100% - 265px);
    flex-direction: column;
}

.activityzentrek .labelsAndCharts .tagsLabels .label {
    margin-bottom: 0;
    text-align: center;
    padding: 0;
    height: 40px;
    text-transform: capitalize;
}

.activityzentrek .labelsAndCharts .tagsLabels .label:hover {
    background-color: transparent;
}

.activityzentrek .tableSummaryContainer, .activityzentrek .tableBreakdownContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px auto;
}

.activityzentrek .summary {
    width: 651px;
    border: solid 1px #221f20;
    border-radius: 10px;
    margin: 0 auto;
}

.activityzentrek table {
    width: 650px;
}

.activityzentrek .summary tr td {
    padding: 10px 15px;
    font-family: "Metropolis Regular";
    font-size: 16px;
    line-height: 1.21;
    letter-spacing: 4.32px;
    color: #555555;
}

.activityzentrek .summary tr td.blueCell {
    color: #0eb5fe;
}

.activityzentrek .summary tr td.cellValue {
    text-align: center;
}

.activityzentrek table tr td {
    border-right: 1px solid #555555;
    border-bottom: 1px solid #555555;
}

.activityzentrek table tr td:last-child {
    border-right: none;
}

/* top-left border-radius */

.activityzentrek table tr:first-child td:first-child {
    border-top: none;
    border-left: none;
}

/* top-right border-radius */

.activityzentrek table tr:first-child td:last-child {
    border-top: none;
    border-right: none;
}

.activityzentrek table tr:last-child td {
    border-bottom: none;
}

/* bottom-left border-radius */

.activityzentrek table tr:last-child td:first-child {
    border-left: none;
}

/* bottom-right border-radius */

.activityzentrek table tr:last-child td:last-child {
    border-right: none;
}

.activityzentrek .breakdown {
    margin-bottom: 55px;
    border: solid 1px #555555;
    border-radius: 10px;
}

.activityzentrek .breakdown table {
    width: 800px;
}

.activityzentrek .breakdown table tr td,
.activityzentrek .breakdown table tr th {
    font-family: "Metropolis Regular";
    font-size: 16px;
    line-height: 1.21;
    letter-spacing: 4.32px;
    text-align: center;
    color: #555555;
    padding: 10px 0;
}

.activityzentrek .breakdown table .doubleColumn {
    width: 33%;
}

.activityzentrek .breakdown table .rowName {
    text-align: left;
    padding: 10px;
    width: 33%;
    text-transform: capitalize;
}

.activityzentrek .breakdown table tr th {
    border-right: 1px solid #555555;
    border-bottom: 1px solid #555555;
}

.activityzentrek .breakdown table th:last-child {
    border-right: none;
}

.activityzentrek .breakdown table tr:last-child th {
    border-bottom: none;
}

.activityzentrek .labelsContainer,
.activityzentrek .labelsContainer .singleLabel {
    display: flex;
    align-items: center;
    margin: 5px 10px;
}

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

/* The container */

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

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

/* Create a custom checkbox */

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

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

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

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

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

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

/* Show the checkmark when checked */

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

/* Style the checkmark/indicator */

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

.activityzentrek .labelsAndCharts .lineChartContainer {
    display: flex;
    flex-direction: column;
    width: calc(100% - 230px);
    align-items: center;
}

.activityzentrek .labelsAndCharts .lineChartContainer .labelsWrapper {
    display: flex;
    flex-direction: column;
    width: 510px;
}

.activityzentrek .labelsAndCharts .label.hide {
    display: none;
}
