:root {
    --color-white: 255, 255, 255;
    --color-black: 0, 0, 0;
    --color-gray-50: 252, 252, 252;
    --color-gray-100: 245, 245, 249;
    --color-gray-200: 234, 234, 240;
    --color-gray-300: 218, 218, 224;
    --color-gray-500: 128, 128, 133;
    --color-gray-700: 64, 64, 69;
    --color-gray-800: 49, 47, 49;
    --color-magenta-200: 239, 231, 241;
    --color-magenta-700: 99, 11, 121;
    --color-magenta-800: 71, 35, 80;
    --color-magenta-900: 61, 21, 71;
    --color-pink-200: 249, 219, 231;
    --color-pink-600: 214, 12, 91;
    --color-green-200: 235, 247, 235;
    --color-green-600: 0, 168, 0;
    --color-green-700: 0, 151, 1;
    --color-green-800: 0, 103, 1;
    --color-cyan-100: 241, 250, 253;
    --color-cyan-300: 193, 234, 245;
    --color-cyan-400: 106, 203, 230;
    --color-cyan-600: 0, 158, 201;
    --color-orange-500: 255, 177, 0;
    --color-orange-600: 204, 142, 0;
    --color-red-600: 228, 0, 0;
    --color-yellow-100: 254, 253, 240;
    --color-blue-200: 204, 234, 255;
    --color-blue-700: 41, 77, 102;

    /* semantic colors */
    --color-primary: var(--color-magenta-700);
    --color-primary-contrast: var(--color-white);
    --color-secondary: var(--color-magenta-900);
    --color-secondary-contrast: var(--color-white);
    --color-accent: var(--color-pink-600);
    --color-accent-contrast: var(--color-white);
    --color-action: var(--color-green-700);
    --color-action-contrast: var(--color-white);

    /* opacity */
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;

    /* button */
    --formitem_border-width: 1px;
    --formitem_border-radius: 5px;

    /* borders */
    --border-width: 1px;
    --border-style: solid;
}

html {
    background: black;
}

.header-stripe {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 5rem;

    background-color: rgb(var(--color-secondary));
}

.header-stripe__container {
    display: flex;
    justify-content: start;
    width: 100%;
    padding-left: 24px;

    @media only screen and (min-width: 1000px) {
        width: 642px;
        padding-left: 0;
    }
}

.header-stripe__image {
    width: 3.5rem;
    height: 3.5rem;
}

.content {
    height: calc(100dvh - 5rem);
    background-color: #000;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
}

.cover-img {
    margin: 0 auto;
    margin-top: 1.25em;
    @media (min-width: 640px) {
        margin-top: 2rem;
    }
    @media (min-width: 850px) {
        max-width: 850px;
    }
}

.claim {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;

    padding: 1.5rem;

    max-width: 690px;
    margin: 0 auto;

    margin-top: -2rem;
    padding-top: 3.5rem;

    @media only screen and (min-width: 768px) {
        margin-top: -4rem;
        padding-top: 6.5rem;
    }
}

.claim__subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 0.75rem;
}

.claim__title {
    font-size: 2rem;
    line-height: 2rem;
}

.claim__description {
    font-size: 1.125rem;
}

.claim__cta {
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;

    @media only screen and (min-width: 768px) {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        column-gap: 0.75rem;
    }
}

.claim__muted {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.claim__button, .swal-button--confirm {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(var(--color-action)) !important;
    border-radius: 0.3125rem;
    padding: 0.75rem 1.75rem 0.75rem 1.75rem;
    color: #fff;

    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;

    height: 3rem;

    cursor: pointer;

    outline: none !important;
    border: none !important;

    @media only screen and (min-width: 768px) {
        min-width: 9.75rem;
    }
}

.swal-button--confirm {
    height: 3rem;
    padding: 0rem 2.5rem;
    font-family: 'Source Sans Pro', sans-serif;
}

.swal-button--confirm:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.swal-modal {
    @media only screen and (min-width: 768px) {
        width: 37.5rem;
    }
}

.swal-footer {
    text-align: center;
    cursor: pointer;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-right: 0.25rem;

    display: none;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

.tos {
    text-decoration: underline;
    cursor: pointer;
}
