.userbalancesection {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px 30px 30px;
}

.userbalancesection .noDataMessage {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 50px;
    font-family: "Metropolis Bold";
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 3.6px;
    color: #333333;
    padding: 0 10%;
}

.userbalancesection .noDataMessage.hide {
    display: none;
}

.userbalancesection .balanceLabelsAndCharts {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.userbalancesection .balanceLabelsAndCharts.hide {
    display: none;
}

.userbalancesection .balanceLabelsAndCharts .balanceLabelsContainer {
    display: flex;
    flex-direction: column;
    width: 200px;
}

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

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

/* The container */

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

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

/* Create a custom checkbox */

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

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

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

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

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

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

/* Show the checkmark when checked */

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

/* Style the checkmark/indicator */

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

.userbalancesection .ellipseAndCopChartContainer {
    display: flex;
    flex-direction: column;
    padding-left: 190px;
}

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

.userbalancesection .chartTitle.padd {
    padding-left: 200px;
}

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

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

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

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

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

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

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

.userbalancesection .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;
}

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

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

.userbalancesection .balanceTableContainer {
    margin: auto;
    margin-top: 80px;
}

.userbalancesection .copPathLabelsContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    margin-right: 20px;
}

.userbalancesection .tableContainer {
    border: solid 1px #221f20;
    border-radius: 10px;
}

.userbalancesection .tableContainer tr td {
    padding: 10px 15px;
    font-family: "Metropolis Regular";
    font-size: 18px;
    line-height: 1.21;
    letter-spacing: 2.32px;
    color: #333333;
}

.userbalancesection .tableContainer tr td.cellValue {
    text-align: center;
}

.userbalancesection table tr td {
    border-right: 1px solid #221f20;
    border-bottom: 1px solid #221f20;
}

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

/* top-left border-radius */

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

/* top-right border-radius */

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

/* bottom-left border-radius */

.userbalancesection table tr:last-child td:first-child {
    border-bottom: none;
    border-left: none;
}
.userbalancesection table tr:last-child td {
    border-bottom: 0;
}
/* bottom-right border-radius */

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

.userbalancesection .neuroContainer table {
    width: auto;
}
.userbalancesection .tableContainer tr td.bold {
    font-family: "Metropolis Bold";
}
