body {
  overflow-y: scroll;
}

[v-cloak] {
  display: none;
}

.loading-skeleton {
  background: #eee;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  border-radius: 5px;
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}

.btn-checkout {
  min-width: 170px;
  height: 40px;
}
.sticky-bottom {
  .btn-checkout{
    min-width: 150px;
    height: 40px;
  }
  .express-checkout-divider{
    display: none;
  }
}
.paypal-buttons {
  height: 100% !important;
}

.ticket-selection-check {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  margin-top: 2px;
  padding: 0;
  width: 24px;
  height: 24px;
  font: inherit;
  color: currentColor;
  border: 0.15em solid var(--ad-primary);
  border-radius: 15%;
  position: relative;
}

.ticket-selection-check:checked:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--ad-primary);
}