:root {
    --ceh-fq-orange: #ff8b1f;
    --ceh-fq-orange-dark: #ef7b0f;
    --ceh-fq-navy: #253c58;
    --ceh-fq-dark: #20262d;
    --ceh-fq-text: #182230;
    --ceh-fq-muted: #687383;
    --ceh-fq-line: #dfe4ea;
    --ceh-fq-soft: #f5f6f8;
    --ceh-fq-white: #ffffff;
}

#popmake-75,
.pum-container.popmake-75 {
    width: min(1180px, calc(100vw - 28px)) !important;
    max-width: 1180px !important;
    padding: 0 !important;
    border-radius: 16px !important;
    overflow: auto !important;
    max-height: 92vh !important;
    background: #fff !important;
}

#popmake-75 .pum-title,
.pum-container.popmake-75 .pum-title {
    display: none !important;
}

#popmake-75 .pum-content,
.pum-container.popmake-75 .pum-content {
    margin: 0 !important;
}

.ceh-fq,
.ceh-fq * {
    box-sizing: border-box;
}

.ceh-fq {
    width: 100%;
    color: var(--ceh-fq-text);
    background: var(--ceh-fq-white);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.45;
}

.ceh-fq button,
.ceh-fq input,
.ceh-fq select,
.ceh-fq textarea {
    font: inherit;
}

.ceh-fq-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--ceh-fq-dark);
    min-height: 76px;
}

.ceh-fq-tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: #9ca5af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 20px 14px 17px;
    cursor: pointer;
    position: relative;
    font-weight: 700;
    transition: color .2s ease, background .2s ease;
}

.ceh-fq-tab:hover {
    color: #fff;
    background: rgba(255,255,255,.03);
}

.ceh-fq-tab.is-active {
    color: #fff;
}

.ceh-fq-tab.is-active::after {
    content: "";
    position: absolute;
    left: 25%;
    right: 25%;
    bottom: 0;
    height: 3px;
    background: var(--ceh-fq-orange);
    border-radius: 3px 3px 0 0;
}

.ceh-fq-tab-icon {
    width: 25px;
    height: 25px;
    display: inline-flex;
}

.ceh-fq-tab-icon svg,
.ceh-fq-icon-input svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ceh-fq-body {
    padding: 30px 32px 28px;
    background: #fff;
}

.ceh-fq-panel,
.ceh-fq-step,
.ceh-fq-sea-mode {
    display: none;
}

.ceh-fq-panel.is-active,
.ceh-fq-step.is-active,
.ceh-fq-sea-mode.is-active {
    display: block;
}

.ceh-fq-route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-bottom: 28px;
}

.ceh-fq-label,
.ceh-fq label > span {
    display: block;
    margin: 0 0 7px;
    font-weight: 700;
    color: #283444;
}

.ceh-fq-inline-fields {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
}

.ceh-fq-inline-fields input:first-child {
    border-radius: 7px 0 0 7px !important;
}

.ceh-fq-inline-fields input:last-child {
    border-left: 0 !important;
    border-radius: 0 7px 7px 0 !important;
}

.ceh-fq input[type="text"],
.ceh-fq input[type="email"],
.ceh-fq input[type="tel"],
.ceh-fq input[type="number"],
.ceh-fq input[type="date"],
.ceh-fq select,
.ceh-fq textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--ceh-fq-text);
    background: #fff;
    border: 1px solid #cfd6dd !important;
    border-radius: 7px !important;
    outline: none;
    box-shadow: none !important;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.ceh-fq textarea {
    min-height: 92px;
    resize: vertical;
}

.ceh-fq input:focus,
.ceh-fq select:focus,
.ceh-fq textarea:focus {
    border-color: var(--ceh-fq-orange) !important;
    box-shadow: 0 0 0 3px rgba(255,139,31,.13) !important;
}

.ceh-fq .is-invalid {
    border-color: #d92d20 !important;
    box-shadow: 0 0 0 3px rgba(217,45,32,.08) !important;
}

.ceh-fq-section-title {
    font-size: 15px;
    font-weight: 800;
    color: #273240;
    margin: 0 0 12px;
}

.ceh-fq-cargo-item {
    background: var(--ceh-fq-soft);
    border: 1px solid #eaedf1;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}

.ceh-fq-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ceh-fq-remove-item {
    appearance: none;
    border: 0;
    background: transparent;
    color: #8a3b32;
    padding: 3px 0;
    cursor: pointer;
    font-size: 13px;
}

.ceh-fq-items .ceh-fq-cargo-item:only-child .ceh-fq-remove-item {
    visibility: hidden;
}

.ceh-fq-item-grid {
    display: grid;
    gap: 12px;
    align-items: end;
}

.ceh-fq-item-grid-parcel {
    grid-template-columns: .7fr repeat(3, 1fr) 1.25fr;
}

.ceh-fq-item-grid-pallet {
    grid-template-columns: 1.25fr repeat(5, 1fr);
}

.ceh-fq-add-item {
    appearance: none;
    border: 0;
    background: transparent;
    color: #0b67c2;
    padding: 7px 0;
    font-weight: 700;
    cursor: pointer;
}

.ceh-fq-choice-cards {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.ceh-fq-choice-cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ceh-fq-choice-cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ceh-fq-choice {
    position: relative;
    appearance: none;
    border: 1px solid #d6dce3 !important;
    background: #fff !important;
    min-height: 98px;
    border-radius: 8px;
    padding: 16px 14px 14px 42px;
    text-align: left;
    color: var(--ceh-fq-text) !important;
    cursor: pointer;
}

.ceh-fq-choice.is-active {
    border-color: var(--ceh-fq-orange) !important;
    background: #fffaf5 !important;
}

.ceh-fq-choice-radio {
    position: absolute;
    top: 19px;
    left: 15px;
    width: 18px;
    height: 18px;
    border: 1.7px solid #a5afb9;
    border-radius: 50%;
}

.ceh-fq-choice.is-active .ceh-fq-choice-radio {
    border: 5px solid var(--ceh-fq-orange);
}

.ceh-fq-choice strong,
.ceh-fq-choice small {
    display: block;
}

.ceh-fq-choice strong {
    font-size: 15px;
    margin-bottom: 4px;
}

.ceh-fq-choice small {
    color: var(--ceh-fq-muted);
    font-size: 13px;
}

.ceh-fq-road-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ceh-fq-sea-route {
    margin-top: 20px;
}

.ceh-fq-icon-input {
    display: flex;
    align-items: center;
    position: relative;
}

.ceh-fq-icon-input > span {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 20px;
    color: #4c5968;
    z-index: 2;
}

.ceh-fq-icon-input input {
    padding-left: 42px !important;
}

.ceh-fq-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.ceh-fq-actions-right {
    justify-content: flex-end;
}

.ceh-fq-primary,
.ceh-fq-secondary {
    appearance: none;
    min-height: 50px;
    border-radius: 7px !important;
    padding: 12px 24px;
    font-weight: 800;
    cursor: pointer;
    border: 0 !important;
    box-shadow: none !important;
}

.ceh-fq-primary {
    min-width: 220px;
    background: var(--ceh-fq-orange) !important;
    color: #fff !important;
}

.ceh-fq-primary:hover {
    background: var(--ceh-fq-orange-dark) !important;
}

.ceh-fq-primary:disabled {
    opacity: .6;
    cursor: wait;
}

.ceh-fq-secondary {
    background: #eef1f4 !important;
    color: #344054 !important;
}

.ceh-fq-contact-header {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.ceh-fq-contact-header h3,
.ceh-fq-success h3 {
    margin: 3px 0 0;
    font-size: 24px;
    color: var(--ceh-fq-navy);
}

.ceh-fq-eyebrow {
    color: var(--ceh-fq-orange-dark);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ceh-fq-summary {
    background: #f7f9fb;
    border: 1px solid #e3e8ee;
    border-radius: 9px;
    padding: 11px 14px;
    color: #485567;
    max-width: 54%;
}

.ceh-fq-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 18px;
}

.ceh-fq-full {
    grid-column: 1 / -1;
}

.ceh-fq-privacy {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    font-weight: 400 !important;
}

.ceh-fq-privacy input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--ceh-fq-orange);
    flex: 0 0 auto;
}

.ceh-fq-privacy span {
    margin: 0 !important;
    font-weight: 400 !important;
}

.ceh-fq-privacy a {
    color: #0b67c2;
}

.ceh-fq-success {
    text-align: center;
    padding: 54px 20px 58px;
}

.ceh-fq-success-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #e8f7ef;
    color: #16804a;
    font-size: 32px;
    line-height: 58px;
    font-weight: 800;
}

.ceh-fq-success p {
    max-width: 520px;
    margin: 12px auto 0;
    color: var(--ceh-fq-muted);
}

.ceh-fq-error {
    margin-top: 16px;
    padding: 11px 13px;
    border-radius: 7px;
    background: #fff2f0;
    color: #b42318;
    border: 1px solid #ffd4cf;
}

.ceh-fq-hp {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 900px) {
    #popmake-75,
    .pum-container.popmake-75 {
        width: calc(100vw - 18px) !important;
        max-height: 94vh !important;
    }

    .ceh-fq-body {
        padding: 22px 20px 20px;
    }

    .ceh-fq-tab {
        font-size: 13px;
        gap: 7px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .ceh-fq-item-grid-parcel,
    .ceh-fq-item-grid-pallet {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ceh-fq-choice-cards-3,
    .ceh-fq-road-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ceh-fq-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 0;
    }

    .ceh-fq-tab {
        min-height: 58px;
        justify-content: flex-start;
        padding: 14px 14px 12px;
    }

    .ceh-fq-tab.is-active::after {
        left: 14px;
        right: 45%;
    }

    .ceh-fq-tab-icon {
        width: 21px;
        height: 21px;
    }

    .ceh-fq-body {
        padding: 18px 14px 16px;
    }

    .ceh-fq-route-grid,
    .ceh-fq-contact-grid,
    .ceh-fq-choice-cards-2,
    .ceh-fq-item-grid-parcel,
    .ceh-fq-item-grid-pallet {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .ceh-fq-inline-fields {
        grid-template-columns: 1fr 1fr;
    }

    .ceh-fq-cargo-item {
        padding: 13px;
    }

    .ceh-fq-contact-header {
        display: block;
    }

    .ceh-fq-summary {
        max-width: 100%;
        margin-top: 12px;
    }

    .ceh-fq-full {
        grid-column: auto;
    }

    .ceh-fq-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .ceh-fq-actions-right {
        flex-direction: column;
    }

    .ceh-fq-primary,
    .ceh-fq-secondary {
        width: 100%;
    }
}
