﻿/*2026 conference form*/

.benefits-table {
  --col: 110px;
  --line: var(--light-grey);
  margin-bottom: 30px;
  border-radius: 5px;
}

.benefits-table .bt-head,
.benefits-table .table-row {
  display: grid;
  grid-template-columns: 1fr var(--col) var(--col);
  align-items: stretch;
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-top: 0;
}

.benefits-table .bt-head > span,
.benefits-table .table-row > .cms-form-label,
.benefits-table .table-row > .checkbox {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin: 0;
}

.benefits-table .bt-head > span + span,
.benefits-table .table-row > .checkbox {
  justify-content: center;
  border-left: 1px solid var(--line);
}

.benefits-table .table-row > .cms-form-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--darkest-grey);
}

.benefits-table .bt-head {
  background: var(--darkest-grey);
  border-color: var(--darkest-grey);
}

.benefits-table .bt-head > span {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
}

.benefits-table .bt-head > span + span {
  border-left-color: rgba(255,255,255,0.25);
}

.benefits-table .bt-head > span:first-child { 
    justify-content: center; 
}

.benefits-table .bt-super {
  border: 0;
  background: none;
}

.benefits-table .bt-super > span:first-child { padding: 0; }
.benefits-table .bt-super .bt-group {
  grid-column: 2 / 4;
  background: var(--massage-green);
  border: 1px solid var(--massage-green);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  color: var(--darkest-grey);
  font-style: normal;
  font-weight: 700;
  justify-content: center;
  text-align: center;
  line-height: 16px;
}

.benefits-table .bt-super + .bt-head {
  border-top: 1px solid var(--darkest-grey);
  border-radius: 5px 0 0 0;
}

.benefits-table .table-row:first-of-type { border-top: 0; }
.benefits-table .table-row:last-child {
  border-radius: 0 0 5px 5px;
}

.benefits-table .table-row .checkbox {
  margin: 0;
}

.benefits-table .table-row .checkbox label {
  padding: 0;
  margin: 0;
  min-height: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.benefits-table .table-row .checkbox label::before {
  box-sizing: border-box;
  background: #fff;
  border: 2px solid var(--mid-tone-grey);
}

.benefits-table .table-row .checkbox input[type="checkbox"]:checked + .cms-form-multifield-label::before {
  box-shadow: none;
}

.benefits-table .table-row .checkbox label:has(input:checked)::before {
  border-color: var(--massage-green);
}

.benefits-table .table-row .checkbox input[type="checkbox"].cms-form-multifield {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.benefits-table .table-row .checkbox input[type="checkbox"]:focus-visible + .cms-form-multifield-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  box-shadow: 0 0 0 2px var(--darkest-grey);
  pointer-events: none;
}

.benefits-table .bt-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.benefits-table .table-row:nth-child(even) { 
    background: var(--light-grey-50); 
}

@media (max-width: 600px) {

  .benefits-table { 
      --col: 64px;
  }

  .benefits-table .bt-head > span,
  .benefits-table .table-row > .cms-form-label,
  .benefits-table .table-row > .checkbox { 
      padding: 10px 12px;
  }

  .benefits-table .table-row > .cms-form-label { 
      font-size: 15px; line-height: 20px;
  }

  .benefits-table .bt-head > span { 
      font-size: 14px; 
  }

}
