.cpContainer div.contain {
  position: relative;
}

.cpContainer div.table-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  @media screen and (max-width: 959px) {
    scroll-padding-left: 20vw;
  }
  @media screen and (max-width: 500px) {
    scroll-padding-left: 30vw;
  }
}

.cpContainer .table-container table {
  table-layout: fixed;
  width: 100%;
  border-spacing: 0 !important;
  border-collapse: separate;
  thead tr th,
  tfoot tr td {
    background-color: #fff;
    text-align: left;
    .button-container {
      text-align: left;
      padding-left: 1em;
    }
    a.button-red {
      background-color: #c12033;
      border-color: #c12033;
    }
  }
  tbody tr td {
    background-color: #fff;
    border-bottom: 1px #d1d3d4 solid;
    p {
      text-align: left;
      text-transform: none;
      font-family: "HelveticaNeue", sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      color: #000;
      margin: 0;
      padding: 14px 0 14px 1em;
      border-top: none;
    }
  }
}

.cpContainer table thead tr th.sticky-col, .cpContainer table tbody tr td.sticky-col, .cpContainer table tfoot tr td.sticky-col {
  position: sticky;
  left: -1px;
  z-index: 2;
  max-width: 200px;
  width: 10vw;
  @media screen and (max-width: 959px) {
    width: 20vw;
    min-width: 20vw;
    max-width: 20vw;
  }
  @media screen and (max-width: 500px) {
    width: 30vw;
    min-width: 30vw;
    max-width: 30vw;
  }
  background-image: linear-gradient(-270deg, white 95%, transparent 100%);
  background-color: transparent;
}

.snap-col {
  position: relative;
  scroll-snap-align: start;
  width: 20vw;
  align-content: start;
  max-width: 350px;
  @media screen and (max-width: 959px) {
    width: 30vw;
    min-width: 30vw;
    max-width: 30vw;
  }
  @media screen and (max-width: 500px) {
    width: 40vw;
    min-width: 40vw;
    max-width: 40vw;
  }
}

th.snap-col::after {
  content: "";
  top: calc(100% - 5px);
  height: 4px;
  width: calc(100% - 28px);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background: #000;
}

.copy-container {
  text-align: left;
}

.cpContainer table a h3 {
  display: inline-block;
  margin: 0;
  text-align: left;
  font-family: "HelveticaNeue", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #000;
  font-size: 36px;
  @media screen and (max-width: 749px) {
    font-size: 28px;
  }
}

.cpContainer table h4 {
  padding: 7px 0 10px;
  font-family: "HelveticaNeue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #c12033;
  text-align: left;
}

.cpContainer table p {
  font-family: "Helvetica", sans-serif;
  font-weight: 100;
  font-size: 14px;
  line-height: 21px;
  color: #000;
  text-align: left;
}

.cpContainer table th .img-container {
  position: relative;
  height: auto;
}

.this-product {
  display: block;
  position: absolute;
  margin: 0;
  font-size: 10px;
  padding: 6px 10px;
  background: #000;
  color: #fff;
  left: 0;
  @media screen and (max-width: 959px) {
    top: -10px;
  }
  @media screen and (min-width: 960px) {
    bottom: 7px;
  }
}

.cpContainer table thead tr th:first-child,
.cpContainer table tfoot tr td:first-child {
  background-image: linear-gradient(-270deg, white 95%, transparent 100%);
  background-color: transparent;
  text-align: center;
  vertical-align: bottom;
  padding-bottom: 2em;
  strong {
    font-size: 16px;
    font-weight: 700;
    font-family: "HelveticaNeue", sans-serif;
  }
}

@media screen and (max-width: 959px) {  /* edge gradient and over-scroll */
  .cpContainer div.table-container::after {
    content: "";
    flex: 0 0 200px;
  }
  .cpContainer div.contain::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 23px;
    width: calc(40px + 10vw);
    height: calc(100% - 100px);
    background: linear-gradient(
      to left,
      white 0%,
      #ffffffbf 50%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 3;
}
}