
.--table-close{
  position: relative;
}

.--table-overlay {
    position: relative;
    > *:first-child {
        &::before {
            content:"";
            background-color: rgba(80,80,80, 0.8);
            display: block;
            width:calc(100% + 2px);
            height:100%;
            position: absolute;
            top:0;
            left:-1px;
            z-index:100;
        }
    }
}

.--table-anti-overlay{
  /* border-right: 1px solid var(--border-gray); */
}

.privacy-table-close-text{
  color: #fff;
  text-align: center;
  position: absolute;
  font-size: 1.125rem;
  width: 100%;
  font-weight: bold;
  z-index: 110;
}

@media all and (min-width: 768px), print {
    .privacy-table-close-text {
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}

@media all and (max-width: 767px), print {
  .privacy-table-close-text{
    font-size: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    left: 2rem;
  }
  .--table-overlay th:before,
  .--table-overlay td:before{
    background-color: rgba(80,80,80, 0.8);
  }
}