.elementor-25 .elementor-element.elementor-element-88f161f{--display:flex;}@media(max-width:767px){.elementor-25 .elementor-element.elementor-element-88f161f{--content-width:1600px;--min-height:0px;--justify-content:flex-start;}.elementor-25 .elementor-element.elementor-element-510310b > .elementor-widget-container{margin:-8px -8px -8px -8px;padding:9px 9px 9px 9px;}}/* Start custom CSS for html, class: .elementor-element-510310b *//* --- Core Structure & Styling --- */

.flowchart-container {
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* Base box styles */
.box {
    border: 1px solid #000;
    padding: 15px;
    text-align: center;
    margin: 5px;
    line-height: 1.2;
    font-size: 14px;
}

/* Main Toggler Styles */
.main-box, .second-level-toggler {
    cursor: pointer;
    background-color: #d1e7ff; 
    transition: background-color 0.3s;
    font-weight: bold;
}

.main-box:hover, .second-level-toggler:hover {
    background-color: #a0c3e6;
}

.main-box {
    min-width: 200px;
    height: fit-content;
    align-self: flex-start;
}

/* Visibility Control */
.flow-content {
    display: flex;
    align-items: flex-start;
}

.flow-content.hidden, .model-box.hidden {
    display: none !important; 
}

/* Separator */
.group-separator {
    width: 100%;
    border: none;
    border-top: 2px dashed #ccc;
    margin: 30px 0;
}

/* --- Flow Connectors (Arrows) --- */

/* Arrow connecting Main Box to Product Level */
.arrow-right {
    position: relative;
    margin: 0 20px;
    align-self: center;
    height: 10px;
    width: 20px;
}
.arrow-right::after { /* The horizontal line */
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: translateY(-50%);
}
.arrow-right::before { /* The triangle tip */
    content: '▶';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 10px;
}

/* Arrow connecting Product Box to Model Box */
.product-box {
    min-width: 280px;
    text-align: left;
    position: relative;
    padding-right: 25px; /* Space for the arrow */
    background-color: #e9e9e9;
}
.product-box::after {
    content: '▶';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 10px;
}


/* --- Industrial Automation: Final Product Stack (NO ARROW) --- */
.industrial-products-container {
    display: flex;
    flex-direction: column; /* Stack vertically */
    /* Remove any default box styling inherited by this container */
    border: none;
    padding: 0;
}

.industrial-product-item {
    padding-right: 15px; /* Remove space reserved for arrow */
    min-width: 300px;
    margin-bottom: 5px;
    cursor: default; /* No pointer cursor */
    /* Remove click styling/effects */
    background-color: #e9e9e9;
}

.industrial-product-item::after {
    content: none; /* Remove the arrow */
}
.industrial-product-item:hover {
    background-color: #e9e9e9; /* Disable hover effect */
}


/* --- Product Level Containers (for side flow) --- */

.product-level-container {
    display: flex;
    align-items: flex-start;
}

.multi-product-flow {
    flex-direction: column;
}

.product-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}


/* --- Model Box Styling --- */

.model-box {
    border: 1px solid #ccc;
    padding: 5px 10px 5px 30px; 
    background-color: #fff;
    min-width: 250px;
    text-align: left;
    margin-left: -5px; 
    position: relative;
}

/* "Model" text label styling */
.model-label {
    position: absolute;
    top: -10px; 
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: bold;
    background: #fff;
    padding: 0 5px;
    border: 1px solid #000;
    z-index: 2;
}

/* Vertical line for models */
.flow-branch::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #000;
}

/* Individual model items */
.flow-item {
    border: 1px solid #ccc;
    padding: 8px;
    margin-bottom: 5px;
    background-color: #fff;
    font-size: 13px;
    text-align: left;
    position: relative;
    margin-left: 5px;
}

/* Arrow for individual model items */
.flow-item::before {
    content: '→';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #000;
}

/* --- Product Description Button Styling --- */
.prod-desc-button {
    display: block;
    margin-top: 8px;
    padding: 5px 10px;
    background-color: #ffc107;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #000;
    text-align: center;
    transition: background-color 0.2s;
}

.prod-desc-button:hover {
    background-color: #e0a800;
}/* End custom CSS */