/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 14 2026 | 15:35:50 */

/*Use Elementor Accordion as a Read More expander*/
/*Set the item title to the action (e.g. learn, show, read)*/
/*All the accordion styling controls have over-rides to make it quicker to get a plain version, you can restore them by using the class "normal" with more*/
/*You can also do the preview and the read more in one accordion, place the preview in the first item title and the action in the second item*/
.more.elementor-widget-n-accordion {
    /*Clear Default Styling Unless Return*/
    &:not(.normal) {
        * {border:none !important;}
        .e-n-accordion-item-title {
            padding:0;
            gap:.6ch;
        }
        .e-n-accordion-item-title-icon {
            display: none;
        }
    }
    /*Open Settings*/
    .e-n-accordion-item[open] {
        flex-direction: column-reverse;
        summary:after {
            content:"Less"; 
            order:2;
            
        }
        div {
            order:1 !important;
        }
    }
    /*Closed Settings*/
    .e-n-accordion-item:not([open]) {
        summary:after {content:"More";}
    }
    /*Settings for ALl in One*/
    &:has([data-accordion-index="2"]) {
        [data-accordion-index="1"] {
            pointer-events: none;
            color:var(--e-global-color-text);
            &:after { display:none;}
            + div {
                display: none;
            }
            
        }
    }
}