body {
    animation: fadeInAnimation ease 3s
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
  
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

body {
    font-family: 'Verlag A', Helvetica, Arial, sans-serif;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

html * {
    box-sizing: border-box;
    font-family: 'Verlag A';
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 30px;
    min-height: 100vh;
    display: flex;
}

.flex {
    display: flex;
}

.flex.center {
    justify-content: center;
    align-items: center;
}

a {
    color: #2b292b;
    font-weight: bold;
}

.step {
    opacity: 1;
    transition: 800ms opacity linear;
}

.step.active {
    opacity: 1;
}

.step-title {
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: bold;
}

.line {
    border-top: 1px solid #d9d9d9;
    height: 1px;
    margin: 25px 0;
}

.step-radio-wrapper {
    display: flex;
    max-width: 500px;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

#select-today,
#select-tomorrow {
    width: 110px;
}

#select-custom-date {
    width: 100%;
}

.time-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px
}

.step-radio-wrapper label,
.time-wrapper > label {
    display: inline-block;
    padding: 0 16px;
    line-height: 46px;
    height: 48px;
    text-align: center;
    border-radius: var(--radius);
    background-color: transparent;
    border: 2px solid #2b292b;
}

.time-wrapper > label {
    padding: 0px;
}

.time-wrapper label.active,
.step-radio-wrapper label.active {
    background: #2b292b;
    color: #fff;
}

.step-radio-wrapper input {
    display: none;
}

#select-custom-date #datepicker {
    min-width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#select-custom-date svg {
    margin-left: 20px;
    position: relative;
    top: -2px;
}

.quantity-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.quantity-box {
    display: none;
}

.quantity-display {
    font-weight: 900;
    font-size: 16px;
    line-height: 18px;
    width: 38px;
    text-align: center;
}

.quantity-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #2b292b;
    width: 38px;
    height: 38px;
    padding: 8px;
    vertical-align: bottom;
    line-height: 0;
    transition: opacity 50ms ease-out,background-color 50ms ease-out;
    cursor: pointer;
}

.quantity-toggle:hover {
    background-color: #2b292b;
    color: #fff;
}

.quantity-toggle.disabled {
    opacity: 0.3;
}

.quantity-toggle svg {
    width: 26px;
    height: 26px;
}

.card-details-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 2px solid #2b292b;
    padding: 16px;
    color: #aaa;
    margin-bottom: 5px;
}

.card-number,
.card-month,
.card-year,
.card-cvc {
    border: 0px;
    padding: 0;
    margin: 0;
    font-size: 16px;
    outline: none!important;
}

.card-separator {
    width: 10px;
    text-align: center;
}

.card-number {
    flex-grow: 1;
}

.card-month {
    width: 40px;
    flex-grow: 0;
    text-align: right;
}

.card-year {
    width: 40px;
    flex-grow: 0;
}

.card-cvc {
    width: 60px;
    flex-grow: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.ticket-choice-wrapper > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    border: 1px solid #d9d9d9;
    padding: 16px;
}

.ticket-choice {

}

.ticket-choice .name-column {
    flex-grow: 1;
}

.ticket-choice-name {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.ticket-choice-price {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.ticket-choice .quantity-column {
    flex-shrink: 0;
}

.ticket-group-description-wrapper {
    font-weight: normal;
}

.custom-label {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.input {
    background: #fff;
    border: 2px solid #2b292b;
    padding: 16px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 5px;
}

#payment_type {
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    justify-content: right;
}

.button {
    cursor: pointer;
    padding: 16px;
    background: #2b292b;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#toa-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

#toa {
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

.error {
    color: red;
    font-size: 16px;
}

.pika-single {
    position: absolute!important;
    left: -1px!important;
    top: 110%!important;
    display: none!important;
}

.pika-single.active {
    display: block!important;
}

#total-bar {
    background: #ddd;
    padding: 20px;
    font-size: 20px;
    justify-content: space-between;
}