<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --bg-color: #fff;
    --text-color: #000;
    --bg-light-color: #1c1b21;
    --blue-color: hsl(205, 100%, 29%);
    --blue-color-lighter: hsl(205, 100%, 39%);
    --pink-color: #ff3fa8;
    --pink-color-lighter: #ff62c0;
    --vh100: 100vh;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Super Mario Bros. 2";
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: var(--vh100);
    overflow-y: scroll;
    overflow-x: hidden;
}

body:not(:hover) .mockup {
    display: none;
}

body.ReactModal__Body--open {
    overflow: hidden;
    padding-right: var(--scroll-bar-width, 17px);
}

button,
a {
    cursor: pointer;
    margin: 0;
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.button {
    --color: #fff;
    --color-hover: var(--color);
    --bg-color: #2b303e;
    --bg-color-hover: #3c3f4a;
    --border-color: transparent;
    --border-color-hover: var(--border-color);
    width: 100%;
    background-color: var(--bg-color);
    border: solid 3px transparent;
    border-color: var(--border-color);
    line-height: 1.2em;
    padding: 8px 10px;
    text-transform: uppercase;
    font-family: "Upheaval TT (BRK)";
    color: var(--color);
    font-size: 24px;
    text-align: center;
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

button.button,
a.button {
    cursor: pointer;
}

.button:hover {
    background-color: var(--bg-color-hover);
    color: var(--color-hover);
    border-color: var(--border-color-hover);
}

.button-primary {
    --bg-color: var(--blue-color);
    --bg-color-hover: var(--blue-color-lighter);
}

.button-outline {
    --border-color: #07102a;
    --bg-color: #fff;
    --color: #000;
    --bg-color-hover: #07102a;
}

.container {
    --container-max-width: 1400px;
    max-width: var(--container-max-width);
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

.message-container {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    color: #000;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .container {
        --container-max-width: 550px;
    }
}

@media (max-width: 480px) {
    .container {
        --container-max-width: 375px;
    }
}

/**/
.my-packs-page {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.my-packs-page-row-container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-gap: 20px;
    align-items: flex-start;
    flex: 1;
}

.packs-container-empty {
    align-self: stretch;
    display: flex;
    padding: 30px 0;
    flex-direction: column;
}

.packs-container-empty &gt; * {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.packs-container-empty-marketplaces + .packs-container-empty-marketplaces {
    margin-top: 15px;
}

.pack-done-marketplaces &gt; h4,
.packs-container-empty-marketplaces &gt; h4 {
    color: var(--blue-color);
    font-weight: normal;
}

.pack-done-marketplaces &gt; h4 + p,
.packs-container-empty-marketplaces &gt; h4 + p {
    color: #999;
    font-family: "Retro Gaming";
    margin: 10px 0 0;
}

.pack-done-marketplaces &gt; div,
.packs-container-empty-marketplaces &gt; div {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: center;
}

.pack-done-marketplaces &gt; div &gt; a,
.packs-container-empty-marketplaces &gt; div &gt; a {
    margin: 0 5px;
}

.pack-done-marketplaces &gt; div &gt; a &gt; img,
.packs-container-empty-marketplaces &gt; div &gt; a &gt; img {
    display: block;
    width: 40px;
    height: 40px;
}

.packs-container-empty &gt; *:last-child {
    margin-bottom: auto;
}

.packs-container-empty &gt; .you-dont-have-message {
    margin-bottom: 0;
}

.buy-pack-button {
    margin: 40px auto 30px;
    width: auto;
    border-radius: 10px;
    line-height: 25px;
    padding: 10px 20px;
    font-family: "Super Mario Bros. 2";
    font-size: 16px;
    border: 0;
}

.buy-pack-button::after {
    content: "&gt;";
    margin-left: 10px;
    transition: transform 0.3s;
}

.buy-pack-button:hover::after {
    transform: translateX(5px);
}

.packs-container-empty:last-child {
    grid-column: 1 / span 2;
}

@media (max-width: 1024px) {
    .my-packs-page-row-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .my-packs-page-row-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .packs-container-empty:last-child {
        grid-column: 1 / span 1;
    }
}

.packs-container {
    display: flex;
    flex-wrap: wrap;
    --cols: 2;
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    grid-gap: 20px;
    align-content: start;
}

.packs-container:last-child {
    grid-column: 1 / span 2;
    --cols: 3;
}

.pack {
    background-color: var(--pack-blue-color, #343844);
    border-radius: 13px;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    display: grid;
    color: #fff;
}

.pack h2 {
    font-size: 20px;
    text-transform: uppercase;
    padding: 15px 10px 0;
    text-align: center;
    font-weight: normal;
}

.pack &gt; p {
    font-size: 16px;
    text-align: center;
    margin: 0;
    padding: 5px 10px 10px;
}

.pack &gt; p span.divider {
    margin: 0 4px;
}

.pack-image {
    width: 100%;
    margin: 0;
    position: relative;
    padding-top: 100%;
    background-image: var(--rarity-background);
    background-size: 100% 100%;
    perspective: 500px;
    perspective-origin: 50% 75%;
}

.pack-image &gt; svg {
    position: absolute;
    top: 0;
    left: 0;
}

.pack-image &gt; button {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 10px;
    border: 0;
    padding: 0;
    font-family: inherit;
    padding: 5px;
    font-size: 10px;
    background-color: #343844;
    color: #fff;
    border-radius: 3px;
    font-family: "Retro Gaming";
}

.pack-image &gt; button + button {
    right: 0;
    left: auto;
}

.pack-image &gt; .pack-background-svg-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.pack-image &gt; .pack-background-svg-container &gt; svg {
    display: block;
    width: 100%;
    height: 100%;
}

.pack-image .pack-layers-image {
    --width-percent: calc(806 / 1400 * 100);
    --width-percent: calc(108 / 240 * 100);
    left: calc(50% - var(--width-percent) * 1% / 2);
    position: absolute;
    top: calc(50% - var(--width-percent) * 1% / 2);
    width: calc(var(--width-percent) * 1%);
    image-rendering: pixelated;
    display: grid;
    filter: blur(0.1px);
    transform-style: preserve-3d;
}

.pack-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 5px;
    padding: 10px 20px 15px;
}

.pack-footer p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.pack-footer p span {
    font-size: 25px;
    display: inline-block;
    box-sizing: border-box;
    padding-left: 2px;
    color: #fff;
    line-height: 30px;
    vertical-align: bottom;
    margin: 0;
    margin-right: 10px;
}

.pack-footer a {
    color: inherit;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: "Retro Gaming";
    text-underline-offset: 2px;
}

.pack-footer img {
    display: block;
}

@media (max-width: 1024px) {
    .packs-container {
        --cols: 1;
    }

    .packs-container:last-child {
        --cols: 2;
    }
}

@media (max-width: 768px) {
    .packs-container {
        --cols: 1;
    }

    .packs-container:last-child {
        --cols: 1;
        grid-column: 1 / span 1;
    }

    .pack {
        padding: 26px 26px 18px;
    }

    .pack h2 {
        font-size: 24px;
        margin-left: 0px;
    }

    .pack &gt; p {
        font-size: 16.1px;
        margin-left: 0;
    }

    .pack-footer p {
        font-size: 14px;
    }

    .pack-footer p span {
        font-size: 18px;
        padding-left: 1px;
    }

    .pack-footer {
        margin-top: 8px;
    }

    .pack-footer a {
        font-size: 16px;
        margin-right: 0;
        line-height: 37px;
    }
}

/**/
.my-latest-openings {
    background-color: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.my-latest-openings &gt; .page-loading {
    margin: 15px 0;
}

.my-latest-openings &gt; .page-loading &gt; img {
    width: 110px;
}

.my-latest-openings &gt; button {
    width: 80px;
    margin: 0 auto;
    background: none;
    border: 0;
    padding: 0;
    color: #e1e1e1;
}

.my-latest-openings &gt; button:hover {
    color: #dddddd;
}

.my-latest-openings &gt; button:disabled {
    opacity: 0;
    pointer-events: none;
}

.my-latest-openings &gt; button.prev {
    margin-top: 10px;
}

.my-latest-openings &gt; button.next {
    margin-bottom: 10px;
}

.my-latest-openings &gt; button &gt; svg {
    display: block;
}

.my-latest-openings &gt; .swiper {
    margin: 10px 15px;
    max-height: 450px;
}

.my-latest-openings &gt; h3 {
    padding: 15px 10px;
    text-align: center;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    font-weight: normal;
    font-size: 16px;
    background-color: var(--blue-color);
    color: #fff;
}

.my-latest-openings .swiper-slide {
    margin: 0 auto;
    height: 150px !important;
}

.my-latest-openings .swiper-slide &gt; div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: box-shadow 0.3s, background-color 0.3s;
    position: relative;
    /* height: 150px; */
}

.my-latest-openings .swiper-slide &gt; div:hover {
    box-shadow: inset 0 0 0 2px #eee;
    background-color: #fff;
}

.my-latest-openings .swiper-slide &gt; div &gt; div:nth-child(1) {
    text-align: center;
    font-size: 13px;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    line-height: 15px;
    height: 30px;
    display: flex;
    align-items: center;
}

.my-latest-openings .swiper-slide &gt; div &gt; .opening-item-preview {
    display: flex;
    position: relative;
    height: 100px;
    width: 175px;
}

.opening-item-preview-pack &gt; svg,
.opening-item-preview-ticket &gt; svg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
    height: 75%;
    width: calc(100% * 0.75 * 0.53);
}

.opening-item-preview-pack &gt; svg {
    animation: individual-pack-image-swing-no-transform 4s ease-in-out 1s infinite;
}

.opening-item-preview-ticket &gt; svg {
    height: 68%;
    width: calc(100% * 0.75 * 0.68 * 89 / 52);
}

.my-latest-openings .swiper-slide &gt; div &gt; .opening-item-preview + div {
    font-family: "Retro Gaming";
    text-transform: uppercase;
    font-size: 12px;
    margin-top: -15px;
    line-height: 15px;
}

/**/
.pack-latest-openings {
    background-color: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-self: start;
    width: 100%;
}

.pack-latest-openings &gt; .page-loading {
    margin: 15px 0;
    min-height: 400px;
}

.pack-latest-openings &gt; .page-loading &gt; img {
    width: 110px;
}

.pack-latest-openings &gt; button {
    height: 80px;
    width: 20px;
    margin: auto;
    background: none;
    border: 0;
    padding: 0;
    color: #e1e1e1;
}

.pack-latest-openings &gt; button:hover {
    color: #dddddd;
}

.pack-latest-openings &gt; button:disabled {
    opacity: 0;
    pointer-events: none;
    display: block;
}

.pack-latest-openings &gt; button &gt; svg {
    display: block;
}

.pack-latest-openings &gt; .swiper {
    margin: 10px 0;
}

.pack-latest-openings &gt; h3 {
    padding: 15px 10px;
    text-align: center;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    font-weight: normal;
    font-size: 16px;
    background-color: var(--blue-color);
    color: #fff;
    grid-column: 1 / span 3;
}

.pack-latest-openings .swiper-slide &gt; div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: box-shadow 0.3s, background-color 0.3s;
    position: relative;
    /* width: 100%; */
}

.pack-latest-openings .swiper-slide &gt; div:hover {
    box-shadow: inset 0 0 0 2px #eee;
    background-color: #fff;
}

.pack-latest-openings .swiper-slide &gt; div &gt; div:nth-child(1),
.pack-latest-openings .swiper-slide &gt; div &gt; div:nth-child(2) {
    text-align: center;
    font-size: 15px;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.opening-item-preview {
    display: flex;
    position: relative;
    width: 85%;
    margin: 10px auto 0;
}

.opening-item-preview::before {
    content: "";
    display: block;
    padding-top: 53%;
}

.opening-item-preview-cards &gt; * {
    transform: translateX(-50%) rotate(calc((var(--index) - var(--total-index) / 2 + 0.5) * 15deg));
    transform-origin: 50% 300%;
    position: absolute;
    left: 50%;
    top: 5%;
    width: 33%;
    z-index: calc(var(--total-index) - var(--index));
    transform-style: preserve-3d;
    /* filter: blur(0.1px); */
    cursor: pointer;
}

.opening-item-preview-cards &gt; *::before {
    content: "";
    display: block;
    padding-top: calc(67 / 52 * 100%);
}

.opening-item-preview-cards &gt; * &gt; svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.pack-latest-openings .swiper-slide &gt; div &gt; ul {
    font-family: "Retro Gaming";
    font-size: 16px;
    line-height: 15px;
    line-height: 1.25em;
    margin: 20px 0 0;
    padding: 0;
    padding-left: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 290px;
    text-transform: uppercase;
}

.pack-latest-openings .swiper-slide &gt; div &gt; ul &gt; li + li {
    margin-top: 15px;
}

/**/
.box-modal-container {
    --description-bg-color-on-congrats: rgb(0 0 0 / 20%);
    --description-color-on-congrats: #000;
    --properties-devider-color: #00000026;
}

.audio-toggle {
    margin-right: auto;
    margin-left: 10px;
}

.box-modal-container .audio-toggle {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    margin: 10px;
    /* background-color: #fff; */
}

.box-modal-container button.close-modal {
    left: auto;
    right: 10px;
}

.box-modal-container .skip-revealing {
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 2;
    margin: 10px;
    background: none;
    border: 0;
    border-bottom: solid 2px;
    padding: 0;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: background-color 0.3s, color 0.3s, opacity 0.3s, visibility 0.3s;
    color: #aaaaaa;
}

.box-modal-container .audio-toggle ~ .skip-revealing,
.box-modal-container .audio-toggle ~ .toggle-pack-comment-button {
    top: 45px;
}

@media (max-width: 1024px) {
    .box-modal-container .audio-toggle ~ .skip-revealing {
        top: 5px;
        right: 60px;
    }
    .box-modal-container .audio-toggle ~ .toggle-pack-comment-button {
        top: 5px;
        left: 60px;
    }
}

.box-modal-container .skip-revealing:not(.hidden) {
    animation: skipRevealingButtonShow 0.5s ease 2s forwards;
}

@keyframes skipRevealingButtonShow {
    from {
        opacity: 0;
        visibility: hidden;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

.audio-toggle button {
    display: block;
    display: flex;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: none;
    padding: 8px;
    position: relative;
}

.box-modal-container .audio-toggle button {
    opacity: 0.33;
}

.audio-toggle button img {
    display: block;
    width: 100%;
    image-rendering: pixelated;
    height: 100%;
    object-fit: contain;
}

.audio-toggle-on button img:first-child,
.audio-toggle-off button img:first-child + img {
    display: none;
}

.pack-layers-image {
    width: 100%;
    image-rendering: pixelated;
}

.pack-content &gt; h2 {
    margin: 0;
    padding: 30px 0 10px 0.5em;
    font-size: 75px;
    font-size: clamp(28px, 8vw, 75px);
    text-align: center;
    white-space: pre;
    height: 1em;
    transition: height 0.3s;
}

.pack-image-container {
    box-sizing: border-box;
    justify-self: center;
    flex: 1;
    position: relative;
    grid-row: 1/1;
    grid-column: 1/1;
    width: 100%;
    height: 100%;
    min-height: 150px;
}

.pack-image-relative-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
    width: 100%;
}

.replay-info {
    background-color: #f5f5f5;
    margin: 15px 0;
    text-align: center;
    font-size: 13px;
    padding: 10px;
    color: #6e6e6e;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    word-break: break-word;
    line-height: 1.5em;
}

.pack-content {
    flex-direction: column;
    align-items: center;
    padding: 0;
    flex: 1;
    justify-content: center;
    display: flex;
    height: 100%;
}

.pack-image-relative-container .pack-layers-image {
    animation: individual-pack-image-swing 4s ease-in-out 1s infinite;
    display: grid;
    height: 100%;
    width: 750px;
    max-width: calc(100vw - 50px);
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    image-rendering: pixelated;
    overflow: visible;
}

.pack-image-relative-container .pack-layers-image &gt; foreignObject:last-child {
    position: relative;
    overflow: visible;
    visibility: visible;
}

.pack-opening-gif {
    --opening-scale: var(--opening-h) / (var(--opening-h) - var(--opening-padding-top));
    height: calc(var(--foreignObject-height) * 1px * var(--opening-scale));
    width: calc(var(--foreignObject-width) * 1px * var(--opening-w) / var(--opening-h) * var(--opening-scale));
    margin-top: calc(var(--foreignObject-height) * 1px - var(--foreignObject-height) * 1px * var(--opening-scale));
    margin-left: calc(
        -1 * var(--foreignObject-width) * 1px * (var(--opening-w) / var(--opening-h) * var(--opening-scale) - 1) / 2
    );
}

.pack-state-loading .pack-image-relative-container .pack-layers-image,
.pack-state-opening .pack-image-relative-container .pack-layers-image {
    animation: none;
}

.pack-state-opening .pack-image-relative-container .pack-layers-image &gt; * {
    visibility: hidden;
}

@keyframes individual-pack-image-swing-no-transform {
    4% {
        transform: rotate(15deg);
    }

    8% {
        transform: rotate(-10deg);
    }

    12% {
        transform: rotate(5deg);
    }

    16% {
        transform: rotate(-5deg);
    }

    20% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes individual-pack-image-swing {
    4% {
        transform: translate(-50%, -50%) rotate(15deg);
    }

    8% {
        transform: translate(-50%, -50%) rotate(-10deg);
    }

    12% {
        transform: translate(-50%, -50%) rotate(5deg);
    }

    16% {
        transform: translate(-50%, -50%) rotate(-5deg);
    }

    20% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.open-pack-button-container {
    margin-top: 20px;
    padding-bottom: 20px;
}

.pack-closed-skip-button-container {
    display: flex;
    width: fit-content;
    margin: 15px auto 0;
    flex-direction: column;
    transition: visibility 0.3s, opacity 0.3s;
}

.button.pack-closed-faq-link.pack-closed-faq-link {
    --color: rgb(209, 209, 209);
    --color-hover: rgb(171 171 171);
    --bg-color: transparent;
    --bg-color-hover: transparent;
    margin-top: 20px;
    border-bottom: 0;
    height: auto;
}

.pack-closed-skip-button-container .skip-button.skip-button {
    --color: rgb(209, 209, 209);
    --color-hover: rgb(171 171 171);
    --bg-color: transparent;
    --bg-color-hover: transparent;
    text-transform: lowercase;
    font-size: 24px;
}

button.open-pack-button {
    line-height: 47px;
    position: relative;
    color: white;
    font-family: "Retro Gaming";
    text-transform: lowercase;
    display: flex;
    max-width: 500px;
    justify-content: center;
    align-items: center;
    justify-self: center;
    align-self: start;
    margin: 0;
    transition: background-color 0.3s, visibility 0.3s, opacity 0.3s;
    background-color: black !important;
    border-radius: 2px;
}

button.open-pack-button:focus {
    outline: solid 2px black;
    outline-offset: 5px;
}

button.open-pack-button &gt; span {
    position: relative;
    z-index: 1;
    will-change: transform;
    transition: transform 0.3s;
}

.open-pack-later-button {
    margin-top: 56px;
    border: 0;
    padding: 0;
    font-family: "Retro Gaming";
    font-style: normal;
    font-size: 30px;
    line-height: 25px;
    color: inherit;
    background: none;
    border-bottom: solid 2px;
    padding-bottom: 18px;
    margin-right: 8px;
    cursor: pointer;
    text-decoration: none;
    text-transform: lowercase;
}

button.open-pack-button:hover {
    background-color: #0748c5;
}

button.open-pack-button:hover &gt; span {
    transform: scale(1.11);
}

button.open-pack-button::before,
button.open-pack-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: var(--button-glow-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    image-rendering: pixelated;
    pointer-events: none;
    background-position: center;
    transition: opacity 0.3s, visibility 0.3s;
    will-change: transform;
    transform: scale(1.34, 2.6);
    transform-style: preserve-3d;
}

button.open-pack-button::after {
    visibility: hidden;
    background-image: var(--button-glow-hover-image);
    opacity: 0;
}

button.open-pack-button:hover::after {
    visibility: visible;
    opacity: 1;
}

.pack-loading-stack-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
}

.pack-loading-stack-grid &gt; * {
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
}

.pack-loading-details {
    max-width: 500px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
    width: 100%;
    width: calc(100% - 30px);
}

.pack-loading-details-box {
    background-color: #343844;
    padding: 25px 15px;
}

.pack-loading-details-message {
    color: #999;
    font-family: "Retro Gaming";
    font-size: 14px;
    line-height: 1em;
    margin: 0 0 15px;
}

.pack-loading-details h3 {
    font-size: 1em;
}

.pack-loading-details-box p {
    font-size: 1em;
    margin: 8px 0 0;
    font-family: "Retro Gaming";
    line-height: 20px;
}

@media (max-width: 480px) {
    .pack-loading-details-box {
        font-size: 0.8em;
        padding: 15px 10px;
    }
}

.pack-state-opening .pack-content &gt; h2,
.pack-state-opening .pack-header,
.pack-state-opening button.open-pack-button,
.pack-state-opening .open-pack-later-button,
.pack-state-opening .replay-info,
.pack-state-opening .pack-closed-skip-button-container {
    visibility: hidden;
    opacity: 0;
}

.pack-state-loading .pack-content &gt; h2,
.pack-state-opening .pack-content &gt; h2 {
    height: 0;
    padding: 0;
}

.opening-light {
    --light-color: #fff;
    --opacity-transition: 200ms;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity var(--opacity-transition);
    animation: opening-light 500ms ease-out forwards;
}

@keyframes opening-light {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: var(--light-color);
    }
}

@media (max-width: 768px) {
    .pack-closed-skip-button-container .skip-button.skip-button {
        font-size: 16px;
    }

    button.open-pack-button {
        font-size: 16px;
        line-height: 30px;
        width: calc(100vw - 15px * 2);
        margin-left: auto;
        margin-right: auto;
    }

    .open-pack-button-container &gt; .skip-button.skip-button {
        font-size: 16px;
    }

    .open-pack-later-button {
        margin-top: 16px;
        font-size: 12px;
        margin-right: 0;
        line-height: 14px;
    }

    /* .pack-loading-details {
        max-width: calc(100vw - 15px * 2);
    } */
}

/**/
.pack-opened-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.pack-opened-list {
    --box-width-number: 200;
    --box-width: calc(var(--box-width-number) * 1px);
    justify-content: center;
    padding: 40px 0 40px;
    --cols: 3;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: auto 0;
    scrollbar-width: thin;
}

@supports (width: min(1px, 2px)) and (width: 100vw) {
    .pack-opened-list {
        --box-width: calc(min(var(--container-max-width) - 30px, 100vw - var(--scroll-bar-width)) / var(--cols) * 0.6);
    }
}

button.scroll-x-button {
    display: none;
    position: absolute;
    top: 54%;
    margin: -30px 0 0;
    background: none;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: inherit;
    z-index: 100;
}

button.scroll-x-button svg path {
    stroke: #000;
}

@media (max-width: 768px) {
    button.scroll-x-button {
        display: block;
    }
}

button.scroll-x-button.scroll-right-button {
    right: 12%;
    margin-right: -20px;
}

button.scroll-x-button.scroll-left-button {
    left: 12%;
    margin-left: -20px;
}

.pack-opened-list .box-item {
    --box-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: calc(100% / var(--cols));
    margin-top: 35px;
    margin-bottom: 35px;
    transition: opacity 0.75s, transform 0.75s;
}

.pack-opened-list .box-item:not(.box-fade-in) {
    opacity: 0;
    transform: translateY(-40px);
}

.box-image-container {
    position: relative;
    width: var(--box-width);
    display: grid;
    cursor: pointer;
    pointer-events: none;
}

.box-item.box-animating .box-image-container {
    outline: none;
}

.box-image-container::before {
    content: "";
    grid-row: 1;
    grid-column: 1;
    padding-top: calc(146 / 104 * 100%);
}

.box-image-container &gt; * {
    grid-row: 1;
    grid-column: 1;
}

.box-image .box-inner-image &gt; img {
    transition: opacity 0.1s, visibility 0.1s;
}

.box-item.box-animating .box-image &gt; .box-static-image,
.box-item.box-animating .box-image &gt; .box-glare-image,
.box-item.box-animating .box-image::after {
    opacity: 0;
    visibility: hidden;
}

.box-image .box-inner-image-animating {
    overflow: visible;
}

.box-image .glow {
    position: absolute;
    left: 0;
    top: -27%;
    width: 100%;
    bottom: 0;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    visibility: hidden;
    opacity: 0;
    will-change: transform;
}

.box-item.box-shaking .box-static-image,
.box-item.box-shaking .box-glare-image {
    animation-name: shake;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: 50% 100%;
}

.box-item.box-shaking .box-image::after {
    opacity: 0;
    animation: none;
}

@keyframes shake {
    0% {
        transform: translate(2px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-2deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(3deg);
    }

    30% {
        transform: translate(0px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(2px, 1px) rotate(-2deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(4deg);
    }

    90% {
        transform: translate(2px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.box-image-container &gt; .card-glow {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -15%;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.box-item.box-state-opened .box-image-container &gt; .card-glow {
    visibility: visible;
    opacity: 1;
}

.box-image {
    width: var(--box-width);
    image-rendering: pixelated;
    visibility: hidden;
    display: block;
    height: auto;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
    perspective: var(--box-width);
    transition: transform 0.3s, opacity 0.1s, visibility 0.1s;
    will-change: transform;
}

.box-pos-changed .box-image {
    transition: opacity 0.1s, visibility 0.1s;
}

.box-image .box-static-image {
    pointer-events: auto;
    position: relative;
    image-rendering: pixelated;
}

.box-image .box-hover-image {
    position: relative;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s, opacity 0.3s;
    image-rendering: pixelated;
    will-change: transform;
}

.box-image .box-glare-image {
    position: relative;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: visibility 0.3s, opacity 0.3s;
    image-rendering: pixelated;
    opacity: 0.05;
}

.box-item:not(.box-shaking):not(.box-animating) .box-image-hover {
    transform: translateY(-50%) scale(1.1);
}

.box-item:not(.box-shaking):not(.box-animating) .box-image-hover .box-hover-image {
    opacity: 1;
    visibility: visible;
}

.box-state-closed .box-image {
    visibility: visible;
    opacity: 1;
}

.box-state-closed .box-image-container:hover .box-image img.glow {
    transform: scale(2);
    visibility: visible;
    opacity: 1;
}

.box-item.box-state-closed .box-image-container:not(.disabled) .box-image::after {
    content: "Click\ato reveal";
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    font-size: 13px;
    width: 60%;
    white-space: pre-wrap;
    color: #000;
    opacity: 0;
    transition: opacity 1.5s;
}

.box-item.box-state-closed.box-show-click-to-reveal:not(.box-shaking) .box-image::after {
    opacity: 1;
}

.box-item[data-series="1"].box-state-closed .box-image::after {
    color: #fff;
}

.box-image-gif {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.75%, -50%);
    width: auto;
    height: 100%;
    image-rendering: pixelated;
    pointer-events: none;
}

.box-animation-pre-reveal {
    transition: visibility 0.3s, opacity 0.3s;
}

.box-animation-pre-reveal.hidden {
    visibility: hidden;
    opacity: 0;
}

.box-animation-text {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    text-align: center;
    margin-top: -13px;
}

.box-animation-text &gt; p:first-child {
    font-size: 34px;
    font-family: "Hachicro";
    font-size: 33.8px;
    color: #292929;
    text-transform: uppercase;
    margin-right: -6px;
    line-height: 35px;
    opacity: 0.1;
}

.box-animation-text &gt; p:first-child + p {
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
    text-transform: uppercase;
    font-size: 23px;
    font-family: "Retro Gaming";
    font-weight: 700;
    margin-left: -5px;
    line-height: 30px;
}

.box-animation {
    position: relative;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.box-image-container:hover .flip-card {
    --scale: 1.2;
}

img.box-without-glass,
img.box-glass {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 227%;
    image-rendering: pixelated;
}

.box-content-container {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 113%;
    transform: translateY(-50%);
}

img.box-content-full {
    width: 90%;
}

.pack-opening-footer-buttons {
    padding-top: 25px;
    padding-bottom: 35px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    max-width: 946px;
}

.pack-opening-footer-buttons &gt; .button {
    width: 300px;
    max-width: 100%;
}

.pack-opening-footer-buttons &gt; .button.share-this-pack {
    margin: 5px 10px;
    border-radius: 0;
    padding: 8px 5px;
    line-height: 0.9em;
}

@media (max-width: 1024px) {
    .pack-opened-list {
        --cols: 2;
    }
}

@media (max-width: 768px) {
    .pack-opened-list {
        --cols: 1;
        --box-width-number: 155;
    }

    .pack-opened-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        padding: 30px 0 0;
        scroll-behavior: smooth;
        overflow-x: scroll;
        overflow-y: hidden;
        display: flex;
        grid-gap: 0;
        flex: 1;
        align-items: center;
    }

    .pack-opened-list .box-item {
        flex-shrink: 0;
        width: 100%;
        scroll-snap-align: center;
        margin-bottom: 0;
    }

    .box-state-closed .box-image-container:hover,
    .box-image-container:hover {
        transform: none;
    }

    .box-image .glow {
        visibility: visible;
        opacity: 1;
    }

    .pack-opened-list .box-item {
        margin-top: 0;
    }
}

/**/
.ReactModal__Content {
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    height: 100%;
}

.ReactModal__Overlay.ReactModal__Overlay--after-open {
    background-color: rgb(255 255 255) !important;
}

.box-modal-container,
.flip-card-modal-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    flex-direction: column;
    flex-shrink: 0;
    overflow: auto;
    padding: 0 !important;
    box-sizing: border-box;
}

.ReactModal__Overlay {
    opacity: 0;
    transition: opacity 500ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
}

.box-modal-portal &gt; .ReactModal__Overlay {
    z-index: 900000;
}

.ReactModal__Content {
    transform: scale(0.25);
    transition: transform 500ms ease-in-out;
    outline: none;
}

.ReactModal__Overlay--after-open {
    opacity: 1;
}

.ReactModal__Overlay--before-close {
    opacity: 0;
}

.ReactModal__Overlay--after-open .ReactModal__Content {
    transform: scale(1);
}

.ReactModal__Overlay--before-close .ReactModal__Content {
    transform: scale(0.25);
}

.box-modal,
.flip-card-modal {
    flex-shrink: 0;
    padding: 0;
    max-height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding: 20px;
    width: 100%;
    padding-top: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
}

@media (max-width: 1024px) {
    .box-modal-container {
        padding-top: 50px !important;
    }

    .box-modal,
    .flip-card-modal {
        padding-top: 14px;
    }
}

.flip-card-modal {
    width: 100%;
    height: 100%;
}

.flip-card-modal &gt; * {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/**/
button.close-modal {
    position: absolute;
    left: 10px;
    top: 0;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    margin: 10px;
    /* background-color: #fff; */
    right: 0;
    color: #fff;
}

.flip-card-modal-container button.close-modal {
    right: 10px;
    left: auto;
}

button.close-modal {
    color: #aaaaaa;
}

button.close-modal &gt; svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    stroke-width: 2;
}

button.close-modal:hover &gt; svg {
    transform: scale(1.2);
}

.will-reveal {
    transition: opacity 0.5s, transform 0.5s;
    will-change: transform;
}

.will-reveal:not(.revealed) {
    opacity: 0;
    pointer-events: none;
}

.will-reveal-height {
    transition: height 0.5s;
    will-change: height;
}

.will-reveal-height + * {
    margin-top: 0 !important;
}

.will-reveal-height:not(.height-revealed) {
    height: 0 !important;
    pointer-events: none;
}

@media (max-width: 768px) {
    .ReactModal__Overlay--after-open .ReactModal__Content.box-modal-container,
    .ReactModal__Overlay--after-open .ReactModal__Content.flip-card-modal-container {
        overflow: auto;
    }

    .box-modal {
        max-width: none;
    }
}

.revealing-terminal {
    overflow: hidden;
    transition: visibility 0.5s;
    visibility: visible;
}

.revealing-terminal[visibility="hidden"] {
    visibility: hidden;
}

.revealing-terminal &gt; div {
    overflow: hidden;
    height: calc(var(--foreignObject-height) * 1px);
    width: calc(var(--foreignObject-width) * 1px);
    background-color: #000;
    opacity: 1;
    visibility: visible;
    transition: visibility 0.5s, opacity 0.5s;
    box-sizing: border-box;
    padding: 40px;
}

.revealing-terminal &gt; div &gt; div {
    max-height: 100%;
    overflow: hidden;
}

.revealing-terminal[visibility="hidden"] &gt; div {
    opacity: 0;
    visibility: hidden;
}

.revealing-terminal &gt; div &gt; div &gt; span {
    --height: 0;
    --frame-height: 36;
    --lines-count: calc(var(--frame-height) / 36 * 14);
    --line-height: calc((var(--frame-height) + 10 - 2) * 1px / var(--lines-count) * 40);
    box-sizing: border-box;
    font-size: calc(2.1px * 40);
    font-family: "Retro Gaming";
    color: #00910c;
    word-break: break-word;
    white-space: pre-wrap;
    line-height: var(--line-height);
    margin-top: calc(var(--height) * -1px + var(--line-height) * var(--lines-count));
    display: block;
    transition: opacity 0.3s, visibility 0.3s;
}

.revealing-terminal &gt; div &gt; div &gt; span::after {
    display: none;
    content: "  ";
    white-space: pre;
    background-color: currentColor;
    /* animation: revealing-terminal-blinking-char 0.7s ease infinite; */
}

@keyframes revealing-terminal-blinking-char {
    0%,
    100% {
        background-color: currentcolor;
    }

    50% {
        background-color: transparent;
    }
}

.toadbot-text-animate {
    animation: toadbot-text-animate 1s ease;
}

@keyframes toadbot-text-animate {
    from {
        transform: translateX(200px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

text.toadbot-terminal-text-animate &gt; tspan {
    opacity: 0;
    animation: toadbot-terminal-text-animate 0.1s ease calc(var(--index) * 0.25s) forwards;
}

@keyframes toadbot-terminal-text-animate {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.noun-text-animate {
    animation: noun-text-animate 1s ease;
}

@keyframes noun-text-animate {
    from {
        transform: translateX(-200px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.noun-magnifying-glass {
    transition: opacity 0.5s, visibility 0.5s;
}

.noun-magnifying-glass[visibility="hidden"] {
    opacity: 0;
}

/**/
.pack-details {
    color: #000;
    padding: 0 0 30px;
}

.pack-details &gt; .pack-top-title h2 {
    font-size: 58px;
    font-family: "Upheaval TT (BRK)";
    word-break: break-word;
    font-weight: normal;
    padding-bottom: 10px;
}

.pack-details &gt; .pack-sub-title {
    background-color: var(--pack-color);
    color: #fff;
    padding: 10px 0;
}

.pack-details &gt; .pack-sub-title &gt; .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.pack-details &gt; .pack-sub-title h2 {
    font-size: 60px;
    font-family: "Upheaval TT (BRK)";
    word-break: break-word;
    font-weight: normal;
    line-height: 48px;
}

.pack-details &gt; .pack-sub-title .share-this-pack {
    background-color: #fff;
    color: var(--pack-color);
    transition: transform 0.3s;
    will-change: transform;
}

.pack-details &gt; .pack-sub-title button.share-this-pack:hover {
    background-color: #fff;
    color: var(--pack-color);
    transform: scale(1.1);
}

.pack-details &gt; .pack-sub-title .pack-by-author {
    font-size: 12px;
    font-family: "Super Mario Bros. 2";
}

.pack-details &gt; .row-1,
.pack-details &gt; .row-2 {
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: space-between;
    display: grid;
    grid-gap: 20px;
}

.pack-details &gt; .row-1 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.pack-details &gt; .row-1 &gt; .col-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    box-sizing: border-box;
    max-width: 600px;
}

.pack-details &gt; .row-1 &gt; .col-1 .pack-layers-image {
    animation: individual-pack-image-swing-no-transform 4s ease-in-out 1s infinite;
}

.pack-details &gt; .row-2 &gt; .col-3 {
    background-color: var(--pack-color-secondary, var(--blue-color));
    border-radius: 10px;
    overflow: hidden;
    align-self: start;
}

.pack-details &gt; .row-2 &gt; .col-3:last-child {
    grid-column: 1 / span 2;
}

.pack-details &gt; .row-2 &gt; .col-3 h4 {
    color: #fff;
    padding: 15px 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-family: "Super Mario Bros. 2";
    font-size: 16px;
    font-weight: normal;
    word-break: break-word;
}

.pack-details &gt; .row-2 &gt; .col-3 .description {
    background-color: rgb(255 255 255 / 10%);
    color: #fff;
    border-radius: 0 0 10px 10px;
    margin-top: 0;
    padding: 20px;
    line-height: 1.5em;
    font-family: "Retro Gaming";
    font-size: 16px;
}

.pack-details &gt; .row-2 .col-4 {
    display: flex;
    flex-direction: column;
}

.pack-details &gt; .row-2 .col-4 &gt; div &gt; h3 {
    background-color: var(--pack-color-secondary);
}

.pack-details &gt; .row-2 .col-4 &gt; .description {
    background: none;
    padding: 10px;
    box-shadow: inset 0 0 0 1px #206cc9;
}

.pack-details &gt; .row-2 .col-4 &gt; .description .page-loading {
    min-height: 200px;
}

.pack-details &gt; .row-2 .col-4 &gt; .description .grid-lazy-pack-items {
    margin: 0;
}

.pack-details &gt; .row-2 .col-4 &gt; .description .lazy-pack-item {
    padding: 10px;
}

.pack-details &gt; .row-2 &gt; .col-3 .description &gt; ul {
    margin: 0;
    padding-left: 20px;
}

.pack-details &gt; .row-2 &gt; .col-3 .description &gt; ul &gt; li + li {
    margin-top: 20px;
}

.pack-details .allowlist-gate-stats {
    width: 100%;
    margin-top: 20px;
}

.pack-details &gt; .row-1 &gt; .col-2-allowlist {
    box-sizing: border-box;
    display: grid;
    grid-gap: 20px 20px;
    grid-template-columns: minmax(0, 1fr);
    align-self: start;
    padding: 30px 0;
}

.col-2-allowlist &gt; h3 {
    text-align: center;
    font-size: 1.5em;
    color: var(--pack-blue-color);
}

.pack-details &gt; .row-1 &gt; .col-2-allowlist &gt; .flip-card {
    width: 77%;
}

@media (max-width: 768px) {
    .pack-details &gt; .row-1 &gt; .col-2-allowlist &gt; .flip-card {
        width: 100%;
    }
}

.col-2-allowlist &gt; p {
    font-family: "Retro Gaming";
    line-height: 1.5em;
    font-size: 17px;
    text-align: center;
}

.pack-details &gt; .row-1 &gt; .col-2 {
    box-sizing: border-box;
    display: grid;
    grid-gap: 20px 20px;
    grid-template-columns: 4fr 3fr;
    align-self: start;
    padding: 30px 0;
    --gradient: linear-gradient(to right, var(--pack-color), var(--pink-color));
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-soldout-title {
    grid-column: 1 / span 2;
    background-color: var(--pack-color);
    color: #fff;
    padding: 10px;
    text-align: center;
    width: 360px;
    margin: auto;
    box-sizing: border-box;
    font-size: 25px;
    max-width: 100%;
}

.pack-details-marketplaces-links {
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-soldout-links {
    max-width: 450px;
    margin: auto;
    grid-column: 1 / span 2;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-soldout-links &gt; span {
    margin-right: auto;
    font-size: 18px;
    white-space: pre;
}

.pack-details-marketplaces-links &gt; a {
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
}

.pack-details-marketplaces-links &gt; a + a,
.pack-details &gt; .row-1 &gt; .col-2 .pack-soldout-links &gt; a {
    margin-left: 10px;
}

@media (max-width: 480px) {
    .pack-details &gt; .row-1 &gt; .col-2 .pack-soldout-links {
        flex-wrap: wrap;
    }
    .pack-details &gt; .row-1 &gt; .col-2 .pack-soldout-links &gt; span {
        width: 100%;
        text-align: center;
    }
    .pack-details &gt; .row-1 &gt; .col-2 .pack-soldout-links &gt; a {
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 10px;
    }
}

.pack-details-marketplaces-links &gt; a:hover {
    transform: scale(1.1);
}

.pack-details-marketplaces-links &gt; a &gt; img {
    display: block;
    width: 100%;
    height: auto;
}

.pack-details &gt; .row-2 {
    padding-top: 0;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.pack-details &gt; .row-2 &gt; .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.pack-details &gt; .row-1 &gt; .col-2 &gt; h2 {
    font-size: 65px;
    margin-top: 0;
    text-transform: uppercase;
    font-family: "Upheaval TT (BRK)";
    font-weight: normal;
    word-break: break-word;
    line-height: 0.6em;
}

.pack-details &gt; .row-1 &gt; .col-2 &gt; .pack-by-author {
    font-family: "Upheaval TT (BRK)";
    font-size: 20px;
    position: relative;
    margin-top: -20px;
}

.pack-details &gt; .row-1 &gt; .col-2 .underline {
    display: flex;
    justify-content: flex-end;
    border-bottom: solid 1px #9e9e9e;
    align-items: end;
    padding-bottom: 10px;
    align-self: start;
    flex-wrap: wrap;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-stock-details {
    justify-content: space-between;
    font-size: 17px;
    font-family: "Retro Gaming";
    line-height: 29px;
    white-space: pre;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1 / 3;
    margin-bottom: 15px;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-view-external {
    grid-column: 1 / 3;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-view-external &gt; a {
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
    background-color: #0073ca;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-view-external &gt; a:hover {
    background-color: #01549c;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-opens-at {
    grid-column: 1 / 3;
    text-align: center;
    white-space: pre-line;
    font-size: 40px;
    font-family: "Upheaval TT (BRK)";
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-opens-at-text,
.pack-details &gt; .row-1 &gt; .col-2 .pack-connect-text {
    grid-column: 1 / 3;
    text-align: center;
    white-space: pre-line;
    font-size: 24px;
    font-family: "Upheaval TT (BRK)";
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-connect-text {
    font-family: "Retro Gaming";
    font-size: 16px;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-connect-text button {
    border: 0;
    color: inherit;
    font-family: inherit;
    padding: 0;
    margin: 0;
    background: none;
    font-size: inherit;
}

.pack-details &gt; .row-1 &gt; .col-2 .countdown {
    grid-column: 1 / 3;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-name {
    max-width: 120px;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-stock-details &gt; .pack-stock-progress {
    position: relative;
    width: 100%;
    height: 15px;
    margin-top: 5px;
    border-radius: 5px;
    overflow: hidden;
    background-image: var(--gradient);
    background-size: 100% 100%;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-stock-details &gt; .pack-stock-progress::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    width: calc((var(--total-supply) - var(--in-stock-count)) / var(--total-supply) * 100%);
    background-color: #e2e2e2;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-stock-details .slash {
    font-size: 0;
    margin: 0 12px;
    transform: skewX(-15deg);
    width: 3px;
    background-color: currentColor;
    height: 40px;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-stock-details span {
    display: block;
    font-size: 14px;
    line-height: 14px;
}

.pack-details &gt; .row-1 &gt; .col-2 .premint-info {
    grid-column: 1 / 3;
    font-size: 19px;
    color: #000;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pack-details &gt; .row-1 &gt; .col-2 .premint-info &gt; .text-countdown {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 10px auto 0;
    font-size: 25px;
}

.pack-details .pack-small-description {
    grid-column: 1 / 2;
    font-family: "Upheaval TT (BRK)";
    font-size: 20px;
    line-height: 1em;
    color: #000;
    text-align: center;
    margin-top: 20px;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-price {
    font-size: 56px;
    font-family: "Upheaval TT (BRK)";
    line-height: 1em;
    flex: 1;
    grid-column: 1 / 3;
}

.pack-details &gt; .row-1 &gt; .col-2 .price-currency-symbol {
    font-family: "Retro Gaming";
    font-size: 0.75em;
    margin-left: 0.15em;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-auction {
    grid-column: 1 / 3;
    font-family: "Retro Gaming";
    font-size: 20px;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-auction &gt; small {
    color: #7a7a7a;
}

.pack-details &gt; .row-1 &gt; .col-2 .pack-price sup {
    font-size: 0.4em;
    font-family: "Retro Gaming";
    color: #757575;
}

.pack-details &gt; .row-1 .input-quantity-container {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 10px;
    align-items: center;
}

.pack-details &gt; .row-1 &gt; .col-1 .input-quantity-container {
    margin-top: 20px;
}

.pack-details &gt; .row-1 &gt; .col-2 .input-quantity-container {
    grid-column: 1 / 3;
}

.pack-details &gt; .row-1 .input-quantity-container .input-quantity {
    width: auto;
    flex: 1;
    margin-top: 0;
    min-width: 200px;
}

.pack-details-sale-price-chart,
.pack-details-sale-price-grid {
    grid-column: 1 / 3;
}

.pack-details-sale-price-grid-cell + rect.pack-details-sale-price-grid-cell-label,
.pack-details-sale-price-grid-cell
    + rect.pack-details-sale-price-grid-cell-label
    + text.pack-details-sale-price-grid-cell-label {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}

.pack-details-sale-price-grid-cell:hover + rect.pack-details-sale-price-grid-cell-label,
.pack-details-sale-price-grid-cell:hover
    + rect.pack-details-sale-price-grid-cell-label
    + text.pack-details-sale-price-grid-cell-label {
    visibility: visible;
    opacity: 1;
}

.pack-details-sale-price-grid-cell-tooltip-popper.MuiTooltip-popper {
    z-index: 1000000;
}

.pack-details-sale-price-grid-cell-tooltip {
    font-family: "Retro Gaming";
    font-size: 16px;
    padding: 10px 5px;
}

.pack-details-sale-price-grid-cell-tooltip &gt; * {
    display: block;
}

.pack-details-sale-price-grid-cell-tooltip &gt; * + * {
    margin-top: 5px;
}

.pack-details-sale-price-grid-cell-tooltip &gt; div &gt; img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.pack-details-sale-price-grid-cell-tooltip &gt; div &gt; a {
    vertical-align: middle;
    line-height: 24px;
    overflow: hidden;
    white-space: pre;
    text-overflow: ellipsis;
}

.pack-details-sale-price-grid-cell-tooltip &gt; div &gt; a:hover {
    text-decoration: underline;
}

.pack-details-sale-price-grid-cell-tooltip &gt; div &gt; img.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pack-details-sale-price-grid-cell-tooltip &gt; div &gt; span.price {
    display: block;
    text-align: center;
    font-size: 1.2em;
    border: solid 1px;
    max-width: fit-content;
    margin: 10px auto 0;
    border-radius: 5px;
    padding: 5px 10px;
}

.pack-details-sale-price-grid-cell-tooltip &gt; div.avatar-address-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pack-details-sale-price-grid-cell-tooltip &gt; div.avatar-address-container &gt; * + * {
    margin-left: 10px;
}

.pack-claim-rebate-container,
.pack-buy-now-container,
.pack-connect-wallet-container {
    grid-column: 1 / 3;
    justify-self: center;
    width: 100%;
    max-width: 400px;
}

.pack-details .row-1 &gt; .col-1 .pack-claim-rebate-container {
    margin-top: 10px;
}

.pack-claim-rebate,
.pack-buy-now,
.pack-connect-wallet-container .connect-wallet-button {
    background-image: var(--gradient);
    border: 0;
    border-radius: 10px;
    height: 45px;
    background-position: center;
    text-shadow: 0 0 15px rgb(0 0 0 / 20%);
    font-family: "Retro Gaming";
    font-weight: normal;
    font-size: 16px;
}

.pack-buy-now {
    height: auto;
    font-size: 21px;
    padding: 15px 10px;
}

.pack-claim-rebate {
    background-image: none;
    background-color: transparent;
    border: solid 2px currentColor;
    --color: var(--blue-color);
    --color-hover: #fff;
    --bg-color: transparent;
    --bg-color-hover: #3c3f4a;
}

.button.share-this-pack {
    border: 0;
    --bg-color: var(--pack-blue-color, var(--blue-color));
    --bg-color-hover: var(--pack-blue-color-lighter, var(--blue-color-lighter));
    --color: #fff;
    padding: 0;
    width: fit-content;
    border-radius: 10px;
    margin: 10px 0;
    flex-shrink: 0;
}

.share-this-pack-container {
    position: relative;
}

.share-this-pack-dropdown {
    z-index: 1;
    position: absolute;
    top: 100%;
    right: 0;
    border: solid 2px rgb(208, 208, 208);
    margin: 5px 0 0;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.share-this-pack-container-dropdown-up &gt; .share-this-pack-dropdown {
    top: auto;
    bottom: 100%;
    transform: translateY(-10px);
}

.share-this-pack-container-open &gt; .share-this-pack-dropdown {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.share-this-pack-dropdown &gt; button {
    display: flex;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    background: none;
    transition: transform 0.3s;
}

.share-this-pack-dropdown &gt; button:hover {
    transform: scale(1.1);
}

.share-this-pack-dropdown &gt; button &gt; img {
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.share-this-pack-dropdown &gt; button &gt; img[hidden] {
    display: none;
}

.share-this-pack-dropdown &gt; button + button {
    margin-left: 10px;
}

.button.share-this-pack &gt; span {
    display: flex;
    align-items: center;
    padding-left: 15px;
    min-height: 30px;
    line-height: 15px;
    max-width: 100%;
    box-sizing: border-box;
}

.button.share-this-pack &gt; span.share-this-pack-copied {
    padding-right: 15px;
}

.button.share-this-pack &gt; span &gt; svg:last-child {
    border-left: solid 1px currentColor;
    margin-left: 10px;
    height: 40px;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    width: 25px;
    padding-right: 9px;
    padding-left: 5px;
    box-sizing: content-box;
}

.pack-buy-now:hover,
.pack-connect-wallet-container .connect-wallet-button:hover {
    background-size: 115%;
}

span.quantity-label {
    text-transform: uppercase;
    font-size: 23px;
    font-family: "Retro Gaming";
}

.input-quantity {
    margin: 10px 0 0;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
}

.input-quantity &gt; button {
    width: 50px;
    height: 45px;
    font-family: inherit;
    font-size: 36px;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    background-color: var(--pack-color);
    color: #fff;
    font-family: serif;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.input-quantity &gt; button:hover {
    background-color: var(--pack-color-darken, var(--pack-color));
}

.input-quantity &gt; button:nth-child(1) {
    border-radius: 15px 0 0 15px;
}

.input-quantity &gt; button:nth-child(3) {
    border-radius: 0 15px 15px 0;
}

.input-quantity &gt; button:last-child {
    width: auto;
    padding: 0 15px;
    margin-left: 15px;
    border-radius: 10px;
    font-family: "Retro Gaming";
    font-size: 19px;
}

.input-quantity input[type="number"] {
    flex: 1;
    border-width: 0 1px;
    text-align: center;
    font-family: inherit;
    font-size: 20px;
    padding: 0;
    height: 45px;
    appearance: none;
    outline: none;
    width: 100%;
    background-color: var(--pack-color);
    color: #fff;
    border: solid #ffffff;
    border-width: 0 1px;
    z-index: 1;
    font-family: "Retro Gaming";
    transition: background-color 0.3s;
}

.input-quantity input[type="number"]:focus {
    background-color: var(--pack-color-darken, var(--pack-color));
}

.input-quantity input[type="number"]::-webkit-outer-spin-button,
.input-quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-quantity input[type="number"] {
    -moz-appearance: textfield;
}

.countdown {
    margin: 16px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.countdown &gt; div:first-child {
    background-color: #000;
    color: #fff;
    font-size: 36px;
    font-family: "Retro Gaming";
    line-height: 45px;
    box-sizing: border-box;
    width: fit-content;
    text-align: left;
    display: flex;
    justify-content: flex-end;
    word-break: break-word;
    padding: 5px 35px;
    border-radius: 10px;
    background-image: var(--gradient);
}

.countdown &gt; div:first-child &gt; span[data-countdown-char-type=":"] {
    margin: 0 10px;
}

.countdown &gt; div:first-child &gt; span[data-countdown-char-type="d"] {
    width: 1ch;
    text-align: center;
}

.countdown &gt; div:first-child + div {
    display: flex;
    color: #000000;
    font-family: "Retro Gaming";
    font-size: 18px;
    line-height: 18px;
    width: 100%;
    justify-content: center;
    margin-top: 5px;
}

.countdown &gt; div:first-child + div &gt; span + span {
    margin-left: 40px;
}

.accordion-header {
    background-color: #1b202a;
    padding: 5px 20px;
    cursor: pointer;
    font-size: 50px;
    font-family: "Upheaval TT (BRK)";
    line-height: 1em;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: inherit;
    border: 0;
}

.accordion-arrow {
    transition: transform 0.3s;
    image-rendering: pixelated;
}

.accordion-open .accordion-arrow {
    transform: scaleY(-1);
}

.accordion-content {
    margin-top: 20px;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.3s, visibility 0.3s, opacity 0.3s;
}

.accordion-open .accordion-content {
    visibility: visible;
    height: auto;
    opacity: 1;
}

.button.add-to-calendar {
    border: 0;
    background-color: var(--pink-color);
    color: #fff;
    width: fit-content;
    border-radius: 10px;
    flex-shrink: 0;
    grid-column: 1 / 3;
    justify-self: center;
    margin: 0;
}

.pack-details .row-1 &gt; .col-1 .button.add-to-calendar {
    margin-top: 20px;
    width: 100%;
}

.button.add-to-calendar:hover {
    background-color: var(--pink-color-lighter);
}

.add-to-calendar-modal-container {
    height: auto;
}

.add-to-calendar-modal-container ul {
    display: grid;
    grid-gap: 20px;
    margin: 0;
    padding: 0 0 0 20px;
    margin-top: 20px;
    font-size: 16px;
    font-family: "Retro Gaming";
    list-style: circle;
}

.add-to-calendar-modal-container ul a {
    color: inherit;
    text-decoration: none;
}

.add-to-calendar-modal-container ul li &gt; a &gt; svg {
    vertical-align: -0.4em;
    margin-left: 0.25em;
}

.add-to-calendar-modal-container h3 {
    border-bottom: solid 1px;
    padding-bottom: 10px;
    font-size: 29px;
    font-weight: normal;
}

.add-to-calendar-modal-container h4 {
    font-size: 18px;
    font-family: "Retro Gaming";
    margin-top: 20px;
    font-weight: normal;
}

.add-to-calendar-modal-container p {
    font-family: "Retro Gaming";
    margin-top: 5px;
}

.add-to-calendar-modal-container button.close-modal {
    right: 0;
    left: auto;
    background-color: transparent;
}

button.share-this-pack img {
    margin: 0 5px;
    transition: filter 0.3s;
}

.pack-details &gt; .row-2 .accordion-content {
    max-width: 1372px;
    margin: 20px auto 0;
    white-space: pre-line;
    font-family: "Retro Gaming";
    font-size: 22px;
    line-height: 27px;
}

.soldout-svg text {
    fill: #fff;
    font-size: 35px;
    font-family: "Retro Gaming";
}

.button-with-loading {
    position: relative;
}

.button-with-loading &gt; img {
    visibility: hidden;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.button-with-loading.button-loading &gt; span {
    visibility: hidden;
}

.button-with-loading.button-loading &gt; img {
    visibility: visible;
}

.pack-details &gt; .row-1 &gt; .col-1 .pack-buy-now-container,
.pack-details &gt; .row-1 &gt; .col-1 .pack-connect-wallet-container {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}

.pack-details &gt; .row-1 .pack-buy-now-container &gt; span {
    font-size: 10px;
    font-family: "Retro Gaming";
    color: #adadad;
    margin-top: 5px;
    display: block;
    line-height: 10px;
}

.pack-details &gt; .row-1 .pack-buy-now-container &gt; a {
    font-size: 10px;
    font-family: "Retro Gaming";
    color: #757575;
    margin-top: 5px;
    display: block;
    line-height: 10px;
    max-width: fit-content;
}

@media (max-width: 1024px) {
    .pack-details &gt; .row-2 {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    }
}

@media (max-width: 768px) {
    .pack-details &gt; .row-1,
    .pack-details &gt; .row-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .pack-details &gt; .row-2 &gt; .col-3:last-child {
        grid-column: 1 / span 1;
    }

    .pack-details &gt; .row-1 &gt; .col-1 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .pack-details &gt; .row-1 &gt; .col-2 &gt; h2 {
        font-size: 50px;
    }

    .pack-details &gt; .row-1 &gt; .col-2 .pack-auction {
        grid-column: 1 / 2;
    }

    .pack-details &gt; .row-1 &gt; .col-2 .pack-price {
        font-size: 40px;
        grid-column: 1 / 2;
    }

    .pack-details &gt; .row-1 &gt; .col-2 .pack-stock-details {
        grid-column: 1 / 3;
    }

    .pack-details &gt; .row-2 &gt; .container {
        grid-template-columns: 1fr;
    }

    .pack-details &gt; .row-2 &gt; .container .accordion-header {
        font-size: 35px;
    }

    .pack-details &gt; .row-1 &gt; .col-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .pack-details &gt; .row-1 &gt; .col-2 &gt; * {
        grid-column: 1 / 2 !important;
    }

    .countdown &gt; div:first-child {
        font-size: 20px;
        padding: 5px 15px;
    }

    .countdown &gt; div:first-child + div {
        font-size: 15px;
    }

    .countdown &gt; div:first-child + div &gt; span + span {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .pack-details &gt; .row-1 &gt; .col-2 .pack-stock-details {
        grid-column: 1 / 2;
        margin-bottom: 10px;
    }

    .pack-claim-rebate-container,
    .pack-buy-now-container,
    .pack-connect-wallet-container {
        padding-top: 10px;
    }
}

/**/
.listed-packs-container {
    padding-top: 30px;
    padding-bottom: 30px;
}

.inner-page-title {
    text-transform: uppercase;
    font-family: "Upheaval TT (BRK)";
    font-weight: normal;
    font-size: 75px;
    position: relative;
    word-wrap: break-word;
    margin-bottom: 30px;
}

.inner-page-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    border-top: solid 8px;
    width: 40px;
}

.listed-packs-row-container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-gap: 50px;
}

.listed-packs {
    --cols: 2;
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    grid-gap: 50px;
    align-self: start;
}

.listed-packs:first-child:last-child {
    --cols: 3;
    grid-column: 1 / span 2;
}

.listed-pack {
    font-size: 14px;
    font-family: "Retro Gaming";
    background-color: var(--pack-blue-color, #000);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 0 0 10px;
}

.listed-pack &gt; h3 {
    padding: 10px 20px;
    font-size: 18px;
    font-family: "Retro Gaming";
    font-weight: normal;
    text-transform: uppercase;
    /* background-color: #1a283a; */
    /* color: #fff; */
    font-size: 21px;
    padding-bottom: 0;
    padding: 10px 5px 0;
    font-family: "Super Mario Bros. 2";
}

.listed-pack &gt; a.claim-pack-link {
    display: flex;
    text-align: center;
    justify-content: center;
    font-family: "Typo pixel";
    text-transform: uppercase;
    font-size: 16px;
    padding-top: 10px;
    margin: 0;
    line-height: 1.5em;
}

.listed-pack:hover .pack-layers-image &gt; * {
    animation: individual-pack-image-swing-no-transform 4s ease-in-out;
    transform-origin: center;
}

.listed-pack &gt; h3 ~ * {
    padding-left: 20px;
    padding-right: 20px;
    margin: 5px 0;
    font-size: 15px;
    padding: 0;
    font-family: "Super Mario Bros. 2";
}

.listed-pack &gt; h3 ~ *:last-child {
    padding-bottom: 10px;
    display: none;
}

.listed-pack &gt; .listed-price {
    font-weight: bold;
    font-family: "Super Mario Bros. 2";
    font-size: 16px;
    padding-top: 10px;
    margin: 0;
    display: none;
}

.claim-packs-container &gt; h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.claim-packs-container &gt; h2::after {
    display: none;
}

.claim-packs-container &gt; h4 {
    margin: 5px 0;
    font-family: "Upheaval TT (BRK)";
    font-size: 28px;
    font-weight: normal;
}

.claim-packs-container &gt; p {
    font-family: "Upheaval TT (BRK)";
    font-size: 20px;
    font-weight: normal;
    color: #afbacb;
    margin: 0;
    margin-bottom: 30px;
}

.claim-packs-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-gap: 0 50px;
}

.claim-packs-container &gt; *:not(.listed-packs):not(.claim-available-packs) {
    grid-column: 1 / 3;
    word-break: break-word;
}

.claim-packs-container &gt; .listed-packs {
    --cols: 3;
    align-self: start;
}

.claim-available-packs &gt; h3 {
    background-color: #ff38ff;
    background-image: linear-gradient(290deg, #00d7e0, #ff38ff);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: "Typo pixel";
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 10px;
    line-height: 1.5em;
    font-weight: normal;
    word-break: break-word;
}

.claim-available-packs &gt; p {
    text-align: center;
    word-break: break-word;
    margin: 10px 0 0;
    font-size: 18px;
    line-height: 1.5em;
}

ul.owned-toadz-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 20px;
    overflow: auto;
    max-height: 450px;
}

ul.owned-toadz-list &gt; li {
    background-color: #0074ce;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    word-break: break-word;
}

ul.owned-toadz-list &gt; li &gt; img {
    display: block;
    width: 100%;
}

ul.owned-toadz-list &gt; li.pixelated &gt; img {
    image-rendering: pixelated;
}

ul.owned-toadz-list &gt; li &gt; h5 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    font-weight: normal;
    font-family: "Retro Gaming";
    font-size: 16px;
}

ul.owned-toadz-list &gt; li.already-claimed {
    background-color: #dcdcdc;
    color: #868686;
}

ul.owned-toadz-list &gt; li.already-claimed &gt; h5 {
    padding-bottom: 0;
    padding-top: 2px;
}

ul.owned-toadz-list &gt; li &gt; p {
    font-size: 10px;
    padding: 5px 5px;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    padding-top: 0;
}

@media (max-width: 1024px) {
    .listed-packs-row-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 20px;
    }

    .listed-packs {
        --cols: 1;
        column-gap: 20px;
    }

    .claim-packs-container {
        column-gap: 20px;
        grid-template-columns: 2fr 1fr;
    }

    .claim-packs-container &gt; .listed-packs {
        --cols: 2;
    }
}

@media (max-width: 768px) {
    .listed-packs-row-container {
        grid-template-columns: minmax(0, 1fr);
        column-gap: 20px;
    }

    .listed-packs,
    .listed-packs:first-child:last-child {
        --cols: 2;
        grid-column: 1 / span 1;
    }

    .inner-page-title {
        font-size: 45px;
    }

    .claim-packs-container {
        grid-template-columns: 1fr 1fr;
    }

    .claim-packs-container &gt; .listed-packs {
        --cols: 1;
    }
}

@media (max-width: 480px) {
    .listed-packs,
    .listed-packs:first-child:last-child {
        --cols: 1;
    }

    .claim-packs-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .claim-packs-container &gt; *:not(.listed-packs):not(.claim-available-packs) {
        grid-column: 1 / 2;
    }

    .claim-packs-container &gt; .listed-packs {
        --cols: 1;
        order: 2;
    }

    .claim-available-packs {
        order: 1;
        margin-bottom: 30px;
    }
}

/**/
.box-image-container .flip-card {
    display: flex;
    image-rendering: pixelated;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: absolute;
    --w: 109%;
    left: calc((100% - var(--w)) / 2);
    top: 0;
    width: var(--w);
    height: 100%;
    pointer-events: auto;
}

/**/
.home-hero {
    background-image: var(--hero-gradient);
    padding: 15px 0 45px;
    overflow: hidden;
}

.home-hero &gt; .container {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "P B" "P C" "P H";
    grid-gap: 15px 100px;
}

.home-hero .hero-pack-image-svg {
    width: 400px;
    max-width: 100%;
    transform: rotate(-5deg);
    transform-style: preserve-3d;
    /* filter: blur(0.1px); */
    grid-area: P;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s, visibility 0.5s;
    will-change: transform;
}

.home-hero .hero-pack-image-svg-active {
    visibility: visible;
    opacity: 1;
}

.home-hero .packs-for-sale-button {
    grid-area: B;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    padding: 10px 30px;
    line-height: 40px;
    justify-self: end;
    display: flex;
    align-items: center;
    transition: color 0.3s;
    font-family: "Typo pixel";
    text-transform: uppercase;
    max-width: 100%;
    box-sizing: border-box;
    margin-right: 50px;
}

.home-hero .packs-for-sale-button &gt; span {
    text-align: center;
    line-height: 1.25em;
}

.home-hero .packs-for-sale-button &gt; span [data-countdown-char-type] {
    font-size: 0.8em;
}

.home-hero .packs-for-sale-button &gt; span [data-countdown-char-type="d"] {
    font-family: "Upheaval TT (BRK)";
    font-size: 2em;
}

.home-hero .packs-for-sale-button::after {
    content: "&gt;";
    transition: transform 0.3s;
    margin-left: 30px;
    display: inline-block;
    font-family: "Upheaval TT (BRK)";
    font-size: 32px;
}

.home-hero .packs-for-sale-button:hover::after {
    transform: translate(10px);
}

.hero-simple-cards {
    display: flex;
    grid-area: C;
    position: relative;
}

.hero-simple-cards::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 45%;
}

.hero-simple-cards &gt; * {
    transform: translateX(-50%) rotate(calc((var(--index) - 0.25 - var(--total) / 2) * 4.5deg));
    transform-origin: 50% 600%;
    position: absolute;
    left: 59%;
    top: 7%;
    width: 26%;
    z-index: calc(6 - var(--index));
    transform-style: preserve-3d;
    /* filter: blur(0.1px); */
    cursor: pointer;
    will-change: transform;
}

.hero-simple-cards &gt; *::before {
    content: "";
    display: block;
    padding-top: calc(67 / 52 * 100%);
}

.hero-simple-cards &gt; * &gt; .flip-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

h1.hero-title {
    grid-area: H;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
    font-size: 20px;
    line-height: 1.5em;
    color: #fff;
}

h1.hero-title img,
h1.hero-title svg {
    height: 3em;
    margin-left: 20px;
    image-rendering: pixelated;
    flex-shrink: 0;
    width: auto;
}

span.hero-title-text {
    text-align: right;
    font-family: "Typo pixel";
    text-transform: uppercase;
    text-shadow: 0 0 1px #0000004d;
    font-weight: normal;
    font-size: 0.88em;
}

.home-content {
    font-size: 18px;
    padding-bottom: 40px;
}

.home-content p {
    font-family: "Retro Gaming";
    color: #818181;
    margin-top: 10px;
}

.home-section-1 &gt; div &gt; h3 {
    font-size: 1em;
    line-height: 2em;
}

.home-section-1 &gt; div h4 {
    font-size: 0.8em;
    margin-top: 40px;
    line-height: 1.5em;
}

.home-section-1 &gt; div .home-section-1-table-1 {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    max-width: 600px;
    font-family: "Retro Gaming";
    color: #818181;
    margin-top: 10px;
}

.home-section-1 &gt; div .home-section-1-table-1 &gt; span:nth-child(3n + 2) {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    margin: 0 10px;
}

.home-section-1 &gt; div .home-section-1-table-1 &gt; span:nth-child(3n + 2)::before {
    content: ".........................................................";
    font-size: 0.75em;
}

.home-content &gt; .cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 30px 60px;
    margin-top: 40px;
}

.home-content &gt; .cols &gt; h4 {
    font-size: 0.9em;
    font-size: 16px;
    line-height: 1.5em;
    border-top: solid 1px #9d9d9d;
    padding-top: 20px;
    grid-row: 1 / 1;
}

.home-content &gt; .cols &gt; div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-gap: 20px 30px;
    align-self: start;
}

.home-content &gt; .cols &gt; div &gt; * {
    align-self: end;
}

.home-content &gt; .cols &gt; div &gt; *:nth-child(2n) {
    overflow: hidden;
    position: relative;
}

.home-content &gt; .cols &gt; div.home-content-card-content-info &gt; *:nth-child(2n) {
    padding-top: calc(52 / 52 * 100%);
}

.home-content &gt; .cols &gt; div.home-content-card-label-info &gt; *:nth-child(2n) {
    padding-top: calc((67 - 52 + 1) / 52 * 100%);
}

.home-content &gt; .cols &gt; div &gt; *:nth-child(2n).flip-card {
    width: 100%;
    height: auto;
}

.home-content &gt; .cols &gt; div.home-content-card-content-info &gt; *:nth-child(2n).flip-card &gt; .flip-card-inner {
    top: calc(100% / 52 * (67 - 52) * -1);
}

.home-content &gt; .cols &gt; div &gt; *:nth-child(2n).flip-card &gt; .flip-card-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding-top: calc(67 / 52 * 100%);
}

.home-content &gt; .cols &gt; div &gt; svg {
    width: 100%;
}

.home-content &gt; .cols &gt; div &gt; *:nth-child(1),
.home-content &gt; .cols &gt; div &gt; *:nth-child(3) {
    grid-row: 1 / 1;
}

.home-content &gt; .cols &gt; div &gt; *:nth-child(5),
.home-content &gt; .cols &gt; div &gt; *:nth-child(7) {
    grid-row: 3 / 3;
}

.home-content &gt; .cols &gt; div &gt; *:nth-child(9),
.home-content &gt; .cols &gt; div &gt; *:nth-child(11) {
    grid-row: 5 / 5;
}

.home-content &gt; .cols &gt; div &gt; *:nth-child(4n + 1),
.home-content &gt; .cols &gt; div &gt; *:nth-child(4n + 2) {
    grid-column: 1 / 1;
}

.home-content &gt; .cols &gt; div &gt; *:nth-child(4n + 3),
.home-content &gt; .cols &gt; div &gt; *:nth-child(4n + 4) {
    grid-column: 2 / 2;
}

.home-content &gt; .cols &gt; div h5 {
    font-family: "Retro Gaming";
    font-size: 0.9em;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .home-hero &gt; .container {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: repeat(4, auto);
        grid-template-areas: "B" "P" "C" "H";
        grid-gap: 15px 100px;
    }

    .home-hero .packs-for-sale-button {
        font-size: 13px;
        justify-self: center;
        margin-right: 0;
    }

    .home-hero .hero-pack-image-svg {
        width: 75%;
        margin: 45px auto 20px;
        height: auto;
        max-width: 320px;
    }

    h1.hero-title {
        justify-content: center;
        flex-wrap: wrap;
        padding-right: 0;
        font-size: 16px;
    }

    .hero-simple-cards &gt; * {
        transform: translateX(-50%) rotate(calc((var(--index) + 0.5 - var(--total) / 2) * 4.5deg));
        transform-origin: 50% 600%;
        left: 50%;
    }

    span.hero-title-text {
        text-align: center;
    }

    .home-content &gt; .cols {
        grid-template-columns: auto;
    }

    .home-content &gt; .cols &gt; h4 {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    span.hero-title-text {
        width: 100%;
    }

    h1.hero-title img,
    h1.hero-title svg {
        margin: 10px 5px 0;
    }
}

@media (max-width: 480px) {
    .home-content &gt; .cols &gt; div {
        grid-template-columns: auto;
        grid-template-rows: repeat(8, auto);
    }

    .home-content &gt; .cols.cols &gt; div &gt; * {
        grid-row: auto;
        grid-column: 1 / 2;
    }
}

/**/
.faq-page {
    padding-top: 30px;
    padding-bottom: 50px;
    font-family: "Retro Gaming";
    font-size: 16px;
}

.faq-page h1::after {
    display: none;
}

.faq-page h1 {
    font-size: 60px;
}

.faq-page a {
    color: var(--blue-color);
}

.faq-page .accordion button.accordion-header {
    background-color: #fff;
    text-align: left;
    font-family: "Super Mario Bros. 2";
    font-size: 1em;
    padding: 15px 0;
    color: var(--blue-color);
    line-height: 1.5em;
    bottom: 0;
    border-width: 0;
}

.faq-page .accordion button.accordion-header img.accordion-arrow {
    display: none;
}

.faq-page .accordion.accordion-open button.accordion-header {
    color: #000000;
}

.faq-page .accordion .accordion-content {
    margin-top: 0;
    background-color: transparent;
    color: #404040;
    border: 0;
    line-height: 1.5em;
    padding: 0;
}

.faq-grid {
    margin-top: 30px;
}

.faq-grid &gt; div + div {
    margin-top: 30px;
}

.faq-grid &gt; div &gt; div:first-child {
    background-color: var(--blue-color);
}

.faq-grid &gt; div &gt; div:first-child &gt; h2 {
    padding: 20px 10px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    font-size: 1.25em;
    font-weight: normal;
    line-height: 1.5em;
    word-break: break-word;
}

.faq-dynamic-question-1-cards {
    display: flex;
    grid-gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-dynamic-question-1-cards &gt; div {
    max-width: 208px;
}

.faq-dynamic-question-1-cards-2 &gt; div:not(:nth-child(2)) {
    filter: grayscale(1);
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 768px) {
    .faq-page h1 {
        font-size: 45px;
    }
}

/**/
.collection-card-details {
    padding-top: 30px;
    padding-bottom: 30px;
    align-content: start;
}

.collection-pack-details {
    padding-top: 30px;
    padding-bottom: 50px;
    align-content: start;
}

a.back-link,
.breadcrumb {
    font-family: "Retro Gaming";
    font-size: 20px;
    height: auto;
    line-height: 30px;
    display: inline-block;
    margin-bottom: 20px;
    word-break: break-word;
}

.breadcrumb {
    color: #00000045;
    text-transform: uppercase;
}

.breadcrumb &gt; a,
.breadcrumb &gt; span {
    color: #000;
    margin-right: 10px;
    transition: color 0.3s;
}

.breadcrumb &gt; a:hover {
    color: var(--blue-color);
}

.breadcrumb &gt; a + a,
.breadcrumb &gt; a + span {
    margin-left: 10px;
}

a.back-link::before {
    content: "&lt;";
    margin-right: 5px;
    transition: transform 0.3s;
    display: inline-block;
}

a.back-link:hover::before {
    transform: translateX(-10px);
}

@media (max-width: 768px) {
    .collection-card-details {
        grid-template-areas: "L" "T" "D";
        grid-template-columns: auto;
    }
}

/**/
.card-details {
    display: grid;
    grid-gap: 20px;
    font-family: "Retro Gaming";
    width: 100%;
    max-width: 850px;
    margin: auto;
    /* margin-top: 0; */
}

.card-details.card-label-color-white {
    --card-score-dark-heading: #adadbe;
    --card-score-dark-heading-color: #fff;
    --card-score-overall: #adadad;
    --card-score-text: #f7f7f7;
    --card-score-text-color: #0f4959;
    --card-score-light-heading: #d6d6d6;
}

.card-details.card-label-color-silver {
    --card-score-dark-heading: #77a5af;
    --card-score-dark-heading-color: #fff;
    --card-score-overall: #77a5af;
    --card-score-text: #ecf8fa;
    --card-score-text-color: #2b505c;
    --card-score-light-heading: #abc6ce;
}

.card-details.card-label-color-gold {
    --card-score-dark-heading: #ffbf00;
    --card-score-overall: #000000;
    --card-score-text: #ffdc44;
    --card-score-light-heading: #ffbf00;
}

.card-details.card-label-color-black {
    --card-score-dark-heading: #000000;
    --card-score-overall: #ffb700;
    --card-score-text: #000000;
    --card-score-light-heading: #000000;
}

.card-details.card-label-color-holo {
    --card-score-dark-heading: #e5e4f2;
    --card-score-dark-heading-color: #4b5d68;
    --card-score-overall: #e5e4f2;
    --card-score-text: #f7f7f7;
    --card-score-text-color: #094e5c;
    --card-score-light-heading: #f0f0f8;
    --card-score-light-heading-color: #4b5d68;
}

.card-details.card-type-common {
    --card-type-dark-heading: rgb(0, 70, 255);
    --card-type-light-heading: rgb(0, 107, 255);
}

.card-details.card-type-rare {
    --card-type-dark-heading: #ffbd00;
    --card-type-light-heading: #ffbd00;
    --card-type-title-bg-color: #ffd442;
}

.card-details.card-type-legendary {
    --card-type-dark-heading: #000;
    --card-type-light-heading: #000;
    --card-type-title-bg-color: #383838;
}

.card-details.card-type-1of1 {
    --card-type-dark-heading: #000000;
    --card-type-light-heading: #000000;
}

.card-details.card-type-autograph {
    --card-type-dark-heading: #f2f3fe;
    --card-type-light-heading: #000000;
    --card-type-title-bg-color: #f7f7f7;
    --card-type-title-color: #43515b;
}

.card-details.card-type-printing-plate {
    --card-type-dark-heading: #000;
    --card-type-light-heading: var(--card-type-dark-heading);
    --card-type-title-bg-color: #555;
    --card-type-title-color: #fff;
}

.card-details.card-type-printing-plate-c {
    --card-type-dark-heading: #00b6f4;
    --card-type-title-bg-color: #68cef8;
}

.card-details.card-type-printing-plate-m {
    --card-type-dark-heading: #d7569c;
    --card-type-title-bg-color: #f997c2;
}

.card-details.card-type-printing-plate-y {
    --card-type-dark-heading: #edd100;
    --card-type-title-bg-color: #f7df00;
}

.card-details.card-type-printing-plate-k {
    --card-type-dark-heading: #201600;
    --card-type-title-bg-color: #807f7d;
}

.details-thumbnails {
    grid-area: Thumb;
}

/**/
.details-thumbnail {
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    user-select: none;
    overflow: hidden;
    background-color: hsl(60 4% 95% / 10%);
    box-shadow: inset 0 0 0 2px rgb(0 0 0 / 10%);
}

.details-thumbnail-label {
    transition: opacity 0.3s;
}

.details-thumbnail:not(.active):not(:hover) .details-thumbnail-label {
    opacity: 0;
}

.details-thumbnail-label foreignObject div {
    width: calc(var(--foreignObject-width) * 1px - 2 * 3px);
    height: calc(var(--foreignObject-height) * 1px - 2 * 3px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(244 244 244 / 75%);
    color: #000000;
    font-size: 11px;
    text-align: center;
    font-family: "Retro Gaming";
    pointer-events: none;
    padding: 5px;
    box-sizing: border-box;
    margin: 3px;
    border-radius: 3px;
}

.details-thumbnail-label foreignObject div span {
    background-color: #ffffffdb;
    box-shadow: 0 0 10px #fff;
    border-radius: 5px;
}

.details-thumbnail:hover {
    box-shadow: inset 0 0 0 3px rgb(0 0 0 / 20%);
}

.details-thumbnail.active {
    box-shadow: inset 0 0 0 3px rgb(107, 176, 255);
}

.details-thumbnail-content &gt; * {
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.details-thumbnails {
    margin-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
}

.details-thumbnails.will-reveal {
    transition: height 0.5s, opacity 0.5s, transform 0.5s;
    height: 100px;
}

.details-thumbnails.will-reveal:not(.revealed) {
    height: 0;
}

.details-thumbnails &gt; button {
    width: 30px;
    height: 100%;
    border: 0;
    background: none;
    padding: 0 5px;
    color: #e5e5e5;
    box-sizing: border-box;
    transition: color 0.3s, opacity 0.3s;
    max-height: 40px;
    cursor: pointer;
    margin: 30px 0;
}

.details-thumbnails &gt; button:disabled {
    opacity: 0;
    pointer-events: none;
}

.details-thumbnails &gt; button:hover {
    color: #cfcfcf;
}

.details-thumbnails &gt; div:nth-child(2) {
    max-width: calc(100% - 60px);
    width: calc(var(--count-thumbnails) * 100px);
    height: 100px;
}

.details-thumbnails::-webkit-scrollbar {
    width: 10px;
    height: 0;
}

.details-thumbnails::-webkit-scrollbar {
    display: none;
}

.details-thumbnails {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.details-thumbnails::-webkit-scrollbar-track {
    background: #ffffff00;
}

.details-thumbnails::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / 60%);
    border-radius: 10px;
    transition: background-color 0.3s;
    background-color: rgb(0 0 0 / 15%);
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 75%);
}

.details-thumbnails::-webkit-scrollbar-thumb:hover {
    background-color: rgb(0 0 0 / 75%);
}

.details-thumbnail {
    grid-row: 1 / 1;
    height: 100%;
    width: auto;
    flex-shrink: 0;
    height: 75px;
    /* height: 130px; */
    width: calc(100% - 10px);
    height: auto;
    margin: 5px;
    display: block;
}

.details-thumbnail &gt; svg:first-child {
    display: block;
}

.details-thumbnail-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.details-thumbnail-label {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.thumbnail-preview {
    position: relative;
    z-index: 1;
}

.thumbnail-preview &gt; video {
    display: block;
    max-width: 100%;
    height: auto;
    height: auto;
    max-height: 100%;
    width: 100%;
    margin: auto;
}

.thumbnail-preview &gt; svg,
.thumbnail-preview &gt; video {
    max-height: calc(var(--vh100) - 60px);
    display: block;
    margin: 0 auto;
    min-height: 300px;
    max-width: 100%;
    transition: max-height 0.5s;
}

.thumbnail-preview &gt; svg {
    overflow: visible;
}

.golden-ticket-details .thumbnail-preview &gt; svg,
.golden-ticket-details .thumbnail-preview &gt; video {
    min-height: 330px;
}

/**/
.details-preview {
    grid-area: Preview;
    /* margin-top: 10px; */
}

.golden-ticket-details .details-preview {
    margin-top: 0;
}

.thumbnail-preview {
    --thumbnail-preview-max-height-header: calc(60px + 30px);
    --thumbnail-preview-max-height-thumbnails: calc(100px + 20px);
    --thumbnail-preview-max-height-title: calc(70px + 10px);
    --thumbnail-preview-max-height-title: 10px;
    --thumbnail-preview-max-height-buttons: calc(40px + 20px);
}

.card-details:not(.is-show-thumbnails) .thumbnail-preview {
    --thumbnail-preview-max-height-thumbnails: 20px !important;
}

.card-details:not(.is-show-buttons) .thumbnail-preview {
    --thumbnail-preview-max-height-buttons: 20px !important;
}

.collection-card-details .back-link + .my-collection-details .thumbnail-preview {
    --thumbnail-preview-max-height-header: calc(60px + 30px + 50px);
}

.box-modal .thumbnail-preview &gt; * {
    --thumbnail-preview-max-height-header: 20px;
}

.not-during-revealing .thumbnail-preview {
    --hover-dx: 0;
    --hover-dy: 0;
    --hover-dx-scale: 3;
    --hover-dy-scale: var(--hover-dx-scale);
    perspective: 500px;
}

.not-during-revealing .thumbnail-preview.thumbnail-hover-enabled &gt; * {
    transform: rotateX(calc(var(--hover-dy) * var(--hover-dx-scale) * -1deg))
        rotateY(calc(var(--hover-dx) * var(--hover-dy-scale) * 1deg));
}

.not-during-revealing .thumbnail-preview[data-thumbnail-hover-transition="true"] &gt; * {
    transition: transform 0.5s, max-height 0.5s;
    will-change: transform;
}

@media (max-width: 1024px) {
    .box-modal .thumbnail-preview &gt; * {
        --thumbnail-preview-max-height-header: 65px;
    }
}

.golden-ticket-details .thumbnail-preview &gt; * {
    --thumbnail-preview-max-height-title: 0px;
    --thumbnail-preview-max-height-buttons: calc(40px + 40px);
}

@media (max-width: 768px) {
    .golden-ticket-details .thumbnail-preview &gt; * {
        --thumbnail-preview-max-height-buttons: calc(40px + 40px + 70px);
    }
}

.thumbnail-preview &gt; svg,
.thumbnail-preview &gt; video {
    max-height: calc(
        var(--vh100) - var(--thumbnail-preview-max-height-header) - var(--thumbnail-preview-max-height-thumbnails) -
            var(--thumbnail-preview-max-height-title) - var(--thumbnail-preview-max-height-buttons)
    );
}

.card-details-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    word-break: break-word;
    margin-top: 5px;
    align-self: start;
    z-index: 1;
    position: relative;
}

.golden-ticket-details .card-details-buttons {
    margin-top: 0;
}

.card-details-buttons &gt; * {
    margin: 0 !important;
    margin-top: 10px !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.card-details-buttons &gt; .share-this-pack-container &gt; .button.share-this-pack {
    margin-top: 0;
    margin-bottom: 0;
}

.card-details-rotate-button,
.card-details-download-button,
.card-details-copy-image-button,
.golden-ticket-details-exchange-button,
.silver-ticket-details-exchange-button,
.card-details-authenticity-button,
.card-details-reveal-button,
.card-details-check-checklist-button {
    --bg-color: var(--pack-blue-color, var(--blue-color));
    --bg-color-hover: var(--pack-blue-color-lighter, var(--blue-color-lighter));
    padding: 5px;
    border: 0;
    border-radius: 10px;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Upheaval TT (BRK)";
    font-size: 24px;
    font-family: "Retro Gaming";
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    width: auto;
    background-color: var(--bg-color);
}

.silver-ticket-details .card-details-rotate-button,
.silver-ticket-details .card-details-download-button,
.silver-ticket-details .card-details-copy-image-button {
    --bg-color: #dde4e4;
    --bg-color-hover: hsl(180, 10%, 90%);
    color: #000;
}

.silver-ticket-details .card-details-download-button span img {
    filter: invert(1);
}

.silver-ticket-details .golden-ticket-what-it-mean-button {
    background-color: #dde4e4;
    color: #000;
}

.card-details-rotate-button:hover,
.card-details-download-button:hover,
.card-details-copy-image-button:hover,
.golden-ticket-details-exchange-button:hover,
.silver-ticket-details-exchange-button:hover,
.card-details-authenticity-button:hover,
.card-details-reveal-button:hover,
.card-details-check-checklist-button:hover {
    background-color: var(--bg-color-hover);
}

.card-details-rotate-button,
.card-details-download-button {
    width: auto;
    height: auto;
    line-height: 0;
}

.card-details-rotate-button &gt; span &gt; img {
    height: 30px;
    margin: 0 5px;
}

.card-details-download-button &gt; span &gt; img {
    height: 20px;
    margin: 5px;
}

.card-details-copy-image-button,
.golden-ticket-details-exchange-button,
.silver-ticket-details-exchange-button,
.card-details-authenticity-button,
.card-details-reveal-button,
.card-details-check-checklist-button {
    padding: 5px 15px;
}

.golden-ticket-details-exchange-button {
    --bg-color: #ffd600;
    --bg-color-hover: hsl(50, 100%, 47%);
}

.golden-ticket-details-exchange-button.disabled {
    cursor: not-allowed;
    --bg-color: #a5a5a5;
    --bg-color-hover: var(--bg-color);
    color: #fff;
}

.golden-ticket-details-exchange-button,
.silver-ticket-details-exchange-button,
.card-details-reveal-button,
.card-details-check-checklist-button {
    width: 100%;
    max-width: 250px;
    display: flex;
}

.silver-ticket-details-exchange-button,
.card-details-reveal-button,
.card-details-check-checklist-button {
    /* --bg-color: #dde4e4; */
    /* --bg-color-hover: hsl(180, 10%, 90%); */
    color: #fff;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
    max-width: max-content;
}

.silver-ticket-details-exchange-button.disabled {
    cursor: not-allowed;
    --bg-color: #a5a5a5;
    --bg-color-hover: var(--bg-color);
}

.silver-ticket-details-countdown,
.golden-ticket-details-wait-info {
    font-family: "Retro Gaming";
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
}

.card-details-properties {
    grid-row: 2 / 4;
    grid-area: Props;
    word-wrap: break-word;
    border-radius: 5px;
    overflow: hidden;
    align-self: start;
    margin-top: 10px;
}

.card-details-info-title-container {
    border-radius: 5px;
    overflow: hidden;
}

.card-details-info-title,
.card-details-info-subtitle,
.card-details-info-footer-title {
    --auto-height: 162px;
    text-transform: uppercase;
    box-sizing: border-box;
    font-size: 15px;
    font-family: "Retro Gaming";
    font-weight: normal;
    word-break: break-word;
    line-height: 20px;
    grid-area: Title;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    background-color: #f7f802;
    /* color: #43515b; */
    background-color: var(--card-type-title-bg-color, var(--card-type-light-heading));
    color: var(--card-type-title-color, #fff);
    align-items: start;
    max-height: var(--auto-height);
}

.card-details-info-subtitle,
.card-details-info-footer-title {
    grid-template-rows: 1fr;
}

.card-details .card-details-info-title.will-reveal.will-grayscale,
.card-details .card-details-info-subtitle.will-reveal.will-grayscale,
.card-details .card-details-info-footer-title.will-reveal.will-grayscale {
    transition: filter 0.3s, opacity 0.5s, transform 0.5s, height 0.5s, max-height 0.5s;
}

.card-details-info-title.will-reveal:not(.revealed),
.card-details-info-subtitle.will-reveal:not(.revealed),
.card-details-info-footer-title.will-reveal:not(.revealed) {
    max-height: 0;
    /* opacity: 1; */
}

.card-details-info-title.will-reveal.revealed.will-grayscale:not(.no-grayscale),
.card-details-info-subtitle.will-reveal.revealed.will-grayscale:not(.no-grayscale),
.card-details-info-footer-title.will-reveal.revealed.will-grayscale:not(.no-grayscale) {
    max-height: 56px;
}

.card-details-info-title &gt; h4 {
    font-size: 20px;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    grid-column: 1 / span 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--card-type-dark-heading);
    /* color: #fff; */
    padding: 8px 10px;
    text-align: center;
    height: 40px;
    transition: background-color 0.3s, background-size 0.3s;
}

.card-details-info-subtitle &gt; h3,
.card-details-info-footer-title &gt; h3 {
    font-size: 20px;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    grid-column: 1 / span 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--card-type-dark-heading);
    /* background: #ffffff29; */
    color: #fff;
    padding: 8px 10px;
    text-align: center;
    /* height: 40px; */
    transition: background-color 0.3s, background-size 0.3s;
}

.card-details-info-subtitle &gt; h3.card-details-info-title-error {
    background-color: #f00;
    height: auto;
}

.card-details-info-title.will-grayscale.will-grayscale:not(.no-grayscale) &gt; h4 {
    background-color: var(--card-type-dark-heading);
    background-size: auto 0%;
}

.card-details-info-title &gt; h4 &gt; span {
    display: block;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.card-details-info-subtitle &gt; div,
.card-details-info-subtitle &gt; span {
    display: flex;
    justify-content: space-between;
    line-height: 1em;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
}

.card-details-info-subtitle &gt; div {
    text-align: left;
}

.card-details-info-subtitle &gt; div &gt; span,
.card-details-info-subtitle &gt; span &gt; span {
    /* white-space: pre; */
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-details-info-footer-title-owned-by {
    text-align: center;
    grid-column: 1 / span 2;
    padding: 10px 0 0;
}

.card-details-info-footer-title-owned-by:last-child {
    padding-bottom: 10px;
}

.card-details-info-footer-title-owned-by-share {
    display: flex;
    justify-content: center;
    grid-column: 1 / span 2;
    padding-bottom: 10px;
}

.card-details-info-footer-title-owned-by-share &gt; button {
    margin: 5px 5px 0;
    padding: 0;
    border: 0;
    display: inline-flex;
    background: none;
}

.card-details-info-footer-title-owned-by-share &gt; button &gt; img {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
}

.card-details-info-footer-title-owned-by-share &gt; button &gt; img:not([hidden]) {
    display: block;
}

.card-details-info-subtitle &gt; div &gt; span:last-child,
.card-details-info-subtitle &gt; span &gt; span:last-child {
    /* text-align: right; */
    align-self: flex-start;
    direction: rtl;
}

.card-details-info-subtitle &gt; span &gt; span:last-child {
    align-self: flex-end;
}

.card-details-info-subtitle &gt; span {
    text-align: right;
}

.card-details.card-type-autograph .card-details-info-subtitle &gt; h4,
.card-details.card-type-autograph .card-details-info-subtitle &gt; h3,
.card-details.card-type-autograph .card-details-info-footer-title &gt; h3 {
    color: #4b5d68;
}

.card-details.card-type-1of1 .card-details-info-subtitle &gt; h4,
.card-details.card-type-autograph .card-details-info-subtitle &gt; h4 {
    background-image: var(--card-details-header-image);
    image-rendering: pixelated;
    background-position: 50% 50%;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.card-details-properties ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
}

.card-details-properties ul li {
    background-color: #f7f7f7;
    color: #1f4956;
    font-family: "Retro Gaming";
    padding: 5px 10px;
    font-size: 18px;
}

.card-details-properties ul li + li {
    border-top: solid 1px var(--properties-devider-color, #00000026);
}

.redeemed-prize-modal .card-details-properties ul li + li {
    border-top: 0;
}

.card-details-properties ul li &gt; div:first-child {
    text-transform: uppercase;
}

.card-details-info {
    display: grid;
    grid-template-areas: "T T" "G D";
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
    align-content: start;
}

.card-details-info-subtitle &gt; span:nth-child(2) {
    flex-shrink: 0;
}

ul.card-details-info-grading {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-self: start;
    grid-area: Grade;
    word-break: break-word;
    overflow: hidden;
    border-radius: 5px;
}

.card-details .will-grayscale {
    transition: filter 0.3s;
}

.card-details .will-grayscale.will-reveal {
    transition: filter 0.3s, opacity 0.5s, transform 0.5s;
}

.card-details .will-grayscale:not(.no-grayscale) {
    filter: grayscale(1);
}

ul.card-details-info-defects {
    grid-area: Defects;
    margin-top: 10px;
}

ul.card-details-info-defects.will-reveal {
    opacity: 1;
}

ul.card-details-info-grading.card-details-info-grading.will-reveal {
    /* height: 35px; */
    height: 0;
    /* opacity: 1; */
    transition: height 0.5s, opacity 0.5s, margin-top 0.5s, filter 0.3s;
    will-change: height, opacity, margin-top, filter;
}

ul.card-details-info-grading.card-details-info-grading.will-reveal:not(.revealed) {
    margin-top: 0;
    height: 0 !important;
    opacity: 0;
}

ul.card-details-info-grading:not(.card-details-info-defects).will-reveal.revealed {
    height: calc(5 * 35px);
}

ul.card-details-info-defects.card-details-info-defects.card-details-info-defects {
    border-radius: 5px;
    overflow: hidden;
    height: 35px;
    /* transition: height 0.5s; */
}

ul.card-details-info-defects.toggle-defects-details {
    height: calc(6 * 35px) !important;
}

.card-details-info-description {
    grid-area: Description;
    overflow: hidden;
    border-radius: 5px;
    transition: height 0.5s, opacity 0.5s, margin-top 0.5s;
    height: var(--auto-height);
}

.card-details-authentic {
    --auto-height: 95px;
}

.card-details-authentic .opensea-link-details {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.card-details-authentic .opensea-link-details &gt; img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
}

.card-details-authentic .opensea-link-details &gt; a &gt; svg {
    width: 1.5em;
    height: 1.5em;
    vertical-align: bottom;
}

.not-during-revealing .card-details-info-description {
    height: auto;
}

.card-details-info-description:not(.revealed) {
    height: 0;
    opacity: 0;
    margin-top: 0 !important;
}

ul.card-details-info-grading &gt; li {
    display: flex;
    justify-content: space-between;
}

ul.card-details-info-grading &gt; li:first-child {
    margin-left: 0;
}

ul.card-details-info-grading &gt; li:first-child &gt; * {
    background-color: #001b30;
    color: #fff;
}

ul.card-details-info-grading &gt; li &gt; * {
    padding: 5px 10px;
    background-color: var(--card-score-text);
    color: var(--card-score-text-color, #fff);
    font-family: "Retro Gaming";
    text-transform: uppercase;
    flex: 1;
    margin: 0;
    box-sizing: border-box;
    border: 0;
    display: flex;
    align-items: center;
}

.card-details.card-label-color-black ul.card-details-info-grading &gt; li &gt; * {
    color: #fff;
}

ul.card-details-info-grading &gt; li &gt; div:first-child {
    flex: 5;
    overflow: hidden;
    white-space: pre;
    text-overflow: ellipsis;
}

ul.card-details-info-grading &gt; li &gt; *:nth-child(2) {
    text-align: center;
    font-family: "Retro Gaming";
    background-color: var(--card-score-light-heading);
    color: var(--card-score-light-heading-color, #fff);
    font-size: 20px;
    min-width: 65px;
    justify-content: center;
}

ul.card-details-info-grading &gt; li:first-child &gt; *:nth-child(2),
ul.card-details-info-defects &gt; li:last-child &gt; * {
    /* background-color: var(--card-score-overall); */
    color: #fff;
}

.card-label-color-holo ul.card-details-info-grading &gt; li:first-child &gt; *:nth-child(2),
.card-label-color-holo ul.card-details-info-defects &gt; li:last-child &gt; * {
    /* background-color: var(--card-score-overall); */
    color: var(--card-score-light-heading-color, #fff);
}

ul.card-details-info-grading &gt; li:first-child &gt; *:nth-child(2),
ul.card-details-info-defects &gt; li:last-child &gt; * {
    background-color: var(--card-score-dark-heading);
}

ul.card-details-info-grading &gt; li:first-child &gt; div:first-child {
    background-color: var(--card-score-dark-heading);
    font-size: 20px;
    color: var(--card-score-dark-heading-color, var(--card-score-text-color, #fff));
}

.card-details p.description,
.card-details-authentic .opensea-link-details {
    padding: 10px;
    background-color: #f7f7f7;
    color: #43515b;
    font-size: 17px;
    line-height: 1.3em;
    word-break: break-word;
}

.card-details p.description:last-child {
    border-radius: 0 0 5px 5px;
}

.card-details p.description.card-details-series-description {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    color: #084a59;
}

.card-details p.description a {
    text-decoration: underline;
}

.card-details-info-description h4,
.card-details-properties h4,
.card-details-could-have-been h4,
.card-details-all-graded-versions h4,
.card-details-original-pack-opening h4 {
    background-color: var(--card-type-light-heading);
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box;
    font-size: 20px;
    font-family: "Retro Gaming";
    font-weight: normal;
    word-break: break-word;
}

.card-details-info-description p.description + p.description {
    text-align: center;
    border-top: solid 1px rgb(0 0 0 / 15%);
}

.card-details-could-have-been {
    --auto-height: 541px;
    grid-area: CouldHaveBeen;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
    transition: opacity 0.5s, transform 0.5s, height 0.5s;
    height: var(--auto-height);
}

.card-details-all-graded-versions,
.card-details-original-pack-opening {
    --auto-height: 496px;
    grid-area: CouldHaveBeen;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
    transition: opacity 0.5s, transform 0.5s, height 0.5s;
    height: var(--auto-height);
}

.card-details-all-graded-versions &gt; div &gt; ul {
    margin: 0;
    list-style: none;
    padding: 0;
    max-height: 400px;
    overflow: auto;
}

.card-details-all-graded-versions &gt; div &gt; div:last-child {
    padding: 10px;
    background-color: #dbdbdb;
    display: flex;
    justify-content: center;
}

.card-details-all-graded-versions &gt; div &gt; div:last-child &gt; a {
    background-color: var(--bg-color);
    color: #fff;
    width: auto;
    border-radius: 10px;
    line-height: 10px;
    font-family: "Retro Gaming";
    font-size: 16px;
    padding: 10px 20px;
}

.card-details-all-graded-versions &gt; div &gt; div:last-child &gt; a:hover {
    background-color: var(--bg-hover-color);
}

.card-details-all-graded-versions &gt; div &gt; ul &gt; li {
    display: flex;
    padding: 10px;
    background-color: #f2f2f2;
    align-items: center;
    justify-content: center;
}

.card-details-all-graded-versions &gt; div &gt; ul &gt; li:nth-child(2n) {
    background-color: #e7e7e7;
}

.card-details-all-graded-versions &gt; div &gt; ul &gt; li &gt; svg:first-child {
    width: 100%;
    height: 30px;
}

.card-details-all-graded-versions &gt; div &gt; ul &gt; li {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(5, minmax(0, 1fr));
    grid-gap: 10px;
    max-height: 30px;
}

.card-details-all-graded-versions &gt; div &gt; ul &gt; li &gt; svg + svg {
    height: 30px;
    max-width: 100%;
}

.card-details-could-have-been &gt; p.description {
    border-radius: 0 0 5px 5px;
}

.card-details-could-have-been &gt; h4,
.card-details-all-graded-versions &gt; h4,
.card-details-original-pack-opening &gt; h4 {
    display: flex;
    padding: 0;
    background: none;
}

.card-details-original-pack-opening &gt; h4 + div {
    background-color: #f7f7f7;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.card-details-original-pack-opening &gt; h4 + div .button-primary {
    --bg-color: var(--pack-blue-color, var(--blue-color));
    --bg-color-hover: var(--pack-blue-color-lighter, var(--blue-color-lighter));
    padding: 2px 10px;
    width: fit-content;
    margin: 10px auto 0;
}

.card-details-could-have-been:not(.toggle-could-have-been-details),
.card-details-all-graded-versions:not(.toggle-all-graded-versions-details),
.card-details-original-pack-opening:not(.toggle-original-pack-opening-details) {
    height: 40px;
}

.card-details-could-have-been &gt; h4 &gt; div,
.card-details-all-graded-versions &gt; h4 &gt; div,
.card-details-original-pack-opening &gt; h4 &gt; div {
    background-color: var(--card-type-light-heading);
    padding: 5px 5px 5px 10px;
    font-size: 18px;
    flex: 1;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-details-could-have-been &gt; h4 &gt; button,
.card-details-all-graded-versions &gt; h4 &gt; button,
.card-details-original-pack-opening &gt; h4 &gt; button {
    --bg-color: var(--card-type-light-heading);
    --bg-color-hover: var(--card-type-light-heading);
    padding: 5px 10px 5px 5px;
    background-color: var(--card-type-light-heading);
    border: 0;
    min-width: 65px;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border-radius: 0;
    width: fit-content;
}

.card-details-could-have-been &gt; ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    margin-top: 15px;
}

.card-details-could-have-been &gt; ul &gt; li {
    flex: 1;
    position: relative;
}

.card-details-could-have-been &gt; ul &gt; li &gt; svg {
    display: block;
    width: 100%;
}

.card-details-could-have-been &gt; ul &gt; li &gt; img {
    display: block;
    box-shadow: inset 0 0 1px #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-details-could-have-been &gt; ul &gt; li + li {
    margin-left: 20px;
}

/**/
.play-signature svg.signature-svg,
.play-signature-onhover svg.signature-svg {
    --speed: 2;
}

.card-details-signature-details {
    display: grid;
    grid-gap: 10px;
    margin-top: 13px !important;
    border: solid 1px #e5e4f2;
    padding: 15px;
    background-color: #e5e4f2b8;
    border-radius: 10px;
    grid-template-columns: minmax(0, 1fr);
}

/**/
.golden-ticket-details {
    display: grid;
    grid-gap: 20px;
    grid-template-areas: "Thumb Preview WhatBtn" "Thumb Buttons Space";
    grid-template-columns: 100px 1fr auto;
    grid-template-rows: auto 1fr;
}

.golden-ticket-what-it-mean {
    grid-area: Preview;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    opacity: 0;
    transition: visibility 0.5s, opacity 1s;
    pointer-events: none;
    overflow: hidden;
    position: relative;
}

.golden-ticket-what-it-mean &gt; img,
.golden-ticket-what-it-mean &gt; svg {
    display: block;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s linear;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.golden-ticket-what-it-mean &gt; svg &gt; foreignObject &gt; div {
    background-color: #fb0;
    color: #000;
    font-size: 10px;
    line-height: 1.5em;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Retro Gaming";
}

.golden-ticket-what-it-mean &gt; svg &gt; foreignObject &gt; div .text-countdown {
    display: inline;
}

.golden-ticket-what-it-mean &gt; svg &gt; foreignObject &gt; div .text-countdown &gt; span {
    width: 1ch;
}

.silver-ticket-details .golden-ticket-what-it-mean &gt; svg &gt; foreignObject &gt; div {
    background-color: #e7eeef;
}

.golden-ticket-details.golden-ticket-details-toggle-what-this-means .golden-ticket-what-it-mean {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.golden-ticket-details.golden-ticket-details-toggle-what-this-means .golden-ticket-what-it-mean &gt; img,
.golden-ticket-details.golden-ticket-details-toggle-what-this-means .golden-ticket-what-it-mean &gt; svg {
    transform: none;
}

.golden-ticket-details .details-preview {
    transition: visibility 0.5s, opacity 1s;
}

.golden-ticket-details.not-during-revealing .details-preview {
    overflow: hidden;
}

.golden-ticket-details.golden-ticket-details-toggle-what-this-means .details-preview {
    visibility: hidden;
    opacity: 0;
}

.golden-ticket-details .details-preview &gt; * {
    transition: transform 0.5s linear;
}

.golden-ticket-details.golden-ticket-details-toggle-what-this-means .details-preview &gt; * {
    transform: translateX(-100%);
}

.golden-ticket-details .card-details-buttons-container {
    grid-area: Buttons;
}

/**/
.card-details-owned-by {
    margin: 15px auto 0;
    display: grid;
    grid-template-columns: auto;
    justify-items: center;
    justify-content: center;
    grid-gap: 5px 15px;
    font-size: 16px;
    line-height: 20px;
    font-family: "Retro Gaming";
    color: #000;
}

.card-details-owned-by.has-image {
    grid-template-columns: auto auto;
}

.card-details-owned-by.has-image &gt; img {
    grid-row: 1 / 3;
    width: 25px;
    border-radius: 50%;
    overflow: hidden;
    width: 40px;
    height: 40px;
    align-self: center;
}

.card-details-owned-by &gt; span:first-of-type {
    color: rgb(179, 179, 179);
    font-size: 17px;
}

.card-details-owned-by.owned-by-you &gt; span:first-of-type + span {
    color: var(--blue-color-lighter);
}

/**/
.card-details-featured-allowlist-item-message {
    text-align: center;
    font-size: 12px;
    margin: 20px auto 0;
    padding: 0 10px;
    max-width: 470px;
    color: var(--description-color-on-congrats);
}

.card-details-buttons {
    grid-area: Buttons;
}

.golden-ticket-what-it-mean-button {
    grid-area: WhatBtn;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
    line-height: 20px;
    background-color: var(--blue-color);
    color: #fff;
    font-family: "Upheaval TT (BRK)";
    font-size: 27px;
    border: 0;
    border-radius: 10px;
}

.golden-ticket-what-it-mean-button &gt; span {
    writing-mode: vertical-rl;
    transform: scale(-1);
    margin-right: 2px;
    margin-top: 5px;
}

.golden-ticket-what-it-mean-button::after {
    content: "&lt;";
    transition: transform 0.3s;
}

.golden-ticket-details.golden-ticket-details-toggle-what-this-means .golden-ticket-what-it-mean-button::after {
    transform: scaleX(-1);
}

.my-collection-details &gt; .golden-ticket-details {
    max-width: 680px;
    margin: auto;
}

.golden-ticket-details-description h4 {
    background-color: #001b30;
    color: #fff;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
}

.golden-ticket-details-description p.description {
    margin-top: 10px;
    color: #44525c;
    background-color: #f7f7f7;
    font-family: "Retro Gaming";
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
    line-height: 1.3em;
}

.card-details {
    grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
    grid-template-areas: "Thumb Thumb" "Col1 Col2";
}

.card-details &gt; .col-1 &gt; * + *,
.card-details &gt; .col-2 &gt; * + * {
    margin-top: 10px;
}

.golden-ticket-details {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "Thumb Space2" "Preview WhatBtn" "Buttons Space";
    grid-template-rows: auto;
    max-width: 750px;
    margin: auto;
    width: 100%;
}

.card-details-info {
    grid-column: 1 / 3;
}

@media (max-width: 768px) {
    .card-details {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "Thumb" "Col1" "Col2";
    }

    .golden-ticket-details {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "Thumb" "Preview" "WhatBtn" "Buttons";
    }

    .golden-ticket-what-it-mean-button {
        flex-direction: row;
    }

    .golden-ticket-what-it-mean-button &gt; span {
        writing-mode: unset;
        margin-right: 0;
        transform: none;
        margin-top: 0;
    }

    .golden-ticket-what-it-mean-button::after {
        transform: rotate(90deg);
    }

    .golden-ticket-details.golden-ticket-details-toggle-what-this-means .golden-ticket-what-it-mean-button::after {
        transform: rotate(90deg) scaleX(-1);
    }

    .card-details-info-title {
        border-radius: 5px;
    }

    .card-details &gt; * {
        grid-column: 1 / 1;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .card-details .card-details-magnifying-glass-col-2-tmp-height {
        height: 0 !important;
    }

    .card-details-info {
        grid-template-areas: "T" "G" "D";
        grid-template-columns: 100%;
    }

    ul.card-details-info-grading &gt; li {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .card-details-could-have-been &gt; ul {
        flex-direction: column;
    }

    .card-details-could-have-been &gt; ul &gt; li + li {
        margin-left: 0;
    }
}

/**/
.my-cards-page {
    padding-top: 30px;
    padding-bottom: 30px;
}

.my-sets-content-container &gt; h2 {
    text-align: center;
}

.my-sets-content-container &gt; h2 + .my-set-cards {
    margin-top: 20px;
}

.grid-lazy-pack-items {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.grid-lazy-pack-items &gt; div {
    overflow-x: hidden !important;
    padding-bottom: 15px;
}

.collection-card-link .flip-card-inner,
.collection-cards .flip-card-inner {
    padding-top: calc(67 / 52 * 100%);
}

.lazy-pack-item-not-found .flip-card-inner &gt; * {
    background-color: #f5f5f5;
}

a.collection-card-link {
    display: block;
    margin: 0 auto;
}

.lazy-pack-item {
    font-family: "Retro Gaming";
}

.lazy-pack-item &gt; h5 {
    margin: 0 0 10px;
    text-align: center;
    white-space: pre;
    line-height: 25px;
    height: 25px;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    color: #145392;
    margin: 15px 0 0;
    font-family: "Typo pixel", "Super Mario Bros. 2";
    font-size: 9px;
}

.lazy-pack-item &gt; p {
    font-size: 9px;
    line-height: 20px;
    height: 20px;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    color: #969ea8;
    font-family: "Typo pixel", "Super Mario Bros. 2";
}

.lazy-pack-item &gt; h5 &gt; span:nth-child(1) {
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lazy-pack-item &gt; h5 &gt; span:nth-child(2),
.lazy-pack-item &gt; p &gt; span:nth-child(2) {
    font-size: 1.2em;
}

/**/
.connect-wallet-popup {
    z-index: 1002000 !important;
}

.connect-wallet-popup .MuiDialogContent-root {
    padding: 0px !important;
    word-break: break-word;
}

.connect-wallet-popup .MuiDialogContentText-root {
    margin: 0px !important;
}

.connect-wallet-popup .connect-wallet-items {
    display: block;
    padding: 24px 16px;
    cursor: pointer;
}

.connect-wallet-popup .connect-wallet-items:hover {
    background: #f9f9f9;
}

.connect-wallet-popup .connect-wallet-items:hover img {
    transform: scale(1.1);
}

.connect-wallet-popup .connect-wallet-items.metamask {
    border-bottom: 1px solid rgba(195, 195, 195, 0.14);
}

.connect-wallet-popup .connect-wallet-items.wallet-connect {
    border-top: 1px solid rgba(195, 195, 195, 0.14);
}

.connect-wallet-popup .connect-wallet-items img {
    width: 45px;
    margin: auto;
    display: block;
    transition: all 0.1s;
}

.connect-wallet-popup .connect-wallet-items .title {
    width: 100%;
    font-size: 25px;
    font-weight: 700;
    color: rgb(12, 12, 13);
    margin: 10px 0;
    display: block;
    text-align: center;
    font-family: "Retro Gaming";
}

.connect-wallet-popup .connect-wallet-items small {
    text-align: center;
    color: rgb(169, 169, 188);
    display: block;
}

.connect-wallet-popup .connect-wallet-items .description {
    font-size: 18px;
    font-weight: 500;
    color: rgb(169, 169, 188);
    text-align: center;
    font-family: "Retro Gaming";
}

/**/
div#walletconnect-wrapper {
    color: #000;
    font-family: "Super Mario Bros. 2";
}

#walletconnect-qrcode-modal {
    overflow: auto;
    padding: 20px;
}

#walletconnect-wrapper .walletconnect-modal__mobile__toggle a {
    font-family: "Retro Gaming";
    font-size: 16px;
    word-break: break-word;
}

#walletconnect-wrapper .walletconnect-qrcode__text {
    font-family: "Retro Gaming";
    font-size: 16px;
}

#walletconnect-wrapper .walletconnect-modal__footer a {
    font-family: "Retro Gaming";
    font-size: 16px;
}

#walletconnect-wrapper .walletconnect-modal__footer a[style*="bold"] {
    /* border: solid 2px; */
    padding: 3px 6px;
    display: inline-block;
    border-radius: 5px;
    background-color: #898d97;
    color: #fff;
}

#walletconnect-wrapper .walletconnect-connect__button__text {
    font-family: "Retro Gaming";
    font-size: 16px !important;
    line-height: 1.5em;
    word-break: break-word;
}

#walletconnect-wrapper .walletconnect-modal__base {
    border-radius: 0;
    position: absolute;
    left: 50%;
    top: calc(50% + 21px);
    transform: translate(-50%, -50%);
    max-height: calc(var(--vh100) - 100px);
    display: flex;
    flex-direction: column;
    width: 90%;
    width: calc(100% - 40px);
    box-sizing: border-box;
    border-radius: 12px;
}

#walletconnect-wrapper .walletconnect-modal__mobile__toggle {
    width: 100%;
    flex-shrink: 0;
}

#walletconnect-wrapper .walletconnect-modal__mobile__toggle + div {
    overflow: auto;
    display: block;
    max-height: 100%;
}

#walletconnect-wrapper .walletconnect-connect__buttons__wrapper__wrap {
    grid-gap: 10px;
}

#walletconnect-wrapper .walletconnect-search__input {
    box-sizing: border-box;
    font-family: "Retro Gaming";
}

#walletconnect-wrapper .walletconnect-connect__button__icon_anchor {
    width: 100%;
    align-self: start;
}

#walletconnect-wrapper .walletconnect-modal__footer {
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    #walletconnect-wrapper .walletconnect-connect__buttons__wrapper__wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    #walletconnect-wrapper .walletconnect-connect__buttons__wrapper__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

/**/
pre.provenance-hash-string {
    height: 300px;
    border: solid 2px #000;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
    padding: 10px;
    font-family: monospace;
    font-size: 10px;
    overflow-y: scroll;
    line-height: 1.2em;
    margin: 0;
}

.provenance-records-table,
.provenance-records-table-2 {
    --col-padding: 10px;
    --col-border: 0px;
    --col-width-1: 7ch;
    --col-width-2: 64ch;
    --col-width-3: 46ch;
    --cols: 2;
    --row-width: calc(
        var(--col-width-1) + var(--col-width-2) + (var(--cols) + 1) * var(--col-padding) * 2 + var(--col-border) *
            var(--cols)
    );
    font-family: monospace;
    border: solid 2px #000;
    margin-bottom: 40px;
    overflow: auto;
    max-width: var(--row-width);
    margin: 0 auto;
    width: 100%;
}

.provenance-records-table-2 {
    --col-width-1: 6ch;
    --col-width-2: 9ch;
    --col-width-3: 6ch;
    --col-width-4: 6ch;
    --col-width-5: 8ch;
    --col-width-6: 8ch;
    --col-width-7: 8ch;
    --cols: 7;
    --row-width: calc(
        var(--col-width-1) + var(--col-width-2) + var(--col-width-3) + var(--col-width-4) + var(--col-width-5) +
            var(--col-width-6) + var(--col-width-7) + (var(--cols) + 1) * var(--col-padding) * 2 + var(--col-border) *
            var(--cols)
    );
}

.provenance-records-table-has-ipfs {
    --cols: 3;
    --row-width: calc(
        var(--col-width-1) + var(--col-width-2) + var(--col-width-3) + (var(--cols) + 1) * var(--col-padding) * 2 +
            var(--col-border) * var(--cols)
    );
}

.provenance-records-header {
    display: flex;
    border-bottom: solid 2px;
    height: auto !important;
}

.provenance-records-list {
    width: var(--row-width) !important;
}

.provenance-records-row {
    display: flex;
    line-height: 25px;
}

.provenance-records-row &gt; span {
    display: inline-block;
    text-align: center;
    padding: 0 var(--col-padding);
    box-sizing: content-box;
    line-height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
    flex-shrink: 0;
}

.provenance-records-header &gt; span {
    height: auto;
}

.provenance-records-list &gt; * &gt; div &gt; span + span,
.provenance-records-header &gt; span + span {
    border-left: solid var(--col-border) #000;
    box-shadow: -1px 0 #000;
}

.provenance-records-row &gt; span:nth-child(1) {
    width: var(--col-width-1);
}

.provenance-records-row &gt; span:nth-child(2) {
    width: var(--col-width-2);
}

.provenance-records-row &gt; span:nth-child(3) {
    width: var(--col-width-3);
}

.provenance-records-row &gt; span:nth-child(4) {
    width: var(--col-width-4);
}

.provenance-records-row &gt; span:nth-child(5) {
    width: var(--col-width-5);
}

.provenance-records-row &gt; span:nth-child(6) {
    width: var(--col-width-6);
}

.provenance-records-row &gt; span:nth-child(7) {
    width: var(--col-width-7);
}

.container.provenance-page {
    word-break: break-word;
    font-family: "Retro Gaming";
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: minmax(0, 1fr);
}

.provenance-records-header-wrap {
    width: var(--row-width);
}

.provenance-records-row.provenance-records-row-odd {
    background-color: #eeeeee;
}

.provenance-page pre.provenance-formula {
    white-space: pre-wrap;
    text-align: center;
    border: solid 2px;
    padding: 10px;
    margin: 0;
}

ul.provenance-2-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

ul.provenance-2-col-list &gt; li:nth-child(2n + 1) {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    text-transform: uppercase;
}

ul.provenance-2-col-list &gt; li:nth-child(2n + 1)::after {
    content: " :";
    margin-left: 10px;
}

ul.provenance-2-col-list &gt; li:nth-child(2n) {
    font-family: monospace;
}

.container.provenance-page h1 &gt; select {
    vertical-align: middle;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    border: 0;
    color: inherit;
    background: none;
    font-weight: inherit;
    line-height: inherit;
    vertical-align: bottom;
    box-shadow: 0 2px;
    word-break: break-word;
    max-width: 100%;
}

@media (max-width: 768px) {
    ul.provenance-2-col-list {
        grid-template-columns: 1fr;
    }

    ul.provenance-2-col-list &gt; li:nth-child(2n + 1) {
        text-align: left;
        justify-content: flex-start;
    }
}

/**/
.page-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--vh100);
    background-color: #fff;
    z-index: 1000000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

body[data-is-page-loading="true"] .page-loading {
    visibility: visible;
    opacity: 1;
}

/**/
.tabs-footer {
    background-color: var(--blue-color);
    color: #fff;
    padding: 25px 0;
    font-family: "Retro Gaming";
    position: sticky;
    margin-top: auto;
}

.footer-cols-container {
    display: grid;
    grid-template-columns: 3fr 2fr 3fr;
    grid-gap: 30px;
}

.footer-copyright-container {
    text-align: center;
    color: #ce7aff;
    font-size: 14px;
    margin-top: 20px;
}

.footer-col-1 a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.footer-col-1 img,
.footer-col-1 svg {
    width: 130px;
    height: auto;
    display: block;
    height: auto;
    image-rendering: pixelated;
    max-width: calc(120px * (313 / 786));
}

.footer-col-1 h2 {
    font-family: "Typo pixel";
    text-transform: uppercase;
    font-weight: normal;
    font-size: 15px;
    align-items: center;
    line-height: 2em;
    margin-bottom: 10px;
    display: inline;
    vertical-align: middle;
}

.footer-col-3 {
    align-self: center;
}

.footer-col-3 &gt; ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-col-3 &gt; ul &gt; li + li {
    margin-left: 20px;
}

.footer-col-3 &gt; ul a {
    display: block;
    transition: transform 0.3s;
    will-change: transform;
}

.footer-col-3 &gt; ul a img {
    display: block;
    width: 40px;
    image-rendering: pixelated;
}

.footer-col-2 &gt; ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col-2 &gt; ul &gt; li + li {
    margin-top: 10px;
}

.footer-col-2 &gt; ul a:hover {
    text-decoration: underline;
}

.footer-col-3 &gt; ul a:hover {
    transform: scale(1.2);
}

.footer-col-3 &gt; ul &gt; li {
    margin-top: 5px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .footer-cols-container {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .footer-col-1 {
        grid-column: 1 / 3;
    }

    .footer-col-2 {
        grid-column: 1 / 2;
    }

    .footer-col-3 {
        grid-column: 2 / 3;
    }
}

@media (max-width: 480px) {
    .footer-cols-container {
        grid-template-columns: 1fr;
        align-items: start;
        justify-items: left;
    }

    .footer-cols-container &gt; * {
        grid-column: 1 / 1;
    }

    .footer-col-0 &gt; img {
        max-width: 114px;
    }
}

/**/
.pack-content-details {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "Share Share Share Share Share" "Image Image Image Title Title" "Image Image Image Description Description" "CouldTitle CouldTitle CouldTitle ViewBtn ViewBtn" "Cards Cards Cards Cards Cards";
    grid-gap: 20px 40px;
}

.pack-content-details &gt; svg.pack-layers-image {
    align-self: center;
    justify-self: center;
    width: 70%;
    max-width: 400px;
    grid-area: Image;
}

.pack-content-details &gt; .button.share-this-pack {
    margin: 0;
    align-self: center;
    justify-self: end;
    grid-area: Share;
}

.pack-content-details &gt; h2 {
    background-color: #0074ce;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    font-family: "Upheaval TT (BRK)";
    font-weight: normal;
    font-size: 32px;
    grid-area: Title;
    word-break: break-word;
}

.pack-content-details &gt; .description {
    background-color: #0053a0;
    color: #fff;
    padding: 20px;
    font-family: "Retro Gaming";
    font-size: 20px;
    line-height: 1.5em;
    border-radius: 10px;
    grid-area: Description;
    word-break: break-word;
}

.pack-content-details &gt; h3 {
    background-color: #0074ce;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-family: "Upheaval TT (BRK)";
    font-weight: normal;
    font-size: 30px;
    margin-top: 40px;
    grid-area: CouldTitle;
    word-break: break-word;
}

.pack-content-details &gt; h3 + button {
    border: 0;
    padding: 0;
    border-radius: 10px;
    background-color: #2b303e;
    font-family: "Upheaval TT (BRK)";
    font-size: 30px;
    color: #fff;
    background-image: var(--gradient);
    margin-top: 40px;
    align-self: center;
    padding: 10px;
    grid-area: ViewBtn;
    word-break: break-word;
}

.pack-content-details &gt; .grid-lazy-pack-items,
.pack-content-details &gt; .page-loading {
    grid-area: Cards;
}

.pack-content-details &gt; .page-loading {
    height: 300px;
}

.lazy-pack-item {
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.lazy-pack-item-for-set {
    padding: 10px;
}

.lazy-pack-item-placeholder {
    height: 100%;
}

.lazy-pack-item &gt; div:last-child {
    padding-top: calc(67 / 52 * 100%);
    position: relative;
}

.lazy-pack-item-for-set {
    transform: rotate(calc(var(--rotation, 0) * 4deg));
}

.lazy-pack-item &gt; div:last-child &gt; svg {
    position: absolute;
    /* top: 0; */
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 100%;
}

.lazy-pack-item.lazy-pack-item-grayscale.lazy-pack-item-horizontal &gt; div:first-child &gt; svg &gt; g {
    transform-origin: 0 calc(730px + 1220px / 2);
}

.lazy-pack-item-placeholder .flip-card-inner,
.lazy-pack-item-placeholder &gt; h5,
.lazy-pack-item-placeholder &gt; p,
.lazy-pack-item-placeholder.lazy-pack-item-for-set .lazy-pack-item-for-set-details {
    animation: placeholderSkeleton 1s linear infinite forwards;
    background-color: #f6f7f8 !important;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    color: transparent;
}

@keyframes placeholderSkeleton {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

@media (max-width: 768px) {
    .pack-content-details {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto 1fr;
        grid-template-areas: "Share" "Image" "Title" "Description" "CouldTitle" "ViewBtn" "Cards";
    }

    .pack-content-details &gt; h3 + button {
        margin-top: 0px;
    }

    .pack-content-details &gt; svg.pack-layers-image {
        margin: 40px 0;
    }
}

/**/
.my-sets-page {
    padding-top: 40px;
    padding-bottom: 40px;
    display: grid;
    grid-template-areas: "Header Header" "Filters Content";
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    grid-gap: 40px 0;
    align-content: start;
}

.my-sets-page:not(.my-sets-page-filters-open) {
    grid-template-columns: 0 minmax(0, 1fr);
}

.my-sets-header {
    grid-area: Header;
    display: flex;
    align-items: center;
}

.my-sets-no-results {
    text-align: center;
    padding: 30px 0;
}

.my-sets-header &gt; h1.inner-page-title {
    margin-bottom: 5px;
    margin-right: 20px;
}

.my-sets-toggle-filters-button {
    --bg-color: transparent;
    --bg-color-hover: var(--blue-color);
    --color: var(--blue-color);
    --color-hover: white;
    border-color: var(--blue-color);
    width: 60px;
    height: 50px;
}

.my-sets-toggle-filters-button.active {
    --bg-color: var(--blue-color);
    --bg-color-hover: var(--blue-color-lighter);
    --color: white;
    --color-hover: white;
}

.my-sets-header &gt; form {
    flex: 1;
    margin: 0 0 0 20px;
    position: relative;
}

.my-sets-header &gt; form &gt; img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    image-rendering: pixelated;
    height: 30px;
    margin: 10px;
    pointer-events: none;
}

.my-sets-header &gt; form &gt; input::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.my-sets-header &gt; form &gt; input::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.my-sets-header &gt; form &gt; input::-webkit-search-decoration,
.my-sets-header &gt; form &gt; input::-webkit-search-cancel-button,
.my-sets-header &gt; form &gt; input::-webkit-search-results-button,
.my-sets-header &gt; form &gt; input::-webkit-search-results-decoration {
    display: none;
}

.my-sets-header &gt; form &gt; input {
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: 50px;
    padding: 5px;
    padding-left: 50px;
    border: solid 2px #d5d5d5;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: "Super Mario Bros. 2";
    color: #777777;
    text-transform: uppercase;
    background-color: #fff;
}

.my-sets-header &gt; form &gt; input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #e8e8e8;
    opacity: 1;
    /* Firefox */
}

.my-sets-header &gt; form &gt; input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #e8e8e8;
}

.my-sets-header &gt; form &gt; input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #e8e8e8;
}

.my-sets-sort-by-menu-container {
    position: relative;
    display: flex;
}

.my-sets-sort-by-menu-container:hover &gt; button {
    background-color: var(--blue-color-lighter);
}

.my-sets-header .my-sets-sort-by-menu-container {
    margin-left: 20px;
}

.my-sets-sort-by-menu-container &gt; .select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    /* visibility: hidden; */
}

.my-sets-sort-by-menu-toggle {
    height: 50px;
    background-color: var(--blue-color);
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    border: 0;
    font-family: "Super Mario Bros. 2";
    font-size: 12px;
    line-height: 1.5em;
    text-transform: uppercase;
    /* max-width: 225px; */
    display: flex;
    align-items: center;
    padding: 0 20px 0 15px;
    width: 100%;
    justify-content: center;
    transition: background-color 0.3s;
}

.my-sets-sort-by-menu-toggle &gt; img {
    width: 2em;
    margin-right: 0.5em;
}

.my-sets-header &gt; button.my-sets-only-real-toggle {
    height: 50px;
    background-color: var(--blue-color);
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    border: 0;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    margin-left: 20px;
    padding: 0 15px;
    transition: background-color 0.3s;
    line-height: 1.25em;
}

.my-sets-header &gt; button.my-sets-only-real-toggle:hover {
    background-color: var(--blue-color-lighter);
}

.my-sets-sort-by-menu ul {
    background-color: #f2f2f2;
}

.my-sets-sort-by-menu li {
    font-family: "Retro Gaming";
    color: #236ed5;
}

.my-sets-filters {
    position: relative;
    margin-right: 40px;
}

.my-sets-page:not(.my-sets-page-filters-open) .my-sets-filters {
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    overflow: hidden;
}

.my-sets-page:not(.my-sets-page-filters-open) .my-sets-filters &gt; * {
    width: 340px;
}

.my-sets-filters-container {
    position: sticky;
    top: 70px;
}

.my-sets-filters-container &gt; .my-sets-filters-toggle-button,
.my-sets-filters-container &gt; .my-sets-sort-by-menu-container {
    display: none;
}

.my-sets-filters-container &gt; .my-sets-filters-toggle-button {
    grid-column: span 2;
}

.my-sets-filters-container &gt; .my-sets-filters-toggle-button,
.my-sets-filters-container .my-sets-sort-by-menu-toggle {
    font-family: "Retro Gaming";
    font-size: 17px;
    line-height: 1.2em;
    text-transform: uppercase;
    /* text-transform: capitalize; */
    background-color: var(--blue-color);
    border-radius: 10px;
    /* flex: 1; */
    height: 50px;
}

.my-sets-filters-container &gt; .my-sets-filters-toggle-button &gt; img {
    height: 0.8em;
    margin-right: 0.5em;
}

.my-sets-filters-container &gt; .my-sets-filters-toggle-button:hover {
    background-color: var(--blue-color-lighter);
}

.my-sets-filters-divs .accordion {
    overflow: hidden;
    margin-bottom: 2px;
}

.my-sets-filters-divs .accordion-header {
    background-color: var(--blue-color);
    color: #fff;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    font-size: 16px;
    padding: 20px 20px;
    line-height: 1.5em;
}

.my-sets-filters-divs {
    border-radius: 10px;
    overflow: hidden;
}

.my-sets-filters-modal-container {
    height: 100%;
    overflow: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 60px 10px 10px !important;
    overflow-x: hidden;
    overflow-y: auto;
}

.my-sets-filters-modal-container &gt; .close-modal-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.my-sets-filters-modal-container &gt; .close-modal {
    left: auto;
    right: 0;
}

.my-sets-filters-mobile {
    margin-top: 60px;
    max-width: 500px;
    margin: auto;
    position: relative;
}

.my-sets-filters-divs .accordion-content {
    margin: 0;
}

.my-sets-filters-grade {
    padding: 10px 20px;
    background-color: #f2f2f2;
}

.my-sets-filters-grade &gt; .my-sets-filters-grade-label {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--blue-color);
    text-align: center;
}

.my-sets-filters-grade &gt; .my-sets-filters-grade-min-max-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-family: "Upheaval TT (BRK)";
    font-size: 25px;
    color: var(--blue-color);
}

.my-sets-filters-grade &gt; .multi-range-slider {
    box-shadow: none;
    border: 0;
    padding: 10px 15px 10px 5px;
    color: var(--blue-color);
}

.my-sets-filters-grade &gt; .multi-range-slider .thumb::before {
    border-color: currentColor;
    box-shadow: inset 0 0 0 3px currentColor;
}

.my-sets-filters-grade &gt; .multi-range-slider .thumb::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: 2;
    border-radius: 50%;
    border: dotted 1px #000;
    box-shadow: none;
    border-color: transparent !important;
    box-shadow: inset 0 0 0 10px transparent;
    width: 12px !important;
    height: 12px !important;
    transition: box-shadow 0.3s;
}

.my-sets-filters-grade &gt; .multi-range-slider .input-type-range:focus + .thumb::after,
.my-sets-filters-grade &gt; .multi-range-slider .thumb:hover::after {
    box-shadow: inset 0 0 0 10px currentColor;
}

.my-sets-filters-grade &gt; .multi-range-slider .thumb * {
    display: none !important;
}

.my-sets-filters-grade &gt; .multi-range-slider .bar-inner {
    background-color: currentColor;
    box-shadow: none;
    border-color: transparent;
}

.my-sets-filters-grade &gt; .multi-range-slider .bar-left,
.my-sets-filters-grade &gt; .multi-range-slider .bar-right {
    box-shadow: none;
    background-color: #acacac;
}

.my-sets-filter-button {
    display: block;
    width: 100%;
    border: 0;
    margin: 2px 0 0;
    background-color: #f2f2f2;
    padding: 10px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    color: var(--blue-color);
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.5em;
    word-break: break-word;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.my-sets-filter-button::after {
    content: "";
    width: 7px;
    height: 7px;
    border: solid 3px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 10px;
}

.my-sets-filter-button.selected::after {
    background-color: currentColor;
}

.my-sets-filter-button.selected,
.my-sets-filter-button:hover {
    background-color: #eaeaea;
}

.my-sets-filters-divs .accordion-header .accordion-arrow {
    width: 18px;
}

.button.my-sets-button-primary {
    background-color: #32a8ff;
    background-image: linear-gradient(90deg, #01f7fe, #31abff);
    border: 0;
    margin-top: 20px;
    border-radius: 10px;
    font-family: "Super Mario Bros. 2";
    font-size: 13px;
    line-height: 1.5em;
    padding: 15px 10px;
}

.button.my-sets-button-primary::after {
    content: "&gt;";
    font-family: "Upheaval TT (BRK)";
    font-size: 27px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.button.my-sets-button-primary:hover::after {
    transform: translateX(5px);
}

.my-sets-group {
    --cols: 3;
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    grid-gap: 40px;
    align-content: start;
}

.my-sets-page.my-sets-page-filters-open .my-sets-group {
    --cols: 2;
}

.my-sets-item {
    --series-color: #236ed5;
    background-color: #f7f7f7;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
}

.my-sets-item-hidden {
    display: none;
}

.my-sets-cards {
    padding-top: 66%;
    position: relative;
    flex: 1;
}

.my-sets-cards &gt; a:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    opacity: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-sets-cards .my-sets-item-series {
    position: absolute;
    left: 0;
    top: 0;
    margin: 10px;
    background-color: var(--series-color);
    color: #fff;
    width: auto;
    font-family: "Upheaval TT (BRK)";
    font-size: 42px;
    line-height: 25px;
    padding: 5px 10px 10px;
    border-radius: 5px;
}

.my-sets-cards &gt; div {
    transform: translateX(-50%) rotate(calc((var(--index) - var(--total-index) / 2 - -0.5) * 20.5deg));
    transform-origin: 50% 170%;
    position: absolute;
    left: 52%;
    top: 11%;
    width: 34%;
    z-index: calc(6 - var(--index));
    transform-style: preserve-3d;
    /* filter: blur(0.1px); */
    filter: blur(0);
}

.my-sets-cards &gt; *:first-child:last-child {
    --index: 1 !important;
    width: 42%;
    transform: translateX(-50%);
    top: 8%;
}

.my-sets-cards &gt; * &gt; div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.my-sets-item &gt; h4 {
    background-color: var(--series-color);
}

.my-sets-item &gt; h4 &gt; a {
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    line-height: 1.5em;
    word-break: break-word;
    display: block;
    font-weight: normal;
}

.my-sets-item .my-sets-item-footer {
    background-color: var(--series-color);
    padding: 20px;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    line-height: 1.5em;
    color: #fff;
    margin-top: auto;
    word-break: break-word;
}

.my-sets-item.my-sets-item-complete &gt; h4,
.my-sets-item.my-sets-item-complete .my-sets-item-footer {
    background-color: #ffd100;
    text-shadow: 0 0 3px rgb(0 0 0 / 20%);
}

.my-sets-item .my-sets-item-footer &gt; p {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: none;
}

@media (max-width: 1024px) {
    .my-sets-page {
        grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    }

    .my-sets-group {
        --cols: 2;
    }

    .my-sets-page.my-sets-page-filters-open .my-sets-group {
        --cols: 1;
    }
}

@media (max-width: 1200px) {
    /*
    .my-sets-header {
        flex-direction: column;
        align-items: flex-start;
        display: grid;
        grid-template-columns: 1fr auto auto;
        grid-gap: 20px;
    }

    .my-sets-header-no-sort {
        grid-template-columns: 1fr;
    }

    .my-sets-header &gt; form {
        margin: 0;
    }

    .my-sets-header &gt; button.my-sets-only-real-toggle {
        margin-left: 0;
    }

    .my-sets-header &gt; h1.inner-page-title {
        grid-column: 1 / 4;
    }

    .my-sets-header-no-sort &gt; h1 {
        grid-column: 1 / 2;
    }
    */
}

@media (max-width: 768px) {
    .my-sets-page.my-sets-page {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "Header" "Filters" "Content";
        grid-template-rows: auto auto 1fr;
        grid-gap: 20px 0;
    }

    .my-sets-header {
        flex-direction: column;
        align-items: flex-start;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-gap: 20px;
    }

    .my-sets-header .my-sets-sort-by-menu-container {
        display: none;
    }

    .my-sets-header-no-sort {
        grid-template-columns: 1fr;
    }

    .my-sets-header &gt; form {
        margin: 0;
    }

    .my-sets-header &gt; button.my-sets-only-real-toggle {
        grid-column: 1 / 3;
    }

    .my-sets-header-no-sort &gt; h1 {
        grid-column: 1 / 2;
    }

    .my-sets-header &gt; h1.inner-page-title {
        margin-right: 0;
    }

    .my-sets-filters-container &gt; .my-sets-filters-toggle-button,
    .my-sets-filters-container .my-sets-sort-by-menu-container {
        display: flex;
    }

    .my-sets-filters-desktop {
        display: none;
    }

    .my-sets-filters.my-sets-filters.my-sets-filters {
        margin-right: 0;
        visibility: visible;
        opacity: 1;
        width: auto;
        height: auto;
        pointer-events: auto;
        overflow: visible;
    }

    .my-sets-filters-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 20px;
    }

    .my-sets-page:not(.my-sets-page-filters-open) .my-sets-filters &gt; * {
        width: auto;
    }

    .my-sets-filters-container.my-sets-filters-container-no-sort {
        grid-template-columns: minmax(0, 1fr);
    }

    .my-sets-toggle-filters-button-container {
        display: none;
    }

    .my-sets-group {
        --cols: 1;
    }
}

@media (max-width: 480px) {
    .my-sets-header {
        grid-template-columns: minmax(0, 1fr);
    }

    .my-sets-header-no-sort &gt; h1 {
        grid-column: 1 / 2;
    }
}

.my-set-page {
    padding-top: 40px;
    padding-bottom: 40px;
}

.my-set-page-description .my-sets-item &gt; div:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.my-set-page-description {
    max-width: 1000px;
}

.my-set-page-description .my-sets-cards {
    padding-top: 85%;
}

.my-set-page-description .my-sets-cards &gt; div {
    /* transform: translateX(-50%) rotate(calc((var(--index) - 1.05) * 20.5deg)); */
    width: 39%;
    top: 14%;
}

.my-set-page-description .my-sets-cards &gt; *:first-child:last-child {
    width: 55%;
}

.my-set-did-you-know {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    line-height: 1.5em;
    font-family: "Retro Gaming";
    font-size: 22px;
    color: #000;
}

.my-set-page-description .my-sets-item .my-sets-item-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 0 20px;
}

.my-set-page-description .my-sets-item .my-sets-item-footer &gt; * {
    grid-column: 1 / 2;
    max-width: 300px;
    align-self: center;
}

.my-set-page-description .my-sets-item .my-sets-item-footer &gt; a {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    /* background-color: #32a8ff; */
    /* background-image: linear-gradient(90deg, #01f7fe, #31abff); */
    border: 0;
    border-radius: 10px;
    font-family: "Super Mario Bros. 2";
    font-size: 18px;
    line-height: 1.5em;
    padding: 0;
    /* width: 300px; */
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .my-set-page-description .my-sets-item &gt; div:nth-child(2) {
        grid-template-columns: 1fr;
    }

    .my-set-page-description .my-sets-item .my-sets-item-footer {
        grid-template-columns: minmax(0, 1fr);
        grid-gap: 10px;
    }

    .my-set-page-description .my-sets-item .my-sets-item-footer &gt; * {
        grid-column: 1 / 2;
    }

    .my-set-page-description .my-sets-item .my-sets-item-footer &gt; a {
        grid-column: 1 / 2;
        grid-row: auto;
        justify-self: flex-end;
    }
}

.lazy-pack-item-for-set .lazy-pack-item-for-set-details {
    margin-bottom: 10px;
    background-color: var(--blue-color);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lazy-pack-item-for-set .lazy-pack-item-for-set-details &gt; h5 {
    text-transform: uppercase;
    font-weight: normal;
    font-family: "Typo pixel", "Super Mario Bros. 2";
    line-height: 20px;
    height: 20px;
    margin-bottom: 10px;
}

.lazy-pack-item-for-set .lazy-pack-item-for-set-details &gt; div {
    display: flex;
    justify-content: space-between;
    line-height: 16px;
    font-size: 11px;
    height: 16px;
    text-transform: uppercase;
}

.lazy-pack-item-for-set.lazy-pack-item-not-found &gt; div:last-child &gt; div {
    justify-content: center;
}

.lazy-pack-item-for-set .lazy-pack-item-for-set-details &gt; div:first-child {
    font-size: 13px;
}

.lazy-pack-item-for-set .lazy-pack-item-for-set-details &gt; div &gt; span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
}

.lazy-pack-item-for-set .lazy-pack-item-for-set-details &gt; div &gt; span + span {
    margin-left: 5px;
}

.lazy-pack-item-for-set .lazy-pack-item-for-set-details &gt; div:last-child &gt; span {
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
}

.lazy-pack-item-for-set .lazy-pack-item-for-set-details &gt; div:last-child &gt; span:last-child {
    flex-shrink: 0;
}

.lazy-pack-item-grayscale {
    filter: grayscale(1);
    transition: filter 0.3s;
}

.lazy-pack-item-grayscale:hover {
    filter: none;
}

/**/
.manage-signatures-page {
    padding-top: 40px;
    padding-bottom: 40px;
    color: #000;
    z-index: 11;
    /* --blue-color: #0076d6;
    --blue-color-lighter: #0089fa; */
}

.manage-signatures-thank-you-popup {
    text-align: center;
    line-height: 1.25em;
    padding: 15px 0;
}

.manage-signatures-page-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.manage-signatures-page-login .noun-cat-gif-container {
    width: 130px;
    margin: 15px 0 0;
}

.manage-signatures-page-login &gt; div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    justify-items: center;
}

.manage-signatures-page-login &gt; div &gt; div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.manage-signatures-page-login &gt; div &gt; div:nth-child(2) &gt; .button {
    width: auto;
    border-radius: 10px;
    font-family: "Retro Gaming";
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 15px;
}

.manage-signatures-page-login &gt; div &gt; div:nth-child(2) &gt; .button + .button {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .manage-signatures-page-login &gt; div {
        grid-template-columns: minmax(0, 1fr);
    }

    .manage-signatures-page-login &gt; div &gt; div:nth-child(1) {
        justify-self: start;
        grid-row: 2 / span 1;
    }
}

.manage-signatures-page.message-container {
    min-height: var(--vh100);
}

.manage-signatures-info {
    margin: 20px 0;
}

.manage-signatures-info:not(.container) {
    background-color: var(--blue-color);
    color: #fff;
    font-family: "Super Mario Bros. 2";
    line-height: 1.75em;
    font-size: 12px;
    margin: 40px 0;
}

.manage-signatures-info-sign-all-buttons {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
}

.manage-signatures-info-sign-all-buttons &gt; .button {
    width: auto;
    border-radius: 10px;
    margin: 0 10px 5px 0;
    font-family: "Retro Gaming";
    font-size: 16px;
    padding: 7px 15px;
}

.manage-signatures-info &gt; .manage-signatures-back-link {
    font-family: "Retro Gaming";
    align-self: flex-start;
    border: 0;
    color: #000;
    padding: 0;
    font-size: 16px;
    background: none;
}

.manage-signatures-info &gt; .manage-signatures-back-link::before {
    content: "&lt; ";
    transition: transform 0.3s;
    display: inline-block;
    margin-right: 8px;
}

.manage-signatures-info &gt; .manage-signatures-back-link:hover::before {
    transform: translateX(-6px);
}

.manage-signatures-info &gt; p {
    max-width: 840px;
    margin: 0 auto;
}

.manage-signatures-info &gt; p:first-child {
    margin-top: 50px;
}

.manage-signatures-info &gt; p:last-child {
    margin-bottom: 50px;
}

.manage-signatures-info &gt; div {
    margin: 25px auto;
}

.manage-signatures-info &gt; div &gt; button {
    border-radius: 10px;
    margin: 5px;
    width: auto;
    font-family: "Retro Gaming";
    font-size: 17px;
    display: block;
    text-align: center;
    max-width: 345px;
}

.list-cards-to-sign {
    --cols: 5;
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    grid-gap: 40px;
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .list-cards-to-sign {
        --cols: 4;
    }
}

@media (max-width: 768px) {
    .list-cards-to-sign {
        --cols: 2;
    }
}

@media (max-width: 480px) {
    .list-cards-to-sign {
        --cols: 1;
    }
}

.list-cards-to-sign &gt; div &gt; a {
    cursor: pointer;
    transition: transform 0.3s;
    will-change: transform;
    display: block;
    /*
    content-visibility: auto;
    contain-intrinsic-height: calc((min(100vw - var(--scroll-bar-width), var(--container-max-width)) - 2 * 15px - 40px * (var(--cols) - 1)) / var(--cols));
    */
}

.list-cards-to-sign-item &gt; span {
    display: block;
    text-align: center;
    margin: 10px 0 0;
    font-family: "Retro Gaming";
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-group-3 &gt; a {
    padding-top: 75%;
    position: relative;
    flex: 1;
    margin-bottom: 60px;
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-group-3 &gt; a::after {
    content: "Sign all the cards at once";
    position: absolute;
    left: 50%;
    top: 100%;
    width: auto;
    transform: translate(-50%, -50%);
    background-color: var(--blue-color);
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    width: 140px;
    text-align: center;
    transition: background-color 0.3s;
    font-size: 15px;
    margin: 0 auto;
    margin: 25px 0 0;
    display: block;
    z-index: 12;
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-group-3 &gt; a:hover::after {
    background-color: var(--blue-color-lighter);
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-group-3 &gt; a &gt; svg {
    transform: translateX(-50%) rotate(calc((var(--index) - var(--total-index) / 2 - -0.5) * 20.5deg));
    transform-origin: 50% 133%;
    position: absolute;
    left: 52%;
    top: 0%;
    width: 50%;
    height: 100%;
    z-index: calc(6 - var(--index));
    transform-style: preserve-3d;
    filter: blur(0.1px);
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-group-3 &gt; div &gt; a &gt; *:first-child:last-child {
    --index: 1 !important;
    width: 42%;
    transform: translateX(-50%);
    top: 8%;
}

.list-cards-to-sign &gt; div &gt; a:hover {
    transform: scale(1.05);
}

.list-cards-to-sign &gt; div &gt; a &gt; svg {
    height: 100%;
    width: 100%;
    display: block;
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-all &gt; a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-all &gt; a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.5;
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-all &gt; a::after {
    content: attr(data-button-text);
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    transform: translate(-50%, -50%);
    background-color: var(--blue-color);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    width: 160px;
    text-align: center;
    transition: background-color 0.3s;
    font-size: 17px;
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-all &gt; a:hover::after {
    background-color: var(--blue-color-lighter);
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-all &gt; a &gt; svg {
    width: 33.33%;
}

.list-cards-to-sign &gt; .list-cards-to-sign-item-sign-all &gt; a &gt; svg:first-child:last-child {
    width: 100%;
}

.card-and-signature-canvas-container {
    --scale: 10;
    position: relative;
    width: calc(var(--edge-width) * var(--scale) * 1px);
    margin: 30px auto 15px;
    user-select: none;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    display: grid;
}

.manage-signatures-full-screen .manage-signatures-editor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000000;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.manage-signatures-full-screen .card-and-signature-canvas-container {
    width: 100%;
    margin: auto;
    flex-shrink: 0;
}

@supports (width: min(1px, 2px)) {
    .manage-signatures-full-screen .card-and-signature-canvas-container {
        width: calc(
            (min(var(--vh100), 100vw - var(--scroll-bar-width)) - 2 * 20px) * var(--edge-width) / var(--edge-height) -
                20px
        );
    }
}

.manage-signatures-full-screen .card-and-signature-canvas-container + .manage-signatures-buttons {
    display: flex;
    padding: 5px 0;
    width: 610px;
}

.manage-signatures-full-screen .card-and-signature-canvas-container + .manage-signatures-buttons &gt; * {
    margin-top: 0;
    margin-bottom: 0;
    /* grid-template-columns: minmax(0, 3.5fr) minmax(0, 2fr) minmax(0, 2fr); */
}

.manage-signatures-full-screen .manage-signatures-settings,
.manage-signatures-full-screen .manage-signatures-buttons {
    display: none;
}

.card-and-signature-canvas-container &gt; svg {
    display: block;
    pointer-events: none;
    position: relative;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
}

.card-and-signature-canvas-container &gt; .signature-canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 1000px #00000075;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
}

.card-and-signature-canvas-container:not(.card-and-signature-canvas-container-replay) .signature-svg-replay-container {
    display: none;
}

.card-and-signature-canvas-container-replay &gt; .signature-canvas-container {
    box-shadow: none;
}

.signature-svg-replay-container &gt; .signature-svg {
    display: block;
}

.card-and-signature-canvas-container &gt; .signature-canvas-container &gt; .signature-canvas {
    --size: var(--outline-radius, 2);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(calc(var(--size) * 1px) 0 var(--outline-color))
        drop-shadow(calc(var(--size) * -1px) 0 var(--outline-color))
        drop-shadow(0 calc(var(--size) * -1px) var(--outline-color))
        drop-shadow(0 calc(var(--size) * 1px) var(--outline-color));
}

.card-and-signature-canvas-container &gt; .signature-canvas-container &gt; .signature-svg-preview-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.card-and-signature-canvas-container-replay-all &gt; .signature-canvas-container &gt; .signature-svg-preview-container,
.card-and-signature-canvas-container-replay-all &gt; .signature-canvas-container &gt; .signature-canvas {
    visibility: hidden;
}

.card-and-signature-canvas-container-replay &gt; .signature-canvas-container .signature-canvas,
.card-and-signature-canvas-container-replay &gt; .signature-canvas-container &gt; .signature-svg-preview-container {
    visibility: hidden;
}

.manage-signatures-choose-card-to-view &gt; div {
    overflow: auto;
    margin: 25px 0;
    max-height: 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-gap: 20px;
    align-items: start;
    align-content: start;
    overflow-x: hidden;
    padding: 15px;
    border: solid 1px #6e719c75;
    border-radius: 5px;
}

.manage-signatures-choose-card-to-view &gt; div &gt; div {
    /* overflow: hidden; */
    position: relative;
}

.manage-signatures-choose-card-to-view &gt; div &gt; div &gt; span {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    font-family: "Retro Gaming";
}

.manage-signatures-choose-card-to-view &gt; div &gt; div &gt; a::before {
    content: "";
    padding-top: 100%;
    display: block;
}

.manage-signatures-choose-card-to-view &gt; div &gt; div &gt; a {
    display: block;
    transition: transform 0.3s;
    will-change: transform;
}

.manage-signatures-choose-card-to-view &gt; div &gt; div.active &gt; a {
    outline: solid 3px #0076d6;
    outline-offset: 3px;
    border-radius: 5px;
}

.manage-signatures-choose-card-to-view &gt; div &gt; div &gt; a:hover {
    transform: scale(1.1);
}

.manage-signatures-choose-card-to-view &gt; div &gt; div &gt; a &gt; svg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.manage-signatures-choose-card-to-view &gt; h2,
.manage-signatures-history &gt; h2 {
    font-family: "Upheaval TT (BRK)";
    font-weight: normal;
    font-size: 36px;
}

.manage-signatures-history-buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0 15px;
}

.manage-signatures-history-buttons-2 p {
    font-family: "Retro Gaming";
    margin: 10px 0 15px;
    color: #555;
    font-size: 15px;
}

.manage-signatures-history-buttons &gt; .manage-signatures-button.button {
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 11px;
    padding: 10px 15px;
}

.signature-history-container {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    overflow: hidden;
}

.signature-history-item {
    width: 100%;
    max-width: 260px;
    justify-self: center;
}

.signature-history-item &gt; svg .signature-svg {
    --delay-index: var(--replay-all-delay-index, 0) !important;
}

.signature-history-item &gt; svg {
    /* outline: solid 1px; */
    /* outline-offset: -1px; */
    box-shadow: inset 0 0 0 1px #cacbe0;
}

.manage-signatures-header {
    display: flex;
    font-family: "Upheaval TT (BRK)";
    font-size: 31px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    word-break: break-word;
    justify-content: space-between;
    align-items: flex-start;
    grid-gap: 10px;
}

button.manage-signatures-button-close-full-screen {
    visibility: hidden;
    opacity: 0;
    z-index: 1000000000;
    left: auto;
    right: 0;
    position: fixed;
}

.manage-signatures-full-screen .manage-signatures-button-close-full-screen {
    visibility: visible;
    opacity: 1;
}

.manage-signatures-full-screen .manage-signatures-header,
.manage-signatures-full-screen .manage-signatures-header + div,
.manage-signatures-full-screen .manage-signatures-choose-card-to-view,
.manage-signatures-full-screen .manage-signatures-history {
    opacity: 0.2;
}

.manage-signatures-header h1,
.manage-signatures-header h2 {
    font-weight: normal;
}

.manage-signatures-header h1 ~ p,
.manage-signatures-header h2 ~ p,
.manage-signatures-header-p {
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 5px;
}

.manage-signatures-header h2 &gt; span {
    margin-right: 10px;
}

.manage-signatures-header &gt; div:nth-child(2) {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.manage-signatures-header p &gt; span {
    color: var(--blue-color);
}

.manage-signatures-header button {
    width: auto;
    border-radius: 10px;
    padding: 5px 10px;
    line-height: 25px;
    font-family: "Retro Gaming";
    font-size: 16px;
    display: inline-block;
    vertical-align: bottom;
    margin: 0;
}

.manage-signatures-header button + button,
.manage-signatures-header a + a,
.manage-signatures-header button + a,
.manage-signatures-header a + button {
    margin-top: 5px;
}

.manage-signatures-header button.connect-wallet-button {
    background-color: var(--blue-color);
}

.manage-signatures-header button.connect-wallet-button:hover {
    background-color: var(--blue-color-lighter);
}

.manage-signatures-header + div {
    display: flex;
    flex-direction: column;
}

.manage-signatures-row-container {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    grid-gap: 20px;
}

.manage-signatures-full-screen .manage-signatures-row-container {
    grid-template-columns: minmax(0, 1fr);
}

.manage-signatures-row-container-no-history-signatures {
    grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 1024px) {
    .manage-signatures-row-container {
        grid-template-columns: minmax(0, 1fr);
    }
}

a.manage-signatures-back-link {
    font-family: "Retro Gaming";
    align-self: flex-start;
}

a.manage-signatures-back-link::before {
    content: "&lt; ";
}

.manage-signatures-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 470px;
    max-width: 100%;
}

.manage-signatures-buttons:first-child {
    justify-content: flex-end;
}

.manage-signatures-buttons .manage-signatures-button.button {
    margin: 3px 5px;
}

/* .manage-signatures-buttons:nth-child(2) .manage-signatures-button.button {
    --button-hover-bg: #6d709c;
    --button-bg: #9395b6;
    color: #fff;
} */
.manage-signatures-button.button.button {
    --button-hover-bg: #e5e5f5;
    --button-bg: #f0f0f9;
    background-color: var(--button-bg);
    color: #6c6b82;
    padding: 10px 21.2px;
    border-radius: 5px;
    font-family: "Typo pixel";
    text-transform: uppercase;
    font-size: 12.5px;
    border: 0;
    letter-spacing: 1px;
    line-height: 20px;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Super Mario Bros. 2";
    width: auto;
    word-spacing: -5px;
}

.manage-signatures-button.button.button-primary {
    --button-hover-bg: hsl(236, 19%, 60%);
    --button-bg: #6e719c;
    color: #fff;
}

.manage-signatures-button.button.button:disabled {
    --button-hover-bg: var(--button-bg);
    --button-bg: #f0f0f9;
    color: hsl(243, 10%, 64%);
    cursor: no-drop;
}

.manage-signatures-button-save-wrapper {
    display: flex;
    margin: 3px 5px;
    justify-content: center;
    align-items: center;
    flex-direction: revert;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 2.1fr);
    grid-gap: 10px;
    width: 100%;
}

.manage-signatures-button-save-wrapper &gt; .select {
    border-radius: 0 5px 5px 0;
    box-sizing: border-box;
    border: solid 1px #6e719c;
    flex: 1;
    border-radius: 5px;
}

.manage-signatures-button-save-wrapper &gt; .select .MuiSelect-select {
    padding: 9px 10px;
    padding-right: 30px !important;
    line-height: 20px;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    font-size: 12px;
    color: #6e719c;
    height: 48px;
    box-sizing: border-box;
    line-height: 15px;
    word-break: break-word;
    display: flex;
    align-items: center;
    word-spacing: -5px;
    white-space: break-spaces;
}

.manage-signatures-button-save-wrapper &gt; .select.Mui-focused .MuiOutlinedInput-notchedOutline {
    border: 0;
    border-width: 0;
}

.manage-signatures-button-save-wrapper &gt; .select:hover .MuiOutlinedInput-notchedOutline {
    border: solid 1px #6e719c;
}

#manage-signatures-button-save-select {
    z-index: 11111111;
}

#manage-signatures-button-save-select li.MuiMenuItem-root {
    font-family: "Super Mario Bros. 2";
    font-size: 12px;
    color: #6e719c;
}

.manage-signatures-button-save-wrapper &gt; .manage-signatures-button.button.button {
    margin: 0;
    /* border-radius: 5px 0 0 5px; */
    padding-right: 10px;
    padding-left: 10px;
    height: 50px;
    line-height: 15px;
    word-break: break-word;
    font-size: 12px;
    word-spacing: -5px;
    /* min-width: 150px; */
    /* margin-top: 5px; */
}

/* .manage-signatures-no-copy-autographs .manage-signatures-button.button.button.manage-signatures-button-save {
    grid-column: 1 / 3;
    width: 100%;
} */
.manage-signatures-button.button.button:hover {
    background-color: var(--button-hover-bg);
}

.manage-signatures-button.button.active {
    /* --button-hover-bg:
    var(--blue-color-lighter); */
    /* --button-bg:
    var(--blue-color); */
    /* color: #fff; */
    box-shadow: inset 0 0 0 3px #6e719c;
}

.manage-signatures-settings {
    display: flex;
    flex-direction: column;
    max-width: 460px;
    margin: 10px auto;
}

.manage-signatures-settings &gt; div {
    margin-bottom: 10px;
    color: #fff;
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Typo pixel";
    text-transform: uppercase;
    font-size: 12px;
    line-height: 35px;
    font-family: "Super Mario Bros. 2";
    color: #6c6b82;
}

.manage-signatures-settings &gt; div.manage-signatures-setting-range {
    flex-direction: column;
    background-color: #f0f0f9;
    border-radius: 5px;
}

.manage-signatures-settings &gt; div &gt; label {
    background-color: #f0f0f9;
    flex: 1;
    margin-right: 10px;
    padding: 0px 10px;
    border-radius: 5px;
}

.manage-signatures-settings &gt; div.manage-signatures-setting-range &gt; label {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.manage-signatures-settings &gt; div &gt; span {
    display: flex;
}

.copy-signature-modal {
    --cols: 6;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-gap: 20px;
    padding: 20px;
    padding-top: 55px;
    box-sizing: border-box;
    max-height: 100%;
    overflow: auto;
    max-width: 1400px;
    overflow-y: scroll;
}

.copy-signature-modal .button-primary {
    background-color: var(--blue-color-lighter);
    border-radius: 5px;
    height: 35px;
    font-family: "Retro Gaming";
    font-size: 16px;
    margin-top: 10px;
}

.copy-signature-modal .button.button-primary:hover {
    background-color: var(--blue-color);
}

span.input-range {
    width: 100%;
    padding: 0 10px 10px;
    box-sizing: border-box;
}

span.input-range &gt; input[type="range"] {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* The slider itself */
span.input-range &gt; input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    background: #ffffff;
    outline: none;
    transition: background-color 0.3s;
    border-radius: 5px;
}

span.input-range &gt; input[type="range"]:hover::-webkit-slider-thumb {
    background-color: #eee;
}

span.input-range &gt; input[type="range"]:hover::-moz-range-thumb {
    background-color: #eee;
}

span.input-range &gt; input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    cursor: pointer;
    border: solid 2px #000;
    border-radius: 50%;
}

span.input-range &gt; input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    cursor: pointer;
    border: solid 2px #000;
    border-radius: 50%;
}

.input-color-with-rainbow input[type="color"],
.input-color-with-rainbow button {
    appearance: none;
    background-color: #addbff;
    border: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: inset 0 0 0 5px #f0f0f9;
    overflow: hidden;
}

.input-color-with-rainbow input[type="color"].active,
.input-color-with-rainbow button.active {
    box-shadow: inset 0 0 0 5px #246fd9;
}

.input-color-with-rainbow button {
    margin-left: 10px;
    font-family: "Retro Gaming";
    color: white;
    background-image: linear-gradient(
        45deg,
        hsl(calc(36 * 0), 100%, 50%),
        hsl(calc(36 * 1), 100%, 50%),
        hsl(calc(36 * 2), 100%, 50%),
        hsl(calc(36 * 3), 100%, 50%),
        hsl(calc(36 * 4), 100%, 50%),
        hsl(calc(36 * 5), 100%, 50%),
        hsl(calc(36 * 6), 100%, 50%),
        hsl(calc(36 * 7), 100%, 50%),
        hsl(calc(36 * 8), 100%, 50%),
        hsl(calc(36 * 9), 100%, 50%),
        hsl(calc(36 * 10), 100%, 50%)
    );
    font-size: 0;
    background-size: 25px 25px;
    background-position: center;
}

.input-color-with-rainbow button.hidden {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

.input-color-with-rainbow input[type="color"]::-webkit-color-swatch {
    border-radius: 50%;
    border: none;
}

.input-color-with-rainbow input[type="range"] {
    -webkit-appearance: none;
    height: 15px;
    border-radius: 5px;
    background: #ffffff;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}

.input-color-with-rainbow input[type="range"]:hover {
    opacity: 1;
}

.input-color-with-rainbow input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
}

.input-color-with-rainbow input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
}

.signature-history-item &gt; div &gt; button {
    background-color: var(--blue-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-family: "Typo pixel";
    text-transform: uppercase;
    font-size: 12px;
    border: 0;
    letter-spacing: 1px;
    line-height: 20px;
    transition: background-color 0.3s;
    font-family: "Super Mario Bros. 2";
    margin-bottom: 5px;
}

.signature-history-item &gt; div &gt; button:hover {
    background-color: var(--blue-color-lighter);
}

.signature-history-item &gt; div &gt; button.signature-history-remove-button {
    background: none;
    color: red;
    border: solid 1px red;
    box-sizing: border-box;
    margin-right: 10px;
}

.manage-signatures-settings + div &gt; h2 {
    margin: 20px 0;
    font-family: "Upheaval TT (BRK)";
    font-size: 40px;
    font-weight: normal;
}

.signature-history-address,
.signature-history-signature-hex,
.signature-history-idm-tx-hash {
    font-family: monospace;
    font-size: 16px;
    word-break: break-word;
    vertical-align: middle;
    text-transform: lowercase;
    margin-top: 5px;
    width: 100%;
}

.signature-history-item &gt; div {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Retro Gaming";
    text-transform: uppercase;
}

.signature-history-item &gt; div:last-child &gt; .signature-history-confirm-button {
    width: auto;
    flex: 1;
}

button.dialog-close {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: 0;
    padding: 10px 10px 5px 5px;
}

button.dialog-close:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

button.dialog-close &gt; svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: #424242;
    transition: transform 0.3s;
}

button.dialog-close:not(:disabled):hover &gt; svg {
    transform: scale(1.2);
}

.MuiDialogContent-root.MuiDialogContent-root {
    padding-top: 40px;
}

.MuiPaper-root.MuiDialog-paper {
    --margin: 15px;
    margin: 15px;
    max-height: calc(100% - var(--margin) * 2);
    /* max-width: 600px; */
    width: calc(100% - var(--margin) * 2);
}

.confirm-dialog-text,
.message-dialog-text,
.prompt-dialog-text,
.prompt-dialog-after-input-content {
    font-family: "Retro Gaming";
    font-size: 20px;
    white-space: pre-line;
    word-break: break-word;
}

.confirm-dialog-text a,
.message-dialog-text a,
.prompt-dialog-text a {
    color: #0075d2;
}

.confirm-dialog-buttons,
.prompt-dialog-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.confirm-dialog-buttons &gt; button,
.prompt-dialog-buttons &gt; button {
    --bg-color: var(--blue-color-lighter);
    --bg-color-hover: var(--blue-color);
    background-color: var(--bg-color);
    color: #fff;
    padding: 10px 17px;
    border-radius: 5px;
    font-family: "Typo pixel";
    text-transform: uppercase;
    font-size: 15px;
    border: 0;
    letter-spacing: 1px;
    line-height: 20px;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Retro Gaming";
    min-width: 120px;
}

.confirm-dialog-buttons &gt; .confirm-button,
.prompt-dialog-buttons &gt; .confirm-button {
    margin-left: auto;
}

.confirm-dialog-buttons &gt; .confirm-button:first-child,
.prompt-dialog-buttons &gt; .confirm-button:first-child {
    margin-right: auto;
}

.confirm-dialog-buttons &gt; button:disabled,
.prompt-dialog-buttons &gt; button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.confirm-dialog-buttons &gt; button:not(:disabled):hover,
.prompt-dialog-buttons &gt; button:not(:disabled):hover {
    background-color: var(--bg-color-hover);
    color: #fff;
}

.confirm-dialog-buttons &gt; .cancel-button,
.prompt-dialog-buttons &gt; .cancel-button {
    background-color: transparent;
    color: var(--blue-color);
    border: solid 1px var(--blue-color);
    margin-right: 10px;
}

.prompt-dialog-input &gt; input,
.prompt-dialog-input &gt; textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Retro Gaming";
    padding: 10px;
    border: solid 1px #999;
    margin-top: 10px;
    line-height: 1.5em;
    font-size: 16px;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
}

.prompt-dialog-input &gt; textarea {
    resize: vertical;
}

/**/
.signature-popup-welcome-message {
    text-align: center;
}

.signature-popup-welcome-logo {
    width: 15%;
    margin: 25px 0 0;
    fill: var(--blue-color);
}

.signature-popup-welcome-message &gt; h3 {
    margin: 15px 0 15px;
    font-size: 1.3em;
    font-family: "Retro Gaming";
}

.signature-popup-welcome-message &gt; p {
    font-size: 0.9em;
    line-height: 1.5em;
}

.signature-popup-welcome-message-warn {
    background-color: #f5f5f5;
    margin: 15px 0;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.85em;
    text-align: left;
    color: #616161;
}

.signature-popup-welcome-message-warn &gt; span:first-child {
    border: solid 2px currentColor;
    width: 25px;
    height: 25px;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #8bc34a;
    margin-right: 5px;
}

/**/
.page-redeem-ticket-placeholder {
    background-color: #000000;
    color: #bb850a;
    padding: 40px 0;
    min-height: 400px;
    display: grid;
    overflow: hidden;
}

.page-redeem-ticket-placeholder &gt; .container {
    display: flex;
    flex-direction: column;
}

.page-redeem-ticket-placeholder a.go-back-link {
    font-size: 18px;
    font-family: "Retro Gaming";
    margin-bottom: 40px;
}

.page-redeem-ticket-placeholder a.go-back-link::before {
    content: "&lt;";
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s;
}

.page-redeem-ticket-placeholder a.go-back-link:hover::before {
    transform: translateX(-5px);
}

.dark-wheel-and-toad-cashier {
    display: flex;
    position: relative;
    justify-self: center;
    align-self: center;
    margin: auto;
    flex: 1;
    max-height: 400px;
    padding: 0 15%;
    width: 100%;
    box-sizing: border-box;
    max-width: 712px;
}

.toad-cashier-gif-container {
    position: relative;
    image-rendering: pixelated;
    width: 210px;
    max-width: 100%;
    margin-top: 290px;
    align-self: center;
    justify-self: center;
}

.toad-cashier-gif-container &gt; svg:last-child {
    max-height: 230px;
    display: block;
    margin: 10px auto 0;
    /* width: auto; */
    /* height: auto; */
}

.dark-wheel-and-toad-cashier .toad-cashier-gif-container {
    position: absolute;
    right: 0;
    bottom: -4.9%;
    width: 24%;
}

.toad-cashier-gif {
    display: block;
    width: 100%;
    height: auto;
    image-rendering: pixelated;
}

.dark-wheel-and-toad-cashier .dark-wheel {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    object-position: bottom;
}

.toad-cashier-gif-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
}

.toad-cashier-gif-text &gt; p {
    --text-height: 20px;
    --line-height: 25px;
    color: rgb(255, 187, 0);
    font-family: "Super Mario Bros. 2";
    width: 350px;
    font-size: 15px;
    line-height: var(--line-height);
    max-height: var(--text-height);
    overflow: hidden;
    text-transform: uppercase;
    margin: 0 0 10px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s, height 0.3s;
}

.toad-cashier-gif-container-dark .toad-cashier-gif-text &gt; p {
    color: #bf5300;
}

.noun-cat-gif-container .toad-cashier-gif-text &gt; p {
    color: #000;
}

.toad-cashier-gif-text &gt; p &gt; a {
    text-decoration: underline;
    color: #ff0000;
}

.toad-cashier-gif-text &gt; p.show-text {
    --text-height: calc(var(--line-height) * var(--text-lines));
    opacity: 1;
    visibility: visible;
    transform: none;
    height: var(--text-height);
}

@media (max-width: 768px) {
    .toad-cashier-gif-text {
        align-items: flex-end;
        text-align: right;
    }

    .redeem-ticket-container .toad-cashier-gif-text {
        align-items: center;
        text-align: center;
    }

    .manage-signatures-page-login .noun-cat-gif-container {
        width: 100px;
        margin-top: 175px;
    }

    .noun-cat-gif-container .toad-cashier-gif-text {
        align-items: flex-start;
        text-align: left;
        left: -10px;
    }
}

@media (max-width: 480px) {
    .dark-wheel-and-toad-cashier {
        padding: 0;
    }

    .dark-wheel-and-toad-cashier .toad-cashier-gif-container {
        bottom: -4%;
        width: 47%;
    }
}

a.manage-signatures-next-card-link {
    background-color: #f0f0f9;
    color: hsl(243, 10%, 64%);
    display: inline-block;
    border-radius: 10px;
    padding: 8px 15px;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    font-size: 19px;
    transition: background-color 0.3s, color 0.3s;
}

a.manage-signatures-next-card-link:not(.active) {
    cursor: not-allowed;
}

a.manage-signatures-next-card-link.active {
    color: #fff;
    background-color: var(--blue-color);
}

a.manage-signatures-next-card-link.active:hover {
    background-color: var(--blue-color-lighter);
}

a.manage-signatures-next-card-link::after {
    content: "&gt;";
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s;
}

a.manage-signatures-next-card-link.active:hover::after {
    transform: translateX(5px);
}

.list-cards-to-sign-item-has-signatures &gt; div:nth-child(1) {
    color: #4caf50;
    background-color: #4caf50;
    color: #fff;
    padding: 5px 0;
}

.list-cards-to-sign-item-has-signatures &gt; div:nth-child(2) {
    color: #ffc107;
    background-color: #ffc107;
    color: #fff;
    padding: 5px 0;
}

.list-cards-to-sign-item-no-signatures {
    color: #9e9e9e;
}

.list-cards-to-sign-item-has-signatures,
.list-cards-to-sign-item-no-signatures {
    text-align: center;
    font-family: "Retro Gaming";
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.25em;
    word-break: break-word;
}

.home-section {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.home-section .flip-card-inner {
    padding-top: calc(var(--flip-card-height) / var(--flip-card-width) * 100%);
    height: auto;
}

.home-section-blue {
    background-color: var(--blue-color);
    color: #fff;
}

.home-section-1 {
    display: grid;
    grid-template-areas: "Content Feed";
    grid-template-columns: minmax(0, 2fr) minmax(0, 360px);
    grid-gap: 30px;
    align-items: center;
}

.home-section-1 &gt; div:nth-child(1) {
    grid-area: Content;
    word-break: break-word;
}

.home-section-1 &gt; div:nth-child(1):last-child {
    grid-column: 1 / span 2;
}

.home-section-1 &gt; div:nth-child(2) {
    grid-area: Feed;
}

.home-section-1-about-autograph {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    grid-column: 1 / span 2;
    grid-gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.home-section-1-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-gap: 20px;
    align-self: start;
}

@media (max-width: 1024px) {
    .home-section-1-about-autograph {
        grid-column: auto;
        grid-template-columns: minmax(0, 1fr);
    }

    .home-section-1-cards {
        grid-row: 2;
        --cols: 3;
        grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .home-section-1-cards {
        --cols: 2;
    }
}

.live-feed-box {
    overflow: hidden;
    border-radius: 5px;
    max-width: 360px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 100px;
    box-shadow: inset 0 -100px var(--pack-color-secondary, #00a3ff);
    background-color: #f7f7f7;
}

.live-feed-box &gt; div:nth-child(1) {
    text-align: center;
    padding: 15px;
    display: flex;
    background-color: #f7f7f7;
}

.live-feed-box &gt; div:nth-child(1) &gt; svg {
    display: block;
    width: 100%;
    height: auto;
}

.live-feed-box:not(.live-feed-box-soon) &gt; div:nth-child(1) &gt; svg &gt; foreignObject &gt; span {
    line-height: 30px;
    display: block;
    font-family: "Retro Gaming";
    font-size: 25px;
    margin-top: 10px;
}

.live-feed-box:not(.live-feed-box-soon) &gt; div:nth-child(1) &gt; svg &gt; foreignObject &gt; span + img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 35px;
}

.live-feed-box.live-feed-box-soon &gt; div:nth-child(1) &gt; svg &gt; foreignObject &gt; span {
    margin: auto;
    height: calc(var(--foreignObject-height) * 1px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 75px;
}

.live-feed-box &gt; div:nth-child(2) {
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    box-sizing: border-box;
    margin: auto;
}

.live-feed-box:not(.live-feed-box-soon) &gt; div:nth-child(2) {
    font-family: "Retro Gaming";
    font-size: 16px;
    line-height: 20px;
}

.live-feed-box:not(.live-feed-box-soon) &gt; div:nth-child(2) span.address {
    display: inline-block;
    overflow: hidden;
    max-width: 14ch;
    text-overflow: ellipsis;
    vertical-align: bottom;
}

@media (max-width: 768px) {
    .home-section-1 {
        grid-template-areas: "Content" "Feed";
        grid-template-columns: minmax(0, 1fr);
        grid-gap: 30px;
    }

    .home-section-1 &gt; div:nth-child(1):last-child {
        grid-column: 1 / span 1;
        grid-row: 1 / span 2;
    }
}

.home-section-1 &gt; div:first-child &gt; h3,
.home-section-1-about-autograph &gt; div:last-child &gt; h3 {
    color: var(--blue-color);
    font-weight: normal;
    font-size: 19px;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    line-height: 1.5em;
    margin-bottom: 40px;
}

/**/
.home-section-14 {
    background-color: #05bcff;
}

.home-section-15 {
    background-color: #fc1e6f;
}

.home-section-14-style-container {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-gap: 40px;
    align-items: center;
}

.home-section-14-style-container &gt; div:first-child &gt; svg {
    display: block;
    width: 100%;
    height: auto;
}

.home-section-14-style-container &gt; div:first-child &gt; svg:hover {
    animation: individual-pack-image-swing-no-transform 4s ease-in-out;
    transform-origin: center;
}

.home-section-14-style-container &gt; div:last-child &gt; svg &gt; foreignObject {
    transform: rotate(45deg);
}

.home-section-14-style-container &gt; div:nth-child(2) {
    word-break: break-word;
}

.home-section-14-style-container &gt; div:nth-child(2) p {
    font-family: "Retro Gaming";
    margin-top: 10px;
    line-height: 1.5em;
    font-size: 17px;
}

.home-section-14-style-container &gt; div:nth-child(2) h4 {
    font-size: 19px;
    line-height: 1.5em;
    font-weight: normal;
}

@media (max-width: 768px) {
    .home-section-14-style-container {
        grid-template-columns: 1fr 1fr;
    }

    .home-section-14-style-container &gt; div:nth-child(2) {
        grid-row: 1 / span 1;
        grid-column: 1 / span 2;
    }
}

/**/
.home-simple-boxes {
    display: flex;
    position: relative;
    /* outline: solid 1px; */
}

.home-simple-boxes::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(var(--width) / var(--height) * -76.4762% + 132.476%);
}

.home-simple-boxes &gt; * {
    position: absolute;
    top: 12%;
    width: 42%;
    transform-style: preserve-3d;
    /* filter: blur(0.1px); */
    filter: blur(0);
    /* cursor: pointer; */
    transform: translateX(-50%) rotate(calc((var(--index) + 0.5 - var(--total) / 2) * 8.5deg));
    transform-origin: 50% 339%;
    left: 50%;
}

.home-simple-boxes &gt; *:nth-child(2) {
    z-index: 1;
}

.home-simple-boxes &gt; *::before {
    content: "";
    display: block;
    padding-top: calc(var(--height) / var(--width) * 100%);
}

.home-simple-boxes &gt; * &gt; * {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.home-simple-boxes &gt; *:nth-child(2) &gt; * {
    transform: scale(1.25);
}

/**/
.home-section-3 {
    display: grid;
    grid-template-columns: 3fr 3fr;
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 40px;
    align-items: center;
}

.home-section-3 &gt; div:first-child &gt; p {
    text-align: center;
    color: var(--blue-color);
    font-size: 16px;
    line-height: 1.5em;
    font-family: "Retro Gaming";
    text-transform: uppercase;
}

.home-section-3 &gt; div:first-child &gt; p + p {
    margin-top: 10px;
}

.home-section-3-cards {
    display: grid;
    grid-template-columns: repeat(var(--total), minmax(0, 1fr));
    grid-gap: 10px;
    max-width: calc(var(--total) * 225px);
    margin: 0 auto;
}

.home-section-3-cards &gt; div &gt; h4 {
    text-align: center;
    font-family: "Retro Gaming";
    font-weight: normal;
    text-transform: uppercase;
    margin: 10px 0 5px;
    font-size: 15px;
}

.home-section-3-cards &gt; div &gt; div:last-child {
    color: #959595;
    font-family: "Retro Gaming";
    text-align: center;
}

.home-section-3-cards .flip-card {
    transform: scale(calc(1 - var(--scale) / 20));
}

@media (max-width: 1024px) {
    .home-section-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-section-3 &gt; div:first-child &gt; p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .home-section-3-cards {
        grid-template-columns: repeat(6, 1fr);
    }

    .home-section-3-cards &gt; div:nth-child(1) {
        grid-column: 2 / span 2;
        grid-row: 2 / 2;
    }

    .home-section-3-cards &gt; div:nth-child(2) {
        grid-column: 1 / span 2;
        grid-row: 1 / 1;
    }

    .home-section-3-cards &gt; div:nth-child(3) {
        grid-column: 3 / span 2;
        grid-row: 1 / 1;
    }

    .home-section-3-cards &gt; div:nth-child(4) {
        grid-column: 5 / span 2;
        grid-row: 1 / 1;
    }

    .home-section-3-cards &gt; div:nth-child(5) {
        grid-column: 4 / span 2;
        grid-row: 2 / 2;
    }

    .home-page-hero-series-0 .home-section-3-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-page-hero-series-0 .home-section-3-cards &gt; div {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .home-section-3-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-section-3-cards &gt; div:nth-child(1) {
        grid-column: 1 / span 2;
        grid-row: 3 / span 1;
    }

    .home-section-3-cards &gt; div:nth-child(2) {
        grid-column: 1 / span 2;
        grid-row: 2 / span 1;
    }

    .home-section-3-cards &gt; div:nth-child(3) {
        grid-column: 2 / span 2;
        grid-row: 1 / span 1;
    }

    .home-section-3-cards &gt; div:nth-child(4) {
        grid-column: 3 / span 2;
        grid-row: 2 / span 1;
    }

    .home-section-3-cards &gt; div:nth-child(5) {
        grid-column: 3 / span 2;
        grid-row: 3 / span 1;
    }

    .home-page-hero-series-0 .home-section-3-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page-hero-series-0 .home-section-3-cards &gt; div {
        grid-row: auto;
        grid-column: auto;
    }
}

.home-section-2 h2 {
    text-align: center;
    font-weight: normal;
    font-size: 19px;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    line-height: 1.5em;
}

.home-section-2 p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5em;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}

/* .home-section-2 {
    padding-top: 30px;
    padding-bottom: 30px;
} */
.home-section-4-container {
    display: grid;
    grid-template-columns: 1fr 1fr 4fr;
    grid-gap: 40px;
    align-items: center;
}

.home-section-4-container &gt; div:last-child {
    font-size: 16px;
    font-family: "Retro Gaming";
    text-transform: uppercase;
}

.home-section-4-container &gt; div:last-child p + p {
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .home-section-4-container {
        grid-template-columns: 1fr 1fr 2fr;
    }
}

@media (max-width: 768px) {
    .home-section-4-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .home-section-4-container &gt; div:last-child {
        grid-column: 1 / span 2;
        grid-row: 1 / span 1;
    }
}

@media (max-width: 480px) {
    .home-section-4-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-section-4-container &gt; div:last-child {
        grid-column: 1 / span 1;
    }
}

.home-section-5-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 40px;
    align-items: center;
    position: relative;
}

.home-section-5-container &gt; div:first-child &gt; p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5em;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    margin-bottom: 66px;
}

.home-section-5-container &gt; div:first-child {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-section-5-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 20px;
    grid-row: 1;
    grid-column: 1;
}

.home-section-5-toadbot {
    position: absolute;
    right: 50%;
    bottom: -80px;
    width: 40%;
    height: auto;
    image-rendering: pixelated;
    transform: translateX(50%);
}

.home-section-5-cards &gt; div &gt; h4 {
    margin-top: 15px;
    color: #fff;
    font-family: "Retro Gaming";
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
}

@media (max-width: 768px) {
    .home-section-5-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-section-5-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-row: auto;
        grid-column: auto;
    }

    .home-section-5-toadbot {
        position: relative;
        bottom: auto;
        right: auto;
        transform: none;
        margin: 20px auto 0;
        width: 30%;
    }
}

.home-section-6 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-gap: 40px;
    align-items: center;
}

.home-section-6 &gt; div:last-child {
    font-size: 16px;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    color: var(--blue-color);
    grid-column: 1 / span 1;
    grid-row: 1;
}

.home-section-6 &gt; div:last-child p + p {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .home-section-6 {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-section-6 &gt; div:last-child {
        grid-row: 1 / span 1;
    }
}

.home-section-7-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    align-items: center;
}

.home-section-7-container &gt; div:first-child &gt; p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5em;
    font-family: "Retro Gaming";
    text-transform: uppercase;
}

.home-section-7-container &gt; div:first-child &gt; img {
    display: block;
    margin: 0 auto 20px;
    width: 40%;
    height: auto;
    image-rendering: pixelated;
}

.home-section-7-container &gt; div:first-child {
    grid-row: 1 / span 2;
}

.home-section-7-container &gt; div:first-child &gt; p {
    color: var(--blue-color);
}

.home-page:not(.allow-viewing) .home-section-7-container &gt; div:first-child &gt; p {
    grid-row: 1 / span 2;
}

.home-section-7-container &gt; div &gt; h4 {
    margin-top: 15px;
    color: #fff;
    font-family: "Retro Gaming";
    text-align: center;
    font-weight: normal;
}

.home-section-7-container &gt; div &gt; h4 {
    color: #000;
}

.home-section-7-container &gt; div &gt; h3 {
    margin-top: 5px;
    color: #959595;
    font-family: "Retro Gaming";
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
}

@media (max-width: 768px) {
    .home-section-7-container {
        grid-template-columns: 1fr 1fr;
    }

    .home-section-7-container &gt; div:first-child &gt; p {
        grid-row: auto;
        grid-column: 1 / span 2;
    }
}

@media (max-width: 480px) {
    .home-section-7-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-section-7-container &gt; div:first-child &gt; p {
        grid-column: auto;
    }
}

.home-section-8-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 3fr;
    grid-gap: 0;
    align-items: center;
}

.home-section-8-container &gt; p {
    font-size: 16px;
    font-family: "Retro Gaming";
    margin-left: 40px;
    text-transform: uppercase;
}

.home-section-9 {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    align-items: center;
}

.home-section-9 &gt; div:first-child {
    color: var(--blue-color);
    font-size: 16px;
    line-height: 1.5em;
    font-family: "Retro Gaming";
    margin-right: 40px;
    text-transform: uppercase;
}

.home-section-9 &gt; div:first-child p + p {
    margin-top: 10px;
}

.home-section-9 &gt; div:nth-child(2),
.home-section-9 &gt; div:nth-child(4) {
    filter: grayscale(1);
    opacity: 0.5;
    pointer-events: none;
}

.home-section-10-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 3fr;
    grid-gap: 0;
    align-items: center;
}

.home-section-10-container &gt; div:last-child {
    font-size: 16px;
    font-family: "Retro Gaming";
    margin-left: 40px;
    text-transform: uppercase;
    color: var(--blue-color);
}

.home-section-10-container &gt; div:last-child {
    color: #fff;
}

.home-section-10-container &gt; div:last-child &gt; p + p {
    margin-top: 1em;
}

.home-section-10-container &gt; div:nth-child(1) &gt; div,
.home-section-10-container &gt; div:nth-child(3) &gt; div,
.home-section-10-container &gt; div:nth-child(1) &gt; div,
.home-section-10-container &gt; div:nth-child(3) &gt; div {
    display: none;
}

.home-section-11 {
    background-color: var(--pink-color);
    padding-top: 60px;
    padding-bottom: 60px;
}

.home-section-11-container {
    position: relative;
}

.home-section-12 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-gap: 40px;
    align-items: center;
}

.home-section-12 &gt; div:first-child &gt; p {
    color: var(--blue-color);
    font-size: 16px;
    line-height: 1.5em;
    font-family: "Retro Gaming";
    text-transform: uppercase;
}

.home-section-12 &gt; div:first-child &gt; p + p {
    margin-top: 10px;
}

.home-section-12 &gt; div:last-child &gt; img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .home-section-12 {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-section-12 &gt; div:first-child &gt; p {
        text-align: center;
    }
}

button.scroll-to-top-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    background-color: #422665;
    overflow: hidden;
    border-radius: 5px;
    z-index: 1;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
}

button.scroll-to-top-button.hidden {
    transform: translateY(70px);
    visibility: hidden;
    opacity: 0;
}

button.scroll-to-top-button &gt; svg {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    will-change: transform;
}

button.scroll-to-top-button:hover &gt; svg {
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .home-section-8-container,
    .home-section-9,
    .home-section-10-container {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 40px 0;
    }

    .home-section-8-container &gt; p,
    .home-section-9 &gt; div:first-child,
    .home-section-10-container &gt; div:last-child {
        grid-column: 1 / span 3;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .home-section-8-container &gt; p {
        grid-row: 1 / span 1;
    }

    .home-section-10-container &gt; div:nth-child(1),
    .home-section-10-container &gt; div:nth-child(3),
    .home-section-10-container &gt; div:nth-child(1),
    .home-section-10-container &gt; div:nth-child(3) {
        display: none;
    }

    .home-section-10-container &gt; div:last-child {
        grid-column: 2 / span 2;
        margin-left: 40px;
    }
}

@media (max-width: 480px) {
    .home-section-8-container,
    .home-section-9,
    .home-section-10-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-section-8-container &gt; p,
    .home-section-9 &gt; div:first-child,
    .home-section-10-container &gt; div:last-child {
        grid-column: auto;
    }

    .home-section-10-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-section-10-container &gt; div:last-child {
        grid-column: 1 / span 1;
        margin-left: 0;
        grid-row: 1 / span 1;
    }
}

.home-section-11-container h2 {
    text-align: center;
    font-weight: normal;
    font-size: 21px;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.5em;
    font-size: 19px;
}

.home-section span.star {
    font-family: "Nountown";
    font-size: 1.5em;
    vertical-align: bottom;
    line-height: 0.8em;
}

/**/
.marketplace-series {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.marketplace-series-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.marketplace-series-header &gt; button,
.marketplace-series h4 {
    padding: 10px;
    background-color: var(--blue-color);
    color: #fff;
    font-family: "Super Mario Bros. 2";
    text-transform: uppercase;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5em;
    text-align: center;
}

.marketplace-series-header &gt; button {
    display: block;
    margin: 0 auto;
    max-width: 360px;
    border-radius: 10px;
    font-size: 18px;
    margin: 5px 10px;
    border: 0;
    padding: 10px 30px;
    background-color: #f7f7f7;
    color: var(--blue-color);
    border: solid 3px var(--blue-color);
}

.marketplace-series-header &gt; button:not(.active) {
    background-color: var(--blue-color);
    color: #fff;
}

.marketplace-series-content {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 40px;
}

.marketplace-series-content &gt; div &gt; div {
    overflow: hidden;
    border-radius: 5px;
    background-color: #f7f7f7;
}

.marketplace-series-content &gt; div &gt; div + div {
    margin-top: 30px;
}

.marketplace-series-content &gt; div &gt; div &gt; h4 {
    padding: 10px;
    font-size: 16px;
}

.marketplace-series-content &gt; div &gt; div &gt; ul {
    margin: 0;
    padding: 0;
}

.marketplace-series-content &gt; div &gt; div &gt; ul &gt; li {
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.marketplace-series-content &gt; div &gt; div &gt; ul &gt; li &gt; span {
    color: var(--blue-color);
    font-family: "Typo pixel", "Super Mario Bros. 2";
    text-transform: uppercase;
    line-height: 1.5em;
    font-size: 14px;
    word-break: break-word;
    margin-right: 10px;
}

.marketplace-series-content &gt; div &gt; div &gt; ul &gt; li &gt; div {
    margin-left: auto;
    display: flex;
}

.marketplace-series-content &gt; div &gt; div &gt; ul &gt; li &gt; div &gt; a {
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
    will-change: transform;
}

.marketplace-series-content &gt; div &gt; div &gt; ul &gt; li &gt; div &gt; a:hover {
    transform: scale(1.1);
}

.marketplace-series-content &gt; div &gt; div &gt; ul &gt; li &gt; div &gt; a + a {
    margin-left: 10px;
}

.marketplace-series-content &gt; div &gt; div &gt; ul &gt; li &gt; div &gt; a &gt; img {
    display: block;
    width: 35px;
    height: 35px;
    object-fit: cover;
    image-rendering: pixelated;
}

.marketplace-series-content &gt; div &gt; div &gt; ul &gt; li &gt; div:first-child {
    margin-right: auto;
}

@media (max-width: 1024px) {
    .marketplace-series {
        max-width: 600px;
    }

    .marketplace-series-content {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .marketplace-series-content &gt; div &gt; div &gt; ul &gt; li {
        flex-direction: column;
    }

    .marketplace-series-content &gt; div &gt; div &gt; ul &gt; li &gt; span {
        text-align: center;
        margin-right: 0;
    }

    .marketplace-series-content &gt; div &gt; div &gt; ul &gt; li &gt; div {
        margin-right: auto;
        margin-top: 10px;
    }
}

/**/
.page-redeem-ticket {
    padding: 40px 0;
    overflow: hidden;
    background-color: #000;
    color: #ffd92c;
}

.page-redeem-ticket &gt; .redeem__container-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    /* display: grid; */
    /* grid-template-columns: 1fr auto 1fr; */
    /* grid-gap: 20px; */
}

@media (max-width: 768px) {
    .page-redeem-ticket &gt; .redeem__container-container {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
    }
}

.page-redeem-ticket a.go-back-link {
    font-size: 18px;
    font-family: "Retro Gaming";
}

.page-redeem-ticket .hide-on-wheel-revealing {
    transition: opacity 0.3s, visibility 0.3s;
}

.page-redeem-ticket-wheel-state-revealing .hide-on-wheel-revealing {
    opacity: 0;
    visibility: hidden;
}

.page-redeem-ticket a.go-back-link::before {
    content: "&lt;";
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s;
}

.page-redeem-ticket a.go-back-link:hover::before {
    transform: translateX(-5px);
}

.available-golden-tickets.no-items {
    text-align: center;
    padding: 5px 0;
    line-height: 1.5em;
    color: #ffbb00;
}

.available-golden-tickets.no-items a {
    color: rgb(255, 0, 0);
    text-decoration: underline;
}

.redeem-ticket-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.redeem-ticket-container &gt; div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.redeem-ticket-container &gt; div:last-child &gt; .button {
    margin-top: 20px;
    --bg-color: rgb(255, 199, 0);
    --bg-color-hover: hsl(47, 100%, 60%);
    width: 300px;
    max-width: 100%;
}

svg.wheel-of-fortune {
    image-rendering: pixelated;
    max-width: 360px;
    margin: auto;
    height: auto;
}

svg.wheel-of-fortune .wheel-click {
    cursor: pointer;
}

svg.wheel-of-fortune .wheel-ticket-hover {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.3s, transform 0.3s;
    will-change: transform, opacity;
}

svg.wheel-of-fortune .wheel-ticket-hover &gt; * {
    transition: transform 1800ms linear;
}

svg.wheel-of-fortune .transition-opacity {
    transition: opacity 0.3s;
    will-change: opacity;
}

svg.wheel-of-fortune .wheel-click:hover ~ .wheel-ticket-hover,
svg.wheel-of-fortune.wheel-state-inserting .wheel-ticket-hover {
    opacity: 1;
    transform: none;
}

svg.wheel-of-fortune.wheel-state-speen img.wheel-circle {
    transform-origin: center center;
    animation: wheel-circle-speen 4s linear infinite;
}

@keyframes wheel-circle-speen {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

svg.wheel-of-fortune {
    transform-origin: 50% 10%;
    transition: opacity 1s cubic-bezier(0.4, 0, 1, 1), transform 1s ease-in-out;
    margin-bottom: 0;
}

svg.wheel-of-fortune.wheel-state-revealing {
    transform: translateX(calc((var(--wheel-rect-x) * -1) * 1px)) translateY(calc((var(--wheel-rect-y) * -1) * 1px))
        translate(50vw, 50vh) translate(-54%, -10%) scale(calc(var(--wheel-win-h) / var(--wheel-rect-h))) scale(5);
    opacity: 0;
    pointer-events: none;
}

svg.wheel-of-fortune.wheel-state-revealed {
    visibility: hidden;
}

/**/
.page-redeem-ticket &gt; .available-prizes-container {
    background-color: rgb(255, 214, 64);
}

.page-redeem-ticket &gt; .prizes-container &gt; h5 {
    text-align: center;
    font-size: 19px;
    font-weight: normal;
    padding: 30px 0 10px;
}

.page-redeem-ticket &gt; .available-prizes-container &gt; h5 {
    color: #fff;
}

.page-redeem-ticket &gt; .awarded-prizes-container &gt; h5 {
    color: rgb(255, 155, 0);
}

.page-redeem-ticket &gt; .prizes-container &gt; .no-prizes-found {
    text-align: center;
    padding: 10px 15px 20px;
    font-size: 15px;
    opacity: 0.75;
}

.page-redeem-ticket &gt; .available-prizes-container &gt; .no-prizes-found {
    color: #fff;
}

.page-redeem-ticket &gt; .awarded-prizes-container &gt; .no-prizes-found {
    color: rgb(255, 155, 0);
}

.prizes-container img {
    background-color: rgb(0 0 0 / 10%);
    object-fit: cover;
}

/**/
.marquee-slider-container:not(.flickity-enabled) {
    display: flex;
    justify-content: center;
}

.marquee-slider-container:not(.flickity-enabled) &gt; * {
    flex-shrink: 0;
}

.images-marquee .flickity-slider {
    will-change: transform;
}

/**/
.images-marquee {
    --item-content-size: 100px;
    --item-padding-size: 10px;
    --item-size: calc(var(--item-content-size) + 2 * var(--item-padding-size));
    overflow: hidden;
    user-select: none;
    padding: 5px 0;
}

.images-marquee .swiper-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    width: calc(var(--count) * 2 * var(--item-size));
    animation: images-marquee-animation calc(var(--count) * 1s) linear infinite;
}

@keyframes images-marquee-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.images-marquee .swiper-marquee-item {
    flex-shrink: 0;
}

.images-marquee .swiper-wrapper {
    padding: 5px;
    transition-timing-function: linear !important;
}

.images-marquee .swiper-marquee-item &gt; svg,
.images-marquee .swiper-marquee-item &gt; img,
.images-marquee .swiper-slide &gt; svg,
.images-marquee .swiper-slide &gt; img {
    display: block;
    user-select: none;
    pointer-events: none;
    width: 100%;
    height: auto;
    height: var(--item-content-size);
    object-fit: contain;
}

.images-marquee .swiper-slide &gt; svg.placeholder {
    animation: placeholderSkeleton 1s linear infinite forwards;
    background-color: #f6f7f8 !important;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    color: transparent;
}

.images-marquee .swiper-marquee-item,
.images-marquee .swiper-slide {
    transition: box-shadow 0.3s;
    cursor: pointer;
    padding: var(--item-padding-size);
    box-sizing: content-box;
    width: var(--item-content-size);
    content-visibility: auto;
    contain-intrinsic-size: 100px 100px;
}

.images-marquee .swiper-marquee-item.active,
.images-marquee .swiper-marquee-item:hover,
.images-marquee .swiper-slide:hover {
    box-shadow: inset 0 0 0 2px rgb(0 0 0 / 20%);
    border-radius: 5px;
}

.images-marquee .swiper-marquee-item.active {
    background-color: rgb(0 0 0 / 2%);
}

@media (max-width: 768px) {
    .redeem-ticket-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .redeem-ticket-container &gt; div:last-child {
        grid-row: 1 / span 1;
    }
}

/**/
.please-connect-wallet-message {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.please-connect-wallet-message-text {
    max-width: 400px;
}

.please-connect-wallet-message &gt; .svg-character {
    width: 144px;
    image-rendering: pixelated;
    margin: 25px 0 0;
}

.please-connect-wallet-message &gt; .svg-character:hover &gt; foreignObject:nth-child(1),
.please-connect-wallet-message &gt; .svg-character:not(:hover) &gt; foreignObject:nth-child(2) {
    display: none;
}

/**/
.you-dont-have-message {
    margin: auto;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.you-dont-have-message-text {
    max-width: 300px;
    font-family: "Super Mario Bros. 2";
    color: #000;
}

.you-dont-have-message &gt; .svg-character {
    width: 144px;
    image-rendering: pixelated;
    margin: 25px 0 0;
}

.you-dont-have-message &gt; .you-dont-have-message-text + .svg-character {
    margin-top: 15px;
}

/**/
.page-my-tickets {
    padding: 20px 0;
    /* overflow: hidden; */
}

.page-my-tickets .no-prizes-found {
    text-align: center;
    padding: 10px;
    color: #999;
}

.page-my-tickets &gt; h2 {
    text-align: center;
    font-size: 16px;
    padding: 10px;
    font-weight: normal;
}

.page-my-tickets &gt; .page-my-tickets-content + h2 {
    background-color: #ffaf00;
    color: #ffff;
}

.page-my-tickets &gt; .page-my-tickets-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: center;
    justify-items: center;
    grid-gap: 20px;
}

.page-my-tickets &gt; .page-my-tickets-content &gt; .col1 {
    width: 100%;
    display: flex;
    padding: 10px;
    box-sizing: border-box;
    flex-direction: column;
}

.page-my-tickets &gt; .page-my-tickets-content &gt; .col1 &gt; svg {
    width: 100%;
    z-index: 1;
}

.page-my-tickets &gt; .page-my-tickets-content &gt; .col1 &gt; svg + p {
    text-align: center;
    font-family: "Retro Gaming";
    color: #555;
    margin: 10px auto 0;
    font-size: 16px;
}

.page-my-tickets &gt; .page-my-tickets-content &gt; .col1 &gt; button {
    background-color: #ffc700;
    color: #fff;
    font-family: "Upheaval TT (BRK)";
    text-transform: uppercase;
    min-width: 260px;
    padding: 15px 25px;
    border: 0;
    border-radius: 10px;
    font-size: 30px;
    font-weight: normal;
    max-width: 100%;
    transition: background-color 0.3s;
}

.page-my-tickets &gt; .page-my-tickets-content &gt; .col1 &gt; button:hover {
    background-color: hsl(47, 100%, 57%);
}

.page-my-tickets &gt; .page-my-tickets-content &gt; .col1 &gt; ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.page-my-tickets &gt; .page-my-tickets-content &gt; .col1 &gt; ul &gt; li {
    list-style: none;
    margin: 0;
    width: 150px;
    margin: 10px;
}

.page-my-tickets &gt; .page-my-tickets-content &gt; .col1 &gt; ul &gt; li &gt; svg {
    cursor: pointer;
    transition: transform 0.3s;
    will-change: transform;
}

.page-my-tickets &gt; .page-my-tickets-content &gt; .col1 &gt; ul &gt; li &gt; svg:hover {
    transform: scale(1.1);
}

.page-my-tickets .toad-cashier-gif-container {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-top: 150px;
    max-width: 100%;
}

.page-my-tickets .toad-cashier-gif-container .toad-cashier-gif-text {
    text-align: center;
    align-items: center;
}

.page-my-tickets .toad-cashier-gif-container &gt; svg {
    width: 230px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .page-my-tickets &gt; .page-my-tickets-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-my-tickets &gt; .page-my-tickets-content &gt; * {
        max-width: 100%;
    }
}

/**/
.live-feed-page {
    padding-top: 40px;
}

.live-feed-page &gt; div:first-child &gt; button {
    display: block;
    margin: 0 auto;
    font-family: "Retro Gaming";
    text-transform: capitalize;
    margin-bottom: 20px;
    width: auto;
    border-radius: 10px;
    font-size: 16px;
}

.feed-entries-empty {
    color: #999;
    text-align: center;
    padding: 10px 0;
}

.feed-entry-container {
    margin-bottom: 40px;
}

.feed-entry-container &gt; div {
    overflow: hidden;
    transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
}

.feed-entry {
    border-radius: 10px;
    overflow: hidden;
}

.feed-entry,
.feed-entry[data-series="0"] {
    --color1: #00a3ff;
    --color2: #00a3ff;
}

.feed-entry[data-series="1"] {
    --color1: #fc1e6f;
    --color2: #fc1e6f;
}

.feed-entry.feed-entry-tweet {
    background-color: #f7f7f7;
    padding: 15px 20px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-gap: 10px 20px;
}

.feed-entry.feed-entry-tweet &gt; div:first-child {
    grid-row: 1 / span 2;
}

.feed-entry.feed-entry-tweet &gt; div:first-child &gt; img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

.feed-entry.feed-entry-tweet &gt; div:nth-child(2) {
    font-family: "Retro Gaming";
    font-size: 15px;
    overflow: hidden;
    white-space: pre;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 10px;
}

.feed-entry.feed-entry-tweet &gt; div:nth-child(2) &gt; span {
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-entry.feed-entry-tweet &gt; div:nth-child(2) &gt; span:nth-child(1) {
    color: #000000;
}

.feed-entry.feed-entry-tweet &gt; div:nth-child(2) &gt; span:nth-child(2) {
    color: #748a98;
}

.feed-entry.feed-entry-tweet &gt; div:nth-child(3) {
    color: #454545;
    overflow: hidden;
    font-family: "Retro Gaming";
    font-size: 16px;
    word-break: break-word;
    margin-bottom: 10px;
}

.feed-entry.feed-entry-tweet .feed-entry-footer {
    grid-column: 1 / span 2;
    filter: invert(1);
    padding: 0;
}

.feed-entry.feed-entry-card,
.feed-entry.feed-entry-cards {
    background-color: var(--color1);
}

.feed-entry.feed-entry-pack,
.feed-entry.feed-entry-packs {
    background-color: var(--color2);
}

.feed-entry.feed-entry-open-pack {
    background-color: #f7f7f7;
}

.feed-entry.feed-entry-open-pack .feed-entry-header {
    background-color: var(--color1);
    padding-bottom: 10px;
}

.feed-entry.feed-entry-pack &gt; .feed-entry-header + div {
    padding: 30px 20px;
}

.feed-entry.feed-entry-pack .pack-layers-image {
    display: block;
    margin: 0 auto;
    max-width: 170px;
}

.feed-entry.feed-entry-pack .feed-entry-footer {
    background-color: var(--color1);
    padding-top: 15px;
}

.feed-entry.feed-entry-cards .feed-entry-header,
.feed-entry.feed-entry-packs .feed-entry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feed-entry.feed-entry-cards .feed-entry-header + ul,
.feed-entry.feed-entry-packs .feed-entry-header + ul {
    margin: 20px 20px 0;
    padding: 0;
    list-style: none;
}

.feed-entry.feed-entry-cards .feed-entry-header + ul &gt; li .lazy-pack-item {
    padding: 0;
}

.feed-entry.feed-entry-packs .feed-entry-header + ul &gt; li &gt; span:last-child,
.feed-entry.feed-entry-cards .feed-entry-header + ul &gt; li &gt; span:last-child {
    color: #fff;
    display: block;
    text-align: right;
    margin-top: 10px;
    font-family: "Retro Gaming";
    font-size: 14px;
}

.feed-entry.feed-entry-cards .feed-entry-header &gt; img,
.feed-entry.feed-entry-packs .feed-entry-header &gt; img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 10px;
}

.feed-entry.feed-entry-card .lazy-pack-item {
    padding: 0;
    max-width: 200px;
    margin: 20px auto;
}

.feed-entry-footer {
    padding: 0 20px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    font-size: 15px;
}

.feed-entry-footer &gt; span:first-child {
    margin-right: auto;
}

.feed-entry-footer &gt; button {
    --bg-color: transparent;
    --bg-color-hover: transparent;
    padding: 0;
    width: auto;
    border: 0;
}

.feed-entry-footer &gt; a,
.feed-entry-footer &gt; button {
    margin-left: 10px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 0;
    background: none !important;
    background-color: transparent !important;
}

.feed-entry-footer &gt; button.button.button-with-loading.button-loading {
    background-color: transparent !important;
}

.feed-entry-footer &gt; button.button.button-with-loading.button-loading &gt; img:last-child {
    filter: invert(1);
}

.feed-entry-footer &gt; a img,
.feed-entry-footer &gt; button img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    image-rendering: pixelated;
}

.feed-entry-header {
    text-align: center;
    color: #fff;
    padding: 15px 20px 0;
    font-family: "Retro Gaming";
    font-size: 15px;
}

.feed-entry-header span.address {
    display: inline-block;
    overflow: hidden;
    max-width: 14ch;
    text-overflow: ellipsis;
    vertical-align: bottom;
}

/**/
.card-back-edge-description,
.card-svg-front,
.card-svg-back,
.card-front-edge-plaque-text {
    cursor: default;
}

/**/
.admin-page table,
.admin-page td,
.admin-page th {
    border: 1px solid;
}

/**/
.pick-ticket-slider {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

.pick-ticket-slider &gt; .swiper {
    margin: 0 15px;
    max-height: 100%;
    height: 100%;
}

.pick-ticket-slider .swiper-slide {
    height: 100% !important;
}

.pick-ticket-slider .swiper-wrapper {
    height: 100% !important;
}

.pick-ticket-slider .swiper-slide &gt; div {
    height: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    grid-gap: 15px;
    overflow: hidden;
}

.pick-ticket-slider .swiper-slide &gt; div &gt; div:first-child {
    flex: 1;
}

.pick-ticket-slider .swiper-slide &gt; div &gt; div:first-child &gt; svg {
    display: block;
    width: 100%;
    height: 100%;
}

.pick-ticket-slider .swiper-slide &gt; div &gt; button {
    margin: 0 auto 0;
    --bg-color: rgb(255, 199, 0);
    --bg-color-hover: hsl(47, 100%, 60%);
    font-family: "Super Mario Bros. 2";
    font-size: 18px;
    padding: 15px 20px;
    width: auto;
    max-width: 100%;
    flex-shrink: 0;
    word-break: break-word;
    box-sizing: border-box;
}

.pick-ticket-slider .swiper-slide &gt; div &gt; button:disabled {
    --bg-color: #ccc;
    --bg-color-hover: var(--bg-color);
    cursor: not-allowed;
}

.pick-ticket-modal-container {
    width: 100%;
}

.pick-ticket-modal {
    display: flex;
    height: 100%;
}

.pick-ticket-slider &gt; button {
    width: 30px;
    margin: 0 auto 73px;
    background: none;
    border: 0;
    padding: 0;
    color: #e1e1e1;
    flex-shrink: 0;
}

.pick-ticket-slider &gt; button:hover {
    color: #dddddd;
}

.pick-ticket-slider &gt; button:disabled {
    opacity: 0;
    pointer-events: none;
    display: block;
}

/**/
.redeemed-prize-modal-container {
    width: 100%;
    display: flex;
}

.redeemed-prize-modal {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    padding: 15px;
    grid-gap: 15px;
    max-width: 900px;
    margin: auto;
    max-height: 100%;
    overflow: auto;
    box-sizing: border-box;
    width: 100%;
}

.redeemed-prize-modal .card-details-properties {
    grid-row: auto;
    grid-area: auto;
    margin-top: 0;
}

.redeemed-prize-modal &gt; div:nth-child(1) {
    grid-column: 1 / span 2;
    color: rgb(255, 179, 0);
    text-align: center;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    font-size: 22px;
    padding: 40px 0 20px;
    word-break: break-word;
}

.redeemed-prize-modal h4 {
    background-color: rgb(255, 201, 0);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-family: "Retro Gaming";
    text-transform: uppercase;
    font-size: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    word-break: break-word;
}

.redeemed-prize-modal &gt; div:nth-child(2) &gt; h4 {
    background-color: rgb(255, 0, 0);
}

.redeemed-prize-modal &gt; div:nth-child(2) &gt; div:nth-child(2) &gt; img {
    display: block;
    width: 100%;
    height: auto;
}

.redeemed-prize-modal h4 + ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 10px;
}

.redeemed-prize-modal h4 + ul &gt; li {
    background-color: rgb(245, 245, 245);
    color: rgb(92, 92, 92);
    padding: 10px;
    font-family: "Retro Gaming";
    display: flex;
    flex-direction: column;
    font-size: 18px;
    word-break: break-word;
}

.redeemed-prize-modal h4 + ul &gt; li &gt; span:first-child {
    font-weight: bold;
}

.redeemed-prize-modal &gt; div:nth-child(3) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-self: start;
    grid-gap: 15px;
}

.redeemed-prize-modal &gt; div:nth-child(3) &gt; div:nth-child(2) &gt; a {
    --bg-color: var(--blue-color-lighter);
    --bg-color-hover: var(--blue-color);
}

@media (max-width: 768px) {
    .redeemed-prize-modal {
        grid-template-columns: minmax(0, 460px);
        justify-content: center;
    }

    .redeemed-prize-modal &gt; div:nth-child(1) {
        grid-column: 1 / span 1;
    }
}

.available-golden-tickets .swiper-marquee-item {
    width: calc(100px * 83 / 46);
    /* width: auto; */
}

/**/
.wallet-button-container {
    position: relative;
}

.wallet-button-container.show-notifications-bell &gt; button:first-child {
    padding-right: 48px;
}

.wallet-button-container .notifications-bell-button {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px 8px 0 0;
    width: 40px;
    height: 40px;
    background: none;
    border: 0;
    padding: 6px;
    cursor: pointer;
}

.wallet-button-container .notifications-bell-button:hover {
    outline: solid 1px #fff;
}

.wallet-button-container .notifications-bell-button &gt; img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    transform-origin: top center;
}

.wallet-button-container.has-notifications .notifications-bell-button &gt; img {
    animation: individual-pack-image-swing-no-transform 4s ease-in-out 1s infinite;
}

.wallet-button-container .settings-dropdown-container,
.wallet-button-container .notifications-container {
    position: absolute;
    right: 0;
    top: 100%;
    border: solid 2px var(--blue-color);
    padding: 8px;
    margin: 10px 0 0;
    border-radius: 7px;
    color: #000;
    background-color: #fff;
    font-family: "Retro Gaming";
    z-index: 1000;
}

.wallet-button-container .settings-dropdown-container .button {
    font-family: inherit;
    text-transform: none;
    font-size: 16px;
}

.wallet-button-container .settings-dropdown-container &gt; * + * {
    margin-top: 10px;
}

.wallet-button-container .settings-dropdown-container .wallet-logout-button {
    --bg-color: #f00;
    --bg-color-hover: #c00;
}

.wallet-button-container .notifications-container &gt; div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
}

.wallet-button-container .notifications-container &gt; div + div {
    margin-top: 15px;
}

.wallet-button-container .notifications-container &gt; div &gt; button {
    margin-top: 10px;
    padding: 5px;
    font-family: "Super Mario Bros. 2";
    font-size: 16px;
    white-space: pre;
}

/**/
.premint-popup-message-1,
.premint-popup-message-2 {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #ff00c3;
    width: 415px;
    padding: 15px;
    padding-right: 40px;
    border-radius: 5px;
    box-shadow: 0 0 10px #ff00c352;
    margin: 20px;
    color: #fff;
    font-family: "Retro Gaming";
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-sizing: border-box;
}

.premint-popup-message-1 {
    width: 415px;
    max-width: calc(100% - 40px);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transform-origin: right center;
}

.premint-popup-message-2 {
    width: 60px;
    transform-origin: center center;
    font-size: 0;
    padding: 0;
}

.premint-popup-message.show .premint-popup-message-2 {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
}

.premint-popup-message.show .premint-popup-message-1,
.premint-popup-message:not(.show) .premint-popup-message-2 {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.premint-popup-message-close-button {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    padding: 0;
    margin: 0;
    margin: 10px;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    background: none;
    color: #fff;
}

.premint-popup-message-2 .premint-popup-message-close-button {
    position: static;
    margin: 0;
    padding: 15px;
    width: 60px;
    height: 60px;
}

.premint-popup-message-close-button &gt; .premint-popup-message-close-button-icon {
    display: block;
    width: 100%;
    height: 100%;
}

/**/
</pre></body></html>