* {
    box-sizing: inherit;
}

body {
    box-sizing: border-box;

    margin: 0;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;

    color: var(--primary-text);
    background-color: var(--bodyBG);
}

/*:root {
    --focus-white: hsl(0, 0%, 100%);
    --primary-white: #F3F3F5;
    --secondary-white: #D1D1D6;

    --focus-black: #000000;
    --primary-black: #1c1c1e;
    --secondary-black: #2c2c2e;
    --tertiary-black: #3c3c3e;


    --primary-accent: #FF7E6B;
    --secondary-accent: rgba(255, 127, 107, 0.25);

    --primary-link: #3cc1ff;

    --warning: #E84F4F;
    --success: #34C759;
    --notice: #e8a645;
}

@media (prefers-color-scheme: light) {
    :root {
        --focus-background: #FFFFFF;
        --primary-background: #F3F3F5;
        --secondary-background: #D1D1D6;
        --tertiary-background: #C7C7CC;

        --product-background: #FFFFFF;

        --pre-header-background: #3c3c3e;

        --primary-navigation: rgba(255, 255, 255, 0.8);

        --footer-background: #1c1c1e;
        --footer-text: rgba(255, 255, 255, 0.5);

        --focus-text: #000000;
        --primary-text: #3c3c3e;
        --secondary-text: #636366;

        --focus-text-alt: #FFFFFF;
        --primary-text-alt: #F3F3F5;
        --secondary-text-alt: #D1D1D6;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --focus-background: #000000;
        --primary-background: #1c1c1e;
        --secondary-background: #2c2c2e;
        --tertiary-background: #3c3c3e;

        --product-background: #2c2c2e;

        --pre-header-background: #e5e5ea;

        --primary-navigation: rgba(0, 0, 0, 0.5);

        --footer-background: #1c1c1e;
        --footer-text: rgba(255, 255, 255, 0.5);

        --focus-text: #FFFFFF;
        --primary-text: #F3F3F5;
        --secondary-text: #D1D1D6;

        --focus-text-alt: #000000;
        --primary-text-alt: #3c3c3e;
        --secondary-text-alt: #636366;
    }
}
*/

:root {
    --bodyBG: #f3f3f3;
    --sectionBG: #F3F3F5;
    --headerBG: rgba(255, 255, 255, 0.8);
    --sidebarBG: rgba(255, 255, 255, 0.8);
    --sidebar-segmentedBG: rgba(204, 204, 204, 0.25);
    --toolbarBG: white;
    --toolbar-insetBG: #EFEFEF;
    --cardBG: rgba(255, 255, 255, 0.75);

    --primary-border: #CCCCCC;
    --secondary-border: #DCDCDC;

    --primary-text: #3c3c3e;
    --primary-text-alt: #f2f2f7;
    --secondary-text: #AEAEAE;

    --focus-accent: #FF9181;
    --primary-accent: #FF7E6B;

    --borderColor: #D1D1D6;

    --warning: #E84F4F;
    --success: #34C759;
    --notice: #e8a645;

    --primary-negative: #FF3135;
    --secondary-negative: rgba(255, 49, 52, 0.25);

    --primary-positive: #2EC04F;
    --secondary-positive: rgba(46, 192, 79, 0.25);
}

@media (prefers-color-scheme: dark) {
:root {
    --bodyBG: black;
    --sectionBG: #1c1c1e;
    --headerBG: rgba(28, 28, 30, 0.8);
    --sidebarBG: rgba(28, 28, 30, 0.8);
    --sidebar-segmentedBG: rgba(99, 99, 99, 0.25);
    --toolbarBG: black;
    --toolbar-insetBG: #2c2c2e;
    --cardBG: rgba(0, 0, 0, 0.75);

    --primary-border: #3c3c3e;
    --secondary-border: #2c2c2e;

    --primary-text: #e5e5ea;
    --primary-text-alt: #1c1c1e;
    --secondary-text: #646464;
}
}

@font-face {
    font-family: 'Super Shape';
    src: url('/ui/assets/fonts/SuperShape-PV9qE.ttf') format('truetype');
    font-display: swap;
}

.container {
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 478px) {
    .container {
        max-width: none;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: none;
    }
}

@media screen and (min-width: 991px) {
    .container {
        width: 75%;
        max-width: 1156px;
    }
}

@media screen and (min-width: 1440px) {
    .container {
        min-width: 1156px;
        max-width: 1440px;
    }
}

@media screen and (min-width: 1920px) {
    .container {
        min-width: 1280px;
        max-width: 1440px;
    }
}

.button {
    margin-top: 12px;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    min-width: 120px;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .button {
        font-size: 14px;
        min-width: 30px;
        padding: 7px 15px;
        line-height: 1.43;
    }
}

.button.prefer {
    background-color: var(--primary-accent);
    color: var(--primary-text-alt);
}

.button.nonprefer {
    background-color: var(--secondary-border);
    color: var(--warning);
}

.button.prefer.fill {
    width: 100%;
}

.button.nonprefer.fill {
    width: 100%;
}

#prefer.button {
    background-color: var(--primary-accent);
    color: white;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;

    gap: 6px;
}

.input-wrapper.split {
    flex-direction: row;
}

@media only screen and (max-width: 478px) {
    .input-wrapper.split {
    flex-direction: column;
}
}

@media only screen and (max-width: 478px) {
#city.input-wrapper {
    width: 100%;
}
#street1.input-wrapper {
    width: 100%;
}
#street2.input-wrapper {
    width: 100%;
}
#state.input-wrapper {
    width: 100%;
}
#zipCode.input-wrapper {
    width: 100%;
}
}

@media only screen and (min-width: 479px) {
#city.input-wrapper {
    width: 50%;
}
#street1.input-wrapper {
    width: 100%;
}
#street2.input-wrapper {
    width: 75%;
}
#state.input-wrapper {
    width: 25%;
}
#zipCode.input-wrapper {
    width: 30%;
}
}


.input {
    width: 100%;

    padding: 12px 24px;

    outline: none;
    border: 1px solid var(--borderColor);
    background-color: transparent;
}

.input-label {
    z-index: 5;

    font-size: 12px;

    margin-bottom: -14px;
    margin-left: 16px;
    padding: 0px 8px;

    background-color: var(--bodyBG);
}

.layout.content-wrapper {
    display: flex;
    flex-direction: column;
}

.page.content-wrapper {
    display: flex;
    flex-direction: column;

    margin: 0px 0px 12px 0px;

    gap: 12px;

}

.section.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: var(--sectionBG);
}

.section.content {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding: 24px 0px;
}