/* fuji-pages.css — Page-specific styles and all responsive @media overrides */

/* STYLES FOR HR / CAREERS --------------------------------------------------------------------- */
.job-listing {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

    .job-listing:first-of-type {
        padding-top: var(--space-4);
    }

    .job-listing .job-date-posted {
        margin-top: var(--space-3);
        margin-bottom: 0;
        color: var(--color-gray-600);
        font-size: 0.875rem;
    }

/* STYLES FOR INNOVATIONS ---------------------------------------------------------------------- */
ul.innovations {
    line-height: 32px;
    list-style: inside disc;
    margin-top: var(--space-4);
}


/* STYLES FOR EVOLUTION ---------------------------------------------------------------------- */
.evolution-container {
    border: 1px solid var(--color-gray-300);
    margin: 10px;
    margin-bottom: var(--space-6);
    padding: var(--space-6) var(--space-3);
}


/* STYLES FOR CONTACT US ---------------------------------------------------------------------- */
ul.contact-dept {
    line-height: 40px;
}


/* STYLES FOR DIRECTIONS ---------------------------------------------------------------------- */
.iframe-container {
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
}

.iframe {
    border: 1px solid var(--color-gray-300);
    width: 100%;
    height: 300px;
    max-width: 100%;
}




/* STYLES FOR FIND A REP	 ---------------------------------------------------------------------- */
.map-us {
    border-style: none;
    cursor: pointer;
}

.rep-data {
    font-size: 12pt;
    width: auto;
    max-width: 600px;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    padding: 10px 10px 10px 10px;
}

.default-reps {
    background: #f8faff;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: var(--radius-md);
}

.rep-data #stateName {
    font-weight: bold;
}

/* STYLES FOR NEWS ---------------------------------------------------------------------- */
.news-body .col {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.news-photo {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.news-detail-photo {
    float: left;
    max-width: 40%;
    height: auto;
    margin-right: var(--space-6);
    margin-bottom: var(--space-6);
}

.news-detail-body ul {
    margin-left: var(--space-4);
}

.news-body {
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-gray-300);
}

    .news-body a {
        text-decoration: underline;
    }

.news-title h2 {
    margin: 0;
}

.news-detail-title h2 {
    margin-bottom: var(--space-5);
}


/* STYLES FOR SUPPORT ---------------------------------------------------------------------- */
ul.support {
    list-style: inside disc;
}

    ul.support li {
        line-height: 22px;
        margin-bottom: var(--space-4);
    }


/*STYLES FOR HOW TO ORDER ---------------------------------------------------------------------- */
ol.order {
    list-style: inside;
    list-style-type: decimal;
    margin-bottom: var(--space-6);
}

    ol.order li {
        line-height: 22px;
    }

/*STYLES FOR PRODUCTS ---------------------------------------------------------------------- */
.product-title {
    margin-top: .8em;
    background-color: var(--color-bg-section);
    padding-left: 3px;
    text-align: center;
}

.product-header {
    margin-top: var(--space-6);
    margin-bottom: var(--space-4);
}

.product-header-sidebar {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-top: var(--space-6);
}

.product-header-sidebar-video-link {
    cursor: pointer;
}

    .product-header-sidebar-video-link:hover {
        color: var(--color-gray-500);
        text-decoration: underline;
    }

    .product-header-sidebar-video-link a {
        display: flex;
        align-items: center;
        gap: var(--space-6);
    }

    .product-header-sidebar-video-link h3 {
        margin: 0;
        line-height: var(--leading-normal);
    }

    .product-header-sidebar-video-link img {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

#content .container .product-overview h2 {
    color: var(--color-primary);
}

.features-container {
    margin-bottom: var(--space-6);
}

#content .features-container h3 {
    margin-top: 0;
    margin-bottom: var(--space-2);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--color-primary);
    background-color: var(--color-bg-section);
    padding-left: 3px;
}

.features-container p {
    margin-bottom: var(--space-2);
}

.features-photo {
    width: 100%;
    max-width: 298px;
    height: auto;
}

.features-video {
    width: 100%;
    max-width: 690px;
    height: auto;
}

    .features-video video {
        width: 100%;
        height: auto;
    }

ul.accessories {
    list-style: inside disc;
}

    ul.accessories li {
        line-height: 22px;
    }

/* ── Product contact CTA band ────────────────────────────── */

.product-cta {
    background-color: var(--color-primary);
    padding: var(--space-6) 0;
    margin-top: var(--space-12);
}

/* Scope with #content .product-cta to reach specificity (1,2,0),
   beating the site-wide #content .container p rule at (1,1,1). */
#content .product-cta .product-cta-headline {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-medium);
    color: #fff;
    letter-spacing: var(--tracking-wide);
    line-height: var(--leading-tight);
    margin: 0 0 var(--space-3);
}

#content .product-cta .product-cta-body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-primary-light);
    line-height: var(--leading-loose);
    margin: 0;
}

/* Include :link and :visited to beat a:link specificity (0,1,1). */
.product-cta-btn,
.product-cta-btn:link,
.product-cta-btn:visited {
    background-color: #fff;
    color: var(--color-primary);
    font-weight: var(--weight-bold);
    border: 2px solid #fff;
    padding: var(--space-3) var(--space-8);
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .product-cta-btn:hover,
    .product-cta-btn:focus-visible {
        background-color: var(--color-primary-light);
        color: var(--color-primary-dark);
        border-color: var(--color-primary-light);
    }

.sub-page-link {
    background: var(--color-primary-link);
    padding: 0.6em 1.2em;
    white-space: nowrap;
}

    /* Raise specificity above a:link (0,1,1) for colour and font-size */
    .sub-page-link,
    .sub-page-link:link,
    .sub-page-link:visited {
        color: white;
        font-size: 1em;
    }

        .sub-page-link:hover,
        .sub-page-link:focus-visible {
            background: var(--color-primary-dark);
            color: white;
            font-size: 1em;
        }



.gpxc-img {
    height: 23em;
    position: relative;
    bottom: 1em;
    left: 1.5em;
}

.image-container {
    max-width: 1300px;
}



#PlacingMachinesContainer img,
#SmartWingContainer img,
#MultiJointRobotContainer img,
#VirtualShowroomContainer img {
    max-width: 100%;
}


/* STYLES FOR PRODUCT SPECIFICATIONS     ------------------------------------------------------- */
table {
    width: 100%;
    margin-bottom: var(--space-6);
    line-height: var(--space-6);
    border-collapse: collapse;
}

thead {
    background: var(--color-bg-section);
}

th {
    margin: 0;
    padding: 5px 5px 5px 10px;
    border: 1px solid var(--color-bg-header);
    text-align: center;
}

    /* Row-header cells in spec tables: match td appearance (left-aligned, same border,
   normal weight). Specificity (0,1,0) < table.leftheader th (0,1,1), so leftheader
   tables are unaffected. */
    th[scope="row"],
    th[scope="rowgroup"] {
        font-weight: normal;
        text-align: left;
        border: 1px solid var(--color-gray-300);
    }

td {
    margin: 0;
    padding: 5px 5px 5px 10px;
    border: 1px solid var(--color-gray-300);
}

    td:last-child {
        border-right: 1px solid var(--color-gray-300);
    }

    td.no-border {
        border-bottom: none;
    }

table.leftheader th {
    background: var(--color-bg-section);
    color: black;
    font-weight: bold;
    margin: 0;
    padding: 5px 5px 5px 10px;
    border: 1px solid var(--color-bg-header);
}

table.nested {
    border: none;
    padding: 0;
    margin: 0;
}

    table.nested td {
        border: none;
        padding: 0;
    }

dl.spec-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 var(--space-3);
    margin: 0;
}

    dl.spec-list dt {
        font-weight: var(--weight-normal);
        white-space: nowrap;
    }

    dl.spec-list dd {
        margin: 0;
    }


/* STYLES FOR SITEMAP     ---------------------------------------------------------------------- */
.sitemap ul {
    margin-left: 40px;
}

    .sitemap ul li {
        width: auto;
        list-style: disc outside;
    }

    .sitemap ul ul li {
        width: auto;
        list-style: circle outside;
    }

    .sitemap ul li a {
        text-decoration: underline;
    }

    .sitemap ul ul {
        margin-left: 40px;
        display: block;
    }

        .sitemap ul ul li a {
            text-decoration: underline;
        }

/* STYLES FOR REGISTER/LOGIN---------------------------------------------------------------------- */




.login-issues-message {
    color: #124a98;
    position: relative;
    bottom: 1em;
    font-size: .82em;
}

.error-msg {
    display: block;
    color: var(--color-error-text);
    background-color: var(--color-error-bg);
    border: 1px solid var(--color-error-border);
    border-left: 4px solid var(--color-error-text);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
    font-size: var(--text-base);
    margin-top: 0.5rem;
}

.field-validation-valid {
    display: none;
}

.success-msg {
    color: var(--color-success);
    font-size: 1.1em;
}

.msg-container {
    margin-bottom: 1em;
}

.reset-password-link,
.create-account-link {
    color: #004b82;
}

.required-field {
    color: var(--color-error);
    font-size: var(--text-xs);
}

#RegisterContainer .form-label {
    width: max-content;
}

.refresh-icon {
    margin-left: 5px;
    cursor: pointer;
    position: relative;
    top: 10px;
}

/* STYLES FOR CATALOG---------------------------------------------------------------------- */
#CatalogContainer .modal-header {
    padding: 1em;
}

#CatalogContainer .course-catalog-section {
    border: 1px solid var(--color-gray-400);
    border-radius: var(--radius-md);
    background: #fbfbfb;
    text-align: center;
    padding: .2em;
}

.preformatted {
    white-space: pre-line;
}



.description-section {
    max-height: 16em;
    border-bottom: 1px solid #d4d4d4;
    overflow-y: auto;
    padding: 1em;
    margin-bottom: 1em;
}

.date-control {
    height: 29px;
    font-size: .99em;
}

.login-message {
    color: #333;
    font-weight: bold;
    text-align: center;
    border: 1px solid black;
    padding: .5em;
    margin: 1em 0;
}

    .login-message a {
        font-weight: var(--weight-normal);
    }

.course-registration-section {
    overflow: auto;
    max-height: 38em;
}



/* STYLES FOR TRAINING HISTORY---------------------------------------------------------------------- */
#TrainingHistoryContainer table {
    float: none;
    margin-bottom: 0;
}

#TrainingHistoryContainer td {
    padding: 10px 0;
}

.course-title {
    padding-top: .2em;
    background: #f3f3f3;
    padding-bottom: .2em;
    margin-bottom: .3em;
}

.pending-course-container,
.upcoming-course-container,
.completed-course-container,
.watched-videos-container,
.eLearning-container {
    max-height: 450px;
    overflow-y: auto;
    border: 1px solid var(--color-gray-400);
    border-radius: var(--radius-md);
    margin: 1em;
}

.course-section-header {
    background: var(--color-primary);
    padding-top: var(--space-1);
    padding-bottom: var(--space-1);
}

#content #TrainingHistoryContainer .course-section-header h2 {
    color: white;
    padding-left: 10px;
}

.course-header {
    padding-top: 5px;
    padding-bottom: var(--space-2);
    background: #e8e9ea;
    color: #4e4e4e;
}

#TrainingHistoryContainer .container > .row:not(.course-header) {
    border-bottom: 1px solid var(--color-gray-200);
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
}

/* STYLES FOR ARTICLES---------------------------------------------------------------------- */

/* ── Prose article pages (.prose-page on #content) ─────────── */

/* Constrain reading column to a comfortable prose width */
.prose-page .container {
    max-width: var(--content-max-width);
}

/* Section headings: significant space above + subtle baseline separator */
#content.prose-page .container h2:not(.section-header) {
    margin-top: var(--space-8);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--color-gray-300);
}

/* First heading on the page sits closer to the banner */
#content.prose-page .container h2:first-of-type:not(.section-header) {
    margin-top: var(--space-4);
}

/* Paragraph bottom spacing */
#content.prose-page .container p {
    margin-bottom: var(--space-4);
}

/* Images: block with breathing room above and below */
#content.prose-page .container img {
    display: block;
    margin-top: var(--space-6);
    margin-bottom: var(--space-2);
}

/* Images inside side-column layouts (nested rows): no extra top margin —
   the column structure handles spacing */
#content.prose-page .container .row .row img {
    margin-top: 0;
    margin-bottom: 0;
}

/* Side-column layout rows: use gap instead of Bootstrap gutters for reliable spacing.
   gap applies both horizontally (side by side) and vertically (when stacked on mobile).
   Excludes article-table rows — gap would push col-4/col-8 over 100% and wrap them. */
#content.prose-page .container .row .row:not(.article-table .row) {
    gap: var(--space-6);
}

/* Restore list bullets inside prose content */
#content.prose-page .container ul {
    list-style: disc;
    padding-left: var(--space-8);
    margin-bottom: var(--space-4);
}

#content.prose-page .container ol {
    list-style: decimal;
    padding-left: var(--space-8);
    margin-bottom: var(--space-4);
}

/* Content labels: demoted to caption style */
#content.prose-page .content-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-gray-700);
    font-weight: var(--weight-normal);
    text-align: center;
    margin-top: var(--space-2);
    margin-bottom: var(--space-4);
}

.article-link {
    font-size: 1.1em;
}

    .article-link,
    .article-link:link,
    .article-link:visited {
        color: var(--color-primary-link);
    }

        .article-link:hover {
            font-size: 1.1em;
        }

.content-label {
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
}

.article-body {
    border-bottom: 1px solid var(--color-gray-300);
    margin-bottom: 2em;
}

.table-label {
    background: var(--color-bg-section);
    border: 1px solid black;
}

.article-table .table-label {
    border-top: none;
}

.article-table .table-data {
    border: 1px solid black;
    padding: 0 0 0 10px;
    min-height: 41.5px;
    border-left: none;
    border-top: none;
}

/* Restore top border on the first row of a table — must come after .table-label and .table-data rules */
.article-table .border-top-dark {
    border-top: 1px solid black;
}

.info-img {
    display: block;
    margin: auto;
}

.split-column {
    width: 50px;
    background: var(--color-bg-section);
    border: 1px solid black;
    display: table;
    vertical-align: top;
    padding: .5em;
}

.split-column-label {
    padding: 0;
    height: 40px;
    padding-right: 0;
    border-bottom: none;
    border-right: none;
    text-align: center;
    padding-top: .6em;
}

    .split-column-label .table-label {
        border-right: none;
    }

.laser-table td,
.supply-tray-table td {
    border: 1px solid black;
}
/* STYLES FOR SMARTFAB---------------------------------------------------------------------- */

/* ELEARNING---------------------------------------------------------------------------------*/

#eLearningContainer .page-header,
#eLearningContainer #insert-header {
    display: none;
}

#content #ELearningContainer .toggle-eLearning-section {
    padding: 0.5em;
    padding-left: 1em;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: var(--color-primary);
    color: var(--color-gray-200);
}

#content #ELearningContainer .article-body {
    text-align: center;
    padding: 0.5em;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-300);
    background: var(--color-gray-100);
    color: var(--color-gray-900);
    margin: 0 .1em;
}

#content #ELearningContainer video {
    width: 100%;
    height: auto;
}

#content #ELearningContainer .toggle-eLearning-section h2 {
    color: white;
}

#content #ELearningContainer .toggle-eLearning-section p {
    color: var(--color-gray-500);
}

#content #ELearningContainer .article-body h2 {
    font-size: 1.1em;
    font-weight: bold;
}

#content #ELearningContainer .sub-header {
    color: white;
    background: var(--color-primary-light);
    margin-bottom: 0;
    font-size: 1em;
    padding: 1em;
}

#content .eLearning-menu {
    display: none;
    padding-left: 0;
}

    #content .eLearning-menu h3 {
        color: var(--color-gray-900);
    }

.toggle-eLearning-section {
    cursor: pointer
}

.eLearning-course-link {
    cursor: pointer;
    font-size: 1.1em;
}

    .eLearning-course-link,
    .eLearning-course-link:link,
    .eLearning-course-link:visited {
        color: var(--color-primary-link);
    }

        .eLearning-course-link:hover {
            font-size: 1.1em;
        }


.cp-frameset {
    padding: .3em;
}

.cpMainContainer {
    top: auto !important;
    z-index: 9999;
}

.cp-progressSlideLabel > table > tbody > tr > td {
    padding: 0;
    padding-left: 5px;
    position: relative;
    left: 1px;
}

#SideMenuContainer h3 {
    color: var(--color-primary);
    font-weight: bold;
}

#SideMenuContainer .eLearning-course-link,
#SideMenuContainer .eLearning-course-link:link,
#SideMenuContainer .eLearning-course-link:visited {
    text-decoration: none;
    color: black;
}

    #SideMenuContainer .eLearning-course-link:hover {
        background: #edf4ff;
        left: 2px;
    }

/*Hide built-in continue button*/
#si7271c,
#si7271 {
    visibility: hidden !important;
    cursor: default !important;
}

@keyframes glowing {
    0% {
        background-color: #0e4a9e;
        box-shadow: 0 0 3px #0e4a9e;
    }

    50% {
        background-color: #7596b9;
        box-shadow: none;
    }

    100% {
        background-color: #0e4a9e;
        box-shadow: 0 0 3px #0e4a9e;
    }
}

.next-btn,
.next-btn:link,
.next-btn:visited,
.course-complete-btn,
.course-complete-btn:link,
.course-complete-btn:visited {
    display: none;
    animation: glowing 2800ms infinite;
    border-radius: 7px;
    padding: 1em;
    background: #0e4a9e;
    z-index: 9999;
    position: fixed;
    color: white;
    right: 10px;
    top: 2em;
    opacity: 1;
    font-size: .7em;
}

/*TRADE IN*/

.get-started-btn {
    font-size: 2em;
    position: relative;
    bottom: 3em;
    left: 1em;
}

.trade-in-img {
    height: auto;
    width: 100%;
}

.trade-in-form {
    display: block;
}

.form-check-input {
    cursor: pointer;
}

.trade-in-container .disabled {
    background: #b8bfc5;
}

/*EVENT*/

.event-container .event-name,
.event-container .event-session-name {
    font-size: var(--text-base);
    color: var(--color-primary);
    font-weight: var(--weight-bold);
    margin-bottom: 0.5em;
}

.event-container .event-session-box {
    padding: 0 0;
}

.event-container .event-details {
    font-size: 1em;
    color: var(--color-gray-900);
    padding: 0.75em;
    padding-bottom: .25em;
    margin-bottom: 0.5em;
    border: 1px solid var(--color-gray-300);
}

.event-container .event-description {
    font-size: 1em;
    color: var(--color-gray-700);
}

.event-container .show-more {
    margin: .5em 0;
}

.alert-cookie-policy {
    /*display: none;*/
    border-radius: 0;
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
}

    .alert-cookie-policy.show {
        border-radius: 0;
        opacity: 1;
        transform: translateY(0%);
        transition-delay: 1000ms;
    }

/* ==========================================================================
   Responsive overrides (consolidated from fuji-responsive-0.1.1.css)
   ========================================================================== */

@media screen and (min-width: 576px) {
    .two-line-header h1 {
        line-height: 80px;
    }
}

@media screen and (min-width: 992px) {
    .section-header {
        font-size: var(--text-3xl);
    }

    .section-header-2 {
        font-size: var(--text-2xl);
    }

    .tradeshow-header {
        font-size: 22px;
    }

    .iframe {
        height: 425px;
    }

    /* Banner letter-spacing opens up on wide viewports */
    .page-header h1 {
        letter-spacing: 0.4em;
    }

        .page-header h1.long-title {
            letter-spacing: 0.2em;
        }

        .page-header h1.extra-long-title,
        .page-header h1.squeeze {
            letter-spacing: 0.15em;
        }
}

@media screen and (min-width: 1200px) {
    .rep-data {
        max-width: none;
    }
}

@media screen and (max-width: 1399.98px) {
    #TextLoginButton {
        display: none;
    }
}

@media screen and (max-width: 1199.98px) {
    /* letter-spacing for long titles is handled by base .page-header h1.long-title */

    #TrainingContainer {
        margin-bottom: 10em;
    }

    #LoginContainer .offset-3,
    #RegisterContainer .offset-3,
    #LoginContainer .offset-1,
    #RegisterContainer .offset-1,
    #ChangePasswordContainer .offset-3,
    #ResetPasswordContainer .offset-3 {
        margin-left: 0;
    }

    #RegisterContainer {
        margin-bottom: 10em;
    }

    iframe {
        max-width: 100%;
    }

    .default-reps {
        background: var(--color-surface);
        font-size: 12pt;
        border: 1px solid var(--color-gray-300);
        padding: 10px 10px 10px 10px;
        margin-bottom: 1em;
    }

        .default-reps .col-md-6 {
            margin-bottom: 1em;
        }

    .rep-data {
        margin-bottom: 1em;
    }

    .get-started-btn {
        position: relative;
        top: 1em;
        left: 0;
    }

    #NewsletterContainer {
        margin-bottom: 10em;
    }
}

@media screen and (max-width: 767.98px) {
    #fuji-slideshow {
        margin-top: 2em;
    }

    .course-session-register-btn {
        margin-right: 0.7em;
    }

    #VideosContainer iframe {
        width: auto;
    }

    /* Reduce horizontal padding so banner title has room on narrow screens */
    .page-header {
        padding: var(--space-3) var(--space-4);
    }

    /* News detail — clear float so large images stack above article text */
    .news-detail-photo {
        float: none;
        display: block;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    /* Training History — column headers are meaningless when rows stack */
    #TrainingHistoryContainer .course-header {
        display: none;
    }
}

@media screen and (max-width: 575.98px) {
    /* News index — stack thumbnail above snippet on phones */
    .news-body .col {
        flex-direction: column;
    }

    .news-photo {
        width: 100%;
        height: auto;
        max-width: 180px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .trade-in-container {
        margin-left: 0;
    }
}
