table.tenweb-table {
  margin: 20px 0;
  border: 0;
  max-width: 100%;
  overflow-x: auto;
  font-family: "Mulish", sans-serif;
  table-layout: fixed;
}
table.tenweb-table tbody {
  display: block;
  color: #000;
}
table.tenweb-table tbody tr {
  /* &:first-child {
     td {
       @include mixinfont.font(16px, 700, 22px);
       padding: 23px 20px;
       border: 0 !important;
     }
   }*/
  /*      &:not(:last-child) {
          border-bottom: 1px solid #000;
        }*/
}
table.tenweb-table tbody tr:not(:first-child) td:hover {
  padding: 0;
}
table.tenweb-table tbody tr:not(:first-child) td:hover span {
  padding: 22px 14px;
  box-sizing: border-box;
  display: inline-block;
}
table.tenweb-table tbody tr:not(:first-child) td:hover a {
  background: #000;
  cursor: pointer;
  border-radius: 9px;
  display: inline-block;
  padding: 16px 12px;
  box-sizing: border-box;
  position: relative;
  width: 168px;
  color: #fff;
}
table.tenweb-table tbody tr:not(:first-child) td:hover a:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 12px;
  top: 39%;
  transform: rotateZ(-90deg);
  -webkit-transform: rotateZ(-90deg);
  -moz-transform: rotateZ(-90deg);
  background: url(../../../images/icons/arrow.svg) no-repeat;
  background-size: contain;
}
table.tenweb-table tbody tr:not(:first-child) td:nth-child(odd) {
  background: #F5F5F7;
}
table.tenweb-table tbody tr:not(:first-child) td:not(:last-child) {
  border-right: 1px solid #000;
}
table.tenweb-table tbody tr:not(:first-child) {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
table.tenweb-table tbody tr td {
  padding: 22px 14px;
  white-space: normal;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
}
table.tenweb-table tbody tr td span {
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 20px;
}
table.tenweb-table tbody tr td a, table.tenweb-table tbody tr td a:visited {
  cursor: pointer;
  color: #000;
  text-decoration: underline;
}
table.tenweb-table tbody tr td a:hover, table.tenweb-table tbody tr td a:visited:hover {
  text-decoration: none;
}

.first-column-fixed {
  position: relative;
}
.first-column-fixed .tenweb-table-container {
  position: relative;
  overflow: auto;
  max-height: 500px;
}
.first-column-fixed .tenweb-table-container table.tenweb-table {
  overflow-x: unset;
  margin-top: 0;
  margin-bottom: 0;
}
.first-column-fixed .tenweb-table-container table.tenweb-table tr td:first-child {
  position: sticky;
  border-bottom: 1px solid #000 !important;
  box-sizing: border-box;
  top: auto;
  left: 0;
}

.first-row-fixed .tenweb-table-container {
  position: relative;
  overflow: auto;
  max-height: 500px;
}
.first-row-fixed .tenweb-table-container table.tenweb-table {
  overflow-x: unset;
  margin-top: 0;
  margin-bottom: 0;
}
.first-row-fixed .tenweb-table-container table.tenweb-table tr:first-child {
  position: sticky;
  z-index: 1;
  border-bottom: 1px solid #000 !important;
  top: 0;
  left: auto;
}
