/* =========================================================
   DOTS MEDIA
   MODULAR BOOTH PAGE
   UPDATED TO MATCH CUSTOM BOOTH WIDTH + TYPOGRAPHY
========================================================= */


/* =========================================================
   PAGE ROOT
========================================================= */

.modular-booth-page {
    width: 100%;
    margin: 0;
    padding: 0;

    background: #050403;
    color: #ffffff;
}

.modular-booth-content {
    position: relative;

    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #050403;
    color: #ffffff;

    box-sizing: border-box;
}

.modular-booth-content *,
.modular-booth-content *::before,
.modular-booth-content *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   MATCHED WITH CUSTOM BOOTH
========================================================= */

.modular-booth-content .mb-container {
    width: min(1400px, calc(100% - 120px));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   COMMON
========================================================= */

.modular-booth-content .mb-eyebrow {
    position: relative;
    display: inline-block;

    margin: 0 0 14px;

    color: #ff7a1a;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.modular-booth-content .mb-eyebrow::before {
    content: "";

    display: inline-block;

    width: 4px;
    height: 4px;

    margin-right: 7px;

    vertical-align: middle;

    background: #ff7a1a;
    border-radius: 50%;
}

.modular-booth-content h1,
.modular-booth-content h2,
.modular-booth-content h3,
.modular-booth-content p {
    margin-top: 0;
}

.modular-booth-content img {
    display: block;

    width: 100%;
    max-width: 100%;
}

.modular-booth-content a {
    text-decoration: none;
}

.modular-booth-content button,
.modular-booth-content input,
.modular-booth-content select,
.modular-booth-content textarea {
    font-family: inherit;
}


/* =========================================================
   HERO
========================================================= */

.modular-booth-content .mb-hero {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid #161616;
}

.modular-booth-content .mb-hero-bg {
    position: absolute;
    inset: 0;

    background:
        url("../images/modular-booth/modular-booth-hero.jpg")
        center center / cover no-repeat;

    transform: scale(1.01);
}

.modular-booth-content .mb-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .88) 0%,
            rgba(0, 0, 0, .70) 48%,
            rgba(0, 0, 0, .35) 100%
        ),
        linear-gradient(
            0deg,
            #050403 0%,
            rgba(5, 4, 3, .05) 55%,
            rgba(5, 4, 3, .15) 100%
        );
}

.modular-booth-content .mb-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 680px;

    padding: 120px 0 90px;
}

.modular-booth-content .mb-hero-content h1 {
    max-width: 650px;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 5vw, 68px);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -2px;

    text-transform: uppercase;
}

.modular-booth-content .mb-hero-content h1 span {
    color: #ff7a1a;
}

.modular-booth-content .mb-hero-content > p {
    max-width: 520px;

    margin: 0 0 32px;

    color: #a9a9a9;

    font-size: 16px;
    line-height: 1.75;
}

.modular-booth-content .mb-hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;
}

.modular-booth-content .mb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 14px 25px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .5px;
    line-height: 1;

    text-transform: uppercase;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.modular-booth-content .mb-btn-primary {
    gap: 7px;

    color: #1a0f08;
    background: #ff7a1a;

    border: 1px solid #ff7a1a;
}

.modular-booth-content .mb-btn-primary span {
    color: #1a0f08;
}

.modular-booth-content .mb-btn-primary:hover {
    color: #1a0f08;

    background: #ff8d38;

    transform: translateY(-2px);
}

.modular-booth-content .mb-btn-outline {
    color: #ffffff;
    background: transparent;

    border: 1px solid #3a3a3a;
}

.modular-booth-content .mb-btn-outline:hover {
    color: #ffffff;

    background: rgba(255, 122, 26, .05);

    border-color: #ff7a1a;

    transform: translateY(-2px);
}


/* =========================================================
   STATEMENT
========================================================= */

.modular-booth-content .mb-statement {
    padding: 100px 0;

    background: #050505;

    border-bottom: 1px solid #141414;
}

.modular-booth-content .mb-statement-grid {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 100px;

    align-items: start;
}

.modular-booth-content .mb-statement-title h2 {
    max-width: 430px;

    margin: 0;

    color: #ffffff;

    font-size: 31px;
    font-weight: 800;

    line-height: 1.04;
    letter-spacing: -.8px;

    text-transform: uppercase;
}

.modular-booth-content .mb-statement-title h2 span {
    color: #ff7a1a;
}

.modular-booth-content .mb-orange-line {
    display: block;

    width: 38px;
    height: 2px;

    margin-top: 20px;

    background: #ff7a1a;
}

.modular-booth-content .mb-statement-copy {
    max-width: 700px;
}

.modular-booth-content .mb-statement-copy p {
    margin: 0 0 18px;

    color: #969696;

    font-size: 16px;
    line-height: 1.9;
}

.modular-booth-content .mb-statement-note {
    margin-top: 24px;

    color: #ff7a1a;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .4px;

    text-transform: uppercase;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.modular-booth-content .mb-section-heading {
    margin-bottom: 30px;
}

.modular-booth-content .mb-section-heading h2 {
    max-width: 900px;

    margin: 0;

    color: #ffffff;

    font-size: 27px;
    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -.7px;

    text-transform: uppercase;
}

.modular-booth-content .mb-section-heading h2 span {
    color: #ff7a1a;
}


/* =========================================================
   SPACE / FEATURES
========================================================= */

.modular-booth-content .mb-space {
    padding: 105px 0;

    background: #000000;

    border-bottom: 1px solid #141414;
}

.modular-booth-content .mb-feature-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.modular-booth-content .mb-feature-card {
    min-height: 145px;

    padding: 22px;

    background: #080808;

    border: 1px solid #202020;
    border-radius: 5px;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.modular-booth-content .mb-feature-card:hover {
    background: #0b0b0b;

    border-color: #633a12;

    transform: translateY(-5px);
}

.modular-booth-content .mb-feature-number {
    margin-bottom: 20px;

    color: #ff7a1a;

    font-size: 16px;
    font-weight: 800;

    line-height: 1;
}

.modular-booth-content .mb-feature-card h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.3;

    text-transform: uppercase;
}

.modular-booth-content .mb-feature-card p {
    max-width: 220px;

    margin: 0;

    color: #707070;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WORK
========================================================= */

.modular-booth-content .mb-work {
    padding: 105px 0;

    background: #000000;

    border-bottom: 1px solid #141414;
}

.modular-booth-content .mb-work-heading {
    margin-bottom: 30px;
}

.modular-booth-content .mb-work-heading h2 {
    max-width: 850px;
}

.modular-booth-content .mb-work-heading p {
    max-width: 650px;

    margin: 10px 0 0;

    color: #777777;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   GALLERY
========================================================= */

.modular-booth-content .mb-gallery {
    display: grid;

    gap: 9px;
}

.modular-booth-content .mb-gallery-item {
    position: relative;

    overflow: hidden;

    background: #080808;

    border: 1px solid #181818;
    border-radius: 5px;
}

.modular-booth-content .mb-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.modular-booth-content .mb-gallery-item:hover img {
    transform: scale(1.05);
}


/* ROW ONE */

.modular-booth-content .mb-gallery-row-one {
    grid-template-columns: 1.35fr .65fr;
}

.modular-booth-content .mb-gallery-row-one .mb-gallery-item {
    height: 360px;
}


/* ROW TWO */

.modular-booth-content .mb-gallery-row-two {
    grid-template-columns: .7fr 1.3fr;

    margin-top: 9px;
}

.modular-booth-content .mb-gallery-row-two .mb-gallery-item {
    height: 270px;
}


/* ROW THREE */

.modular-booth-content .mb-gallery-row-three {
    margin-top: 9px;
}

.modular-booth-content .mb-gallery-row-three .mb-gallery-item {
    width: 100%;
    height: 330px;
}


/* ROW FOUR */

.modular-booth-content .mb-gallery-row-four {
    grid-template-columns: repeat(3, 1fr);

    margin-top: 9px;
}

.modular-booth-content .mb-gallery-row-four .mb-gallery-item {
    height: 210px;
}


/* =========================================================
   PROCESS
========================================================= */

.modular-booth-content .mb-process {
    padding: 100px 0;

    background: #050505;

    border-bottom: 1px solid #141414;
}

.modular-booth-content .mb-process-grid {
    position: relative;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 25px;
}

.modular-booth-content .mb-process-grid::before {
    content: "";

    position: absolute;

    top: 7px;
    left: 0;
    right: 0;

    height: 1px;

    background: #ff7a1a;

    opacity: .8;
}

.modular-booth-content .mb-process-item {
    position: relative;

    padding-top: 28px;
}

.modular-booth-content .mb-process-item::before {
    content: "";

    position: absolute;

    top: 2px;
    left: 0;

    width: 10px;
    height: 10px;

    background: #050505;

    border: 1px solid #ff7a1a;
    border-radius: 50%;
}

.modular-booth-content .mb-process-number {
    margin-bottom: 10px;

    color: #ff7a1a;

    font-size: 16px;
    font-weight: 800;

    line-height: 1;
}

.modular-booth-content .mb-process-item h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.3;

    text-transform: uppercase;
}

.modular-booth-content .mb-process-item p {
    max-width: 175px;

    margin: 0;

    color: #707070;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PROJECT / CONTACT
   MATCHED WITH CUSTOM BOOTH
========================================================= */

.modular-booth-content .mb-project {
    width: 100%;

    padding: 100px 0;

    background: #050505;

    border-bottom: 1px solid #141414;
}

.modular-booth-content .mb-project .mb-container {
    width: min(1400px, calc(100% - 120px));

    margin-left: auto;
    margin-right: auto;
}

.modular-booth-content .mb-project-grid {
    display: grid;

    grid-template-columns: 1fr 310px;

    gap: 80px;

    align-items: start;

    width: 100%;
}


/* =========================================================
   FORM AREA
========================================================= */

.modular-booth-content .mb-form-area {
    min-width: 0;
    width: 100%;
}

.modular-booth-content .mb-form-area h2 {
    max-width: 700px;

    margin: 0;

    color: #ffffff;

    font-size: 27px;
    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -.7px;

    text-transform: uppercase;
}

.modular-booth-content .mb-form-area h2 span {
    color: #ff7a1a;
}

.modular-booth-content .mb-form-intro {
    max-width: 650px;

    margin: 10px 0 25px;

    color: #747474;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.modular-booth-content .mb-form {
    width: 100%;

    margin: 0;
    padding: 0;
}

.modular-booth-content .mb-form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px;

    width: 100%;
}

.modular-booth-content .mb-field {
    display: flex;
    flex-direction: column;

    min-width: 0;

    gap: 6px;
}

.modular-booth-content .mb-field-full {
    grid-column: 1 / -1;
}

.modular-booth-content .mb-field label {
    display: block;

    margin: 0;

    color: #a1a1a1;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.3;
}

.modular-booth-content .mb-field label span {
    color: #ff7a1a;
}


/* =========================================================
   FORM INPUTS
========================================================= */

.modular-booth-content .mb-field input,
.modular-booth-content .mb-field select,
.modular-booth-content .mb-field textarea {
    display: block;

    width: 100%;
    max-width: 100%;

    margin: 0;

    color: #a0a0a0;

    background: #070707;

    border: 1px solid #202020;
    border-radius: 5px;

    outline: none;

    font-family: inherit;
    font-size: 14px;

    box-shadow: none;

    transition:
        border-color .25s ease,
        background .25s ease,
        color .25s ease;
}

.modular-booth-content .mb-field input,
.modular-booth-content .mb-field select {
    height: 40px;

    padding: 0 12px;
}

.modular-booth-content .mb-field textarea {
    min-height: 95px;

    padding: 12px;

    resize: vertical;
}

.modular-booth-content .mb-field input::placeholder,
.modular-booth-content .mb-field textarea::placeholder {
    color: #4f4f4f;

    opacity: 1;
}

.modular-booth-content .mb-field select {
    color: #777777;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #777 50%
        ),
        linear-gradient(
            135deg,
            #777 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 15px) 16px,
        calc(100% - 10px) 16px;

    background-size: 5px 5px;

    background-repeat: no-repeat;
}

.modular-booth-content .mb-field input:focus,
.modular-booth-content .mb-field select:focus,
.modular-booth-content .mb-field textarea:focus {
    color: #ffffff;

    background: #090909;

    border-color: #ff7a1a;
}


/* =========================================================
   CHECKBOXES
========================================================= */

.modular-booth-content .mb-checkboxes {
    display: flex;

    flex-wrap: wrap;
    align-items: center;

    gap: 8px 15px;

    margin-top: 4px;

    padding: 0;
}

.modular-booth-content .mb-checkboxes .mb-check-item {
    display: inline-flex;

    flex: 0 0 auto;

    align-items: center;

    gap: 5px;

    margin: 0;

    color: #777777;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.4;

    cursor: pointer;
}

.modular-booth-content .mb-checkboxes .mb-check-item:hover {
    color: #b0b0b0;
}

.modular-booth-content .mb-checkboxes input {
    flex: 0 0 auto;

    width: 11px;
    height: 11px;

    margin: 0;
    padding: 0;

    accent-color: #ff7a1a;

    cursor: pointer;
}

.modular-booth-content .mb-checkboxes .mb-check-item span {
    color: inherit;
}


/* =========================================================
   SUBMIT
========================================================= */

.modular-booth-content .mb-submit {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    width: 100%;

    min-height: 42px;

    margin: 18px 0 0;

    padding: 12px 20px;

    color: #1a0f08;

    background: #ff7a1a;

    border: 0;
    border-radius: 999px;

    font-family: inherit;

    font-size: 16px;
    font-weight: 700;

    line-height: 1;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.modular-booth-content .mb-submit span {
    color: #1a0f08;
}

.modular-booth-content .mb-submit:hover {
    background: #ff8d38;

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(255, 122, 26, .15);
}


/* =========================================================
   CONTACT SIDEBAR
========================================================= */

.modular-booth-content .mb-contact {
    width: 100%;

    padding-top: 3px;
}

.modular-booth-content .mb-contact h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.2;
}

.modular-booth-content .mb-contact > p {
    margin: 0 0 22px;

    color: #707070;

    font-size: 16px;
    line-height: 1.8;
}

.modular-booth-content .mb-contact > p.mb-contact-description {
    margin-bottom: 30px;
}

.modular-booth-content .mb-contact-item {
    padding: 14px 0;

    border-top: 1px solid #1d1d1d;
}

.modular-booth-content .mb-contact-label {
    margin-bottom: 4px;

    color: #ff7a1a;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
    line-height: 1.4;

    text-transform: uppercase;
}

.modular-booth-content .mb-contact-item a,
.modular-booth-content .mb-contact-item strong {
    display: block;

    color: #b5b5b5;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.5;

    word-break: break-word;
}

.modular-booth-content .mb-contact-item a:hover {
    color: #ff7a1a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .modular-booth-content .mb-container,
    .modular-booth-content .mb-project .mb-container {
        width: min(100% - 60px, 900px);
    }

    .modular-booth-content .mb-statement-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .modular-booth-content .mb-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modular-booth-content .mb-project-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .modular-booth-content .mb-contact {
        max-width: 620px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .modular-booth-content .mb-container,
    .modular-booth-content .mb-project .mb-container {
        width: calc(100% - 40px);
    }


    /* HERO */

    .modular-booth-content .mb-hero {
        min-height: auto;

        align-items: flex-start;
    }

    .modular-booth-content .mb-hero-content {
        width: 100%;

        padding: 110px 0 70px;
    }

    .modular-booth-content .mb-hero-content h1 {
        max-width: 100%;

        font-size: clamp(36px, 10vw, 48px);

        line-height: 1.04;

        letter-spacing: -1px;

        margin-bottom: 22px;
    }

    .modular-booth-content .mb-hero-content > p {
        max-width: 100%;

        font-size: 13px;

        line-height: 1.8;

        margin-bottom: 28px;
    }

    .modular-booth-content .mb-hero-actions {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 11px;
    }

    .modular-booth-content .mb-btn {
        width: 100%;

        min-height: 50px;

        padding: 15px 20px;

        font-size: 10px;
    }


    /* STATEMENT */

    .modular-booth-content .mb-statement {
        padding: 70px 0;
    }

    .modular-booth-content .mb-statement-grid {
        display: flex;

        flex-direction: column;

        gap: 32px;
    }

    .modular-booth-content .mb-statement-title h2 {
        font-size: 24px;

        line-height: 1.08;
    }

    .modular-booth-content .mb-statement-copy p {
        font-size: 10px;

        line-height: 1.85;
    }


    /* SPACE */

    .modular-booth-content .mb-space {
        padding: 70px 0;
    }

    .modular-booth-content .mb-section-heading h2 {
        font-size: 23px;

        line-height: 1.1;
    }

    .modular-booth-content .mb-feature-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .modular-booth-content .mb-feature-card {
        min-height: auto;

        padding: 19px;
    }


    /* WORK */

    .modular-booth-content .mb-work {
        padding: 70px 0;
    }

    .modular-booth-content .mb-gallery-row-one,
    .modular-booth-content .mb-gallery-row-two {
        grid-template-columns: 1fr;
    }

    .modular-booth-content .mb-gallery-row-one .mb-gallery-item {
        height: 260px;
    }

    .modular-booth-content .mb-gallery-row-two .mb-gallery-item {
        height: 230px;
    }

    .modular-booth-content .mb-gallery-row-three .mb-gallery-item {
        height: 240px;
    }

    .modular-booth-content .mb-gallery-row-four {
        grid-template-columns: 1fr;
    }

    .modular-booth-content .mb-gallery-row-four .mb-gallery-item {
        height: 230px;
    }


    /* PROCESS */

    .modular-booth-content .mb-process {
        padding: 70px 0;
    }

    .modular-booth-content .mb-process-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 28px;

        padding-left: 28px;
    }

    .modular-booth-content .mb-process-grid::before {
        top: 0;
        bottom: 0;

        left: 4px;
        right: auto;

        width: 1px;
        height: auto;
    }

    .modular-booth-content .mb-process-item {
        padding-top: 0;
    }

    .modular-booth-content .mb-process-item::before {
        top: 0;

        left: -28px;
    }

    .modular-booth-content .mb-process-item p {
        max-width: 100%;
    }


    /* =====================================================
       PROJECT / CONTACT
    ===================================================== */

    .modular-booth-content .mb-project {
        padding: 70px 0;
    }

    .modular-booth-content .mb-project-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .modular-booth-content .mb-form-area h2 {
        font-size: 22px;

        line-height: 1.1;
    }

    .modular-booth-content .mb-form-intro {
        font-size: 13px;

        line-height: 1.8;

        margin: 10px 0 25px;
    }

    .modular-booth-content .mb-form-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .modular-booth-content .mb-field-full {
        grid-column: auto;
    }

    .modular-booth-content .mb-checkboxes {
        gap: 8px 15px;
    }

    .modular-booth-content .mb-contact {
        max-width: 100%;
    }

    .modular-booth-content .mb-contact h3 {
        font-size: 24px;
    }

    .modular-booth-content .mb-contact > p {
        font-size: 13px;

        line-height: 1.8;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .modular-booth-content .mb-container,
    .modular-booth-content .mb-project .mb-container {
        width: calc(100% - 30px);
    }


    /* HERO */

    .modular-booth-content .mb-hero-content {
        padding: 100px 0 60px;
    }

    .modular-booth-content .mb-hero-content h1 {
        font-size: 34px;

        line-height: 1.06;

        letter-spacing: -.8px;
    }

    .modular-booth-content .mb-hero-content > p {
        font-size: 12px;
    }


    /* HEADINGS */

    .modular-booth-content .mb-section-heading h2 {
        font-size: 21px;
    }

    .modular-booth-content .mb-statement-title h2 {
        font-size: 22px;
    }


    /* GALLERY */

    .modular-booth-content .mb-gallery-row-one .mb-gallery-item {
        height: 220px;
    }

    .modular-booth-content .mb-gallery-row-two .mb-gallery-item {
        height: 200px;
    }

    .modular-booth-content .mb-gallery-row-three .mb-gallery-item {
        height: 205px;
    }

    .modular-booth-content .mb-gallery-row-four .mb-gallery-item {
        height: 205px;
    }


    /* FORM */

    .modular-booth-content .mb-form-area h2 {
        font-size: 22px;
    }

    .modular-booth-content .mb-field input,
    .modular-booth-content .mb-field select {
        height: 40px;
    }

    .modular-booth-content .mb-field textarea {
        min-height: 110px;
    }

    .modular-booth-content .mb-checkboxes {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .modular-booth-content .mb-submit {
        min-height: 42px;

        font-size: 14px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .modular-booth-content *,
    .modular-booth-content *::before,
    .modular-booth-content *::after {

        scroll-behavior: auto !important;

        transition: none !important;

        animation: none !important;
    }

}