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

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

.useroverallsection .noteContainer {
  width: 100%;
  padding-right: 30px;
}
.useroverallsection .noteContainer > * {
  font-family: 'Metropolis Regular';
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1.6px;
  color: #333;
}

.useroverallsection .noteContainer .blueText {
  font-family: "Metropolis Bold";
  color: #0EB5FE;
}

.useroverallsection .titleContainer .dateReference {
  font-family: 'Metropolis Bold';
  font-size: 16px;
  line-height: 1.21;
  letter-spacing: 4.32px;
  color: #333333;
}

.useroverallsection .overallContainer {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}

.useroverallsection .indexContainer {
  display: flex;
  flex-direction: column;
  margin: 40px 40px 40px 0;
}

.useroverallsection .indexContainer .indexTitle {
  font-family: 'Metropolis Regular';
  line-height: 1.21;
  letter-spacing: 4.32px;
  color: #333333;
  font-size: 18px;
  background-color: #c8c8c7;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.useroverallsection .indexContainer .indexValue {
  font-family: 'Metropolis Regular';
  font-weight: normal;
  line-height: 1.2;
  font-size: 80px;
  color: #0eb5fe;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 52px 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.useroverallsection .indexContainer.hide {
  display: none;
}

.useroverallsection .neuroContainer {
  border: solid 1px #707070;
  border-radius: 10px;
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* width: 100%; */
  /* justify-content: flex-start; */
  /* align-items: flex-end; */
  /* margin-bottom: 70px; */
}

.useroverallsection .neuroCard {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 30px;
}

.useroverallsection .neuroCard .neuroTitle {
  font-family: 'Metropolis Bold';
  font-size: 24px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 3.6px;
  text-align: center;
  color: #333333;
  display: flex;
  align-items: center;
  min-height: 60px;
  text-transform: capitalize;
}

.useroverallsection .neuroCard .neuroValue {
  font-family: 'Metropolis Regular';
  font-weight: normal;
  line-height: 1.2;
  font-size: 80px;
  color: #0eb5fe;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}

.useroverallsection .neuroCard .neuroSubTitle {
  font-family: 'Metropolis Regular';
  font-size: 16px;
  line-height: 1.21;
  letter-spacing: 4.32px;
  text-align: center;
  color: #333333;
  text-transform: uppercase;
}

.useroverallsection .tableContainer {
  /* width: 400px; */
  border: solid 1px #221f20;
  border-radius: 10px;
  margin: 40px 0;
}

.useroverallsection .tableContainer.stationary {
  margin: 40px auto;
}



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

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

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

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

/* top-left border-radius */

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

/* top-right border-radius */

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

/* bottom-left border-radius */

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

/* bottom-right border-radius */

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

.useroverallsection .neuroContainer table {
  width: auto;
}

.useroverallsection .neuroContainer table .commCol {
  width: 140px;
  text-align: center;
}

.useroverallsection .neuroContainer table .nameRow {
  padding: 2px 10px;
}

.useroverallsection .neuroContainer table tr td {
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

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