body.belair-grounds-site-checkouts-open {
  overflow: hidden !important;
}

#belair-grounds-site-checkouts-root {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147482200;
  overflow: auto;
  background: #f1f5f2;
  color: #26382f;
}

#belair-grounds-site-checkouts-root.active {
  display: block;
}

.gsc-shell {
  min-height: 100%;
}

.gsc-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  background: #1c4d3e;
  color: #fff;
  padding: 18px 21px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .18);
}

.gsc-header > div > span {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.gsc-header h1 {
  margin: 3px 0;
  color: #fff;
  font-size: 1.42rem;
}

.gsc-header p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
  font-size: .83rem;
  line-height: 1.4;
}

.gsc-header button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 11px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
}

.gsc-summary {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  width: min(1050px, calc(100% - 28px));
  margin: 17px auto 13px;
  overflow: hidden;
  border: 1px solid #d5e1d9;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(28, 73, 54, .06);
}

.gsc-summary > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 14px;
  border-right: 1px solid #dfe8e2;
}

.gsc-summary > div:last-child {
  border-right: 0;
}

.gsc-summary span {
  color: #728078;
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gsc-summary strong {
  color: #1c563d;
}

.gsc-list,
.gsc-loading,
.gsc-error,
.gsc-empty {
  width: min(1050px, calc(100% - 28px));
  margin: 0 auto;
}

.gsc-list {
  display: grid;
  gap: 10px;
}

.gsc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border: 1px solid #d3dfd7;
  border-left: 6px solid #c39b31;
  border-radius: 13px;
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 5px 17px rgba(28, 73, 54, .05);
}

.gsc-row.complete {
  border-left-color: #248551;
  background: #edf9f1;
}

.gsc-check {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  cursor: pointer;
}

.gsc-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gsc-checkbox {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 2px solid #aebdb4;
  border-radius: 9px;
  background: #fff;
  color: transparent;
  font-weight: 1000;
}

.gsc-check input:checked + .gsc-checkbox {
  border-color: #258250;
  background: #258250;
  color: #fff;
}

.gsc-check input:disabled + .gsc-checkbox {
  opacity: 1;
}

.gsc-site-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gsc-category {
  color: #718078;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gsc-site-copy strong {
  color: #244c39;
  font-size: 1rem;
}

.gsc-site-copy small {
  color: #677970;
  line-height: 1.35;
}

.gsc-booking-status {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f4ead0;
  color: #765b15;
  padding: 6px 10px;
  font-size: .72rem;
  font-weight: 900;
}

.gsc-row.complete .gsc-booking-status {
  background: #d4efdf;
  color: #185d38;
}

.gsc-loading,
.gsc-error,
.gsc-empty {
  box-sizing: border-box;
  border: 1px solid #d5e1d9;
  border-radius: 14px;
  background: #fff;
  padding: 28px;
  text-align: center;
}

.gsc-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #607269;
  font-weight: 800;
}

.gsc-loading > span {
  width: 18px;
  height: 18px;
  border: 3px solid #c8d7ce;
  border-top-color: #25734d;
  border-radius: 999px;
  animation: gsc-spin .8s linear infinite;
}

@keyframes gsc-spin {
  to { transform: rotate(360deg); }
}

.gsc-error {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-color: #e1aaa5;
  background: #fff2f1;
  color: #7e3934;
}

.gsc-error button {
  align-self: center;
  border: 0;
  border-radius: 9px;
  background: #7e3934;
  color: #fff;
  padding: 9px 13px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.gsc-empty span {
  display: block;
  color: #23804e;
  font-size: 2rem;
}

.gsc-empty h2 {
  margin: 6px 0 0;
  color: #315443;
  font-size: 1rem;
}

.gsc-footer {
  width: min(1050px, calc(100% - 28px));
  margin: 14px auto 0;
  box-sizing: border-box;
  padding: 0 3px 45px;
  color: #718078;
  font-size: .72rem;
  line-height: 1.45;
}

.gsc-toast {
  position: fixed;
  z-index: 2147483600;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 30px);
  box-sizing: border-box;
  border-radius: 11px;
  background: #1d513d;
  color: #fff;
  padding: 11px 15px;
  box-shadow: 0 13px 35px rgba(0, 0, 0, .25);
  text-align: center;
  font-weight: 800;
}

.gsc-toast.error {
  background: #842f2d;
}

@media (max-width: 720px) {
  .gsc-header {
    padding: 14px;
  }

  .gsc-header p {
    font-size: .76rem;
  }

  .gsc-summary {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .gsc-summary > div:nth-child(2) {
    border-right: 0;
  }

  .gsc-summary > div:nth-child(-n + 2) {
    border-bottom: 1px solid #dfe8e2;
  }

  .gsc-list,
  .gsc-loading,
  .gsc-error,
  .gsc-empty,
  .gsc-footer {
    width: calc(100% - 20px);
  }

  .gsc-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .gsc-booking-status {
    margin-left: 46px;
  }
}
