.userdualtasksection {
  width: 100%;
  display: flex;
  padding-left: 280px;
  margin-top: 80px;
  flex-wrap: wrap;
}

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

.userdualtasksection .dualTaskLabelsAndCharts .dualTaskLabelsContainer {
  display: flex;
  flex-direction: column;
  width: 200px;
  padding-top: 80px;
  justify-content: center;
}

.userdualtasksection .dualTaskLabelsAndCharts .dualTaskChartContainer {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-bottom: 10px;
}

.userdualtasksection .dualTaskLabelsAndCharts .dualTaskLabel {
  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;
}

.userdualtasksection .dualTaskLabelsAndCharts .dualTaskLabel.active {
  background-color: #e4f4fc;
}

.userdualtasksection .dualTaskLabelsAndCharts .dualTaskLabel:hover {
  background-color: #e4f4fc;
  transition: all 0.3s ease-in-out;
}

.userdualtasksection .dualTaskBarsContainer .charts {
  margin-bottom: 30px;
}

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

.userdualtasksection .dualTaskLabelsAndCharts .dualTaskBarsContainer {
  display: flex;
  width: calc(100% - 265px);
  flex-direction: column;
}

.userdualtasksection .dualTaskLabelsAndCharts .dualTaskBarsLabels .dualTaskLabel {
  margin-bottom: 0;
  text-align: center;
  padding: 0;
  height: 40px;
  text-transform: capitalize;
}

.userdualtasksection .dualTaskLabelsAndCharts .dualTaskBarsLabels .dualTaskLabel:hover {
  background-color: transparent;
}

.userdualtasksection .tableDTCContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 15px auto;
}

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

.userdualtasksection table {
  width: 650px;
}

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

.userdualtasksection .dualTaskTable tr td.blueCell {
  color: #0EB5FE;
}

.userdualtasksection .dualTaskTable tr td.cellValue {
  text-align: center;
}

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

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

/* top-left border-radius */

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

/* top-right border-radius */

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

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

/* bottom-left border-radius */

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

/* bottom-right border-radius */

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

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

.userdualtasksection .DTCGaitTable table {
  width: 800px;
}

.userdualtasksection .DTCGaitTable table tr td, .userdualtasksection .DTCGaitTable 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;
}

.userdualtasksection .DTCGaitTable table .doubleColumn {
  width: 33%;
}

.userdualtasksection .DTCGaitTable table .rowName {
  text-align: left;
  padding: 10px;
  width: 33%;
}

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

.userdualtasksection .DTCGaitTable table th:last-child {
  border-right: none;
}

.userdualtasksection .DTCGaitTable table tr:last-child th {
  border-bottom: none;
}

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

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

/* The container */

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

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

/* Create a custom checkbox */

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

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

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

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

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

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

/* Show the checkmark when checked */

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

/* Style the checkmark/indicator */

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

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

.userdualtasksection .dualTaskLabelsAndCharts .lineChartContainer .labelsWrapper {
  display: flex;
  flex-direction: column;
  width: 510px;
}

.userdualtasksection .dualTaskLabelsAndCharts .dualTaskLabel.hide {
  display: none;
}