.table-outer table{
  border-collapse: collapse;
  width: 100%;
}
.table-outer table tr{
  background: var(--table-odd-row-bg);
}
.table-outer table tr:nth-child(even){
  background: var(--table-even-row-bg);
}
.table-outer table td{
  width: 50%;
  line-height: 3rem;
  padding: 1.6rem 2.4rem;
  border: 1px solid var(--main-color);
}
.table-outer table sup {
  line-height: 0;
}
@media(min-width:1360px) and (max-width:1459.98px){
  .table-outer table td {
    line-height: 2.85rem;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  .table-outer table td {
    line-height: 2.5rem;
    padding: 1.2rem 2rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .table-outer table td {
    line-height: 2.5rem;
    padding: 1.2rem 2rem;
  }
}
@media(min-width:768px) and (max-width:991.98px){
  .table-outer table td {
    line-height: 2.7rem;
    padding: 1.2rem 2rem;
  }
}
@media(max-width:767.98px){
  .table-outer table td {
    line-height: 2.4rem;
    padding: 0.8rem 1rem;
  }
}