﻿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;
    min-height: 40px;
}

.sticky-bottom {
    .btn-checkout {
        min-width: 150px;
        height: 40px;
    }

    .express-checkout-divider {
        display: none;
    }
}

.paypal-buttons {
    height: 100% !important;
    min-height: 40px !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);
    }

    .ticket-selection-check:disabled {
        border-color: var(--ad-btn-disabled-border-color);
        cursor: not-allowed;
        opacity: 0.6;
    }

        .ticket-selection-check:disabled:checked:before {
            box-shadow: inset 1em 1em var(--ad-btn-disabled-border-color);
        }

.sh-testmode-banner {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #dc143c;
    color: #fff;
}

.sh-testmode-layout {
    width: 100%;
}

.sh-testmode-copy {
    min-width: 0;
}

.sh-testmode-actions {
    width: 100%;
}

.sh-testmode-form {
    width: 100%;
}

.sh-testmode-action {
    color: #fff;
    font-weight: 600;
    justify-content: center;
    min-height: 2.5rem;
    width: 100%;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

    .sh-testmode-action:hover,
    .sh-testmode-action:focus,
    .sh-testmode-action:focus-visible,
    .sh-testmode-action:active {
        background-color: #b01030;
        border-color: #b01030;
        color: #fff;
    }

@media (min-width: 576px) {
    .sh-testmode-actions {
        flex: 0 0 auto;
        width: auto;
    }

    .sh-testmode-form {
        width: auto;
    }

    .sh-testmode-action {
        width: auto;
    }
}
