@font-face {
    font-family: 'SansitaOne';
    font-weight: 400;
    font-style: normal;
    src: url(/a/SansitaOne.woff2?dae7560d) format("woff2"), url(/a/SansitaOne.ttf?9a388f23) format("truetype");
}

@font-face {
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    src: url(/a/Figtree-VariableFont_wght.woff2?35cb9999) format("woff2"), url(/a/Figtree-VariableFont_wght.ttf?1bb74634) format("truetype");
}

* {
    margin: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

:root, .light-theme {
    --black: rgb(16, 16, 16);
    --white: #fff;
    --gray: #9D9D9D;

    --black25: rgba(16, 16, 16, 0.25);
    --black50: rgba(16, 16, 16, 0.5);
    --placeholder: rgba(16, 16, 16, 0.25);

    --white25: rgba(255, 255, 255, 0.25);
    --white50: rgba(255, 255, 255, 0.5);

    --surface: rgba(255, 255, 255, 0.25);
    --surface-shadow: rgba(0, 0, 0, 0.125);

    --surface2: rgba(0, 0, 0, 0.25);
    --surface-shadow2: rgba(255, 255, 255, 0.125);

    --divider: rgba(0, 0, 0, 0.08);

    --font-title: 'SansitaOne', 'Sansita One', 'Trebuchet MS', Verdana, sans-serif;
    --font-title-weight: 400;

    --font-text: 'Figtree', 'Inter', 'Roboto', 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial, sans-serif;
    --font-text-weight: 500;

    --red: #d00;
    --creamsicle: #FFBF59;

    --always-black: rgb(16, 16, 16);
    --always-white: #fff;
}

.dark-theme {
    --black: #fff;
    --white: rgb(16, 16, 16);
    --gray: #d8d8d8;

    --black25: rgba(255, 255, 255, 0.25);
    --black50: rgba(255, 255, 255, 0.5);
    --placeholder: rgba(255, 255, 255, 0.25);

    --white25: rgba(16, 16, 16, 0.25);
    --white50: rgba(16, 16, 16, 0.5);

    --surface: rgba(0, 0, 0, 0.25);
    --surface-shadow: rgba(0, 0, 0, 0.125);

    --surface2: rgba(255, 255, 255, 0.25);
    --surface-shadow2: rgba(0, 0, 0, 0.125);

    --divider: rgba(255, 255, 255, 0.1);

    color: var(--black);
}

.contrast-boost .low-contrast
{
    text-shadow: 0 0 8px var(--white25);
}

html, body {
    height: 100%;
}

input, button, textarea, select {
    font: inherit;
}

h1, h2, h3, h4, h5, h6, p {
    padding: 0;
    overflow-wrap: break-word;

    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
}

.text, p {
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
}

html {
    font-size: 16px;
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);

    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
}

body {
    min-width: 320px;
    overflow-x: hidden;

    color: var(--black);
    background: var(--white);
}

#app
{
    height: 100%;
}

page {
    display: flex;
    flex-direction: column;
    height: 100%;
}

page.size-sm .content {
    max-width: 800px;
}

page.align-left .content {
    text-align: left;
}

page .page-title {
    margin-bottom: 32px;
}

splitway-footer {
    margin-top: auto;
}

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

a, .button, .swatch {
    transition: opacity 200ms;
}

a:not(.button):not(.plain) {
    border-bottom: 2px solid var(--black25);
}

a:not(.button):not(.plain):hover {
    border-bottom: 2px solid var(--black);
}

.click {
    cursor: pointer;
}

.click:hover {
    opacity: 0.5;
}

[onlongpress] {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

input, textarea {
    background: transparent;
    border: 0;
    outline: 0;
    text-align: inherit;
    width: 100%;

    border-bottom: 2px solid transparent;
}

input:focus {
    border-bottom: 2px solid var(--placeholder);
}

textarea {
    border: 2px solid transparent;
}

textarea:focus {
    border: 2px solid var(--placeholder);
}

input.error {
    border-bottom: 2px solid var(--red);
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--black);
}

input[type="checkbox"]:focus {
    border-bottom: 0;
}

input:-webkit-autofill { 
    -webkit-background-clip: text;
}

.error-message {
    position: absolute;
}

.error {
    color: var(--red);
}

.form-group .h4 {
    margin-bottom: 8px;
}

::placeholder {
    color: var(--placeholder);
    opacity: 1;
}

::-webkit-input-placeholder{
    color: var(--placeholder);
}
::-moz-placeholder {
    color: var(--placeholder);
}

select {
    background: transparent;
    border: 0;
    outline: 0;
    text-align: inherit;
    width: 100%;

    border-bottom: 2px solid transparent;
}

select:focus {
    border-bottom: 2px solid var(--placeholder);
}

option:first-of-type {
    color: var(--placeholder);
}

input[type="radio"]:not(:checked) + label { opacity: 0.5; } 

.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
}

.h1 {
    font-size: 64px;
}

.h2 {
    font-size: 48px;
}

.h3 {
    font-size: 32px;
}

.h4 {
    font-size: 16px;
}

.h5 {
    font-size: 13px;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.flex-center, .center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-row.center-x { justify-content: center; }
.flex-row.center-y { align-items: center; }
.flex-col.center-x { align-items: center; }
.flex-col.center-y { justify-content: center; }

.flex-wrap { flex-wrap: wrap; }

.flex-left {
    align-items: start;
    justify-content: start;
}

.float-left {}
.float-right { margin-left: auto; }

.flex-row.align-center {
    align-items: center;
}

.flex-col.align-center {
    justify-content: center;
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.fill, .h-fill { width: 100%; }
.v-fill { height: 100%; }

.csx-4  > *:not(:last-child) { margin-right: 4px; }
.csx-8  > *:not(:last-child) { margin-right: 8px; }
.csx-16 > *:not(:last-child) { margin-right: 16px; }
.csy-24 > *:not(:last-child) { margin-right: 24px; }
.csx-32 > *:not(:last-child) { margin-right: 32px; }
.csx-64 > *:not(:last-child) { margin-right: 64px; }

.csy-4  > *:not(:last-child) { margin-bottom: 4px; }
.csy-8  > *:not(:last-child) { margin-bottom: 8px; }
.csy-16 > *:not(:last-child) { margin-bottom: 16px; }
.csy-24 > *:not(:last-child) { margin-bottom: 24px; }
.csy-32 > *:not(:last-child) { margin-bottom: 32px; }
.csy-64 > *:not(:last-child) { margin-bottom: 64px; }

.pad-16 { padding: 16px; }
.pad-32 { padding: 32px; }
.pad-64 { padding: 64px; }
.pad-128 { padding: 128px; }

.pady-48 { padding-top: 48px; padding-bottom: 48px; }

.padx-32 { padding: 0 32px; }

.mar-16 { margin: 16px; }
.mar-32 { margin: 32px; }
.mar-64 { margin: 64px; }
.mar-128 { margin: 128px; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

.round-8 { border-radius: 8px; }
.round-16 { border-radius: 16px; }
.round-32 { border-radius: 32px; }

.color-gray { color: var(--gray); }
.c-gray { color: var(--gray); }
.c-black { color: var(--black); }
.c-white { color: var(--white); }
.bg-white { background: var(--white); }
.bg-white25 { background: var(--white25); }
.bg-white50 { background: var(--white50); }
.bg-black { background: var(--black); }
.bg-surface-shadow2 { background: var(--surface-shadow2); }

.noselect {
    user-select: none;
}

.text, .f-text {
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
}

.title, .f-title {
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
}

.w-400 { font-weight: 400; }
.w-500 { font-weight: 500; }
.w-600 { font-weight: 600; }
.w-700 { font-weight: 700; }
.w-normal { font-weight: normal; }
.w-bold { font-weight: bold; }

.tight { letter-spacing: -0.05em; }

.hr {
    border: 1px solid var(--black25);
}

.header {
    width: 100%;
}

.footer {
    position: relative;
    background: var(--white);
}

.content {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-title);
    display: inline-flex;
    font-weight: 700;
    font-size: 24px;
    user-select: none;
}

.button {
    font-size: 16px;
    padding: 0px 24px;
    background: var(--black);
    color: var(--white);
    min-height: 40px;
    text-align: center;
    border-radius: 64px;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    user-select: none;

    gap: 8px;

    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
}

.button.circle, .circle {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
}

.button.size-lg {
    font-size: 24px;
    min-height: 60px;
    min-width: 240px;
}

.button.style-1 {
    background: var(--black);
    color: var(--white);
}

.button.style-2 {
    background: var(--surface-shadow2);
    color: var(--black);
}

.button.style-3 {
    background: var(--white);
    color: var(--black);
}

.button.style-4 {
    background: var(--surface2);
    color: var(--black);
    border: 1px solid var(--surface-shadow);

    box-shadow: 0 8px 20px var(--surface2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: box-shadow 200ms;
}

.button.style-4:hover {
    opacity: 1;
    box-shadow: 0 12px 32px var(--surface2);
}

.button.style-5 {
    background: var(--surface);
    color: var(--white);
    border: 1px solid var(--surface-shadow2);

    box-shadow: 0 8px 20px var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: box-shadow 200ms;
}

.button.style-5:hover {
    opacity: 1;
    box-shadow: 0 12px 32px var(--surface);
}

.button.danger, .button.danger:hover {
    color: var(--white);
    border-color: transparent;
    background: var(--red);
}

.disabled, [disabled] {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab__header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 8px;

    padding: 8px;
    padding-bottom: 8px;

    border-bottom: 2px solid var(--surface-shadow);
    margin-bottom: 64px;
}

.tab__button {
    cursor: pointer;
    user-select: none;

    padding: 8px 20px;
    min-height: unset;

    opacity: 0.5;

    transition: background 200ms, opacity 200ms;
    min-width: 240px !important;
}

.tab__button:hover {
    opacity: 0.75;
}

.tab__button:not(.active) {
    background: transparent;
    color: var(--black);
}

.tab__button.active {
    opacity: 1;
    background: var(--surface);
    color: var(--black);
}

.tab__content {
    width: 100%;
    position: relative;
}

.tab__page {
    display: none;
    pointer-events: none;

    flex-direction: column;
    gap: 24px;
}

.tab__page.active {
    display: flex;
    pointer-events: all;
    animation: tab-fade-in 200ms ease;
}

@keyframes tab-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.Checkbox__wrap {
}

.Checkbox {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-block;
    
    --bg: #1a1a1a;
    --box: #2a2a2a;
    --accent: #5b8def;
    --check: #fff;
}

.Checkbox > input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.Checkbox > .checkbox__box {
    position: absolute;
    inset: 0;
    background: var(--box);
    border-radius: 5px;
    transition: background 120ms ease, border-color 120ms ease;
}

.Checkbox > svg {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    stroke: var(--check);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 150ms ease 20ms;
}

.Checkbox > input:checked ~ .checkbox__box {
    background: var(--accent);
    border-color: var(--accent);
}

.Checkbox > input:checked ~ svg {
    stroke-dashoffset: 0;
}

.Checkbox > input:focus-visible ~ .checkbox__box {
    box-shadow: 0 0 0 3px rgba(91,141,239,0.4);
}

.checkbox__label {
    font-family: var(--font-title);
    opacity: 0.5;
}

.select {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.select__item {
    cursor: pointer;
    user-select: none;
    opacity: 0.5;
}

.select__item:hover {
    opacity: 0.75;
}

.select__item.selected {
    opacity: 1;
    background: var(--surface);
}

.wide, .button.wide {
    max-width: 480px;
    width: 100%;
}

.subtitle {
    font-size: 16px;
}

.alpha-100 { opacity: 1; }
.alpha-75 { opacity: 0.75; }
.alpha-50 { opacity: 0.5; }
.alpha-25 { opacity: 0.25; }

.hover\:alpha-100:hover { opacity: 1; }

.badge {
    font-size: 16px;
    display: inline-flex;
    min-height: 32px;
    max-height: 32px;
    padding: 0 16px;
    border-radius: 32px;

    flex-direction: row;
    align-items: center;

    font-family: var(--font-title);
    font-weight: var(--font-title-weight);

    background: #ddd;

    max-width: 320px;
    cursor: default;

    vertical-align: middle;
    color: #000;
}

.badge.loading {
    color: transparent;
}

.badge-group > * {
    margin: 0px 4px 8px 4px;
}

.emoji {
    font-size: 20px;
    margin-right: 4px;
    margin-left: -4px;
}

.grid {
    display: grid;
    /*
    align-items: center;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-columns: auto auto auto;
    */
}

.grid > * {
    display: contents;
}

.grid.csx-16 { grid-column-gap: 16px;  }
.grid.csy-16 { grid-row-gap: 16px;  }

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card {
    background: var(--surface);
    box-shadow: 0 16px 40px var(--surface-shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.SplitLineItem {
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 12px 0;
}

.Split__parts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 8px;
}

.SplitLineItem__part {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

#splits_first > .SplitLineItem:not(:last-child),
#splits_rest > .SplitLineItem:not(:last-child) {
    border-bottom: 1px solid var(--divider);
}

.SplitLineItem .badge {
    flex-shrink: 0;
}

.SplitLineItem.deleted {
    text-decoration: line-through;
    opacity: 0.5;
}

.Split-date {
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.SettleList {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.SettleList-empty {
    padding: 32px 0;
}

.SettleRow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.025);
}

.modal.open {
    pointer-events: all;
    z-index: 99999;

    opacity: 1;
    transform: scale(1);
}

.modal {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    pointer-events: none;

    transform: scale(1.035);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;

    isolation: isolate;
}

.modal-container {
    width: 100%;
    height: 100%;

    overflow-y: auto;
    background: var(--creamsicle);
    color: var(--always-black);
}

.modal-content {
}

.top-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.center-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.toggle-open {
    display: none;
}

.toggle .toggle-open {
    display: inherit;
}

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

.display-none {
    display: none;
}

.actions {
    margin-top: 64px;
}

.bg {
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
}

.bg.size-full {
    position: fixed;
    transform: scale(1.2);
    isolation: isolate;
}

.bgmode-cover {
    background-size: cover;
    transform: scale(1.2);
}

.bgmode-contain {
    background-size: contain;
    transform: scale(1.2);
}

.bgmode-tile {
    background-position: center;
    background-size: auto;
}
.bgmode-tile.size-xs { background-size: 16px 16px; }

.bgblur-none { filter: none; }

.bgblur-hard { filter: blur(50px); }
.bgblur-hard.size-sm { filter: blur(25px); }
.bgblur-hard.size-xs { filter: blur(8px); }

.bgblur-soft { filter: blur(4px); }
.bgblur-soft.size-sm { filter: blur(2px); }
.bgblur-soft.size-xs { filter: blur(2px); }

.bgblur-none { filter: blur(0px); }

.bganim-lava {
    animation-duration: 3000s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: lavalamp;
    animation-timing-function: linear;
}

.spinner {
    width: 32px;
    height: 32px;
    margin: 64px auto;
    border-radius: 50%;
    /*border: 3px solid var(--surface-shadow2);*/
    border: 3px solid transparent;
    border-top-color: var(--black50);
    border-right-color: var(--black50);
    animation: spin 800ms linear infinite;
}

.spinner.delay-200 {
    opacity: 0;
    animation:
        spin 800ms linear infinite,
        spinner-appear 0s 200ms forwards;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-appear {
    to {
        opacity: 1;
    }
}

@keyframes lavalamp {
    0% {
        background-position: 0px 0px;
    }
    50% {
        background-position: 1000% -1000%;
    }
    100% {
        background-position: 0px 0px;
    }
}

@keyframes shimmer {
    0% {
        opacity: 0.1;
    }
    33% {
        opacity: 0.7;
    }

    66% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.1;
    }
}

.loading {
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: ease-in-out;
    opacity: 1;
    background-size: 800px 100%;
}

.loading:nth-child(1) {
    animation-delay: -0.66s;
}
.loading:nth-child(2) {
    animation-delay: -0.33s;
}
.loading:nth-child(3) {
    animation-delay: -0.0s;
}

.BackgroundImageSelect-swatches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.BackgroundModeSelect {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.BackgroundModeSelect select {
    width: auto;
    cursor: pointer;
    border-bottom: 2px solid var(--placeholder);
}

.BackgroundBlurSelect {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.BackgroundBlurSelect select {
    width: auto;
    cursor: pointer;
    border-bottom: 2px solid var(--placeholder);
}

.swatch {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 4px solid transparent;
    overflow: hidden;
}

.swatch-image {
    position: absolute;
    inset: -8px;
    background-size: cover;
    background-position: center;
}

.swatch.selected {
    border-color: var(--black);
}

.CoverPhotoUpload {
}

.CoverPhotoUpload-content {
    display: flex;
    justify-content: center;
}

.CoverPhotoUpload-preview {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 160px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button.size-sm {
    width: 24px;
    height: 24px;
    font-size: 16px;
}

.CoverPhotoUpload.uploading {
    opacity: 0.5;
    pointer-events: none;
}

.cover-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.cover-photo img {
    max-width: 100%;
    width: 100%;
    max-height: 320px;
    border-radius: 16px;
    object-fit: cover;
}

.Hero {
}

.RecentEvents-empty {
    padding: 48px 32px;
    border-radius: 24px;
    background: var(--surface);
    text-align: center;
}

.RecentEvents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.RecentEventCard {
    position: relative;
    z-index: 1;
    
    display: block;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-align: left;
    color: var(--always-white);
}

.RecentEventCard .bg {
    transition: transform 0.2s;
}

.RecentEventCard:hover .bg {
    transform: scale(1.05);
}

.RecentEventCard.click:hover {
    opacity: 1;
}

.RecentEventCard-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 100%);
}

.RecentEventCard-emoji {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
}

.RecentEventCard-name {
    font-size: 20px;
}

.RecentEventCard-remove {
    position: absolute;
    z-index: 1;
    top: 12px;
    right: 12px;

    width: 32px;
    height: 32px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black50);
    color: var(--white);
    font-size: 14px;

    cursor: pointer;
    opacity: 0;
    transition: opacity 0.15s, background 0.15s;
}

.RecentEventCard:hover .RecentEventCard-remove,
.RecentEventCard-remove:focus {
    opacity: 1;
}

.RecentEventCard-remove:hover {
    background: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 640px) {
    .RecentEventCard-remove {
        opacity: 1;
    }
}

.toasts {
    position: fixed;
    left: 50%;
    bottom: 32px;
    z-index: 999999;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 8px;

    pointer-events: none;
    width: 100%;
    padding: 0 16px;
}

.toast {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 32px;
    max-width: 480px;
    text-align: center;

    background: var(--black);
    color: var(--white);
    pointer-events: all;

    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s;
}

.toast.error {
    background: var(--red);
    color: var(--white);
}

.toast.open {
    opacity: 1;
    transform: translateY(0);
}

.markdown {
    line-height: 1.5;
}

.markdown p, .markdown ul {
    margin-bottom: 16px;
}

.markdown h1 {
    font-size: 48px;
    font-weight: 400;
}

.markdown h2 {
    font-size: 32px;
    font-weight: 400;
}

.markdown h3 {
    font-size: 20px;
    font-weight: 400;
}

.markdown h4 {
    font-size: 16px;
    font-weight: 400;
}

.markdown h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
}


@media screen and (min-width: 641px) {
    .hide-desktop {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .hide-mobile {
        display: none;
    }

    .h1 {
        font-size: 48px;
    }

    .h2 {
        font-size: 32px;
    }

    .h3 {
        font-size: 24px;
    }

    .h4 {
        font-size: 16px;
    }

    .h5 {
        font-size: 13px;
    }


    .button {
        min-width: 48px;
        min-height: 40px;
    }

    .button.size-lg {
        font-size: 22px;
        min-width: 160px;
        min-height: 54px;
    }

    .pad-16 {
        padding: 8px;
    }

    .pad-32 {
        padding: 16px;
    }

    .pad-64 {
        padding: 32px;
    }

    .badge {
        padding: 0 16px;
    }

    .tab__header {
        margin-bottom: 32px;
    }

    .tab__button {
        min-width: 120px !important;
    }

    .swatch {
        position: relative;
        width: 64px;
        height: 64px;
    }

    .SplitLineItem {
        flex-direction: column;
        align-items: center;
    }

    .Split__parts {
        flex-direction: column;
        align-items: center;
    }

    .Split-date {
        margin-left: inherit;
    }
}