:root {
    --retour-brand-color-1: #05386b;
    --retour-brand-color-2: #00dd8d;

    --retour-brand-color-1-light: color-mix(in srgb, var(--retour-brand-color-1) 70%, white 30%);
    --retour-brand-color-1-dark: color-mix(in srgb, var(--retour-brand-color-1) 80%, black 20%);
    --retour-brand-color-1-alpha: color-mix(in srgb, var(--retour-brand-color-1) 10%, transparent 90%);

    --retour-brand-color-2-light: color-mix(in srgb, var(--retour-brand-color-2) 70%, white 30%);
    --retour-brand-color-2-dark: color-mix(in srgb, var(--retour-brand-color-2) 80%, black 20%);
    --retour-brand-color-2-alpha: color-mix(in srgb, var(--retour-brand-color-2) 10%, transparent 90%);
}

html,
body {
    font-family: "Baloo Chettan 2", sans-serif;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
p,
a,
strong,
em,
blockquote,
input,
textarea,
select {
    font-family: "Baloo Chettan 2", sans-serif;
    margin: 0;
    padding: 0;
}


.desktop {
    display: block;
}


@media screen and (max-width: 1200px) {
    .desktop {
        display: none;
    }
}

.mobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    .mobile {
        display: block;
    }
}

#tiddy {
    position: relative;
    background-color: #FEFBF6;
}

.retourportal {
    height: 100dvh;

    .container,
    .row {
        height: 100%;
    }
}

.retourportal.not_home {

    .retourportal_content {
        justify-content: flex-start;
    }

    .retour_header {
        margin-bottom: 48px;
        margin-top: 80px;
    }
}

.retourportal_content {
    background-color: rgba(255, 255, 255, 0.80);
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}


.retour_header {
    margin-bottom: 120px;
    display: flex;
    justify-content: center;

    img {
        height: 240px;
    }

    @media (max-width: 1200px) {
        img {
            height: 180px;
        }
    }
}

.products_form {
    width: 100%;
}

.retour_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;

    .retour_title {
        color: rgba(0, 0, 0, 0.87);
        text-align: center;
        font-size: 32px;
        font-style: normal;
        font-weight: 800;
        line-height: 32px;
        text-transform: uppercase;
    }

    .retour_text {
        color: rgba(0, 0, 0, 0.87);
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
    }
}

.retour_form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 64px;

    .form_item {
        display: flex;
        flex-direction: column;
        gap: 4px;

        label {
            color: rgba(0, 0, 0, 0.87);
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            text-transform: uppercase;
        }

        input {
            display: flex;
            width: 468px;
            height: 32px;
            padding: 0 16px;
            align-items: center;
            border-radius: 4px;
            border: 1px solid rgba(0, 0, 0, 0.38);
            background: #FFF;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 1px;
        }

        input::placeholder {
            overflow: hidden;
            color: rgba(0, 0, 0, 0.60);
            text-overflow: ellipsis;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 1px;
        }

        @media (max-width: 1200px) {
            input {
                width: 100%;
            }
        }
    }
}

.retour_buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: center;

    a,
    button {
        text-decoration: none;
        padding: 8px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-radius: 8px;

        font-size: var(--Font-Size-Other-Button, 14px);
        font-style: normal;
        font-weight: 600;
        line-height: 16px;
        letter-spacing: 1.25px;
        outline: none;
        border: none;
        cursor: pointer;
        width: 100%;
    }

    a.secondary,
    button.secondary {
        color: rgba(0, 0, 0, 0.87);
        background: var(--retour-brand-color-2);
    }

    button.primary {
        color: rgba(255, 255, 255, 0.87);
        background: var(--retour-brand-color-1);
    }
}

.retour_buttons.products {
    margin-top: 16px;

    a,
    button {
        padding: 12px;
    }
}

.retour_products {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.38);

    .top {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .order {
            color: rgba(0, 0, 0, 0.87);
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 800;
            line-height: 32px;
            text-transform: uppercase;
        }

        .date {
            color: rgba(0, 0, 0, 0.60);
            text-align: right;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            text-transform: uppercase;
        }
    }

    .products {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 16px;

        .product {
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.38);
            padding: 8px;
            position: relative;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            width: 22%;
            height: 275px;

            .title {

                border-radius: 4px;
                background: #b89a81;
                padding: 4px 8px;

                p {
                    color: #fff;
                    font-size: 13px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 16px;
                    text-align: center;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    width: 100%;
                }
            }

            .bottom {
                display: flex;
                flex-direction: column;
                gap: 4px;

                .details {
                    display: flex;
                    justify-content: space-between;

                    .count,
                    .size,
                    .price {
                        border-radius: 4px;
                        background: #b89a81;
                        padding: 4px 8px;
                        color: #fff;

                        span {
                            font-size: 13px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 16px;
                        }
                    }
                }

                .product_select {
                    border-radius: 4px;
                    background: #b89a81;
                    padding: 6px 8px;
                    color: #fff;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 16px;
                    text-decoration: none;
                    text-align: center;
                    border: none;
                    cursor: pointer;
                    transition: background-color 0.2s ease;
                }

                .product_select.selected {
                    background: var(--retour-brand-color-2);
                    color: #7fdb7f;
                }

                .product_select.selected span {
                    color: rgba(0, 0, 0, 0.87);
                }

                .product_select.selected:hover {
                    background: var(--retour-brand-color-2-light);
                }
            }

            .select_details {
                display: none;
                margin-top: 8px;
                padding: 8px;
                border-radius: 4px;
                background: rgba(255, 255, 255, 0.9);
                border: 1px solid rgba(0, 0, 0, 0.1);

                .details {
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                    margin-bottom: 8px;

                    &:last-child {
                        margin-bottom: 0;
                    }

                    label {
                        color: rgba(0, 0, 0, 0.87);
                        font-size: 12px;
                        font-weight: 600;
                        text-transform: uppercase;
                    }

                    input {
                        padding: 4px 8px;
                        border: 1px solid rgba(0, 0, 0, 0.38);
                        border-radius: 4px;
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

.retour_product_card {
    border-radius: 16px;
    background: #FFF;
    padding: 16px;
    display: flex;
    gap: 16px;

    .product_image {
        width: 215px;
        height: auto;
        padding: 8px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.38);
        display: flex;
        align-items: flex-end;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;

        .details {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;

            .size,
            .price {
                border-radius: 4px;
                background: rgba(255, 255, 255, 0.87);
                padding: 4px 8px;

                span {
                    color: rgba(0, 0, 0, 0.87);
                    font-size: 13px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 16px;
                }
            }
        }
    }

    .product_right {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .product_retour_information {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;

        .primary {
            border-radius: 8px;
            padding: 8px 16px;
            color: rgba(255, 255, 255, 0.87);
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            letter-spacing: 1.25px;
            width: max-content;
            background: var(--retour-brand-color-1);
            outline: none;
            cursor: pointer;
            border: 2px solid var(--retour-brand-color-1);
            margin-left: auto;
        }

        .item {
            display: flex;
            align-items: center;
            justify-content: space-between;

            p {
                color: rgba(0, 0, 0, 0.87);
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px;
                letter-spacing: 1px;
            }

            input,
            select,
            textarea {
                border-radius: 4px;
                border: 1px solid rgba(0, 0, 0, 0.38);
                background: #FFF;
            }

            select,
            textarea::placeholder {
                color: rgba(0, 0, 0, 0.60);
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 12px;
                letter-spacing: 1px;
            }

            select,
            textarea {
                width: 250px;
            }

            input[type="number"] {
                padding: 6px 0;
                width: 40px;
                text-align: center;
            }

            input[type="text"] {
                padding: 6px 8px;
                width: 250px;
            }

            select {
                padding: 2px 4px 2px 8px;
            }

            textarea {
                padding: 8px 8px 2px 8px;
                height: 75px;
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 12px;
                letter-spacing: 1px;
            }
        }

        .item.toelichting {
            align-items: flex-start;
        }
    }

    .product_information {
        display: flex;
        flex-direction: column;

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

            .close {
                cursor: pointer;
            }
        }

        .product_title {
            overflow: hidden;
            color: rgba(0, 0, 0, 0.87);
            text-overflow: ellipsis;
            font-size: 21px;
            font-style: normal;
            font-weight: 700;
            line-height: 21px;
            margin-bottom: 8px;
        }

        .sku {
            overflow: hidden;
            color: rgba(0, 0, 0, 0.60);
            text-overflow: ellipsis;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 14px;
            margin-bottom: 4px;
        }
    }
}

.spacing {
    padding: 0;
}

.retour_selected_products {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 16px;

    .top {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .order {
            color: rgba(0, 0, 0, 0.87);
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 800;
            line-height: 32px;
            text-transform: uppercase;
        }
    }

    .products {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 16px;

        .product {
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.38);
            position: relative;
            display: flex;
            width: 50%;
            height: 275px;

            .left {
                width: 40%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 8px;
                border-top-left-radius: 8px;
                border-bottom-left-radius: 8px;
            }

            .right {
                width: 60%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 8px;

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

                .alert {
                    padding: 8px;
                    border-radius: 8px;
                    background: rgba(255, 91, 91, 0.40);

                    .reason {
                        color: #BE3A3A;
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 700;
                        line-height: 16px;
                    }

                    p {
                        color: #BE3A3A;
                        font-size: 13px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 16px;
                    }
                }

                .reason_content {
                    padding: 8px;

                    p {
                        color: rgba(0, 0, 0, 0.87);
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 16px;
                    }
                }
            }

            .product_select {
                border-radius: 4px;
                padding: 6px 8px;
                color: var(--retour-brand-color-1);
                border: 1px solid var(--retour-brand-color-1);
                font-size: 14px;
                font-style: normal;
                font-weight: 700;
                line-height: 16px;
                text-decoration: none;
                text-align: center;
                background: transparent;
                cursor: pointer;
                transition: all 0.2s ease;
            }

            .product_select:hover {
                background: var(--retour-brand-color-1-alpha);
            }

            .product_select.selected {
                background: var(--retour-brand-color-1);
                color: rgba(255, 255, 255, 0.87);
            }

            .product_select.selected span {
                color: rgba(255, 255, 255, 0.87);
            }

            .product_select.selected:hover {
                background: var(--retour-brand-color-1-dark);
            }
        }

        .select_details {
            display: none;
            margin-top: 8px;
            padding: 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.1);

            .details {
                display: flex;
                flex-direction: column;
                gap: 4px;
                margin-bottom: 8px;

                &:last-child {
                    margin-bottom: 0;
                }

                label {
                    color: rgba(0, 0, 0, 0.87);
                    font-size: 12px;
                    font-weight: 600;
                    text-transform: uppercase;
                }

                input {
                    padding: 4px 8px;
                    border: 1px solid rgba(0, 0, 0, 0.38);
                    border-radius: 4px;
                    font-size: 14px;
                }
            }
        }


        .title {

            border-radius: 4px;
            background: rgba(0, 0, 0, 0.87);
            padding: 4px 8px;

            p {
                color: rgba(255, 255, 255, 0.87);
                font-size: 13px;
                font-style: normal;
                font-weight: 700;
                line-height: 16px;
                text-align: center;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                width: 100%;
            }
        }

        .bottom {
            display: flex;
            flex-direction: column;
            gap: 4px;

            .details {
                display: flex;
                justify-content: space-between;

                .count,
                .size,
                .price {
                    border-radius: 4px;
                    background: #b89a81;
                    padding: 4px 8px;
                    color: #fff;

                    span {
                        font-size: 13px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 16px;
                    }
                }
            }
        }
    }
}

.siu-modal {
    justify-content: center;
    align-items: center;
}

.siu-modal .siu-modal-box {
    width: max-content;
    max-width: 660px;
    max-height: 90vh;
    border-radius: 16px;
}

.retour_address_content {
    width: 100%;

    .form_item {
        display: flex;
        flex-direction: column;
        width: 100%;

        label {
            color: rgba(0, 0, 0, 0.87);
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            text-transform: uppercase;
        }

        input,
        select {
            border-radius: 4px;
            border: 1px solid rgba(0, 0, 0, 0.38);
            background: #FFF;
            padding: 10px 16px;

            text-overflow: ellipsis;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 1px;
        }

        input::placeholder,
        select {
            overflow: hidden;
            color: rgba(0, 0, 0, 0.60);
            text-overflow: ellipsis;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 1px;
        }
    }

    .top {
        display: flex;
        flex-direction: column;
        gap: 8px;

        .header {
            color: rgba(0, 0, 0, 0.87);
            font-size: 21px;
            font-style: normal;
            font-weight: 700;
            line-height: 32px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .double {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;

            @media (max-width: 1200px) {
                flex-direction: column;
            }

            input {
                width: 318px;
            }
        }
    }

    .bottom {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;

        .street {
            input {
                width: 318px;
            }
        }

        .huisnummer,
        .toevoeging {
            width: 140px;
        }

        .double {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;

            @media (max-width: 1200px) {
                flex-direction: column;
            }
        }

        .header {
            color: rgba(0, 0, 0, 0.87);
            font-size: 21px;
            font-style: normal;
            font-weight: 700;
            line-height: 32px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .trouble {
            width: 100%;

            input {
                width: 130px;
            }
        }

        .postcode {
            width: 105px;
        }

        .city {
            width: 165px;
        }
    }
}

.retour_shipping_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;

    .header {
        color: rgba(0, 0, 0, 0.87);
        font-size: 21px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        text-transform: uppercase;
    }

    .algemene_voorwaarden {
        color: var(--Text---medium, rgba(0, 0, 0, 0.60));
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        text-transform: uppercase;
    }

    .shipping_methods {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;

        .method {
            width: 41%;
            border-radius: 16px;
            background: #FAFAFA;
            padding: 16px 24px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 2px solid transparent;

            .method_top {
                display: flex;
                align-items: center;
                justify-content: space-between;

                .method_header {
                    color: rgba(0, 0, 0, 0.87);
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 800;
                    line-height: 16px;
                    text-transform: uppercase;
                }
            }

            .method_content {
                display: flex;
                align-items: center;
                gap: 16px;

                .transporter_img {
                    width: 46px;
                    height: 46px;
                }

                .content_inner {
                    display: flex;
                    flex-direction: column;

                    .title {
                        color: rgba(0, 0, 0, 0.87);
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 800;
                        line-height: 16px;
                        text-transform: uppercase;
                    }

                    .location,
                    .print {
                        display: flex;
                        align-items: center;
                        gap: 4px;

                        span {
                            color: var(--Text---medium, rgba(0, 0, 0, 0.60));
                            font-size: 14px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 16px;
                            text-transform: uppercase;
                        }
                    }
                }
            }

            input[type="radio"] {
                display: none;
            }
        }

        .method:hover {
            background: #F0F0F0;
            transform: translateY(-2px);
        }

        .method.selected {
            border: 2px solid var(--retour-brand-color-1);

            .check {
                display: block !important;
            }
        }

        .method.selected:hover {
            background: #F0F0F0;
        }
    }
}

.retour_success_content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;

    .title {
        color: rgba(0, 0, 0, 0.87);
        text-align: center;
        font-size: 32px;
        font-style: normal;
        font-weight: 800;
        line-height: 32px;
        text-transform: uppercase;
    }

    .text {
        color: rgba(0, 0, 0, 0.87);
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        justify-content: center;
        align-items: center;

        a {
            width: 424px;

            @media (max-width: 1200px) {
                width: 100%;
            }
        }

        .primary {
            border-radius: 8px;
            background: var(--retour-brand-color-1);
            padding: 8px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
            height: 24px;

            color: rgba(255, 255, 255, 0.87);
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            letter-spacing: 1.25px;
        }

        .secondary {
            border-radius: 8px;
            background: var(--retour-brand-color-2);
            padding: 8px 16px;
            text-decoration: none;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;

            color: rgba(0, 0, 0, 0.87);
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            letter-spacing: 1.25px;
        }
    }
}


.retourportal_mobile {
    .retourportal_content {
        padding: 50px 20px;
        display: block !important;
        height: unset !important;
    }

    .retour_header {
        margin-bottom: 35px;
    }

    form {
        width: 100%;

        input {
            width: unset !important;
        }

        .retour_form {
            margin-bottom: 32px
        }
    }

    .retour_buttons {
        flex-direction: column;
    }

    .products_page {
        .retour_header {
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: 80%;
            }
        }

        .retour_products {
            border-bottom: none;

            >.top {
                flex-direction: column;
                align-items: flex-start;
                border-bottom: 1px solid rgba(0, 0, 0, 0.38);
                padding-bottom: 16px;
            }

            .products {
                flex-direction: column;

                .product {
                    width: 100%;
                    height: 500px;
                    box-sizing: border-box;
                }
            }
        }

        .retour_buttons.products {
            flex-direction: row;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.90);
            padding: 16px;
            box-sizing: border-box;
            border-top: 1px solid rgba(0, 0, 0, 0.38);
        }

        .retour_selected_products {
            background: #F3F3F3;
            position: sticky;
            top: 0;
            z-index: 99999;
            padding-top: 0;

            .product {
                flex-direction: row;
                height: max-content;
                height: max-content !important;
            }

            .left {
                object-fit: contain !important;
                width: 93px;
            }

            .right {
                width: unset !important;
                gap: 10px;
            }

            .alert {
                width: 100%;
                box-sizing: border-box;
                display: flex;
                align-items: center;
                gap: 8px;
            }
        }
    }

    .adress {
        .retour_header {
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: 80%;
            }
        }

        .double {
            input {
                width: 100%;
                box-sizing: border-box;
            }

            .double {
                width: 100%;
                box-sizing: border-box;
            }
        }

        .method {
            width: 100%;
            box-sizing: border-box;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .method:hover {
            background: #F0F0F0;
        }

        .buttons {
            a {
                width: 100%;
            }
        }
    }
}

.spacing.mobile {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;

    .retour_product_card {
        .product_image {
            width: 100%;
            box-sizing: border-box;
            height: 280px;
        }

        .details {
            justify-content: center;
            gap: 16px;
        }

        .item.reden,
        .item.toelichting {
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
        }

        .primary {
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }
    }
}