.main {
    position: relative;
    display: flex;
    margin: 0 auto;
    width: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.main::-webkit-scrollbar {
    display:none;
}

.main .page {
    position: relative;
    display: inline-block;
    padding: 0 6%;
    width: 100%;
    min-height: 48vh;
    max-height: 48vh;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: max-height 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.main .page.open {
    max-height: 200vh;
    transition: max-height 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    overflow-y: auto;
}


#enterPin {
    padding-top: 5rem;
}

#enterPin .container {

}

#enterPinForm {

}

#enterPinForm .pinContainer {
    display: flex;
    margin: 2rem auto 2rem auto;
    width: 95%;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#enterPinForm input[type=text] {
    display: block;
    margin: 0;
    padding: 0;
    height: 7.6rem;
    width: 5.6rem;
    color: var(--white-clr);
    font-family: 'Aeroport', sans-serif;
    font-size: 3rem;
    line-height: 7.6rem;
    font-weight: 500;
    background-color: #D9D9D94D;
    text-align: center;
    border-radius: 0.46rem;
    border: none;
}


#selectVoucher {

}

#selectVoucher .container {

}

#selectVoucher .voucherContainer {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 1.4rem;
}

#selectVoucher .voucherContainer .item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
    height: 8.6rem;
    background: linear-gradient(0deg, rgba(243, 243, 243, 0.9) -33.72%, rgba(255, 255, 255, 0.9) 164.53%);
    border-radius: 2rem;
}

#selectVoucher .voucherContainer .item .logo {
    width: 12rem;
    height: 4rem;
    background-position-x: left;
}

#selectVoucher .voucherContainer .item .priceRow {
    color: var(--dark-blue-clr);
    font-size: 2.5rem;
    font-weight: 700;
}

#selectVoucher .voucherContainer .item .arrow {
    height: 2.1rem;
    width: 1.2rem;
    background-image: url('/public/images/icon-arrow-right.svg');
}


#selectedVoucher {
    padding: 0 3.4rem;
}

#selectedVoucher .back {
    margin: 0 0 2rem 1rem;
    padding-left: 3rem;
    width: max-content;
    background-image: url('/public/images/icon-arrow-left.svg');
    background-position: 0 center;
    background-size:  1rem;
    text-align: left;
}

#selectedVoucher .voucherContainer {
    padding: 2.4rem 3rem;
    width: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 56.77%, rgba(158, 185, 248, 0.9) 212.71%);
    border-radius: 2.6rem;
}

#selectedVoucher .voucherContainer .logo {
    margin: 2rem auto 2.6rem auto;
    width: 22rem;
    height: 7.6rem;
}

#selectedVoucher .voucherContainer .priceRow {
    margin-bottom: 2.6rem;
    color: var(--dark-blue-clr);
    font-size: 4rem;
    font-weight: 700;
}

#selectedVoucher .voucherContainer .description {
    margin-bottom: 2.6rem;
    color: #646464;
    font-size: 1.3rem;
    font-weight: 400;
}


#info {

}

#info .text {
    margin-bottom: 2.6rem;
    font-size: 2.2rem;
    font-weight: 500;
}

#info .divider {
    height: 2.6rem;
}

#info .row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: nowrap;
}

#city {

}

#zip {
    width: 13.8rem;
}


#success {
    position: relative;
}

#success > .container {
    position: relative;
    margin: -6rem auto 0 auto;
    width: 35.1rem;
    height: 55.0rem;
}

#success .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/public/images/background-success.svg");
}

#success .h1 {
    margin: 0rem auto 1rem auto;
    padding-top: 10.6rem;
    font-size: 4.0rem;
    font-weight: 700;
    line-height: 5.5rem;
    text-transform: none;
}

#success .text {
    margin: 0rem auto 3rem auto;
    width: 29rem;
    font-size: 2.0rem;
    font-weight: 300;
    line-height: 2.6rem;
    text-transform: none;
}

#success .h2 {
    margin: 0rem auto 1rem auto;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 3.2rem;
    text-transform: none;
}

#success .tinyText {
    margin: 0rem auto 0rem auto;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 2.7rem;
    text-transform: none;
}

