.mobile-only {
  display: none;
}

.notification-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: #fedb11;
  color: #111;
  font-weight: 600;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9999;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
  animation: pulse 2s infinite;
}

.txt-red {
  color: #c4250d;
}
.txt-green {
  color: #2bb862;
}
.txt-yellow {
  color: #856404;
}

.bg-red {
  background: #c4250d;
  color: #fff;
}
.bg-green {
  background: #d4edda;
  color: #155724;
}
.bg-yellow {
  background: #fff3cd;
  color: #856404;
}
.bg-orange {
  background: #ecaf57;
  color: #fff;
}
.bg-grey {
  background: #e9e9e9;
  color: #333;
}
.bg-slate {
  background: #111;
  color: #fff;
}

.bg-wrap {
  width: 100%;
  height: 400px;
  position: absolute;
  z-index: 1;
  overflow: hidden;
}
.content {
  position: relative;
  z-index: 2;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html,
body {
  color: #333;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #f9f9f9;
  font-family: 'Sintony', sans-serif;
  font-weight: 400;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  letter-spacing: 0;
}

#app {
  height: 100%;
}


h1,h2,h3,h4,h5,h6 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}


p {
    margin-bottom: 25px;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="number"],
textarea {
  width: 100%;
  color: #333;
  text-align: left;
}
textarea {
  min-height: 150px;
}
select {
    width: 100%;
}
.form-container input[type="text"],
.form-container input[type="date"],
.form-container input[type="tel"],
.form-container select {
  border: solid 1px #ddd;
  background: #fefefe;
  border-radius: 2px;
  padding: 10px;
  font-size: 15px;
  width: 100%;
}
.form-error {
  font-size: 11px;
  color: #c10d0f;
  margin: -10px 0 10px;
  display: block;
}

input[type="text"].disabled {
 background: #efefef;
 color: #999;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  top: 100vh;
  z-index: -1;
  transition: all 0.2s;
}
  .overlay.active {
    top: 0;
    z-index: 999;
    opacity: 1;
  }
  .modal {
    width: 90%;
    max-width: 500px;
    min-height: 200px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    max-height: 90%;
    overflow: auto;
  }
  .modal h5 {
    margin-top: 0;
  }
  .modal select {
    width: 100%;
  }

.button {
  border: none !important;
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  height: 65px;
  line-height: 65px;
  min-width: 160px;
  letter-spacing: -0.5px;
  border-radius: 50px;
  transition: all 0.2s;
  height: auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
  .button.inline {
    display: inline-block !important;
    width: auto !important;
    margin: 0 auto;
  }
  .button.medium {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    min-width: 0;
  }
  .button.small {
    height: 30px;
    line-height: 30px;
    font-size: 13px;
  }
  .button.xsmall {
    height: 20px;
    line-height: 20px;
    font-size: 11px;
  }

  .button.blank{
    background: none;
    color: #62aedc;
  }
  .button.yellow {
    background: #f9d359;
    color: #000;
  }
  .button.blue {
    background: #00497E;
    color: #fff;
  }
  .button.orange {
    background: #F68B1F;
    color: #fff;
  }
  .button.gold {
    background: #111;
    color: #f0c082;
  }
  .button:disabled,
  .button.disabled {
    background: #f8f8f8 !important;
    color: #ddd !important;
    opacity: 0.8;
    cursor: default !important;
  }
  .button.red {
    background: #c4250d;
    color: #fff;
    border-radius: 100px;
    text-transform: initial;
    letter-spacing: -0.5px;
  }
  .button.white {
    background: #fff;
    color: #c4250d;
  }
  .button.grey {
    background: #222;
    color: #fff;
  }
  .button.green {
    background: #333F49;
    color: #fff;
    height: auto;
    transition: all 0.2s;
  }
  .button.darkgreen {
    background: #d4edda;
    color: #155724;
    height: auto;
    transition: all 0.2s;
  }
  .button.blank:hover{
    color: #85bee0;
  }
  .button.green:hover{
    background: #5a9a26;
    color: #fff;
  }
  .button.purple:hover {
    background: #7039a5;
  }
  .button.grey:hover {
    background: #777;
  }
  .button.black {
    background: #111;
    color: #d0b271;
  }
  .button.blue.invert {
    background: none;
    -webkit-box-shadow:inset 0px 0px 0px 2px #17a2b8;
    -moz-box-shadow:inset 0px 0px 0px 2px #17a2b8;
    box-shadow:inset 0px 0px 0px 2px #17a2b8;
    color: #17a2b8;
  }
  .button.gold.invert {
    background: none;
    -webkit-box-shadow:inset 0px 0px 0px 2px #d0b271;
    -moz-box-shadow:inset 0px 0px 0px 2px #d0b271;
    box-shadow:inset 0px 0px 0px 2px #d0b271;
    color: #d0b271;
  }
  .button.invert.unfavourable {
    border: none !important;
  }
  .button.text {
    color: #222 !important;
    background: none;
    border: none;
  }
  .button.button-block {
    display: block;
    width: 100%;
  }
  .button.bold {
    font-weight: 700;
  }

.button.primary {
    background: var(--primary, #00497E);
    color: var(--primary-inverse, #FFFFFF);
  }
  .button.secondary {
    background: var(--secondary, #F68B1F);
    color: var(--secondary-inverse, #FFFFFF);
  }
  .button.contrast {
    background: var(--contrast, #333F49);
    color: var(--contrast-inverse, #FFFFFF);
  }

  .button.primary.outline {
    background: var(--primary-inverse, #FFFFFF);
    color: var(--primary, #00497E);
    -webkit-box-shadow:inset 0px 0px 0px 2px var(--primary);
    -moz-box-shadow:inset 0px 0px 0px 2px var(--primary);
    box-shadow:inset 0px 0px 0px 2px var(--primary);
  }
  .button.secondary.outline {
    background: var(--secondary-inverse, #FFFFFF);
    color: var(--secondary, #F68B1F);
    -webkit-box-shadow:inset 0px 0px 0px 2px var(--secondary);
    -moz-box-shadow:inset 0px 0px 0px 2px var(--secondary);
    box-shadow:inset 0px 0px 0px 2px var(--secondary);
  }
  .button.contrast.outline {
    background: var(--contrast-inverse, #FFFFFF);
    color: var(--contrast, #333F49);
    -webkit-box-shadow:inset 0px 0px 0px 2px var(--contrast);
    -moz-box-shadow:inset 0px 0px 0px 2px var(--contrast);
    box-shadow:inset 0px 0px 0px 2px var(--contrast);
  }

  .button.primary:hover,
  .button.secondary:hover,
  .button.contrast:hover,
  .booking-action.primary:hover {
    filter: brightness(85%)
  }

  .button.primary.outline:hover {
    background: var(--primary, #00497E);
    color: var(--primary-inverse, #FFFFFF);
    -webkit-box-shadow:inset 0px 0px 0px 2px var(--primary);
    -moz-box-shadow:inset 0px 0px 0px 2px var(--primary);
    box-shadow:inset 0px 0px 0px 2px var(--primary);
    filter: brightness(1.0);
  }

.alert {
  display: block;
  margin: 0 0 10px;
  border: solid 1px;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 14px;
  border-radius: 0;
}

  .alert.red {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }
  .alert.yellow {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
  }
  .alert.blue {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
  }

.input-error {
    display: block;
    font-size: 12px;
    color: #c4250d;
    padding: 2px;
}

.checkbox {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  margin: 15px 0;
}
  .checkbox input {
    margin: 1px 10px 0 0;
    display: block;
    padding: 0;
    width: 20px;
    height: 20px;
    flex-wrap: wrap;
  }
  .checkbox label {
    margin: 0;
    font-size: 14px;
    width: calc(100% - 30px);
  }

.badge {
  display: inline-block;
  padding: 5px 15px;
  font-size: 0.8em;
  border-radius: 5px;
  font-weight: 600;
  white-space: nowrap;
  vertical-align: middle;
}
  .badge.yellow {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
  }
  .badge.grey {
    color: #fff;
    background-color: #333;
    border-color: #666;
  }
  .badge.green {
    background: #d4edda;
    color: #155724;
    border-color: #d4edda;
  }
  .badge.gold {
    background: : #A0814A;
    color: #fff;
    border-color: #A0814A;
  }


.container {
  width: 90%;
  max-width: 1024px;
}

/** APPLICATIONS **/

html, body {
  background: #f9f9f9;
}

h2 {
  margin: 0 0 20px;
  font-size: 25px;
  line-height: 29px;
}
h6 {
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 14px;
}

.header {
  background: #f9f9f9;
  padding: 25px;
  text-align: center;
}
  .header > #logo {
    position: relative;
    z-index: 2;
  }
.hero {
  height: 475px;
  width: 100%;
  padding: 80px 25px 25px;
  background-size: cover;
  background-position: center center;
}
  .hero > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
    width: 100%;
  }
  .hero .event-image {
    height: 100%;
    width: calc(100% - 325px);
  }
  .hero .event-image > img {
    border-radius: 8px;
  }
  .hero .event-snapshot {
    background: #fff;
    border-radius: 8px;
    width: 300px;
    height: 100%;
    padding: 20px;
  }
  span.organiser {
    opacity: 0.9;
    font-size: 12px;
    display: block;
    margin: 0 0 5px
  }

  .price {
    margin: 15px 0 0;
    padding: 15px 0 0;
    border-top: solid 1px rgba(0,0,0,0.2);
    font-size: 13px;
    font-weight: 700;
  }


.page {
  padding: 25px 20px;
}
  .page .event-snapshot {
    display: none;
  }
  .datetime > p,
  .location > p {
    font-size: 13px;
  }
  .page .organiser {
    text-align: center;
    border: solid 1px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 30px 20px;
    margin: 50px auto 25px;
  }
  .page .organiser h6 {
    max-width: 500px;
    margin: 20px auto 15px;
  }
  .page .organiser h6 span {
    text-transform: none;
    display: block;
    opacity: 0.7;
  }
  .page .organiser p {
    font-size: 12px;
    max-width: 500px;
    margin: 0 auto;
  }

.footer {
  -webkit-box-shadow: 0px 0px 25px -15px rgb(0 0 0 / 45%);
  -moz-box-shadow: 0px 0px 25px -15px rgba(0,0,0,0.45);
  box-shadow: 0px 0px 25px -15px rgb(0 0 0 / 45%);
  font-size: 11px;
  padding: 25px;
  background: #333;
  color: #fff;
}

.home .footer {
  text-align: center;
  height: auto;
}

/** TICKETING PAGE **/

.gradient {
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.7;
}

.ticket-selection {
  margin: 0 0 35px;
  min-height: calc(100% - 200px);
  background: #f9f9f9;
  position: relative;
  z-index: 2;
}

.ticket-title {
  text-align: center;
  font-size: 18px;
  padding: 25px 25px 25px;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: solid 1px rgba(0,0,0,0.08);
}
  .ticket-title > span {
    display: block;
    font-size: 13px;
    opacity: 0.7em;
    font-weight: 400;
  }
  .tickets {
    margin: 0 0 40px;
  }
  .capacity {
    background: var(--primary, #333F49);
    color: var(--primary-inverse, #ffffff);
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    margin: 0px auto 20px;
    padding: 15px;
    text-transform: uppercase;
    font-size: 15px;
  }
    .capacity span.count {
      display: block;
      font-size: 65px;
      line-height: 1em;
      letter-spacing: -2px;
      font-weight: 700;
      font-family: "Source Sans Pro", sans-serif;
    }
  .ticket {
    border-bottom: solid 1px rgba(0,0,0,0.03);
    padding: 20px 10px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }
  .ticket .description {
    width: calc(100% - 250px);
  }
  .ticket .price {
    margin: 0;
    padding: 0;
    text-align: right;
    border: none;
  }
  .ticket .quantity {
    width: 120px;
  }
  .ticket .ticket-name {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .ticket .ticket-info {
    font-size: 11px;
    margin: 5px 0 10px;
  }
  .ticket .ticket-qty {
    border: solid 1px rgba(0,0,0,0.15);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .ticket .ticket-qty a {
    display: block;
    width: 35px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #333;
  }
  .ticket .ticket-qty > span {
    display: block;
    width: 50px;
    height: 40px;
    background: #fff;
    color: #333;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    border-right: solid 1px rgba(0,0,0,0.15);
    border-left: solid 1px rgba(0,0,0,0.15);
  }
  .ticket .ticket-qty a:hover {
    background: #fff;
  }
  .ticket .ticket-qty a:active {
    background: #333;
    color: #fff;
    -webkit-touch-callout: none;
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
  }
  .ticket .ticket-qty a:first-child {
    font-size: 16px;
  }

  .locked-ticket {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249,249,249,0.8);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    flex-wrap: wrap;
  }
    .locked-ticket > div {
        background: #333;
        color: #fff;
        border-radius: 15px;
        padding: 20px 30px;
        font-size: 13px;
    }

  .booking-overview {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
  }
    .sticky-spacer {
      height: 400px;
    }
  .booking-snapshot {
    background: #fff;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 25px;
  }

  .chargeable-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-bottom: solid 1px rgba(0,0,0,0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .chargeable-name {
    width: calc(70% - 20px);
    padding-right: 20px;
    font-size: 13px;
  }
  .chargeable-price {
    width: 30%;
    text-align: right;
  }
  .booking-fee,
  .chargeable-gst,
  .chargeable-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
  }
  .booking-fee > div,
  .chargeable-gst > div,
  .chargeable-total > div {
    width: 50%;
  }
  .booking-fee {
    font-size: 13px;
    opacity: 1;
    margin: -10px 0 20px;
    background: #f9f9f9;
    padding: 10px;
  }

  .chargeable-gst {
    font-size: 12px;
    opacity: 0.6;
    margin: 0px 0 5px;
  }


.booking-action {
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #fff;
}
  .booking-action.green {
    background: #00ab4e;
  }
  .booking-action.orange {
    background: #F68B1F;
  }
  .booking-action.primary {
    background: var(--primary);
  }
  .booking-action > .button {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0;
    background: none !important;
    color: var(--primary-inverse, #fff);
  }

  .ticket-holder-detail {
    margin: 0 0 35px;
    padding-bottom: 35px;
    border-bottom: solid 1px rgba(0,0,0,0.1);
  }

#creditcard-container {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}
  .disabled {
    background: #efefef;
    color: #999;
    padding: 8px;
  }
  .cards {
    margin: -12px 0 5px;
    text-align: right;
  }
  .cards img {
    width: 35px;
    display: inline-block;
    margin: 0 0 0 10px;
  }

.confirmation {

}

  .confirmation p {
    font-size: 15px;
    margin: 0 0 15px;
  }
    .confirmation .container {
      max-width: 600px;
    }

  .confirmation-header {
    text-align: left;
/*    background: #14a2b8;*/
    padding: 30px 20px 15px;
    color: #fff;
  }
    .bts-orderconf-header {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
    }
    .bts-orderconf-header > div {
      padding: 0 0 0 40px;
    }
  .confirmation-header h5 {
    font-size: 35px;
    margin: 0 0 15px;
  }
  .confirmation-body {
    padding: 15px 20px;
    margin: 25px 0 0;
  }
    .calendar-button {
      margin-bottom: 25px;
      gap: 5px;
      align-items: center;
    }

    .confirmation-body h4 {
      font-size: 18px;
    }
    .steps {
      margin: 0 0 25px;
    }
    .step {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      font-size: 14px;
      color: #333;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin: 0 0 15px;
    }
    .step > span {
      display: block;
      font-size: 40px;
      margin: 0 30px 0 0;
      line-height: 1em;
      font-weight: 700;
      letter-spacing: -2px;
      width: 50px;
      height: auto;
    }

  .confirmation-footer {
    background: #333;
    color: #fff;
    font-size: 11px;
    padding: 20px;
  }


.footer {
  height: 200px;
}
  .footer hr {
    margin: 30px 0 15px;
    opacity: 0.3;
  }
  .footer .legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.separator.partial {
  margin-inline: 2rem;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #E1E1E1;
}

.separator:not(:empty)::before {
  margin-right: .25em;
}

.separator:not(:empty)::after {
  margin-left: .25em;
}

.tnc p {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.3em;
}



/** RESPONSIVE **/

@media (max-width: 1170px) {

  .hero {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
  }
    .hero > .container {
      justify-content: center;
      max-width: none;
    }
    .hero .event-image {
      height: 100%;
      width: auto;
    }
    .hero .event-image > img {
      height: auto !important;
      width: 95% !important; 
      margin: auto !important;
      display: block;
    }
    
    .hero .event-snapshot {
      position: absolute;
      bottom: -45px;
      background: #f9f9f9;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 99;
      height: 80px;
      border-radius: 0;
      border-bottom: solid 1px rgba(0,0,0,0.08);
    }
    .hero .event-snapshot .organiser,
    .hero .event-snapshot h2,
    .hero .event-snapshot .date,
    .hero .event-snapshot .venue {
      display: none;
    }
    .hero .event-snapshot .price {
      border: none;
    }
    .hero .event-snapshot .button {
      border: none;
    }

  .page {
    padding: 0;
  }
    .page.edit-booking {
      padding: 0 !important;
    }
    .page .container {
      width: 100%;
      padding: 25px;
    }
    .page .event-snapshot {
      display: block;
    }

  .ticket {
    padding-bottom: 20px;
  }
    .ticket .description {
      width: 50%;
      margin: 0;
    }
    .ticket .price {
      width: calc(50% - 160px);
    }

}

@media (max-width: 675px) {

  .passheader {
    height: auto !important;
  }
  .passticket-title {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero .event-image {
    height: auto;
  }

  .home .header {
    display: none;
  }

  .header {
    min-height: 150px !important;
    max-height: 140px !important;
  }

  .page.edit-booking {
    padding: 0 !important;
  }

  .hero {
    height: 250px;
    padding: 0;
    margin-bottom: 0;
  }

  .row .columns {
    width: 100%;
    float: none;
    margin: 0;
  }

  .hero .event-snapshot {
    position: fixed;
    bottom: 0;
    height: 80px;
    -webkit-box-shadow: 0px 0px 25px -15px rgb(0 0 0 / 45%);
    -moz-box-shadow: 0px 0px 25px -15px rgba(0,0,0,0.45);
    box-shadow: 0px 0px 25px -15px rgb(0 0 0 / 45%);
  }

  .ticket-selection .page {
    padding-top: 0;
  }
    .ticket-selection .event-image {
      margin-top: 45px;
    }

    .ticket .description {
      width: 100%;
      margin: 0;
    }
    .ticket .price {
      width: calc(100% - 190px);
      text-align: left;
      margin-left: 0;
    }
    .ticket .price .ticket-price > span {
      display: inline !important;
      margin: 0;
    }
    .sticky-spacer {
      display: none;
    }

  .calendar-button {
    flex-direction: column;
  }

  .calendar-button .button {
    width: 100%;
    display: block !important;
    margin: 5px 0 0 !important;
  }

  .bts-orderconf-header {
    display: block;
  }
    .bts-orderconf-header > div {
      padding: 0;
    }

  .confirmation-body {
    padding: 25px !important;
    margin: 0 !important;
  }
    .confirmation-body .columns {
      margin: 0 0 25px;
    }

}
