.table{
  width: 100%;
  border-collapse: collapse;
}
.table th{
  padding: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.2rem;
  letter-spacing: 0.22px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
  background: var(--secondary);
}
.table th:first-child{
  border-radius: 1rem 0 0 1rem;
}
.table th:last-child{
  border-radius:  0 1rem 1rem 0;
}
.table tr:nth-child(even){
  background: var(--secondary);
}
.table td{
  padding: 1.2rem;
  border: 1px solid var(--border-secondary);
  border-left: 0;
  border-right: 0;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: -0.14px;
  color: var(--light-black);
}
.table td:first-child{
  color: var(--black);
}
.table tr:first-child td{
  border-top: 0;
}
.table td sup {
  line-height: 0;
  position: relative;
  top: 0.3rem;
  font-size: 1rem;
}
@media(min-width:1360px) and (max-width:1459.98px){
}
@media(min-width:1200px) and (max-width:1359.98px){
}
@media(min-width:992px) and (max-width:1199.98px){
}
@media(min-width:768px) and (max-width:991.98px){
}
@media(max-width:767.98px){
}