.elementor-226 .elementor-element.elementor-element-7e7167b{--display:flex;--min-height:65vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:50px 50px;--row-gap:50px;--column-gap:50px;--padding-top:60px;--padding-bottom:80px;--padding-left:0px;--padding-right:0px;}.elementor-226 .elementor-element.elementor-element-7e7167b:not(.elementor-motion-effects-element-type-background), .elementor-226 .elementor-element.elementor-element-7e7167b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-astglobalcolor4 );}.elementor-226 .elementor-element.elementor-element-01cc394{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-226 .elementor-element.elementor-element-024aaaf{text-align:center;}.elementor-226 .elementor-element.elementor-element-024aaaf .elementor-heading-title{font-size:48px;}.elementor-226 .elementor-element.elementor-element-54e328a{width:var( --container-widget-width, 84% );max-width:84%;--container-widget-width:84%;--container-widget-flex-grow:0;text-align:center;font-size:20px;font-weight:400;color:#8A735C;}.elementor-226 .elementor-element.elementor-element-54e328a p{margin-block-end:0px;}.elementor-226 .elementor-element.elementor-element-4915783{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-226 .elementor-element.elementor-element-8d485d0{--grid-columns:2;}@media(max-width:1024px){.elementor-226 .elementor-element.elementor-element-7e7167b{--min-height:45vh;--gap:30px 30px;--row-gap:30px;--column-gap:30px;--padding-top:40px;--padding-bottom:40px;--padding-left:20px;--padding-right:20px;}.elementor-226 .elementor-element.elementor-element-8d485d0{--grid-columns:2;}}@media(max-width:767px){.elementor-226 .elementor-element.elementor-element-7e7167b{--gap:20px 20px;--row-gap:20px;--column-gap:20px;}.elementor-226 .elementor-element.elementor-element-024aaaf .elementor-heading-title{font-size:34px;}.elementor-226 .elementor-element.elementor-element-54e328a{--container-widget-width:100%;--container-widget-flex-grow:0;width:var( --container-widget-width, 100% );max-width:100%;font-size:18px;}.elementor-226 .elementor-element.elementor-element-8d485d0{--grid-columns:1;}}@media(min-width:768px){.elementor-226 .elementor-element.elementor-element-01cc394{--width:69%;}.elementor-226 .elementor-element.elementor-element-4915783{--width:100%;}}@media(max-width:1024px) and (min-width:768px){.elementor-226 .elementor-element.elementor-element-01cc394{--width:100%;}}/* Start custom CSS for shortcode, class: .elementor-element-47cc84b */.searchandfilter div ul {
    display: flex;             /* Use Flexbox */
    width: 100%;               /* Full width container */
    list-style: none;          /* Remove bullet points */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    gap: 10px;                 /* Space between items */
    align-items: center;       /* Aligns items vertically in the middle */
}

/* The search input LI gets the largest share of remaining space */
.searchandfilter div ul li:nth-child(1) {
    flex-grow: 3;              /* Takes up available space (roughly 70% if others are fixed) */
}

/* The select input LI gets a smaller share */
.searchandfilter div ul li:nth-child(2) {
    flex-grow: 1;              /* Takes up less available space */
}

/* The submit button LI takes only the space it needs for the button */
.searchandfilter div ul li:nth-child(3) {
    flex-grow: 0;              /* Does not grow */
    flex-shrink: 0;            /* Does not shrink */
    /* No width needed, it sizes itself to the button */
}


/* Make sure the actual input and select fields inside the LIs take up 100% of their parent LI's width */
.searchandfilter input[type="text"],
.searchandfilter select,
.searchandfilter input[type="submit"] {
    width: 100%;               /* Ensure elements fill their LI container's width */
    padding: 10px;
    box-sizing: border-box;
    height: 100%;              /* Ensures all inputs/selects have same height */
}

/* Override 100% width for the submit button specifically so it only wraps its text/padding */
.searchandfilter input[type="submit"] {
    width: auto;               /* Allow the submit button to size naturally */
    white-space: nowrap;       /* Prevent the button text from wrapping */
}/* End custom CSS */