body[data-freeze="true"] {
    overflow-y: hidden;
}

:where([class^="tito"] a) {
  color: var(--clr-primary);
}

.tito-overlay {
    pointer-events: all;
    overflow-y: scroll;
}

.tito-release--decrement-quantity--link:not(.tito-release--decrement-quantity--link--disabled),
.tito-release--increment-quantity--link:not(.tito-release--increment-quantity--link--disabled) {
    color: var(--clr-accent-mid);
}

:is(
    .tito-release--decrement-quantity--link:not(
        .tito-release--decrement-quantity--link--disabled
      ),
    .tito-release--increment-quantity--link:not(
        .tito-release--increment-quantity--link--disabled
      )
  ):is(:hover, :focus, :focus-within, :focus-visible, :active) {
  color: var(--clr-accent-light);
}

.tito-release {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr auto auto auto;
  grid-template-areas:
    "a a a a"
    "b c d e";
}
.tito-release-description {
  grid-area: a;
}
.tito-price-details-regular {
  grid-area: c;
}
.tito-times {
  grid-area: d;
}
.tito-quantity {
  grid-area: e;
}

.tito-quantity-input {
  width: 5ch;
  padding-inline: 0.5rem;
}

.tito-release--title {
  font-size: 1.25rem;
  color: var(--clr-accent-mid);
}

.tito-release-description {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.5rem;
}
.tito-release-description--description * {
  margin-block: 0;
}

.tito-widget-form > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-evenly;
  gap: 2rem;
}

.tito-submit,
.tito-overlay button {
  color: var(--clr-primary);
  background-color: var(--clr-accent);
  transition: background-color 175ms ease-in-out;
}
:is(.tito-submit, .tito-overlay button):is(
    :hover,
    :focus,
    :focus-visible,
    :focus-within,
    :active
  ) {
  background-color: var(--clr-accent-mid);
}

.tito-registration-progress {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "a b c"
    "d d d";
  text-align: center;
}

.tito-progress-bar {
  width: 100%;
  grid-area: d;
}
.tito-progress {
  display: block;
  height: 0.25rem;
  background-color: var(--clr-accent-mid);
}

.tito-registration--consent-statement--label {
  display: grid;
  grid-template-columns: 4rem auto;
  width: unset;
}
.tito-registration--consent-statement--label > * {
  display: block;
}

.tito-registration--consent-statement--checkbox {
  width: unset;
  max-width: 1rem;
  margin-inline: auto;
}

.tito-registration-section-header, .tito-pay-details--name-and-email {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.StripeElement {
    background-color: var(--clr-primary);
    margin-block: 0.5rem;
    padding: 0.25rem;
    max-width: 60ch;
}

/***************************/
/* /\ Jonathan  ||  Max \/ */
/***************************/

.tito-widget-button {
  color: var(--clr-primary);
  background-color: var(--clr-accent);
  border: none;
  outline: none;
  font-size: 1.1rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  display: block;
  margin: auto;
}

.tito-overlay {
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.25);
  bottom: 0;
  font-size: 13px;
  left: 0;
  line-height: 16px;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999999;
}

.tito-overlay .tito-registration {
  margin: auto;
  padding: 0 1rem;
  width: 100%;
  max-width: 100ch;
  position: absolute;
  top: 15%;
  left: 50%;
  translate: -50% 0;
  background-color: var(--background);
}

.tito-registration-header {
  display: flex;
  align-items: center;
}

h1.tito-registration-header--event-title {
  margin: 0;
  color: var(--clr-primary);
}

.svg-inline--fa.fa-times {
  height: 3rem;
}

.tito-registration-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 2rem;
}

.tito-registration ul {
  list-style-type: none;
  padding-left: 0;
}

.tito-registration li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}

.tito-quick-links {
  display: flex;
  justify-content: space-between;
}

.tito-quick-links li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: fit-content;
}

.tito-registration-finished--inline-action-label {
  margin-left: 0.3rem;
}

.tito-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tito-share-links {
  display: flex;
}

.tito-share-links * {
  margin: 0.1rem;
}

#tito-url {
  background-color: var(--background-mid);
  color: inherit;
  padding: 0.1rem;
  border: 0;
  outline: 0;
}

.tito-alert-success {
  margin: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--red4);
  line-height: 1.5rem;
}

.tito-ticket-show {
  background-color: var(--background-highlight);
  margin: 0.5rem;
  padding: 1rem;
}

.tito-ticket-show--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tito-ticket-show--event-title{
  margin:0;
}

.qr-code img{
  width: 100%;
  height:100%;
  object-fit: contain;
  max-height: 75vh;
}

.tito-ticket--links--passbook, .tito-ticket--links--download-ticket, .tito-ticket--links--add-to-calendar{
  margin-top:0.5rem;
}

.tito-ticket--basic-info--list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tito-ticket--basic-info--list dt{
  margin-right: 0.5rem;
}


