/* General styles */

html {
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    font-size: 16px;
}

a.anchor {
}

p>a {}

strong {
    font-weight: bold;
}

.loading-icon {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.07);
    display: none;
    z-index: 100;
}

.loading-icon-outer {
    display: table;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

.loading-icon-inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.loading-icon-inner img {
    display: inline-block;
    width: 64px;
    background-color: white;
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.order-section-heading {
    border-bottom: 1px solid #191919;
    margin-top: 1em;
    margin-bottom: 1.7em;
    font-size: 1rem;
}

.order-section-heading.new-section {
    margin-top: 3em;
}

.quantity-section .order-section-heading.value-pack-heading {
    margin-bottom: 0;
}

.quantity-section .order-section-heading.promo-code-heading {
    margin-bottom: 1.1em;
}

.quantity-section .order-section-heading {
    margin-bottom: 0.9em;
    line-height: 125%;
}

.flashed-messages {
    font-size: 1.125rem;
    margin-bottom: 1em;
    font-weight: bold;
}

.message-info, .message-info a {
    color: #00a34c;
}

.message-error, .message-error a {
    color: #d41834;
    line-height: 125%;
}


/* General layout */

.content {
    width: 90%;
    max-width: 965px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 70vh;
}

.layout-row {}

.entry-info-section .layout-row {
    max-width: 850px;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
}

.entry-info-section .col-25, .entry-info-section .col-50, .entry-info-section .col-100 {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
}

.email-column {
    padding-bottom: 1.5em;
}

.single-column .email-column {
    padding-top: 3em;
}

a.expansion-link {
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5em;
}

a.expansion-link:hover {
    color: #1a1a1a;
}

.expansion-link::after {
    content: 'v';
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    position: absolute;
    right: -1.6rem;
    top: -0.2rem;
    background-image: url(/static/images/arrow_down.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(0);
    transition: transform 0.2s;
}

.expanded .expansion-link::after {
    transform: rotate(-180deg);
}

.expansion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.expanded .expansion-content {
    max-height: 30rem;
}

@media screen and (min-width: 600px) {
    .entry-info-section .layout-row {
        display: table;
        width: 100%;
        margin-left: -0.6em;
        margin-right: -0.6em;
        box-sizing: border-box;
    }

    .entry-info-section .col-25, .entry-info-section .col-50, .entry-info-section .col-100 {
        display: table-cell;
        box-sizing: border-box;
        vertical-align: top;
        padding-left: 0.6em;
        padding-right: 0.6em;
        box-sizing: border-box;
    }

    .entry-info-section .col-25 {
        width: 25%;
    }

    .entry-info-section .col-50 {
        width: 50%;
    }

    .entry-info-section .col-100 {
        width: 100%;
    }
}

@media screen and (min-width: 875px) {
    .quantity-section .layout-row {
        display: table;
        width: 100%;
        margin-bottom: 1.3em;
        box-sizing: border-box;
    }

    .quantity-section .layout-row.single-column {
        max-width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .quantity-section .col-25, .quantity-section .col-50, .quantity-section .col-100 {
        display: table-cell;
        padding-left: 3em;
        padding-right: 3em;
        box-sizing: border-box;
        vertical-align: top;
    }

    .quantity-section .col-25 {
        width: 25%;
    }

    .quantity-section .col-50 {
        width: 50%;
    }

    .quantity-section .col-50:nth-child(1) {
        padding-left: 0;
    }

    .quantity-section .col-50:nth-child(2) {
        padding-right: 0;
    }

    .quantity-section .col-100 {
        width: 100%;
    }

    .single-column .email-column {
        padding-top: 0.5em;
    }
}


/* Step tabs */

.order-form-steps {
    background-color: #191919;
    font-size: 0.6rem;
}

@media screen and (min-width: 550px) {
    .order-form-steps {
        font-size: 0.75rem;
    }
}

@media screen and (min-width: 700px) {
    .order-form-steps {
        font-size: 0.875rem;
    }
}

.order-form-steps-inner {
    display: table;
    width: 90%;
    max-width: 850px;
    height: 3.6em;
    margin-left: auto;
    margin-right: auto;
}

.order-form-steps .step-cell {
    display: table-cell;
    width: 33%;
    height: 100%;
    text-align: center;
}

.order-form-steps .tab-box {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 11em;
    height: 100%;
    position: relative;
}

.order-step img {
    width: 2.3em;
    height: 2.3em;
    display: inline-block;
    vertical-align: middle;
}

.order-form-steps .step-cell:nth-child(2) img {
    width: 2em;
    height: 2em;
}

.order-form-steps .step-cell:nth-child(3) img {
    width: 1.9em;
    height: 1.9em;
}

.order-step, .order-step.disabled:hover {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding-top: 0.7em;
    vertical-align: middle;
    text-decoration: none;
    transition: background-color 0.1s, top 0.1s, padding-top 0.1s;
    background-color: transparent;
    background-image: none;
}

.order-step.current, .order-step:hover {
    top: -0.5em;
    padding-top: 1em;
    background-color: #666;
}

.order-step span {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    display: inline-block;
    margin-left: 0.3em;
}

/* Form controls & quantity section */

#TestDataButton {
    text-decoration: none;
    display: inline-block;
    color: #b3b3b3;
    border: 1px solid #b3b3b3;
    border-radius: 3px;
    padding: 3px 10px 2px;
}

.primary-button {
    display: inline-block;
    font-family: sans-serif;
    font-size: 1.125rem;
    text-decoration: none;
    color: white;
    background-color: #ea2786;
    transition: background-color 0.1s;
    border-radius: 4px;
    padding: 12px 25px;
}

.primary-button:link, .primary-button:visited {}

.primary-button:hover, .primary-button:active {
    background-color: #d51479;
}

.secondary-button {
    display: inline-block;
    font-family: sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #ea2786;
    background-color: white;
    border: 2px solid #ea2786;
    transition: background-color 0.1s, color 0.1s;
    border-radius: 4px;
    padding: 12px 25px;
}

.secondary-button:link, .secondary-button:visited {}

.secondary-button:hover, .secondary-button:active {
    background-color: #ea2786;
    color: white;
}

.ticket-input-row {
    display: table;
    width: 98%;
    font-size: 1rem;
    margin-bottom: 0.8em;
    box-sizing: border-box;
}

.ticket-input-row .left, .ticket-input-row .middle, .ticket-input-row .right {
    display: table-cell;
    height: 2.5em;
    font-weight: bold;
    vertical-align: middle;
}

.ticket-input-row .left {
    background-color: #def0ff;
    padding-left: 1.5em;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ticket-input-row .middle {
    background-color: #e2f3fa;
    padding-right: 0.7em;
    text-align: right;
    width: 4em;
}

@media screen and (max-width: 399px) {
    .ticket-input-row .left {
        padding-left: 2.7em;
    }

    .ticket-input-row .middle {
        width: 3em;
    }
}

.ticket-input-row .right {
    width: 6.5em;
}

.ticket-input-row .left span {
    font-size: 0.55rem;
    font-weight: normal;
    display: inline-block;
    background-color: #33c3e9;
    color: white;
    padding: 0.6em 0.8em;
    padding-bottom: 0.3em;
    margin-top: 0.1em;
    line-height: 100%;
    position: absolute;
    left: -16px;
    top: 5px;
    width: 6.5em;
    transform: rotate(-45deg);
}

.quantity-input {
    display: table;
    width: 100%;
    height: 100%;
    margin-left: 0.5em;
    background-color: white;
}

.quantity-input>* {
    width: 33%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    padding-top: 0.1em;
}

.quantity-input a {
    text-decoration: none;
    background-color: #ea2786;
    color: white;
    transition: background-color 0.1s;
    font-size: 1.5rem;
}

.quantity-input a:hover {
    background-color: #d51479;
}

.quantity-input span {
    padding-top: 0.3em;
}

.strikethru {}

.strikethru:before {
    content: ' ';
}

.strikethru:after {
    content: ' ';
}

.strikethru, .strikethru:before, .strikethru:after {
    text-decoration: line-through;
}

b.new {
    color: #00ae4c;
    font-size: 1.5rem;
    vertical-align: middle;
    display: inline-block;
    padding-right: 0.2em;
    position: relative;
    top: -0.1em;
    font-weight: bold;
}

.field {
    position: relative;
    padding-top: 0.4em;
}

.field label {
    font-family: sans-serif;
    font-size: 1rem;
    position: absolute;
    display: inline-block;
    background-color: white;
    padding-left: 0.3em;
    padding-right: 0.5em;
    line-height: 84%;
    left: 0.55em;
    top: -0.2em;
    color: #1a1a1a;
}

.field input, .field select, .field .stripe-card, .field textarea {
    display: inline-block;
    width: 100%;
    font-family: sans-serif;
    font-size: 1.125rem;
    padding: 0.6rem 12px;
    border: 1px solid #b3b3b5;
    border-radius: 4px;
    line-height: 1em;
    transition: border-color 0.4s;
    box-sizing: border-box;
    color: #1a1a1a;
}

.field textarea {
    height: 5.4em;
    line-height: 1.3;
}

.stripe-card {
    display: inline-block;
    width: 100%;
    font-family: sans-serif;
    font-size: 1.125rem;
    padding: 0.6rem 12px;
    border: 1px solid #b3b3b5;
    border-radius: 4px;
    line-height: 1em;
    transition: border-color 0.4s;
    box-sizing: border-box;
    color: #1a1a1a;
}

.field select {
    height: 2.6rem;
    padding-bottom: 0.5rem;
    background-color: white;
}

.field input:focus, .field select:focus, .field textarea:focus, .field .StripeElement--focus {
    border: 1px solid #00caf2;
    outline: none;
}

.field input::placeholder {
    color: #929497;
}

.field input.error, .field select.error, .field textarea.error, .field .StripeElement--invalid {
    border: 2px solid #f91c3d;
}

span.validation, .stripe-errors {
    color: #f91c3d;
    font-style: italic;
    line-height: 125%;
    font-size: 1rem;
}

.field span.validation, .field .stripe-errors {
    display: block;
    margin-top: 0.2em;
}

.checkbox {
    cursor: pointer;
    display: inline-table;
    vertical-align: middle;
    padding-right: 1em;
}

.checkbox .box {
    display: table-cell;
    vertical-align: middle;
    text-decoration: none;
    width: 2em;
}

.checkbox .box:focus {
    outline: 1px solid #00caf2;
}

.checkbox .box i {
    color: #515252;
    font-size: 1.875rem;
    vertical-align: middle;
}

.checkbox .box i:first-child {}

.checkbox .box i:last-child {
    display: none;
}

.checkbox.checked .box i:first-child {
    display: none;
}

.checkbox.checked .box i:last-child {
    display: inline;
}

.checkbox .label {
    display: table-cell;
    vertical-align: middle;
    padding-left: 0.3em;
    font-size: 1.125rem;
    color: #1a1a1a;
    text-align: left;
    line-height: 125%;
}

.checkbox-list {
    margin-top: -0.2em;
}

.checkbox-list .checkbox {
    display: inline-table;
    margin-right: 3em;
}

.promo-code-box {
    background-color: #eef6fa;
    box-sizing: border-box;
    padding: 1em;
    padding-top: 0.6em;
    padding-bottom: 2.1em;
    border-radius: 7px;
}

@media screen and (min-width: 875px) {
    .promo-code-box {
        margin-bottom: 3em;
    }
}

.promo-row {
    display: table;
    width: 100%;
    box-sizing: border-box;
}

.promo-row .left {
    display: table-cell;
    vertical-align: bottom;
}

.promo-row .right {
    display: table-cell;
    vertical-align: bottom;
    padding-left: 1em;
    width: 5em;
}

.promo-row .right a {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

@media screen and (max-width: 415px) {
    .promo-row .right a {
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
}

.promo-message {
    font-size: 1rem;
    color: #00ae4c;
    line-height: 150%;
    margin-top: 0.4em;
    margin-left: 0.4em;
}

.promo-message.error {
    color: #f91c3d;
}

.promo-deltas {
    margin-top: 0.2em;
    margin-bottom: -1em;
    margin-left: 0.4em;
    line-height: 125%;
    font-weight: 300;
    font-size: 0.875rem;
}

.email-domain-warning {
    height: 0px;
    overflow: hidden;
    transition: height 0.2s, padding-top 0.2s, padding-bottom 0.2s;
    font-weight: 300;
    font-size: 1rem;
    font-style: italic;
    padding: 0;
    color: green;
}

.email-domain-warning.visible {
    height: 1.2em;
    padding: 0.6em;
    animation-name: attention;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
}

@keyframes attention {
    from {
        transform: translateX(250px);
    }

    to {
        transform: translateX(0px);
    }
}

.email-domain-warning a {
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    margin-left: 0.5em;
    color: green;
    font-weight: bold;
}

.email-domain-warning a:hover {
    color: #11c111;
}

.restriction-message {
    text-align: center;
    font-weight: bold;
    line-height: 125%;
    margin-bottom: 26px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 875px) {
    .restriction-message {
        position: relative;
        margin-top: 30px;
        margin-bottom: 40px;
    }
}

/* Order section */

.quantity-section {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.entry-info-section {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.order-form-top {
    text-align: center;
}

.test-mode-section {
    text-align: center;
    position: relative;
    top: -1em;
}

.test-mode-note {
    background-color: #ffb0be;
    display: inline-block;
    border-radius: 0.5em;
    padding: 0.7em 1.5em;
    margin-top: 1rem;
}

.instruction-text {
    margin-top: 0.7em;
    margin-bottom: 0.7em;
    font-size: 1rem;
    line-height: 115%;
}

.instruction-text.toggled {
    overflow: hidden;
    display: none;
}

.instruction-text.toggled.visible {}

.quantity-section>.instruction-text {
    font-size: 1.125rem;
}

.entry-info-section .instruction-text {
    font-size: 1rem;
    color: #1a1a1a;
}

.entry-info-section .instruction-text.big {
    font-size: 1rem;
}

.calculated-cost {
    font-size: 1rem;
    margin-top: 1.1em;
    margin-bottom: 1em;
    padding-top: 1.1em;
    border-top: 1px solid black;
}

.bulk-quantity-area {}

.bulk-row {
    display: table;
    width: 100%;
    margin-bottom: 0.2em;
}

.bulk-row>div {
    font-size: 1rem;
    font-weight: bold;
    display: table-cell;
    height: 2.5em;
    vertical-align: middle;
}

.bulk-row>div:nth-child(1) {
    text-align: left;
    white-space: nowrap;
}

.bulk-row>div:nth-child(2) {
    text-align: right;
    padding-right: 1em;
}

.bulk-row>div:nth-child(3) {
    text-align: center;
    width: 2.7em;
    background-color: #e2f3fa;
    border-radius: 50%;
}

.bulk-row .two-part {
    display: table;
    width: 100%;
}

.bulk-row .two-part span {
    display: table-cell;
    vertical-align: middle;
}

.bulk-row .two-part span:first-child {
    text-align: left;
}

.bulk-row .two-part span:last-child {
    background-color: #33c3e9;
    color: white;
    font-size: 0.75rem;
    display: block;
    text-align: center;
    width: 6.5em;
    height: 100%;
    margin-left: auto;
    margin-right: 0.7em;
    padding-top: 0.4em;
    vertical-align: middle;
    white-space: normal;
    line-height: 120%;
}

.main-ticket-area, .add-on-ticket-area, .add-on-2-ticket-area, .value-pack-area {
    margin-bottom: 2.4em;
}

.value-pack-area.not-last {
    margin-bottom: 2em;
}

.order-total-bar {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 0.6em;
    font-weight: bold;
    font-size: 1.5rem;
    max-width: 15em;
    margin-left: auto;
    margin-right: auto;
}

.order-total-bar.with-value {
    margin-top: 1em;
    padding-top: 0;
    margin-bottom: 1.3em;
}

.form-page-buttons {
    text-align: center;
}

.form-page-buttons>a {
    min-width: 6em;
}

.review-top-buttons {
    margin-top: 2em;
    margin-bottom: -1em;
    text-align: center;
}

#TicketInfoArea {
    padding-top: 1px;
    padding-bottom: 1px;
}

#TicketInfoArea .layout-row:first-child {
    margin-top: 0;
}

#CardSavedRow {
    margin-bottom: 4em;
    display: none;
}

.value-pack-highlight {
    background-color: #eef6fa;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    padding-left: 1em;
    padding-right: 1em;
}

.value-pack-highlight .bulk-row>div:nth-child(3), .value-pack-highlight .ticket-input-row .left, .value-pack-highlight .ticket-input-row .middle {
    background-color: #dbf0f9;
}

.card-logos {
    margin-top: -26px;
    margin-bottom: -6px;
}

.card-logos img {
    width: 49px;
    display: inline-block;
    margin-right: 5px;
}

.hideable-area {
    height: 0px;
    overflow: hidden;
    transition: height 0.15s;
}

.hideable-area.visible {
    height: 4.5em;
}

.donation-buttons {
    position: relative;
    top: -1em;
    margin-bottom: -1em;
}

.donation-buttons a, .donation-buttons a:active {
    display: inline-block;
    padding: 0.5em 1.1em;
    margin-right: 0.5em;
    margin-bottom: 0.9em;
    margin-top: 1.2em;
    border: 2px solid #515252;
    border-radius: 6px;
    color: #515252 !important;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.1s, color 0.1s;
    vertical-align: top;
}

.donation-buttons a.selected {
    color: white !important;
    background-color: #515252;
}

.donation-other-area {
    display: inline-block;
    vertical-align: middle;
    width: 10em;
    margin-left: 0.5em;
    position: relative;
    top: 0.5em;
}

.donation-other-area.visible {
    height: 4.1em;
    padding-top: 0.2em;
}

.fine-print {
    font-weight: 300;
    font-size: 0.75rem;
    line-height: 1.2;
    /* max-width: 43em; */
    margin-top: -0.9rem;
}

.refer-a-friend-section {
    margin-top: 2rem;
}

#FriendReferralMessage {
    font-style: italic;
    font-size: 0.875rem;
    margin-top: 0.3em;
    line-height: 125%;
}

@media (hover) {
    .donation-buttons a:hover {
        color: white !important;
        background-color: #515252;
    }

    .donation-buttons a:hover.off {
        color: #515252 !important;
        background-color: transparent;
    }
}

@media screen and (min-width: 400px) {
    .bulk-row .two-part span:last-child {
        font-size: 0.875rem;
    }
}

@media screen and (min-width: 600px) {
    .fine-print {
        margin-top: 0;
    }
}

@media screen and (min-width: 875px) {
    .quantity-section {
        max-width: none;
    }

    .main-ticket-area, .add-on-ticket-area, .add-on-2-ticket-area, .value-pack-area {
        margin-bottom: 1em;
    }

    .value-pack-area.not-last {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 975px) {
    .bulk-row .two-part span:last-child {
        margin-right: 15%;
    }
}


/* Order review */

.order-review {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.order-review-message {
    font-size: 1.125rem;
    text-align: center;
    line-height: 125%;
    margin: 0 auto;
    background-color: #ebf9fc;
    padding: 1em 2em;
}

.order-viewer {
    font-size: 1.125rem;
    margin: 0 auto;
    margin-bottom: 60px;
    max-width: 650px;
}

.order-section-heading>a {
    font-family: sans-serif;
    font-size: 1em;
    text-transform: none;
    display: inline-block;
    margin-left: 0.7em;
    margin-bottom: 0.1em;
    color: #ea2786;
    position: relative;
    top: -0.1em;
}

.order-section-heading span {
    white-space: nowrap;
}

.order-section-heading i {
    cursor: pointer;
    color: #33c3e9;
    display: inline-block;
    font-size: 1.5rem;
    vertical-align: middle;
    padding-bottom: 0.1em;
    margin-left: 0.3em;
}

.order-viewer .form-row {
    width: 100%;
    box-sizing: border-box;
    margin: 0.7em 0em;
}

.order-viewer .form-row>* {
    display: block;
    vertical-align: top;
    line-height: 135%;
}

.order-viewer .form-row>label {
    font-weight: bold;
}

.order-viewer .form-row>span {
    text-align: left;
}

.loading-bar {
    font-size: 1.125rem;
    margin-top: 2em;
    margin-bottom: 0.8em;
}

.loading-message {
    display: none;
}

.loading-message img, .loading-message span {
    vertical-align: middle;
    margin-left: 0.4em;
}

.sms-instructions {
    line-height: 125%;
    margin: 0 auto;
    background-color: #ebf9fc;
    padding: 1.2em 2em;
    width: 90%;
    box-sizing: border-box;
    max-width: 33em;
    margin-top: 3em;
}

.sms-instructions.secondary {
    background-color: #ebebeb;
}

.sms-instructions strong {
    display: block;
    text-align: center;
}

.sms-button-outer {
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
}

.sms-instructions ol {
    list-style-type: decimal;
    width: 90%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.7em;
}

.sms-instructions ol li {
    margin-top: 0.9em;
}

.sms-field-outer {
    margin-top: 1em;
    margin-bottom: 1em;
}

.sms-field-outer textarea {
    height: 23.7em;
}

@media screen and (min-width: 400px) {
    .sms-field-outer textarea {
        height: 16.7em;
    }
}

@media screen and (min-width: 500px) {
    .order-viewer .form-row {
        display: table;
    }

    .order-viewer .form-row>* {
        display: table-cell;
        line-height: 115%;
    }

    .order-viewer .form-row>label {
        width: 13em;
        padding-right: 1em;
    }
}

@media screen and (min-width: 700px) {
    .sms-field-outer textarea {
        height: 10.7em;
    }
}


/* Error page */

.error-page {
    text-align: center;
}

.error-page h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.error-page p {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 1.125rem;
    line-height: 125%;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
}

.error-page a {
    display: block;
    margin-top: 1em;
    color: #ea2786;
}

.error-page a.inline {
    display: inline;
    margin-top: 0;
}

/* Confirmation page */

.content.order-confirmation {
    max-width: 650px;
}

.content.order-confirmation p {
    margin-top: 1em;
    margin-bottom: 1em;
    line-height: 125%;
    font-size: 1.125rem;
}

.response-message {
    color: #00ae4c;
}

.order-confirmation h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1em;
}

.pdf-file-link {
    display: block;
    margin-left: 1em;
    padding-left: 24px;
    background-image: url(../images/PdfIcon.gif);
    background-position: left center;
    background-repeat: no-repeat;
    line-height: 150%;
    font-size: 1.125rem;
}

.referral-code-area {
    background-color: #def0fe;
    padding: 1em;
    border-radius: 0.5em;
}

.referral-code-area strong {
    font-size: 1.25rem;
}

.referral-code-area a { 
}


/* Deal popup */

.deal-popup {
    max-width: 360px;
}

.deal-popup-box {
    padding: 35px 40px;
    background-color: #fefefe;
    margin: 0 auto;
    box-sizing: border-box;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
}

a.close-button {
    position: absolute;
    right: 22px;
    top: 22px;
    color: #d8d8d8;
    transition: color 0.1s;
}

a.close-button:hover {
    color: #666;
}

.deal-popup h2 {
    font-weight: bold;
    text-align: center;
    font-size: 1.125rem;
    border-bottom: 1px solid #bdbcbc;
    padding-bottom: 0.8em;
}

.deal-popup p {
    text-align: center;
    line-height: 125%;
    margin-top: 0.8em;
    margin-bottom: 1em;
    font-size: 1.125rem;
}

.deal-buttons {
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 0.5em;
}

.deal-buttons a {
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    color: #ea2786;
    border: 1px solid #ea2786;
    padding: 9px 20px;
    min-width: 5em;
    font-weight: bold;
    font-size: .875rem;
    border-radius: 3px;
    transition: background-color 0.1s, color 0.1s;
}

.deal-buttons a:hover {
    background-color: #ea2786;
    color: white;
}

.deal-buttons a:first-child {}


/* Cart exit popup */

.exit-popup-outer {
    max-width: 400px;
}

.exit-popup {
    background-color: white;
    border-radius: 11px;
    border: 1px solid #e0f4fd;
    position: relative;
    overflow: hidden;
}

.exit-popup-top {
    position: relative;
}

.exit-popup-close {
    cursor: pointer;
    width: 33px;
    position: absolute;
    right: 9px;
    top: 9px;
    z-index: 50;
}

.exit-popup-top img {
    width: 100%;
}

.exit-popup-top h1 {
    font-weight: 700;
    font-size: 1.25rem;
    text-align: left;
    line-height: 115%;
    font-family: Lato, serif;
    color: white;
    position: absolute;
    bottom: 5%;
    left: 8%;
    width: 12em;
    text-shadow: 0 0 5px #0000008f;
}

.exit-popup-bottom {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 9px;
    padding-bottom: 28px;
    text-align: center;
}

.exit-popup-bottom p {
    text-align: center;
    font-weight: 300;
    margin-top: 1.7em;
    margin-bottom: 0;
    font-size: 0.75rem;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.exit-popup-bottom .pack {
    margin-top: 0.9em;
    font-size: 0.875rem;
}

.exit-popup-bottom .pack span {
    display: inline-block;
    font-weight: 300;
    line-height: 140%;
}

.exit-popup-bottom .pack strong {
    display: inline-block;
    font-weight: 700;
    margin-top: 0.2em;
}

.exit-popup-bottom .button-outer {
    margin-top: 1.3em;
}

.exit-popup-bottom .button-outer a {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding-top: 0.6em;
    padding-bottom: 0.7em;
    padding-left: 1.2em;
    padding-right: 1.2em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    background-color: #f58220;
    border: 1px solid white;
    border-radius: 22px;
    transition: background-color 0.3s;
    white-space: nowrap;
    font-family: Lato, sans-serif;
}

.exit-popup-bottom .button-outer a:hover {
    color: white;
    background-color: #ffb620;
    text-decoration: none;
}

@media screen and (min-width: 350px) {
    .exit-popup-top h1 {
        font-size: 1.5rem;
    }

    .exit-popup-bottom .pack {
        font-size: 1rem;
    }
}

@media screen and (min-width: 450px) {
    .exit-popup-top h1 {}
}


/* Redeem page */

.content-heading {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
}

.content-intro {
    line-height: 140%;
    margin-top: 2em;
    max-width: 28em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.visa-option-outer {
    text-align: center;
}

.visa-option-outer a.primary-button {
    text-align: center;
    line-height: 125%;
    padding-top: 0.7em;
    padding-bottom: 0.7em;
    font-weight: 600;
    width: 13em;
}

.visa-option-outer p {
    margin-top: 1em;
}

.visa-option-outer p:nth-child(1) {
    margin-top: 1.8em;
}

.visa-option-outer p:nth-child(2) {}

.visa-option-outer p:nth-child(3) {
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: 1.9em;
}

.winner-choices-outer {
    margin-top: 2em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.winner-brand {
    margin-bottom: 4em;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.winner-brand>img {
    width: 100%;
    border-radius: 3.2vw;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.winner-brand-name-row {
    width: 87%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.9em;

    position: relative;
}

.winner-brand-name-row h2 {
    font-weight: bold;
    font-size: 1.25em;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    margin-top: 0.1em;
    margin-right: 2em;
}

.winner-brand-name-row>a.primary-button.info-button {
    display: inline-block;
    position: absolute;
    right: 0;
    top: -0.5em;
    text-transform: none;
    font-weight: normal;
    padding: 0.6em;
    border-radius: 50%;
    font-size: 1rem;
    width: 0.8em;
    height: 0.8em;
    text-align: center;
    vertical-align: middle;
    background-color: #5c5c5c;
    transition: background-color 0.3s;
}

.winner-brand-name-row>a.primary-button.info-button:hover {
    background-color: #000000;
}

.winner-brand-info {
    display: none;
}

.winner-brand-title-note {
    line-height: 125%;
    margin-top: 0.5em;
    font-size: 0.75rem;
}

.winner-denominations-row {
    clear: both;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.9em;
}

.winner-denominations-row a.amount-button {
    display: inline-block;
    color: black;
    border: 2px solid black;
    font-weight: bold;
    text-align: center;
    min-width: 2em;
    border-radius: 0.4em;
    margin-left: 0.1em;
    margin-right: 0.2em;
    margin-bottom: 0.7em;
    transition: background-color 0.3s, color 0.3s, width 0.3s, padding 0.3s, border-color 0.3s, color 0.3s, margin 0.3s;
    text-decoration: none;
    overflow: hidden;
    padding: 0.5em 0.8em;
    white-space: nowrap;
}

.winner-denominations-row a.amount-button:hover {
    background-color: #e7e7e7;
}

.winner-denominations-row a.amount-button.selected {
    background-color: black;
    color: white;
}

.winner-denominations-row a.amount-button.shrunk {
    min-width: 0;
    width: 0px;
    padding-left: 0;
    padding-right: 0;
    border-color: white;
    color: white;
    margin-left: 0;
    margin-right: 0;
}

.winner-total-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -4px 8px 0 rgb(0 0 0 / 12%), 0 -2px 4px 0 rgb(0 0 0 / 8%);
}

.winner-total-bar-inner {
    display: table;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 33em;
}

.winner-total-bar-inner>div:nth-child(1) {
    display: table-cell;
    vertical-align: middle;
    padding-left: 5%;
    padding-right: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
    line-height: 125%;
}

.winner-total-bar-inner>div:nth-child(2) {
    display: table-cell;
    vertical-align: middle;
    padding-right: 5%;
    padding-top: 1em;
    padding-bottom: 1em;
}

.winner-total-bar-inner a.primary-button.done-button {
    text-align: center;
    line-height: 125%;
    padding-top: 0.7em;
    padding-bottom: 0.7em;
    font-size: inherit;
    display: inline-block;
}

.done-button.animating {
    animation-name: pulse;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-play-state: running;
}

@keyframes pulse {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.05);
    }
}

.material-icons.done-checkmark {
    color: #009d00;
    vertical-align: middle;
    position: relative;
    top: -0.1em;
    left: 0.1em;
    display: none;
}

body.with-total-bar {
    padding-bottom: 84px;
}

#HtmAmountLeft {
    display: inline-block;
}

.info-popup-outer {
    max-width: 650px;
}

.info-popup {
    background-color: white;
    border-radius: 7px;
}

.info-popup-body {
    padding: 11%;
    line-height: 130%;
    font-size: 0.875rem;
    margin-bottom: 50px;
}

.info-popup-body h2 {
    font-weight: bold;
    font-size: 1.125rem;
}

.info-popup-body h3 {
    margin-top: 1.5em;
    font-style: italic;
}

.info-popup-body p {
    margin-top: 1em;
}

.error-container .flashed-messages {
    margin-top: 1em;
}

.winner-choices-table {
    margin-left: auto;
    margin-right: auto;
}

.winner-choices-table tr {}

.winner-choices-table td {
    vertical-align: middle;
    padding-right: 1em;
    padding-bottom: 0.6em;
}

.winner-choices-table td:nth-child(1) {
    padding-right: 1.5em;
}

.winner-choices-table td:nth-child(2) {
    padding-right: 3em;
}

.winner-choices-table td:nth-child(3) {
    text-align: right;
    font-weight: bold;
}

.winner-choices-table .gift-card-icon {
    width: 60px;
}

.winner-choices-table .total-row td {
    padding-top: 1em;
}

.winner-review-buttons {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
}

.winner-review-divider {
    width: 90%;
    max-width: 540px;
    border-top: 1px solid #c5c5c5;
    margin-top: 1.4em;
    margin-bottom: 1.4em;
    margin-left: auto;
    margin-right: auto;
}

.winner-review-email {
    text-align: center;
    margin-top: 2em;
}

.winner-review-email .field {
    max-width: 29em;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 380px) {
    .winner-brand img {
        border-radius: 10px;
    }
}

@media screen and (min-width: 500px) {
    .info-popup-body {
        font-size: 1rem;
    }
}

@media screen and (min-width: 750px) {
    .content-intro {
        max-width: 38em;
    }

    .visa-option-outer a.primary-button {
        width: 22em;
        font-size: 1.125rem;
    }

    .winner-choices-outer {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
    }

    .winner-brand {
        padding-left: 10px;
        padding-right: 10px;
    }

    .winner-total-bar-inner {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1000px) {
    .winner-choices-outer {
        width: 110%;
        margin-left: -5%;
        margin-right: -5%;
    }
}


/* Email preferences */

.email-preferences {
    text-align: center;
}

.email-preferences p {
    margin-top: 1.5em;
}

.email-lists {
    margin-top: 1em;
    display: inline-block;
}

.email-lists li {
    margin-top: 0.5em;
    text-align: left;
}

.email-flashed-messages .message-info,
.email-flashed-messages .message-error {
    text-align: center;
}


/* Popups framework */

.popup-slot {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0.0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.popup-slot.visible {
    opacity: 1.0;
    pointer-events: all;
}

.popup-inactive-area {
    display: none;
}

.popup {
    position: relative;
    max-height: 100%;
    box-sizing: border-box;
    margin: 1em;
    padding: 0.7em;
    width: 90%;
    transform: scale(0.0);
    transition: transform 0.2s;
}

.popup.visible {
    transform: scale(1.0);
}

.popup.instant-left {
    transition: none;
    transform: translateX(-100vw);
}

.popup.instant-right {
    transition: none;
    transform: translateX(100vw);
}

.popup.transition-left {
    transform: translateX(-100vw);
}

.popup.transition-right {
    transform: translateX(100vw);
}

.popup .close-x {
    position: absolute;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=');
    background-size: contain;
    background-position: center center;
    border: 0.15em solid white;
    border-radius: 50%;
    right: 0;
    top: 0;
    font-size: 1rem;
    width: 1.7em;
    height: 1.7em;
    background-color: black;
    cursor: pointer;
    transition: background-color 0.15s;
}

.popup .close-x:hover {
    background-color: #444;
}

.prompt-popup {
    max-width: 26em;
}

.prompt-popup-inner {
    background-color: white;
    border-radius: 0.7em;
    padding: 1.7em;
    text-align: center;
}

.prompt-popup-inner p {
    margin-top: 0;
    margin-bottom: 0;
}

.prompt-popup-buttons input {
    margin-top: 0.9em;
    margin-left: 0.3em;
    margin-right: 0.3em;
}


/* Popups - site-specific */

.prompt-popup-buttons input[type=button] {
    box-sizing: border-box;
    font-family: Verdana, Helvetica, sans-serif;
    padding: 6px 12px;
    line-height: 143%;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
    color: #333;
    background-color: #fff;
    transition: background-color 0.1s;
    padding-top: 3px;
    padding-bottom: 3px;
}

.prompt-popup-buttons input[type=button]:hover {
    background-color: #e6e6e6;
}

.prompt-popup-buttons input[type=button]:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: 0 0 4px rgba(102, 175, 233, .6);
    border-color: #7c9ed5;
}