.block-table {
  overflow: hidden;
}
.block-table p {
  margin-bottom: calc(25px + 25 * ((100vw - 320px) / 1120));
}
.block-table .table > * {
  z-index: 2;
  position: relative;
}

.block-table .table .images {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.block-table .images .img{
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
}
.block-table .images img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 0vw;
  width: calc(270px + 450 * (100vw - 320px) / 1120);
  height: 50vh;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.block-table .table {
  position: relative;
}

.block-table .hr{
  margin: 0 20px -1px;
}

.block-table .th {
  margin-bottom: 10px;
  font-family: FK Grotesk Mono, monospace;
}
.block-table .tr {
  min-height: 0vw;
  padding-top: calc(17px + 7 * ((100vw - 320px) / 1120));
  padding-bottom: calc(17px + 7 * ((100vw - 320px) / 1120));
}
.block-table .td {
  color: #ffffff;
  color: var(--color-main, #ffffff);
  pointer-events: none;
}

.block-table .th,
.block-table .table.hover-image .td {
  color: rgba(255,255,255,0.5);
  color: var(--color-third, rgba(255,255,255,0.5));
}
.block-table .glitch-hover:hover .td,
.block-table .has-image:hover .td,
.block-table .has-image.hover .td {
  color: rgba(255,255,255,0.87);
  color: var(--color-second, rgba(255,255,255,0.87));
}

.block-table .td-2 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3 / 11;
}
.block-table .th-1,
.block-table .td-1 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-column: 3 / 6;
}
.block-table .th-2,
.block-table .td-1 + .td-2 {
  -ms-grid-column: 6;
  -ms-grid-column-span: 5;
  grid-column: 6 / 11;
}

.block-table .hr.hide {
  /* transform: translateX(-100%); */
  /* opacity: 0; */
}
.block-table .tr.hide {
  /* transform: translateX(-60%); */
  /* opacity: 0; */
}
.block-table .hr.hide.show,
.block-table .tr.hide.show {
  transition: transform .6s ease .2s, opacity .3s ease .2s;
  transform: translateX(0%);
  opacity: 1;
}
.block-table .tr.hide.show {
  transition: transform .6s ease .2s, opacity .3s ease .5s;
}

.has-image.glitch [data-text]::before,
.has-image.glitch [data-text]::after,
.has-image.glitch-hover:hover [data-text]::before,
.has-image.glitch-hover:hover [data-text]::after {
  background-color: transparent;
}
.block-table div.glitch-hover:hover .td-2::before,
.block-table div.glitch-hover:hover .td-2::after {
  display: none;
}

.block-table.mobile-both .mobile-underscore {
  display: none;
}

@media (max-width: 767.9px){
  .block-table .hr{
    margin: 0 10px -1px;
  }

  .block-table.mobile-first .th-2,
  .block-table.mobile-first .td-2,
  .block-table.mobile-second .th-1,
  .block-table.mobile-second .td-1 {
    display: none;
  }
  
  .block-table:not(.mobile-both) .th-2,
  .block-table .td-2,
  .block-table:not(.mobile-both) .td-1 + .td-2 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 10;
    grid-column: 3 / 13;
  }
  .block-table.mobile-both .container {
    grid-template-columns: repeat( 2, 8.33333%) repeat(3, min-content) repeat(7, 1fr);
  }
  .block-table.mobile-both .td-1 {
    white-space: nowrap;
  }
  .block-table.mobile-both .th-2,
  .block-table.mobile-both .td-1 + .td-2 {
    -ms-grid-column-span: 10;
    grid-column-end: 13;
    margin-left: -5px;
  }
  .block-table.mobile-both .mobile-underscore {
    display: inline;
  }
}