/* CSS Document */
:root {
  --headingFS: Roboto Condensed SemiBold, Impact, Arial Black, sans-serif;
  --sansFS: NeueSwiss, Helvetica, Verdana, sans-serif;
  --serifFS: Ethic Serif Light, Times New Roman, Times, serif;
}

#mainContent:after {
  max-height: 100vh;
}

#mainContentBB {
  display: block;
  height: calc(100vh - var(--headerHeight));
}

.topBar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 8px var(--padding) 8px;
  position: relative;
  background-color: var(--greyLightest);
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.topBar > div {
  display: inline-block;
  vertical-align: middle;
}
.topBar > div > * {
  margin-bottom: 0;
}
.topBar > div.name h2, .topBar > div.name .h2 {
  font-size: 42px;
}

#subscribeArea {
  height: calc(100vh - var(--headerHeight) - var(--subscriberTopBarHeight) - 67px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
#subscribeArea > div {
  display: inline-block;
  width: 50%;
  height: calc(100vh - var(--headerHeight) - var(--subscriberTopBarHeight) - 67px);
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
}
#subscribeArea .billPay {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  padding: var(--padding);
  box-sizing: border-box;
}
#subscribeArea .billPay > * {
  margin-bottom: var(--padding);
  width: 100%;
}
#subscribeArea .billPay > *:last-child {
  margin-bottom: 0;
}
#subscribeArea .billPay .formRow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
}
#subscribeArea .billPay .formRow > * {
  display: inline-flex;
  align-items: center;
  vertical-align: bottom;
  width: 100%;
  margin-right: var(--padding);
}
#subscribeArea .billPay .formRow > *:last-child {
  margin-right: 0;
}
#subscribeArea .billPay .formRow .fieldText {
  margin-bottom: 20px;
}
#subscribeArea .billPay .formRow .fieldText input {
  width: 100%;
  padding: 0;
}
#subscribeArea .billPay .formRow .fieldText input[name=accept_terms] {
  width: auto;
  display: inline;
  opacity: 0;
  position: absolute;
}
#subscribeArea .billPay .formRow .selectField {
  max-width: none;
}
#subscribeArea .preview object {
  display: block;
  width: 100%;
  height: calc(100vh - var(--headerHeight) - var(--subscriberTopBarHeight) - 67px);
  min-height: 492px;
}

footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  background-color: var(--greyLightest);
  padding-left: var(--padding);
}
footer > * {
  display: inline-block;
  vertical-align: middle;
  width: 44% !important;
}
footer .fieldText {
  display: inline-flex;
  max-width: 325px;
  border-bottom-color: transparent;
  position: relative;
  top: -2px;
}
footer .fieldText label {
  position: relative;
  top: 2px;
}
footer .fieldText .enterCode {
  width: 18px;
  height: 31px;
  font: 500 11px/40px var(--sansFS);
  text-transform: uppercase;
  letter-spacing: var(--tracking100);
  background: url(../svg/icons_guest-list525f.svg?20250818) no-repeat 0;
  background-size: 137.386px;
  background-position: -120px;
  position: absolute;
  top: 0;
  right: -18px;
  transition-property: opacity;
}
footer .fieldText .enterCode:hover, footer .fieldText .enterCode:active {
  opacity: 0.5;
}
footer .fieldText .enterCode.disabled {
  opacity: 0.5;
  pointer-events: none;
}
footer .buttonNew {
  max-width: 290px;
  height: 61px;
  margin: 0;
  font: 400 clamp(14px, 3.5vw, 2.3571428571em)/55px var(--sansFS);
  text-transform: none;
  white-space: nowrap;
  border: none !important;
}
footer .buttonNew:first-child {
  border-left: none;
}
footer .buttonNew:last-child {
  border-right: none;
}
footer .buttonNew.disabled {
  opacity: 1;
  color: var(--greyLight);
}

@media (max-width: 900px) {
  .topBar > div.name {
    max-width: 100%;
    overflow: hidden;
  }
  .topBar > div.name h2, .topBar > div.name .h2 {
    font-size: 26px;
  }
  .topBar > div.name > * {
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .topBar > div.text {
    display: none;
  }
  #subscribeArea {
    display: block;
    height: calc(100vh - var(--headerHeight) - var(--subscriberTopBarHeight) - 35px);
  }
  #subscribeArea > div {
    display: block;
    width: 100%;
    height: calc(100vh - var(--headerHeight) - var(--subscriberTopBarHeight) - 35px);
  }
  #subscribeArea > div.billPay > * {
    margin-bottom: 0;
  }
  #subscribeArea > div.billPay .fifty {
    margin-right: 0;
  }
  #subscribeArea > div.billPay .fifty + .fifty {
    display: none;
  }
  #subscribeArea > div.billPay p {
    font-size: 18px;
    line-height: 25px;
  }
  #subscribeArea > div.preview {
    display: none;
  }
  footer .fieldText {
    top: 0;
  }
  footer .buttonNew {
    min-width: 132px;
    height: 44px;
    line-height: 34px;
  }
}
