.mth-table {
  background-color: #3d50d2;
  color: #fff;
  display: flex;
  text-align: start;
  border-radius: 20px;
  border-collapse: collapse;
  border: none;
  width: 100%;
  margin: 0;
}

.mth-th {
  padding: 24px;
  border-radius: 20px;
  text-align: start;
  vertical-align: top;
  border: none;
  width: 15%;
}

.mth-th + .mth-th {
	border-left: 2px solid #2C41CE;
}

.mth-tr + .mth-tr .mth-th {
  border-top: 2px solid #2C41CE;
}

.mth-contador {
  font-size: 35px;
  font-weight: 600;
}

.mth-p {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
}

.mth-table-mobile {
	display: none;
}

@media (max-width: 920px) {
.mth-table {
  display: none;
}

.mth-table-mobile {
  display: flex;
  background-color: #3d50d2;
  color: #fff;
  display: flex;
  text-align: start;
  border-radius: 20px;
  border-collapse: collapse;
  border: none;
  width: 100%;
  margin: 0;
}
}