/***************
    
    High Noon Main Styles
    2025 - Loop: Design for Social Good
    https://weareloop.com/
 
    This file contains the main styles for the High Noon theme.
    It includes global variables, typography, and other styles.
 
    @package High Noon Theme
    @version 1.0.0

***************/



/*********/
/* Fonts */
/*********/

    /* Barlow @Google Fonts */
    /* Regular: 400 */
    /* Medium:  500 */
    /* Semibold:600 */
    @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&display=swap');

    /* Barlow Condensed @Google Fonts */
    /* Bold:    700 */
    /* Medium:  500 */
    @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700&display=swap');

    /* Poppins Regular+i Medium+i Bold @Google Fonts */
    /* Regular: 400 */
    /* Medium:  500 */
    /* SemiBold:600 */
    /* Bold:    700 */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

    





/********************/
/* Global Variables */
/********************/
:root {

    /* SPACING */
    --content-padding: 72px; /* 72+28 */
    --content-padding-left: 100px;
    --content-padding-right: 72px;
    --content-margin-top: 26px;
    /* --content-padding-top: 200px; */
    /* --content-padding-bottom: 50px; */
    
    /* COLORS */
    --black: #151515;
    --white: #ffffff;
    --light-orange:#FF8229;
    --deep-orange:#ED4627;
    --pink:#CF0061;
    --cream:#F9F3EA;
    --gray: #F6F1F1;

    /* FONTS */
    --font-headline: 'Barlow Condensed',sans-serif;
    --font-content: 'Poppins',sans-serif;

    /* ICONS */
    --arrow-white: url(/wp-content/uploads/arrow-right-white.svg);
    --arrow-blue:  url(/wp-content/uploads/arrow-right-blue.svg);

    /* --viewportWidth: calc(100vw - var(--scrollbarWidth)); */
}


/**********************/
/* Framework Settings */
/**********************/
html, body { 
    color: var(--black);
    font-family: var(--font-content);
    font-size: inherit; /* to reset to browser default of 16px for accessibility */
    overflow-x: clip;
}

body.fl-builder-edit { 
    margin-top: 0 !important;
}

.fl-page-content {
    padding-top:var(--content-padding-top);
    padding-bottom:var(--content-padding-bottom);
    transition:all .5s ease;
    opacity:0;
}

.fl-row:not(.nopadding) >.fl-row-content-wrap >.fl-row-content {
    padding-left: var(--content-padding-left);
    padding-right: var(--content-padding-right);
}

/* Focus state */
body:not(.fl-builder-edit) :focus {
    outline-width: 2px;
    outline-style: auto;
    outline-offset: 5px;
    outline-color: var(--deep-orange);
    border-radius: 0;
}

body:not(.fl-builder-edit) .hidefocus:focus {
    box-shadow: none !important;
    outline: none !important;
    /* color: initial; */
    text-decoration: initial;
}

button[aria-label="Assistant"] {display:none !important;}

/* adds missing eye icon for bb visibility functionality */
.fa-eye:before {
    content: url(/wp-content/uploads/fa-eye.svg);
}


.img-align-top .fl-photo-content img {
    object-position: top;
    background-position-y: top;
}
.img-align-left .fl-photo-content img {
    object-position: left;
    background-position-x: left;
}
.img-align-bottom .fl-photo-content img {
    object-position: bottom;
    background-position-y: bottom;
}
.img-align-right .fl-photo-content img {
    object-position: right;
    background-position-x: right;
}


/**************/
/* Typography */
/**************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: var(--black);   
    margin-top: 0px;
    margin-bottom: 0px;
    word-wrap: normal;
}

h1, .h1, .h1 p, .h1 .fl-heading {
    font-family: var(--font-headline);
    font-size: 100px;
    font-size: 6.25rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 90px;
    line-height: 5.63rem;
    text-transform:uppercase;
    
}

h2, .h2, .h2 p, .h2 .fl-heading {
    font-family: var(--font-headline);
    font-size: 78px;
    font-size: 4.88rem;
    font-style: normal;
    font-weight: 700;
    line-height: 68px;
    line-height: 4.25rem;
    letter-spacing: 0;
    text-transform:uppercase;
}

h3, .h3, .h3 p, .h3 .fl-heading {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 50px;
    font-size: 3.13rem;
    line-height: 42px; 
    line-height: 2.63rem;
    text-transform: uppercase;
}

h4, .h4, .h4 p, .h4 .fl-heading {
    font-family: var(--font-content);
    font-weight: 700;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 36px;
    line-height: 2.25rem;
}

p, .p, ul, ol {
    font-family: var(--font-content);
    font-size: 20px;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
    line-height: 2rem; 
    margin: 0;
    text-wrap: pretty;
}

p + p, p + ul, p + ol,
p + blockquote, blockquote + p,
ul + p, ul + ul, ul + ol,
ol + p, ol + ul, ol + ol { 
    margin-top: var(--content-margin-top);
}

.large, p.large, p .large, .large p,
.large ol, ol.large, .large ul, ul.large {
    font-family: var(--font-content);
    font-size: 26px;
    font-size: 1.63rem;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; 
    line-height: 2.5rem; 
}

.small, p.small, p .small, .small p,
.small ol, ol.small, .small ul, ul.small {
    font-family: var(--font-content);
    font-size: 16px;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; 
    line-height: 1.63rem; 
}

.xsmall, p.xsmall, p .xsmall, .xsmall p,
.xsmall ol, ol.xsmall, .xsmall ul, ul.xsmall {
    font-family: var(--font-content);
    font-size: 14px;
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
    line-height: 1.38rem; 
}

blockquote p {
    font-family: var(--font-content);
    font-size: 26px;
    font-size: 1.63rem;
    line-height: 36px;
    line-height: 2.25rem;
    font-weight: 600;
    font-style: normal;
    padding-left: var(--content-padding);
    padding-right: var(--content-padding);
    padding-top: 10px;
    padding-bottom: 10px;
}

blockquote {
    padding: 0;
    margin: 0;
    border: 0;
}


a:hover {
    color: inherit !important;
    text-decoration: initial !important;
}


p a:not(.underline_anim, .buttonlink), 
ol a:not(.underline_anim, .buttonlink), 
ul a:not(.underline_anim, .buttonlink) {
    color: currentColor;
    position: relative;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition: background-size 250ms ease-in-out;
    display:inline;
    font-weight:600;
}

p a:not(.underline_anim, .buttonlink):hover, 
ol a:not(.underline_anim, .buttonlink):hover, 
ul a:not(.underline_anim, .buttonlink):hover {
    color: currentColor;
    text-decoration: none;
    animation: 0.25s underline;
}

ul, ol {
    padding-inline-start: 21px;
}

/* .fl-rich-text a, */
a.underline_anim,
span.underline_anim,
.fl-module-button.underline_anim  a.fl-button, 
.fl-module-button-group.underline_anim a.fl-button {
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    display:inline;
    /* transition: background-size 250ms ease-in-out; */
    text-decoration: none;

}

p a:not(.underline_anim, .btn-round, .btn-square):hover,
a.underline_anim:hover,
span.underline_anim:hover,
.fl-module-button.underline_anim a.fl-button:hover, 
.fl-module-button-group.underline_anim a.fl-button:hover {
    animation: 0.25s underline;
}




@keyframes underline {
    from {background-size: 0% 1px;}
    to {background-size: 100% 1px;}
}



/* Number Stat */
.number_stat .fl-number-string {
    font-family: var(--font-headline);
    font-size: 110px;
    font-size: 6.88rem;
    line-height: 120px;
    line-height: 7.5rem;
    font-style: normal;
    font-weight: 700;
}




.post-content img {
    border-radius:16px;
}
.post-content p.content_widen >div {
    border-radius:16px;
    overflow:hidden;
}
.post-content p.content_widen {text-align:center}
.post-content ul,
.post-content ol,
.post-content p:not(.content_widen) {
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
}




/***********/
/* Buttons */
/***********/

.fl-builder-content .cta_button {
    text-wrap: pretty;
}
.fl-builder-content .cta_button a.fl-button,
.fl-builder-content .wpforms-container .wpforms-submit  {
    font-family: var(--font-content);
    font-size: 18px;
    font-size: 1.13rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding:20px 40px;
    border-radius:36px;
    /* border:transparent; */
    transition:all .15s ease;
    /* white-space: nowrap; */
}
.fl-builder-content .cta_button.underline_anim a.fl-button {
    padding: 0;
    border-radius: 0;
    white-space: unset;
}

.fl-builder-content .cta_button.arrowleft a.fl-button {
    padding: 3px;
    border-radius: 0;
}

.fl-builder-content .cta_button.arrowleft a.fl-button:after {display:none}
.fl-builder-content .cta_button.arrowleft a.fl-button:before {
    font-family: 'Font Awesome 5 Pro';
    transform:rotate(180deg);
    content:"\f178";
    color:var(--light-orange);
    font-weight: 500;
    margin-right: 10px;
    position: relative;
    top: 1px;
    transition:all .25s ease;
    display:inline-block;
}


.fl-builder-content .cta_button a.fl-button:after,
.fl-builder-content .wpforms-container .wpforms-submit:after {
    font-family: 'Font Awesome 5 Pro';
    content:"\f178";
    font-weight: 500;
    padding-left: 10px;
    position: relative;
    top: 1px;
    transition:all .25s ease;
    display:inline-block;
}



.fl-builder-content .cta_button.arrowdown a.fl-button:after {
    transform:rotate(90deg);
    margin-left:10px;
    padding:0;
}
.fl-builder-content .cta_button.arrowdown a.fl-button:is(:hover,:focus):after {
    padding: 0;
}




.fl-builder-content .cta_button.arrowblack a.fl-button:after {
    color:var(--black)
}
.fl-builder-content .cta_button.arrowdeeporange a.fl-button:after {
    color:var(--deep-orange)
}
.fl-builder-content .cta_button.arrowlightorange a.fl-button:after {
    color:var(--light-orange)
}
.fl-builder-content .cta_button.arrowcream a.fl-button:after {
    color:var(--cream)
}

.fl-builder-content .cta_button.directory a.fl-button:after {
    content:"";
    background:url(/wp-content/uploads/ui-button-map.svg) center center / contain no-repeat;
    margin-left: 10px;
    position: relative;
    top: 4px;
    transition:all .25s ease;
    display:inline-block;
    width:20px;
    height:21px;
}

.fl-builder-content .cta_button a.fl-button:is(:hover,:focus),
.fl-builder-content .wpforms-container .wpforms-submit:is(:hover,:focus) {
    transform:scale(1.05);
    /* padding:20px 35px; */
}
.fl-builder-content .cta_button:not(.underline_anim) a.fl-button:is(:hover,:focus) {
     padding:20px 35px;
}

.fl-builder-content .cta_button.noarrow a.fl-button:after {
    display:none;
}

.fl-builder-content .cta_button a.fl-button:is(:hover,:focus):after,
.fl-builder-content .wpforms-container .wpforms-submit:is(:hover,:focus):after {
    padding-left:20px;
}

.fl-builder-content .wpforms-container .wpforms-submit  {
    padding:20px 40px !important;
    background:var(--yellow) !important;
    color:var(--black) !important;
    border-radius:100px !important;
    height: initial !important;
    height: initial !important;
    font-size: 19px !important;
    font-weight: 600 !important;
}

.cta_button.colvar_orange a.underline_anim,
.cta_button.colvar_orange span.underline_anim,
.cta_button.colvar_orange.underline_anim  a.fl-button {
    background-image: linear-gradient(var(--light-orange), var(--light-orange));   
}
.cta_button.colvar_orange.underline_anim  a.fl-button:after {
    color: var(--light-orange) !important;   
}


.cta_button.colvar_gray a.underline_anim,
.cta_button.colvar_gray span.underline_anim,
.cta_button.colvar_gray.underline_anim  a.fl-button {
    background-image: linear-gradient(var(--gray), var(--gray));   
}
.cta_button.colvar_orange.underline_anim  a.fl-button:after {
    color: var(--gray);   
}


.cta_button.colvar_cream a.underline_anim,
.cta_button.colvar_cream span.underline_anim,
.cta_button.colvar_cream.underline_anim  a.fl-button {
    background-image: linear-gradient(var(--cream), var(--cream));
}
.cta_button.colvar_cream.underline_anim  a.fl-button:after {
    color: var(--cream);   
}



.cta_button.colvar_orange  a.fl-button:after {
    color: var(--light-orange);   
}

.cta_button.colvar_gray  a.fl-button:after {
    color: var(--gray);   
}


/************************/
/* External link bubble */
/************************/
a.acc_external_link .acc_external, 
.acc_external_link a .acc_external, 
a .acc_external, 
.acc_external {
    position: fixed;
    background: var(--yellow) !important;
    color: var(--deep-orange) !important;
    padding: 4px 8px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: var(--font-content);
    transform: scale(1.07) translate(60px, 10px);
    visibility: hidden;
    opacity: 0;
    left: -99999px;
    z-index: 999;
    margin: 6px;
    border-radius: 4px;
    text-align: center;
    font-style: normal;
}

a.acc_external_link:hover .acc_external, 
.acc_external_link a:hover .acc_external, 
a:hover .acc_external {
    visibility: visible;
    opacity: 1;
}


/**ig**/
body:not(.fl-builder-edit) .eapps-instagram-feed-posts-item-image-wrapper{
    padding-top: 150%;
}
body:not(.fl-builder-edit) .eapps-instagram-feed-posts-grid-load-more-container.eapps-instagram-feed-posts-grid-load-more-enabled{
    display: none;
}
body:not(.fl-builder-edit) #eapps-instagram-feed-1 > a{
    display: none!important;
}
.eapps-instagram-feed-posts-grid .eapps-instagram-feed-posts-item{
    border-radius: 16px;
    overflow: hidden;
    background-color: transparent!important;
}
.eapps-instagram-feed-posts-view{
    gap:16px;
}
.eapps-instagram-feed-posts-grid .eapps-instagram-feed-posts-item{
    width:100%!important;
    flex:1!important;
}
.search-title-result { text-transform:initial }

.grecaptcha-badge{
	display: none!important;
}

/**********************/
/* Highlights Flyouts */
/**********************/


html.clipforsticky, html.clipforsticky body{
    overflow-x: clip;
}

.flyout_featured_img img {border-radius:30px;}
.highlights_col_flyouts >.fl-col-content {
    /*margin-bottom:-150px;*/
    position:relative;
}
.highlights_col_flyouts >.fl-col-content:after {
    /*content: "";
    position: sticky;
    bottom: 0;
    left: 0;
    height: 150px;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), var(--black) 90%);*/
}

.highlights_col_left .fl-col-content{
    position: relative;
    z-index: 1;
}
.highlights_img {
    position: sticky;
    top: 20px;
}

.highlights_col_flyouts >.fl-col-content:after {
    content: "";
    position: sticky;
    bottom: 0;
    left: 0;
    height: 150px;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), var(--black) 90%);
    pointer-events: none;
}
/*
.highlights_img:after{
    z-index: 1;
    content: "";
    position: absolute;
    bottom: -28px;
    left: 100%;
    height: 150px;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), var(--black) 90%);
}
*/
.uabb-offcanvas-photo-content  {
    width:200px;
    height:200px;
    border-radius:30px;
    max-width: initial;
    overflow:hidden;
}
.highlight_item .uabb-offcanvas-photo {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    max-width: initial;
    transition: all .5s ease;
    object-fit: cover;
}

.highlight_item .uabb-offcanvas-photo:hover {
    transform:scale(1.1);
}

.highlight_item .highlight_title_trigger {
    background-image: linear-gradient(transparent, transparent);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition:all .25s ease;
}
.highlight_item:hover .highlight_title_trigger {
    color:var(--yellow) !important;
    /*
    background-image: linear-gradient(currentColor, currentColor);
    animation: 0.25s underline;
    */
}

.uabb-offcanvas-close .uabb-offcanvas-close-icon {
    font-size: 32px !important;
}
.uabb-offcanvas-close-icon-wrapper .uabb-offcanvas-close {
    width: 55px;
    height: 55px;
    padding: 12px 17px;
    border-radius: 100px !important;
    margin:20px;
    border: 0;
    color: var(--black);
}

body.flyout-open {
    overflow: hidden;
}

.uabb-offcanvas-content {
    overflow-y:scroll;
    height:100%;
}

.uabb-offcanvas {visibility:hidden}
.uabb-offcanvas.uabb-off-canvas-show {visibility:visible}



/****Interactive Timeline***/
.uabb-timeline-img{
    margin-bottom: 36px!important
}
.uabb-timeline-img img{
    width:100%;
    object-fit: cover;
    border-radius: 30px;
}
.uabb-timeline-heading{
    margin-bottom: 0!important;
}
.uabb-timeline-date{
    margin-top: 16px;
    margin-bottom: 16px;
}
.uabb-timeline-date p{
    font-family: var(--font-content);
    color:var(--black)!important;
    font-size: 22px;
    font-size: 1.38rem;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    line-height: 2.13rem;
}
.uabb-timeline-desc-content {
    margin-top:16px;
}

@media (prefers-reduced-motion: no-preference) {

    .uabb-timeline-main .uabb-day-right {
        animation: slide-in-right ease;
        animation-timeline: view(); 
        animation-range: entry 0% cover 40%; 
    }
    .uabb-timeline-main .uabb-day-left {
        animation: slide-in-left ease;
        animation-timeline: view(); 
        animation-range: entry 0% cover 40%; 
    }

    @keyframes slide-in-right {
        0% { 
            transform: translateX(-500px); 
            opacity:0;
        }
        100% { 
            transform: translateX(0px); 
            opacity:1;
        }
    }
    @keyframes slide-in-left {
        0% { 
            transform: translateX(500px); 
            opacity:0;
        }
        100% { 
            transform: translateX(0px); 
            opacity:1;
        }
    }
}



























/**************/
/**************/
/* Responsive */
/**************/
/**************/


/* Desktop */
@media screen and (max-width: 1366px) {

    
    /***********************************************/
    /*  Full Width Breakout honoring wrapper-left  */
    /***********************************************/
    /* .fullwidth.marginleft  > div, .fullwidth .marginleft  { padding-left:  calc( (var(--viewportWidth) - (1366px - (var(--content-padding) * 2))) / 2);} */
    /* .fullwidth.marginright > div, .fullwidth .marginright { padding-right: calc( (var(--viewportWidth) - (1366px - (var(--content-padding) * 2))) / 2);} */

    :root {

        /* SPACING */
        --content-padding: 60px;
        --content-padding-left: 100px;
        --content-padding-right: 60px;

    }
    


    /***********************************************/
    /*  Full Width Breakout honoring wrapper-left  */
    /***********************************************/
    .fullwidth.marginleft >  div, .fullwidth .marginleft  { padding-left:  var(--content-padding);}
    .fullwidth.marginright > div, .fullwidth .marginright { padding-right: var(--content-padding);} 
}

  
/* Tablet */
@media only screen and (max-width: 992px) {

    :root {

        /* SPACING */
        --content-padding: 36px;
        --content-padding-left: 36px;
        --content-padding-right: 36px;

    }


    /**************/
    /* TYPOGRAPHY */
    /**************/

    h1, .h1, .h1 p, .h1 .fl-heading {
        font-size: 84px;
        font-size: 5.25rem;
        line-height: 74px;
        line-height: 4.63rem;
    }

    h2, .h2, .h2 p, .h2 .fl-heading {
        font-size: 58px;
        font-size: 3.63rem;
        line-height: 53px;
        line-height: 3.31rem;
    }

    h3, .h3, .h3 p, .h3 .fl-heading {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 34px;
        line-height: 2.13rem;
    }

    h4, .h4, .h4 p, .h4 .fl-heading {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 30px;
        line-height: 1.88rem;
    }

    p, .p, ul, ol {
        font-size: 19px;
        font-size: 1.19rem;
        line-height: 30px;
        line-height: 1.88rem;
    }

    .large, p.large, p .large, .large p,
    .large ol, ol.large, .large ul, ul.large {
        font-size: 22px;
        font-size: 1.38rem;
        line-height: 32px;
        line-height: 2rem;
    }

    .small, p.small, p .small, .small p,
    .small ol, ol.small, .small ul, ul.small {
        font-size: 16px;
        font-size: 1rem;
        line-height: 26px;
        line-height: 1.63rem;
    }

    blockquote p {
        font-size: 23px;
        font-size: 1.44rem;
        line-height: 33px;
        line-height: 2.06rem;
    }
    
    /* Number Stat */
    .number_stat .fl-number-string {
        font-size: 90px;
        font-size: 5.63rem;
        line-height: 100px;
        line-height: 6.25rem;
    }

    .fl-builder-content .cta_button a.fl-button {
        font-family: var(--font-content);
        font-size: 17px;
        font-size: 1.06rem;
        padding: 16px 30px;
    }
    

}


/* Mobile */
@media only screen and (max-width: 768px) {

    :root {

        /* SPACING */
        --content-padding: 18px;
        --content-padding-left: 18px;
        --content-padding-right: 18px;

    }

    html, body { 
        /* overflow-x: hidden; */
        max-width:100vw;
    }
    h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
        word-wrap: break-word;
    }



    /**************/
    /* TYPOGRAPHY */
    /**************/

    h1, .h1, .h1 p, .h1 .fl-heading {
        font-size: 54px;
        font-size: 3.38rem;
        line-height: 44px;
        line-height: 2.75rem;
        word-wrap: initial;
    }

    h2, .h2, .h2 p, .h2 .fl-heading {
        font-size: 44px;
        font-size: 2.75rem;
        line-height: 37px;
        line-height: 2.31rem;
        word-wrap: initial;
    }

    h3, .h3, .h3 p, .h3 .fl-heading {
        font-size: 30px;
        font-size: 1.88rem;
        line-height: 26px;
        line-height: 1.63rem;
    }

    h4, .h4, .h4 p, .h4 .fl-heading {
        font-size: 19px;
        font-size: 1.19rem;
        line-height: 24px;
        line-height: 1.5rem;
    }


    p, .p, ul, ol {
        font-size: 18px;
        font-size: 1.13rem;
        line-height: 28px;
        line-height: 1.75rem;
    }

    .large, p.large, p .large, .large p,
    .large ol, ol.large, .large ul, ul.large {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 28px;
        line-height: 1.75rem;
    }

    blockquote p {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 30px;
        line-height: 1.88rem;
    }

    /* Number Stat */
    .number_stat .fl-number-string {
        font-size: 70px;
        font-size: 4.38rem;
        line-height: 60px;
        line-height: 3.75rem;
    }

    .fl-builder-content .cta_button a.fl-button,
    .fl-builder-content .wpforms-container .wpforms-submit,
    .fl-builder-content .cta_button:not(.underline_anim) a.fl-button:is(:hover,:focus)  {
        padding:13px 26px;
    }


    



    /**********************/
    /* Highlights Flyouts */
    /**********************/

    .highlights_col_flyouts {overflow:scroll}
    .highlight_flyout,
    .highlight_flyout .fl-module-content,
    .highlight_flyout .uabb-offcanvas-action,
    .highlight_flyout .uabb-offcanvas-photo-content {
        width: 275px;
        height: 200px;
    }
    .uabb-offcanvas-photo-content {
        width: 150px;
        height: 150px;
        border-radius: 20px;
    }
    .highlight_item .uabb-offcanvas-photo {
        border-radius: 20px;
    }

    .flyout_featured_img img {border-radius:30px;}


    .highlights_col_flyouts >.fl-col-content {
        margin-bottom:0;
        flex-direction: row;
        gap: 36px;
    }
    .highlights_col_flyouts >.fl-col-content:after {
        display:none;
    }

    h4.highlight_title {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 24px;
        line-height: 1.5rem;
    }


    /****Interactive Timeline***/

    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-module.uabb-timeline-right {
        -webkit-flex-direction: row;
    }
    
    .uabb-timeline-vertical.uabb-timeline--center .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-left .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-right .uabb-day-new {
        -webkit-box-ordinal-group: 1;
        order: 1;
        flex-basis: auto;
        margin-left: 6px;
    }

    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-date-new {
        display: none !important;
    }
    
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-marker-wrapper {
        -webkit-box-ordinal-group: 0;
        order: 0;
        margin: 0;
    }
    
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline__line {
        left: 10px;
    }

    .uabb-timeline-vertical.uabb-timeline--center .uabb-day-right .uabb-timeline-arrow {
        left: 0;
        right: 0;
        transform: translateY(-50%) scaleX(-1);
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-right .uabb-day-new{
        padding-left: 12px;
        padding-right: 0;
    }
    .uabb-timeline-img{
        margin-bottom: 16px!important
    }

    @media (prefers-reduced-motion: no-preference) {

        .uabb-timeline-main .uabb-day-right {
            animation: slide-in-left ease;
            animation-timeline: view(); 
            animation-range: entry 0% cover 40%; 
        }
        
    }


}