@import url('//fonts.googleapis.com/css?family=Roboto:400%7Cinherit%7CLato:900,400&amp;display=swap');
@import url('//fonts.googleapis.com/css?family=Lato:300,400,700,400|Inter:400,700|Roboto:700,400&amp;ver=7.1');
@import url('//fonts.googleapis.com/css?family=Lato:300,400,700,400|Inter:700,400|Roboto:700,400&amp;ver=7.1');

/* GrumpyHare migration — layout scaffolding */

/* The Beaver Builder THEME prints the page title above the content -- but only
   on a page the builder is not handling. On a BB page it stands aside and lets
   the builder own the whole content area, which is why the original renders no
   title at all: `fl-post-header` appears zero times on the source page.

   Publishing a migrated page clears _fl_builder_enabled, which is the whole
   point -- it is what stops BB overriding our content. The theme then treats the
   page as an ordinary post again and starts printing its header, so the title
   appears where the source never had one. Seen on homesmith's /press-photos the
   moment it first published correctly: a plain "Press Photos" above the design's
   own script-lettered heading.

   Unscoped deliberately. This element sits OUTSIDE .gh-migrated -- it is theme
   chrome wrapping our content, so a scoped rule could never reach it. Safe
   because page_css is served per page (page_css.php?page_id=N) and loads
   nowhere else, and because on Apex's own side the element does not exist.

   This reproduces what the source page RENDERS, which is the rule everywhere
   else in this file; it does not restyle anything the source actually shows. */
/* A content slider must not be invisible before its JavaScript runs.

   BB ships the track fully transparent -- .fl-node-<id> .fl-content-slider-wrapper
   { opacity: 0 } -- and reveals it from script. slider_script() does that on the
   published page, but scripts inside block content do not execute in the
   Gutenberg canvas, so in the editor the opacity is never cleared and the whole
   carousel paints as a blank band. Seen on homesmith's About Us: six
   testimonials, valid blocks, and an empty gap where the section should be.

   Until the script marks the slider loaded, show the track and its FIRST slide
   only. Two things fall out of that: the editor shows real content instead of a
   hole, and the published page stops flashing all six testimonials stacked in
   the moment before the script runs. Once .fl-content-slider-loaded is added,
   both rules stop matching and the script owns the slider completely.
   :first-child rather than :first-of-type -- BB puts non-slide children in the
   same track, and only .fl-slide is a slide. */
.gh-migrated .fl-content-slider:not(.fl-content-slider-loaded) .fl-content-slider-wrapper {
    opacity: 1;
}
.gh-migrated .fl-content-slider:not(.fl-content-slider-loaded) .fl-slide ~ .fl-slide {
    display: none;
}
/* col-md-12 is a FLOATED Bootstrap column, and a float with width:auto shrinks
   to fit its content instead of filling its parent. Freeing the container above
   left the column sizing itself to its widest row: 1440px inside a 1555px
   viewport on homesmith's home page, which reads as a white strip down the
   right-hand side. It needs an explicit full width, not auto. */
.fl-content-full.container .fl-content.col-md-12 { width: 100%; float: none; }

/* An icon-and-text row must not pay BB's generic module spacing twice.

   BB builds these list rows as a nested column group it marks
   fl-col-group-custom-width: a narrow icon column and a wide text one. Inside
   the text column two of its own defaults stack --
       .fl-col-content   { padding: 20px }
       .fl-module-content { margin: 20px }
   -- taking 80px off a 437px column and leaving the heading 357px.

   Measured on homesmith's About Us: "Habitat For Humanity MidOhio Columbus" at
   20px Raleway needs 386px on one line and had 357, so every one of those
   headings wrapped onto a second line and pushed its web address down, which is
   the gap between the tick and the text the original does not have. 29px short.

   Only the horizontal margins, and only inside a custom-width group: the
   vertical rhythm is untouched, and an ordinary column keeps BB's spacing. */
   DESCENDANT was too wide a net. It also matched modules nested DEEPER --
   inside a fl-col-group-nested that is not itself custom-width -- and on
   homebuyexperts city pages those are the three numbered cards, where BB's
   20px module margin IS the card's inner padding. Killing it ran the text to
   the edge of the white box. Restrict to modules sitting DIRECTLY in the
   custom-width group's own columns, which is the shape homesmith needed. */
.gh-migrated .fl-col-group-custom-width > .fl-col > .fl-col-content > .fl-module > .fl-module-content {
    margin-left: 0;
    margin-right: 0;
}

/* A module must not be paid BB's spacing twice because of WordPress's wrapper.

   Beaver Builder guards its generic module margin with
       .fl-module:not(:has(> .fl-module-content)) { margin: 20px }
   meaning "only a module whose content is merged into itself". Rendering a
   core/group puts a wp-block-group__inner-container between the two, so that
   `>` never matches, the guard is false for EVERY module, and the margin lands
   on top of the 20px .fl-module-content already carries.

   Measured on homesmith's About Us, 2026-09-18, between a heading module and
   the address beneath it:
       source    .fl-module m=0/0     gap  0px
       migrated  .fl-module m=20/20   gap 40px
   on every icon-and-text row on the page.

   This has to be an override rather than only a fix to the selector we emit.
   On shape A the customer's site serves its OWN copy of bb-theme's stylesheet
   -- 13 stylesheets on homesmith's published page -- and that copy still holds
   the original guard whatever we do to ours. The widened :has() in
   wp_widen_has_guard() covers shape B, where our collected CSS is the only
   styling the page gets; this covers shape A, where it is not.

   Stated positively, never as another negation: :has() here matches MORE, so
   it cannot invert the way a variant inside :not() does. Specificity beats
   BB's guard on its own (0,4,0 against 0,2,0) without !important. */
.gh-migrated .fl-module:has(> .wp-block-group__inner-container > .fl-module-content) {
    margin: 0;
}
.fl-post-header { display: none; }

/* …and let the content out of the theme's centred container.
   The same switch is behind both: with Beaver Builder enabled the theme hands
   the whole content area over to the builder, so a BB row runs edge to edge.
   Publishing a migrated page clears _fl_builder_enabled, the theme treats it as
   an ordinary post again, and wraps it in its normal Bootstrap container.
   Measured on homesmith's /press-photos at a 1570px viewport:
       .fl-content-full.container -> .fl-content.col-md-12 -> .fl-post-content
       left the migrated wrapper 1020px wide, starting 268px in, while the
       theme's own rows above it were the full 1555px.
   Every full-width row inherited that: backgrounds, waves and photo columns all
   boxed into a centred strip the source never had.
   Widening the container beats the usual 100vw + negative-margin escape here --
   100vw counts the scrollbar, so that trick overhangs by the scrollbar's width
   and adds a horizontal scrollbar of its own. Unscoped for the same reason as
   the header above: these elements wrap .gh-migrated rather than live inside it,
   and page_css is served per page, so nothing else can be affected. */
.fl-post-content > .gh-migrated { width: auto; max-width: none; }
.fl-content-full.container,
.fl-content-full.container > .row,
.fl-content-full.container .fl-content.col-md-12 {
    max-width: none;
    width: auto;
    /* All four sides. The theme also spaces the post content vertically --
       .fl-content.col-md-12 carries margin-top:40px and margin-bottom:40px --
       which showed as a white band above the first section and below the last,
       between the page and the header and footer the source sits flush against. */
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}


/* WordPress's inserted group wrapper must not change the layout.
   Rendering a core/group adds a div the editor does not have:
       <div class="wp-block-group fl-row fl-node-X">
         <div class="wp-block-group__inner-container">      <- rendered only
   and that wrapper is width-constrained. Beaver Builder's full-bleed rows paint
   their background on .fl-row-content-wrap, which now sits INSIDE it, so a row
   the source runs edge to edge came out boxed into a centred column with white
   down both sides -- background, wave and all.
   It is a structural artefact of WordPress's renderer, not part of the design,
   so it is given no width, no maximum and no centring margins of its own and
   simply passes its parent's box through. Scoped to .gh-migrated so nothing
   outside a migrated page is affected. */
.gh-migrated .wp-block-group__inner-container {
    /* display:contents, not merely a size reset. The wrapper does not only
       constrain width -- it BREAKS the parent/child relationship the layout
       depends on. Beaver Builder lays a column group out with flex, and its
       columns must be that group's OWN children to become flex items. With the
       wrapper in between, the group's single flex item is the wrapper and the
       real columns are ordinary blocks inside it, so they never equalise
       height. Measured on homesmith's home page: a .fl-col-group reporting
       display:flex with ZERO .fl-col children, and cards staggering down the
       page instead of sitting level.
       display:contents makes the wrapper generate no box at all, so its
       children belong to the group again -- fixing the flex layout and the
       width constraint together. The resets below stay as a fallback for
       anything without display:contents; they cover sizing, not flex. */
    display: contents;
    max-width: none;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Gutenberg puts `white-space: pre-wrap` inline on every rich-text block so that
   typed spaces and newlines stay visible while editing. BB puts its module
   classes on the heading element ITSELF, so in the canvas that heading is a
   rich-text block and inherits pre-wrap -- and BB's markup is indented, so the
   layout whitespace around the text stops collapsing. "Need To Sell" went 50px
   -> 150px and pushed every section below it down the page, which is why the
   canvas looked nothing like the same row rendered from the database.

   Isolated by injecting Gutenberg's two inline styles one at a time into a
   copy of the page: min-width:1px alone -> 50px (no effect), pre-wrap alone ->
   150px. Inline styles lose only to !important. `normal` is the default
   everywhere else, so this changes nothing outside the editor. */
.gh-migrated .fl-module,
.gh-migrated .fl-module * { white-space: normal !important; }

/* Beaver Builder uses empty columns as pure background-image holders, and an
   empty core/group draws Gutenberg's "Group blocks together — select a layout"
   picker: a white panel of blue swatches that reads as page content. Emitting
   those wrappers as html blocks instead removed the picker but broke the DOM —
   Gutenberg nests an html block inside .wp-block-html > .apex-html-block-preview,
   which defeats every `>` selector BB wrote. So the wrapper stays a group and the
   picker is hidden here. Canvas-only: these classes do not exist on a live page. */
.gh-migrated .components-placeholder,
.gh-migrated .wp-block-group__placeholder,
.gh-migrated .wp-block-group-placeholder__variations,
.gh-migrated .block-editor-block-variation-picker { display: none !important; }

.gh-migrated .gh-row-inner { max-width: 1100px; margin: 0 auto; padding: 20px; }
.gh-migrated .gh-row-inner.gh-full { max-width: none; padding: 0; }
.gh-migrated .gh-cols { display: flex; flex-wrap: wrap; gap: 0; }
.gh-migrated .gh-col { min-width: 0; flex: 1 1 0; }
.gh-migrated .gh-col[style], .gh-migrated .gh-cols > .gh-col { flex: 0 0 auto; }
@media (max-width: 768px) { .gh-migrated .gh-col { width: 100% !important; } }
.gh-migrated img { max-width: 100%; height: auto; }
.gh-migrated .gh-btn { display: inline-block; padding: 12px 28px; border-radius: 6px; background: #f59e0b; color: #111; font-weight: 700; text-decoration: none; }
.apex-migrate-swap { border: 2px dashed #f59e0b; border-radius: 8px; padding: 24px; text-align: center; background: rgba(245,158,11,.08); }
.apex-migrate-swap__label { margin: 0; font-size: 13px; color: #92400e; font-weight: 600; }

/* Per-node settings */
.gh-migrated .gh-node-a293j5wbh1zu { width: 100%; }
.gh-migrated .gh-node-a293j5wbh1zu { background-color: #FBF9EA; padding-top: 100px; padding-bottom: 65px; }
.gh-migrated .gh-node-xelydo9b85g6 { width: 100%; }
.gh-migrated .gh-node-ka0o6z9iylsb { padding-top: 0px; padding-right: 40px; padding-bottom: 200px; padding-left: 40px; }

/* Original Beaver Builder layout CSS (namespaced) */


/* --- site stylesheets (theme, forms, plugins) --- */
.gh-migrated .audioPlayerCont .audio-control {width:50px;height:50px;cursor:pointer;z-index:3}
.gh-migrated .audioPlayerCont {display:flex;white-space:nowrap}
@media only screen and (max-width:768px) {
.gh-migrated .audioPlayerCont {justify-content:center}

}
.gh-migrated .switch {position:relative;display:inline-block;width:80px;height:42px;z-index:9;border:2px solid #00525d;border-radius:25px}
.gh-migrated .switch:before {opacity:0;width:0;height:0;background-image:url("https://webuyhomesinstlouis.com/wp-content/uploads/2026/09/PR-ON.png")}
.gh-migrated .switch input {opacity:0;width:0;height:0}
.gh-migrated .slider {position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s;border-radius:34px}
.gh-migrated .slider:before {position:absolute;content:"";height:38px;width:38px;left:0;bottom:1px;top:0;background-color:#fff0;transition:.4s;border-radius:50%;background-size:cover;background-image:url("https://webuyhomesinstlouis.com/wp-content/uploads/2026/09/US-ON.png")}
.gh-migrated input:checked+.slider:before {transform:translateX(38px);background-image:url("https://webuyhomesinstlouis.com/wp-content/uploads/2026/09/PR-ON.png")}
.gh-migrated #header-button {flex-wrap:wrap;flex-direction:column-reverse}
.gh-migrated.fl-builder-content *, .gh-migrated.fl-builder-content *:before, .gh-migrated.fl-builder-content *:after {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.gh-migrated .fl-row:before, .gh-migrated .fl-row:after, .gh-migrated .fl-row-content:before, .gh-migrated .fl-row-content:after, .gh-migrated .fl-col-group:before, .gh-migrated .fl-col-group:after, .gh-migrated .fl-col:before, .gh-migrated .fl-col:after, .gh-migrated .fl-module:not([data-accepts]):before, .gh-migrated .fl-module:not([data-accepts]):after, .gh-migrated .fl-module-content:before, .gh-migrated .fl-module-content:after {display:table;content:" "}
.gh-migrated .fl-row:after, .gh-migrated .fl-row-content:after, .gh-migrated .fl-col-group:after, .gh-migrated .fl-col:after, .gh-migrated .fl-module:not([data-accepts]):after, .gh-migrated .fl-module-content:after {clear:both}
.gh-migrated .fl-clear {clear:both}
.gh-migrated .fl-row, .gh-migrated .fl-row-content {margin-left:auto;margin-right:auto;min-width:0}
.gh-migrated .fl-row-content-wrap {position:relative}
.gh-migrated .fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {background-attachment:scroll}
.gh-migrated .fl-row-bg-video, .gh-migrated .fl-row-bg-video .fl-row-content, .gh-migrated .fl-row-bg-embed, .gh-migrated .fl-row-bg-embed .fl-row-content {position:relative}
.gh-migrated .fl-row-bg-video .fl-bg-video, .gh-migrated .fl-row-bg-embed .fl-bg-embed-code {bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}
.gh-migrated .fl-row-bg-video .fl-bg-video video, .gh-migrated .fl-row-bg-embed .fl-bg-embed-code video {bottom:0;left:0;max-width:none;position:absolute;right:0;top:0}
.gh-migrated .fl-row-bg-video .fl-bg-video video {min-width:100%;min-height:100%;width:auto;height:auto}
.gh-migrated .fl-row-bg-video .fl-bg-video iframe, .gh-migrated .fl-row-bg-embed .fl-bg-embed-code iframe {pointer-events:none;width:100vw;height:56.25vw;max-width:none;min-height:100vh;min-width:177.77vh;position:absolute;top:50%;left:50%;-ms-transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}
.gh-migrated .fl-bg-video-fallback {background-position:50% 50%;background-repeat:no-repeat;background-size:cover;bottom:0;left:0;position:absolute;right:0;top:0}
.gh-migrated .fl-row-bg-slideshow, .gh-migrated .fl-row-bg-slideshow .fl-row-content {position:relative}
.gh-migrated .fl-row .fl-bg-slideshow {bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:0}
.gh-migrated .fl-builder-edit .fl-row .fl-bg-slideshow * {bottom:0;height:auto!important;left:0;position:absolute!important;right:0;top:0}
.gh-migrated .fl-row-bg-overlay .fl-row-content-wrap:after {border-radius:inherit;content:'';display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:0}
.gh-migrated .fl-row-bg-overlay .fl-row-content {position:relative;z-index:1}
.gh-migrated .fl-row-default-height .fl-row-content-wrap, .gh-migrated .fl-row-custom-height .fl-row-content-wrap {display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-height:100vh}
.gh-migrated .fl-row-overlap-top .fl-row-content-wrap {display:-webkit-inline-box;display:-webkit-inline-flex;display:-moz-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:100%}
.gh-migrated .fl-row-default-height .fl-row-content-wrap, .gh-migrated .fl-row-custom-height .fl-row-content-wrap {min-height:0}
.gh-migrated .fl-row-default-height .fl-row-content, .gh-migrated .fl-row-full-height .fl-row-content, .gh-migrated .fl-row-custom-height .fl-row-content {-webkit-box-flex:1 1 auto;-moz-box-flex:1 1 auto;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}
.gh-migrated .fl-row-default-height .fl-row-full-width.fl-row-content, .gh-migrated .fl-row-full-height .fl-row-full-width.fl-row-content, .gh-migrated .fl-row-custom-height .fl-row-full-width.fl-row-content {max-width:100%;width:100%}
.gh-migrated .fl-row-default-height.fl-row-align-center .fl-row-content-wrap, .gh-migrated .fl-row-full-height.fl-row-align-center .fl-row-content-wrap, .gh-migrated .fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {-webkit-align-items:center;-webkit-box-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center;align-items:center}
.gh-migrated .fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap, .gh-migrated .fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap, .gh-migrated .fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {-webkit-align-items:flex-end;-webkit-justify-content:flex-end;-webkit-box-align:end;-webkit-box-pack:end;-ms-flex-align:end;-ms-flex-pack:end;justify-content:flex-end;align-items:flex-end}
.gh-migrated .fl-col-group-equal-height {display:flex;flex-wrap:wrap;width:100%}
.gh-migrated .fl-col-group-equal-height.fl-col-group-has-child-loading {flex-wrap:nowrap}
.gh-migrated .fl-col-group-equal-height .fl-col, .gh-migrated .fl-col-group-equal-height .fl-col-content {display:flex;flex:1 1 auto}
.gh-migrated .fl-col-group-equal-height .fl-col-content {flex-direction:column;flex-shrink:1;min-width:1px;max-width:100%;width:100%}
.gh-migrated .fl-col-group-equal-height:before, .gh-migrated .fl-col-group-equal-height .fl-col:before, .gh-migrated .fl-col-group-equal-height .fl-col-content:before, .gh-migrated .fl-col-group-equal-height:after, .gh-migrated .fl-col-group-equal-height .fl-col:after, .gh-migrated .fl-col-group-equal-height .fl-col-content:after {content:none}
.gh-migrated .fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content, .gh-migrated .fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {justify-content:flex-start}
.gh-migrated .fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content, .gh-migrated .fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {justify-content:center}
.gh-migrated .fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content, .gh-migrated .fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {justify-content:flex-end}
.gh-migrated .fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {width:100%}
.gh-migrated .fl-col {float:left;min-height:1px}
.gh-migrated .fl-col-bg-overlay .fl-col-content {position:relative}
.gh-migrated .fl-col-bg-overlay .fl-col-content:after {border-radius:inherit;content:'';display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:0}
.gh-migrated .fl-col-bg-overlay .fl-module {position:relative;z-index:2}
.gh-migrated .single:not(.woocommerce).single-fl-builder-template .fl-content {width:100%}
.gh-migrated .fl-builder-layer {position:absolute;top:0;left:0;right:0;bottom:0;z-index:0;pointer-events:none;overflow:hidden}
.gh-migrated .fl-builder-shape-layer {z-index:0}
.gh-migrated .fl-builder-shape-layer.fl-builder-bottom-edge-layer {z-index:1}
.gh-migrated .fl-row-bg-overlay .fl-builder-shape-layer {z-index:1}
.gh-migrated .fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {z-index:2}
.gh-migrated .fl-row-has-layers .fl-row-content {z-index:1}
.gh-migrated .fl-row-bg-overlay .fl-row-content {z-index:2}
.gh-migrated .fl-builder-layer>* {display:block;position:absolute;top:0;left:0;width:100%}
.gh-migrated .fl-builder-layer+.fl-row-content {position:relative}
.gh-migrated .fl-builder-layer .fl-shape {fill:#aaa;stroke:none;stroke-width:0;width:100%}
@supports (-webkit-touch-callout:inherit) {
.gh-migrated .fl-row.fl-row-bg-parallax .fl-row-content-wrap, .gh-migrated .fl-row.fl-row-bg-fixed .fl-row-content-wrap {background-position:center!important;background-attachment:scroll!important}

}
@supports (-webkit-touch-callout:none) {
.gh-migrated .fl-row.fl-row-bg-fixed .fl-row-content-wrap {background-position:center!important;background-attachment:scroll!important}

}
.gh-migrated .fl-clearfix:before, .gh-migrated .fl-clearfix:after {display:table;content:" "}
.gh-migrated .fl-clearfix:after {clear:both}
.gh-migrated .sr-only {position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.gh-migrated.fl-builder-content .fl-button:is(a,button), .gh-migrated.fl-builder-content a.fl-button:visited {border-radius:4px;display:inline-block;font-size:16px;font-weight:400;line-height:18px;padding:12px 24px;text-decoration:none;text-shadow:none}
.gh-migrated.fl-builder-content .fl-button:hover {text-decoration:none}
.gh-migrated.fl-builder-content .fl-button:active {position:relative;top:1px}
.gh-migrated.fl-builder-content .fl-button-width-full .fl-button {width:100%;display:block;text-align:center}
.gh-migrated.fl-builder-content .fl-button-width-custom .fl-button {display:inline-block;text-align:center;max-width:100%}
.gh-migrated.fl-builder-content .fl-button-left {text-align:left}
.gh-migrated.fl-builder-content .fl-button-center {text-align:center}
.gh-migrated.fl-builder-content .fl-button-right {text-align:right}
.gh-migrated.fl-builder-content .fl-button i {font-size:1.3em;height:auto;margin-right:8px;vertical-align:middle;width:auto}
.gh-migrated.fl-builder-content .fl-button i.fl-button-icon-after {margin-left:8px;margin-right:0}
.gh-migrated.fl-builder-content .fl-button-has-icon .fl-button-text {vertical-align:middle}
.gh-migrated .fl-icon-wrap {display:inline-block}
.gh-migrated .fl-icon {display:table-cell;vertical-align:middle}
.gh-migrated .fl-icon a {text-decoration:none}
.gh-migrated .fl-icon i {float:right;height:auto;width:auto}
.gh-migrated .fl-icon i:before {border:none!important;height:auto;width:auto}
.gh-migrated .fl-icon-text {display:table-cell;text-align:left;padding-left:15px;vertical-align:middle}
.gh-migrated .fl-icon-text-empty {display:none}
.gh-migrated .fl-icon-text *:last-child {margin:0!important;padding:0!important}
.gh-migrated .fl-icon-text a {text-decoration:none}
.gh-migrated .fl-icon-text span {display:block}
.gh-migrated .fl-icon-text span.mce-edit-focus {min-width:1px}
.gh-migrated .fl-module img {max-width:100%}
.gh-migrated .fl-photo {line-height:0;position:relative}
.gh-migrated .fl-photo-align-left {text-align:left}
.gh-migrated .fl-photo-align-center {text-align:center}
.gh-migrated .fl-photo-align-right {text-align:right}
.gh-migrated .fl-photo-content {display:inline-block;line-height:0;position:relative;max-width:100%}
.gh-migrated img-svg {width:100%}
.gh-migrated .fl-photo-content img {display:inline;height:auto;max-width:100%}
.gh-migrated .fl-photo-crop-circle img {-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%}
.gh-migrated .fl-photo-caption {font-size:13px;line-height:18px;overflow:hidden;text-overflow:ellipsis}
.gh-migrated .fl-photo-caption-below {padding-bottom:20px;padding-top:10px}
.gh-migrated .fl-photo-caption-hover {background:rgb(0 0 0 / .7);bottom:0;color:#fff;left:0;opacity:0;filter:alpha(opacity=0);padding:10px 15px;position:absolute;right:0;-webkit-transition:opacity 0.3s ease-in;-moz-transition:opacity 0.3s ease-in;transition:opacity 0.3s ease-in}
.gh-migrated .fl-photo-content:hover .fl-photo-caption-hover {opacity:100;filter:alpha(opacity=100)}
.gh-migrated .fl-builder-pagination, .gh-migrated .fl-builder-pagination-load-more {padding:40px 0}
.gh-migrated .fl-builder-pagination ul.page-numbers {list-style:none;margin:0;padding:0;text-align:center}
.gh-migrated .fl-builder-pagination li {display:inline-block;list-style:none;margin:0;padding:0}
.gh-migrated .fl-builder-pagination li a.page-numbers, .gh-migrated .fl-builder-pagination li span.page-numbers {border:1px solid #e6e6e6;display:inline-block;padding:5px 10px;margin:0 0 5px}
.gh-migrated .fl-builder-pagination li a.page-numbers:hover, .gh-migrated .fl-builder-pagination li span.current {background:#f5f5f5;text-decoration:none}
.gh-migrated .fl-slideshow, .gh-migrated .fl-slideshow * {-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
.gh-migrated .fl-slideshow .fl-slideshow-image img {max-width:none!important}
.gh-migrated .fl-slideshow-social {line-height:0!important}
.gh-migrated .fl-slideshow-social * {margin:0!important}
.gh-migrated.fl-builder-content .bx-wrapper .bx-viewport {background:#fff0;border:none;box-shadow:none;left:0}
.gh-migrated .mfp-wrap button.mfp-arrow, .gh-migrated .mfp-wrap button.mfp-arrow:active, .gh-migrated .mfp-wrap button.mfp-arrow:hover, .gh-migrated .mfp-wrap button.mfp-arrow:focus {background:transparent!important;border:none!important;outline:none;position:absolute;top:50%;box-shadow:none!important}
.gh-migrated .mfp-wrap .mfp-close, .gh-migrated .mfp-wrap .mfp-close:active, .gh-migrated .mfp-wrap .mfp-close:hover, .gh-migrated .mfp-wrap .mfp-close:focus {background:transparent!important;border:none!important;outline:none;position:absolute;top:0;box-shadow:none!important}
.gh-migrated .admin-bar .mfp-wrap .mfp-close, .gh-migrated .admin-bar .mfp-wrap .mfp-close:active, .gh-migrated .admin-bar .mfp-wrap .mfp-close:hover, .gh-migrated .admin-bar .mfp-wrap .mfp-close:focus {top:32px!important}
.gh-migrated img.mfp-img {padding:0}
.gh-migrated .mfp-counter {display:none}
.gh-migrated .mfp-wrap .mfp-preloader.fa {font-size:30px}
.gh-migrated .fl-form-field {margin-bottom:15px}
.gh-migrated .fl-form-field input.fl-form-error {border-color:#DD6420}
.gh-migrated .fl-form-error-message {clear:both;color:#DD6420;display:none;padding-top:8px;font-size:12px;font-weight:lighter}
.gh-migrated .fl-form-button-disabled {opacity:.5}
.gh-migrated .fl-animation {opacity:0}
.gh-migrated .fl-no-js .fl-animation {opacity:1}
.gh-migrated .fl-builder-preview .fl-animation, .gh-migrated .fl-builder-edit .fl-animation, .gh-migrated .fl-animated {opacity:1}
.gh-migrated .fl-animated {animation-fill-mode:both}
.gh-migrated .fl-button.fl-button-icon-animation i {width:0!important;opacity:0;transition:all 0.2s ease-out}
.gh-migrated .fl-button.fl-button-icon-animation:hover i {opacity:1!important}
.gh-migrated .fl-button.fl-button-icon-animation i.fl-button-icon-after {margin-left:0px!important}
.gh-migrated .fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {margin-left:10px!important}
.gh-migrated .fl-button.fl-button-icon-animation i.fl-button-icon-before {margin-right:0!important}
.gh-migrated .fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {margin-right:20px!important;margin-left:-10px}
@media (max-width:1024px) {
.gh-migrated .fl-col-group.fl-col-group-medium-reversed {display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;flex-direction:row-reverse}

}
@media (max-width:767px) {
.gh-migrated .fl-row-content-wrap {background-attachment:scroll!important}
.gh-migrated .fl-row-bg-parallax .fl-row-content-wrap {background-attachment:scroll!important;background-position:center center!important}
.gh-migrated .fl-col-group.fl-col-group-equal-height {display:block}
.gh-migrated .fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {display:-webkit-box;display:-webkit-flex;display:flex}
.gh-migrated .fl-col-group.fl-col-group-responsive-reversed {display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;flex-direction:row-reverse}
.gh-migrated .fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {flex-basis:100%;width:100%!important}
.gh-migrated .fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {display:unset;display:unset;-webkit-flex-wrap:unset;flex-wrap:unset;flex-direction:unset}
.gh-migrated .fl-col {clear:both;float:none;margin-left:auto;margin-right:auto;width:auto!important}
.gh-migrated .fl-col-small:not(.fl-col-small-full-width) {max-width:400px}
.gh-migrated .fl-block-col-resize {display:none}
.gh-migrated .fl-row[data-node] .fl-row-content-wrap {margin:0;padding-left:0;padding-right:0}
.gh-migrated .fl-row[data-node] .fl-bg-video, .gh-migrated .fl-row[data-node] .fl-bg-slideshow {left:0;right:0}
.gh-migrated .fl-col[data-node] .fl-col-content {margin:0;padding-left:0;padding-right:0}

}
@media (min-width:1367px) {
.gh-migrated .fl-visible-large:not(.fl-visible-desktop), .gh-migrated .fl-visible-medium:not(.fl-visible-desktop), .gh-migrated .fl-visible-mobile:not(.fl-visible-desktop) {display:none}

}
@media (min-width:1025px) and (max-width:1366px) {
.gh-migrated .fl-visible-desktop:not(.fl-visible-large), .gh-migrated .fl-visible-medium:not(.fl-visible-large), .gh-migrated .fl-visible-mobile:not(.fl-visible-large) {display:none}

}
@media (min-width:768px) and (max-width:1024px) {
.gh-migrated .fl-visible-desktop:not(.fl-visible-medium), .gh-migrated .fl-visible-large:not(.fl-visible-medium), .gh-migrated .fl-visible-mobile:not(.fl-visible-medium) {display:none}

}
@media (max-width:767px) {
.gh-migrated .fl-visible-desktop:not(.fl-visible-mobile), .gh-migrated .fl-visible-large:not(.fl-visible-mobile), .gh-migrated .fl-visible-medium:not(.fl-visible-mobile) {display:none}

}
.gh-migrated .fl-col-content {display:flex;flex-direction:column}
.gh-migrated .fl-row-fixed-width {max-width:100%}
.gh-migrated.fl-builder-content>.fl-module-box {margin:0}
.gh-migrated .fl-row-content-wrap {margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px}
.gh-migrated .fl-module-content, .gh-migrated .fl-module:where(.fl-module:not(:has(> .fl-module-content, > .wp-block-group__inner-container > .fl-module-content))) {margin-top:20px;margin-right:20px;margin-bottom:20px;margin-left:20px}
.gh-migrated .page .fl-post-header, .gh-migrated .single-fl-builder-template .fl-post-header {display:none}
.gh-migrated .fl-node-ka0o6z9iylsb .fl-row-content {max-width:1600px}
.gh-migrated .fl-node-ka0o6z9iylsb>.fl-row-content-wrap, .gh-migrated .fl-node-ka0o6z9iylsb> .wp-block-group__inner-container > .fl-row-content-wrap {padding-top:0;padding-right:40px;padding-bottom:200px;padding-left:40px}
@media (max-width:1024px) {
.gh-migrated .fl-node-ka0o6z9iylsb.fl-row>.fl-row-content-wrap, .gh-migrated .fl-node-ka0o6z9iylsb.fl-row> .wp-block-group__inner-container > .fl-row-content-wrap {padding-right:40px;padding-bottom:110px;padding-left:40px}

}
@media (max-width:767px) {
.gh-migrated .fl-node-ka0o6z9iylsb.fl-row>.fl-row-content-wrap, .gh-migrated .fl-node-ka0o6z9iylsb.fl-row> .wp-block-group__inner-container > .fl-row-content-wrap {padding-right:20px;padding-bottom:40px;padding-left:20px}

}
.gh-migrated .fl-node-a293j5wbh1zu {width:100%}
.gh-migrated .fl-node-a293j5wbh1zu>.fl-col-content, .gh-migrated .fl-node-a293j5wbh1zu> .wp-block-group__inner-container > .fl-col-content {background-color:#FBF9EA;border-top-right-radius:20px;border-bottom-right-radius:20px}
@media(max-width:1366px) {
.gh-migrated.fl-builder-content .fl-node-a293j5wbh1zu {width:55%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-a293j5wbh1zu {width:100%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}
.gh-migrated .fl-node-a293j5wbh1zu>.fl-col-content, .gh-migrated .fl-node-a293j5wbh1zu> .wp-block-group__inner-container > .fl-col-content {border-top-left-radius:20px;border-top-right-radius:20px;border-bottom-left-radius:0;border-bottom-right-radius:0}

}
@media(max-width:767px) {
.gh-migrated .fl-node-a293j5wbh1zu>.fl-col-content, .gh-migrated .fl-node-a293j5wbh1zu> .wp-block-group__inner-container > .fl-col-content {border-top-left-radius:20px;border-top-right-radius:20px;border-bottom-left-radius:0;border-bottom-right-radius:0}

}
.gh-migrated .fl-node-a293j5wbh1zu>.fl-col-content, .gh-migrated .fl-node-a293j5wbh1zu> .wp-block-group__inner-container > .fl-col-content {padding-top:100px;padding-bottom:65px}
@media (max-width:1024px) {
.gh-migrated .fl-node-a293j5wbh1zu.fl-col>.fl-col-content, .gh-migrated .fl-node-a293j5wbh1zu.fl-col> .wp-block-group__inner-container > .fl-col-content {padding-top:40px;padding-right:20px;padding-bottom:0;padding-left:20px}

}
@media (max-width:767px) {
.gh-migrated .fl-node-a293j5wbh1zu.fl-col>.fl-col-content, .gh-migrated .fl-node-a293j5wbh1zu.fl-col> .wp-block-group__inner-container > .fl-col-content {padding-top:40px;padding-right:0;padding-bottom:40px;padding-left:0}

}
.gh-migrated .fl-node-xelydo9b85g6 {width:100%}
.gh-migrated .fl-module-heading .fl-heading {padding:0!important;margin:0!important}
.gh-migrated .fl-row .fl-col h1.fl-node-te29rzd0kyuj, .gh-migrated .fl-row .fl-col h1.fl-node-te29rzd0kyuj a, .gh-migrated h1.fl-node-te29rzd0kyuj, .gh-migrated h1.fl-node-te29rzd0kyuj a {color:#353535}
.gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading, .gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading :where(a,q,p,span) {font-family:Inter,sans-serif;font-weight:700;font-size:55px;line-height:1;text-align:left}
@media(max-width:1024px) {
.gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading, .gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading :where(a,q,p,span) {font-size:45px;letter-spacing:-1px}

}
@media(max-width:767px) {
.gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading, .gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading :where(a,q,p,span) {font-size:35px;text-align:center}

}
.gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading {margin-top:-20px;margin-bottom:30px;margin-left:20px}
@media (max-width:1024px) {
.gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading.fl-module {margin-top:40px}

}
@media (max-width:767px) {
.gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading.fl-module {margin-top:0}

}
@media (max-width:767px) {
.gh-migrated .fl-node-te29rzd0kyuj.fl-module-heading {margin-bottom:20px}

}
.gh-migrated.fl-builder-content .fl-rich-text strong {font-weight:700}
.gh-migrated .fl-module.fl-rich-text p:last-child {margin-bottom:0}
.gh-migrated .fl-builder-edit .fl-module.fl-rich-text p:not(:has(~*:not(.fl-block-overlay))) {margin-bottom:0}
.gh-migrated.fl-builder-content .fl-node-6ahtxk9cpl2z.fl-module-rich-text.fl-rich-text, .gh-migrated.fl-builder-content .fl-node-6ahtxk9cpl2z.fl-module-rich-text.fl-rich-text * {color:#000}
.gh-migrated.fl-builder-content .fl-node-6ahtxk9cpl2z.fl-module-rich-text.fl-rich-text, .gh-migrated.fl-builder-content .fl-node-6ahtxk9cpl2z.fl-module-rich-text.fl-rich-text *:not(b,strong) {font-family:Inter,sans-serif;font-weight:400;font-size:24px}
.gh-migrated .fl-node-6ahtxk9cpl2z.fl-module-rich-text {margin-top:0;margin-right:40px;margin-bottom:20px}
@media (max-width:767px) {
.gh-migrated .fl-node-6ahtxk9cpl2z.fl-module-rich-text.fl-module {margin-right:20px;margin-left:20px}

}
.gh-migrated .fl-page {zoom:75%}
.fl-page {zoom:75%}
.gh-migrated .fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-box-align:end;-webkit-box-pack:end;-ms-flex-pack:end}
.gh-migrated .uabb-module-content h1, .gh-migrated .uabb-module-content h2, .gh-migrated .uabb-module-content h3, .gh-migrated .uabb-module-content h4, .gh-migrated .uabb-module-content h5, .gh-migrated .uabb-module-content h6 {margin:0;clear:both}
.gh-migrated .fl-module-content a, .gh-migrated .fl-module-content a:hover, .gh-migrated .fl-module-content a:focus {text-decoration:none}
.gh-migrated .uabb-row-separator {position:absolute;width:100%;left:0}
.gh-migrated .uabb-top-row-separator {top:0;bottom:auto}
.gh-migrated .uabb-bottom-row-separator {top:auto;bottom:0}
.gh-migrated.fl-builder-content-editing .fl-visible-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-mobile.uabb-row {display:none!important}
@media (max-width:992px) {
.gh-migrated.fl-builder-content-editing .fl-visible-desktop.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-mobile.uabb-row {display:none!important}
.gh-migrated.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {display:block!important}

}
@media (max-width:768px) {
.gh-migrated.fl-builder-content-editing .fl-visible-desktop.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium.uabb-row {display:none!important}
.gh-migrated.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-mobile.uabb-row {display:block!important}

}
.gh-migrated .fl-responsive-preview-content .fl-builder-content-editing {overflow-x:hidden;overflow-y:visible}
.gh-migrated .uabb-row-separator svg {width:100%}
.gh-migrated .uabb-top-row-separator.uabb-has-svg svg {position:absolute;padding:0;margin:0;left:50%;top:-1px;bottom:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}
.gh-migrated .uabb-bottom-row-separator.uabb-has-svg svg {position:absolute;padding:0;margin:0;left:50%;bottom:-1px;top:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}
.gh-migrated .uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {bottom:0}
.gh-migrated .uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {top:0}
.gh-migrated .uabb-bottom-row-separator.uabb-svg-triangle svg, .gh-migrated .uabb-bottom-row-separator.uabb-xlarge-triangle svg, .gh-migrated .uabb-top-row-separator.uabb-xlarge-triangle-left svg, .gh-migrated .uabb-bottom-row-separator.uabb-svg-circle svg, .gh-migrated .uabb-top-row-separator.uabb-slime-separator svg, .gh-migrated .uabb-top-row-separator.uabb-grass-separator svg, .gh-migrated .uabb-top-row-separator.uabb-grass-bend-separator svg, .gh-migrated .uabb-bottom-row-separator.uabb-mul-triangles-separator svg, .gh-migrated .uabb-top-row-separator.uabb-wave-slide-separator svg, .gh-migrated .uabb-top-row-separator.uabb-pine-tree-separator svg, .gh-migrated .uabb-top-row-separator.uabb-pine-tree-bend-separator svg, .gh-migrated .uabb-bottom-row-separator.uabb-stamp-separator svg, .gh-migrated .uabb-bottom-row-separator.uabb-xlarge-circle svg, .gh-migrated .uabb-top-row-separator.uabb-wave-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-big-triangle svg {left:50%;-webkit-transform:scale(1) scaleY(-1) translateX(-50%);-moz-transform:scale(1) scaleY(-1) translateX(-50%);-ms-transform:scale(1) scaleY(-1) translateX(-50%);-o-transform:scale(1) scaleY(-1) translateX(-50%);transform:scale(1) scaleY(-1) translateX(-50%)}
.gh-migrated .uabb-top-row-separator.uabb-big-triangle svg {left:50%;-webkit-transform:translateX(-50%) scale(1);-moz-transform:translateX(-50%) scale(1);-ms-transform:translateX(-50%) scale(1);-o-transform:translateX(-50%) scale(1);transform:translateX(-50%) scale(1)}
.gh-migrated .uabb-top-row-separator.uabb-xlarge-triangle-right svg {left:50%;-webkit-transform:translateX(-50%) scale(-1);-moz-transform:translateX(-50%) scale(-1);-ms-transform:translateX(-50%) scale(-1);-o-transform:translateX(-50%) scale(-1);transform:translateX(-50%) scale(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {left:50%;-webkit-transform:translateX(-50%) scaleX(-1);-moz-transform:translateX(-50%) scaleX(-1);-ms-transform:translateX(-50%) scaleX(-1);-o-transform:translateX(-50%) scaleX(-1);transform:translateX(-50%) scaleX(-1)}
.gh-migrated .uabb-top-row-separator.uabb-curve-up-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-top-row-separator.uabb-curve-down-separator svg {left:50%;-webkit-transform:translateX(-50%) scale(-1);-moz-transform:translateX(-50%) scale(-1);-ms-transform:translateX(-50%) scale(-1);-o-transform:translateX(-50%) scale(-1);transform:translateX(-50%) scale(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-curve-down-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleX(-1);-moz-transform:translateX(-50%) scaleX(-1);-ms-transform:translateX(-50%) scaleX(-1);-o-transform:translateX(-50%) scaleX(-1);transform:translateX(-50%) scaleX(-1)}
.gh-migrated .uabb-top-row-separator.uabb-tilt-left-separator svg {left:50%;-webkit-transform:translateX(-50%) scale(-1);-moz-transform:translateX(-50%) scale(-1);-ms-transform:translateX(-50%) scale(-1);-o-transform:translateX(-50%) scale(-1);transform:translateX(-50%) scale(-1)}
.gh-migrated .uabb-top-row-separator.uabb-tilt-right-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-tilt-left-separator svg {left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}
.gh-migrated .uabb-bottom-row-separator.uabb-tilt-right-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleX(-1);-moz-transform:translateX(-50%) scaleX(-1);-ms-transform:translateX(-50%) scaleX(-1);-o-transform:translateX(-50%) scaleX(-1);transform:translateX(-50%) scaleX(-1)}
.gh-migrated .uabb-top-row-separator.uabb-tilt-left-separator, .gh-migrated .uabb-top-row-separator.uabb-tilt-right-separator {top:0}
.gh-migrated .uabb-bottom-row-separator.uabb-tilt-left-separator, .gh-migrated .uabb-bottom-row-separator.uabb-tilt-right-separator {bottom:0}
.gh-migrated .uabb-top-row-separator.uabb-arrow-outward-separator svg, .gh-migrated .uabb-top-row-separator.uabb-arrow-inward-separator svg, .gh-migrated .uabb-top-row-separator.uabb-cloud-separator svg, .gh-migrated .uabb-top-row-separator.uabb-multi-triangle svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-multi-triangle svg {bottom:-2px}
.gh-migrated .uabb-row-separator.uabb-round-split:after, .gh-migrated .uabb-row-separator.uabb-round-split:before {left:0;width:50%;background:inherit inherit/inherit inherit inherit inherit;content:'';position:absolute}
.gh-migrated .uabb-button-wrap a, .gh-migrated .uabb-button-wrap a:visited {display:inline-block;font-size:16px;line-height:18px;text-decoration:none;text-shadow:none}
.gh-migrated.fl-builder-content .uabb-button:hover {text-decoration:none}
.gh-migrated.fl-builder-content .uabb-button-width-full .uabb-button {display:block;text-align:center}
.gh-migrated .uabb-button-width-custom .uabb-button {display:inline-block;text-align:center;max-width:100%}
.gh-migrated.fl-builder-content .uabb-button-left {text-align:left}
.gh-migrated.fl-builder-content .uabb-button-center {text-align:center}
.gh-migrated.fl-builder-content .uabb-infobox .uabb-button-center, .gh-migrated.fl-builder-content .uabb-modal-action-wrap .uabb-button-center, .gh-migrated.fl-builder-content .uabb-ultb3-box .uabb-button-center, .gh-migrated.fl-builder-content .uabb-slide-down .uabb-button-center, .gh-migrated.fl-builder-content .uabb-blog-post-content .uabb-button-center, .gh-migrated.fl-builder-content .uabb-cta-wrap .uabb-button-center, .gh-migrated.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center {text-align:inherit}
.gh-migrated.fl-builder-content .uabb-button-right {text-align:right}
.gh-migrated.fl-builder-content .uabb-button i, .gh-migrated.fl-builder-content .uabb-button i:before {font-size:1em;height:1em;line-height:1em;width:1em}
.gh-migrated .uabb-button .uabb-button-icon-after {margin-left:8px;margin-right:0}
.gh-migrated .uabb-button .uabb-button-icon-before {margin-left:0;margin-right:8px}
.gh-migrated .uabb-button .uabb-button-icon-no-text {margin:0}
.gh-migrated .uabb-button-has-icon .uabb-button-text {vertical-align:middle}
.gh-migrated .uabb-icon-wrap {display:inline-block}
.gh-migrated .uabb-icon a {text-decoration:none}
.gh-migrated .uabb-icon i {display:block}
.gh-migrated .uabb-icon i:before {border:none!important;background:none!important}
.gh-migrated .uabb-icon-text {display:table-cell;text-align:left;padding-left:15px;vertical-align:middle}
.gh-migrated .uabb-icon-text *:last-child {margin:0!important;padding:0!important}
.gh-migrated .uabb-icon-text a {text-decoration:none}
.gh-migrated .uabb-photo {line-height:0;position:relative;z-index:2}
.gh-migrated .uabb-photo-align-left {text-align:left}
.gh-migrated .uabb-photo-align-center {text-align:center}
.gh-migrated .uabb-photo-align-right {text-align:right}
.gh-migrated .uabb-photo-content {border-radius:0;display:inline-block;line-height:0;position:relative;max-width:100%;overflow:hidden}
.gh-migrated .uabb-photo-content img {border-radius:inherit;display:inline;height:auto;max-width:100%;width:auto}
.gh-migrated.fl-builder-content .uabb-photo-crop-circle img {-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%}
.gh-migrated.fl-builder-content .uabb-photo-crop-square img {-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
.gh-migrated .uabb-photo-caption {font-size:13px;line-height:18px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.gh-migrated .uabb-photo-caption-below {padding-bottom:20px;padding-top:10px}
.gh-migrated .uabb-photo-caption-hover {background:rgb(0 0 0 / .7);bottom:0;color:#fff;left:0;opacity:0;visibility:hidden;filter:alpha(opacity=0);padding:10px 15px;position:absolute;right:0;-webkit-transition:visibility 200ms linear;-moz-transition:visibility 200ms linear;transition:visibility 200ms linear}
.gh-migrated .uabb-photo-content:hover .uabb-photo-caption-hover {opacity:100;visibility:visible}
.gh-migrated .uabb-active-btn {background:#1e8cbe;border-color:#0074a2;-webkit-box-shadow:inset 0 1px 0 rgb(120 200 230 / .6);box-shadow:inset 0 1px 0 rgb(120 200 230 / .6);color:#fff}
.gh-migrated .fl-builder-bar .fl-builder-add-content-button {display:block!important;opacity:1!important}
.gh-migrated .uabb-imgicon-wrap .uabb-icon {display:block}
.gh-migrated .uabb-imgicon-wrap .uabb-icon i {float:none}
.gh-migrated .uabb-imgicon-wrap .uabb-image {line-height:0;position:relative}
.gh-migrated .uabb-imgicon-wrap .uabb-image-align-left {text-align:left}
.gh-migrated .uabb-imgicon-wrap .uabb-image-align-center {text-align:center}
.gh-migrated .uabb-imgicon-wrap .uabb-image-align-right {text-align:right}
.gh-migrated .uabb-imgicon-wrap .uabb-image-content {display:inline-block;border-radius:0;line-height:0;position:relative;max-width:100%}
.gh-migrated .uabb-imgicon-wrap .uabb-image-content img {display:inline;height:auto!important;max-width:100%;width:auto;border-radius:inherit;box-shadow:none;box-sizing:content-box}
.gh-migrated.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%}
.gh-migrated.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
.gh-migrated .uabb-creative-button-wrap a, .gh-migrated .uabb-creative-button-wrap a:visited {background:#fafafa;border:1px solid #ccc;color:#333;display:inline-block;vertical-align:middle;text-align:center;overflow:hidden;text-decoration:none;text-shadow:none;box-shadow:none;position:relative;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-creative-button-wrap a:focus {text-decoration:none;text-shadow:none;box-shadow:none}
.gh-migrated .uabb-creative-button-wrap a .uabb-creative-button-text, .gh-migrated .uabb-creative-button-wrap a .uabb-creative-button-icon, .gh-migrated .uabb-creative-button-wrap a:visited .uabb-creative-button-text, .gh-migrated .uabb-creative-button-wrap a:visited .uabb-creative-button-icon {-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-creative-button-wrap a:hover {text-decoration:none}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {display:block;text-align:center}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {display:inline-block;text-align:center;max-width:100%}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-left {text-align:left}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-center {text-align:center}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-right {text-align:right}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button i {font-size:1.3em;height:auto;vertical-align:middle;width:auto}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {margin-left:8px;margin-right:0}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {margin-right:8px;margin-left:0}
.gh-migrated .uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {margin:0}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {vertical-align:middle}
.gh-migrated .uabb-creative-button-wrap a, .gh-migrated .uabb-creative-button-wrap a:visited {padding:12px 24px}
.gh-migrated .uabb-creative-button.uabb-creative-transparent-btn {background:#fff0}
.gh-migrated .uabb-creative-button.uabb-creative-transparent-btn:after {content:'';position:absolute;z-index:1;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-transparent-fill-top-btn:after, .gh-migrated .uabb-transparent-fill-bottom-btn:after {width:100%;height:0;left:0}
.gh-migrated .uabb-transparent-fill-top-btn:after {top:0}
.gh-migrated .uabb-transparent-fill-bottom-btn:after {bottom:0}
.gh-migrated .uabb-transparent-fill-left-btn:after, .gh-migrated .uabb-transparent-fill-right-btn:after {width:0;height:100%;top:0}
.gh-migrated .uabb-transparent-fill-left-btn:after {left:0}
.gh-migrated .uabb-transparent-fill-right-btn:after {right:0}
.gh-migrated .uabb-transparent-fill-center-btn:after {width:0;height:100%;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}
.gh-migrated .uabb-transparent-fill-diagonal-btn:after, .gh-migrated .uabb-transparent-fill-horizontal-btn:after {width:100%;height:0;top:50%;left:50%}
.gh-migrated .uabb-transparent-fill-diagonal-btn {overflow:hidden}
.gh-migrated .uabb-transparent-fill-diagonal-btn:after {-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-moz-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);-o-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg)}
.gh-migrated .uabb-transparent-fill-horizontal-btn:after {-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn, .gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn, .gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn, .gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}
.gh-migrated .perspective {-webkit-perspective:800px;-moz-perspective:800px;perspective:800px;margin:0}
.gh-migrated .uabb-creative-button.uabb-creative-threed-btn:after {content:'';position:absolute;z-index:-1;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-creative-button.uabb-creative-threed-btn {outline:1px solid #fff0;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_top-btn:after {height:40%;left:0;top:-40%;width:100%;-webkit-transform-origin:0% 100%;-moz-transform-origin:0% 100%;transform-origin:0% 100%;-webkit-transform:rotateX(90deg);-moz-transform:rotateX(90deg);transform:rotateX(90deg)}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_bottom-btn:after {width:100%;height:40%;left:0;top:100%;-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateX(-90deg);-moz-transform:rotateX(-90deg);-ms-transform:rotateX(-90deg);transform:rotateX(-90deg)}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_left-btn:after {width:20%;height:100%;left:-20%;top:0;-webkit-transform-origin:100% 0%;-moz-transform-origin:100% 0%;-ms-transform-origin:100% 0%;transform-origin:100% 0%;-webkit-transform:rotateY(-60deg);-moz-transform:rotateY(-60deg);-ms-transform:rotateY(-60deg);transform:rotateY(-60deg)}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_right-btn:after {width:20%;height:100%;left:104%;top:0;-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateY(120deg);-moz-transform:rotateY(120deg);-ms-transform:rotateY(120deg);transform:rotateY(120deg)}
.gh-migrated .uabb-animate_top-btn:hover {-webkit-transform:rotateX(-15deg);-moz-transform:rotateX(-15deg);-ms-transform:rotateX(-15deg);-o-transform:rotateX(-15deg);transform:rotateX(-15deg)}
.gh-migrated .uabb-animate_bottom-btn:hover {-webkit-transform:rotateX(15deg);-moz-transform:rotateX(15deg);-ms-transform:rotateX(15deg);-o-transform:rotateX(15deg);transform:rotateX(15deg)}
.gh-migrated .uabb-animate_left-btn:hover {-webkit-transform:rotateY(6deg);-moz-transform:rotateY(6deg);-ms-transform:rotateY(6deg);-o-transform:rotateY(6deg);transform:rotateY(6deg)}
.gh-migrated .uabb-animate_right-btn:hover {-webkit-transform:rotateY(-6deg);-moz-transform:rotateY(-6deg);-ms-transform:rotateY(-6deg);-o-transform:rotateY(-6deg);transform:rotateY(-6deg)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn {overflow:hidden;position:relative}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {bottom:0;height:100%;margin:0;opacity:1;position:absolute;right:0;width:100%;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;transition:all 200ms linear;-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {display:inline-block;width:100%;height:100%;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn i:before, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn i:before, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn i:before, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {left:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {top:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn i {top:0;left:-100%}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {-webkit-transform:translateX(200%);-moz-transform:translateX(200%);-ms-transform:translateX(200%);-o-transform:translateX(200%);transform:translateX(200%)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn i {top:0;left:100%}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {-webkit-transform:translateX(-200%);-moz-transform:translateX(-200%);-ms-transform:translateX(-200%);-o-transform:translateX(-200%);transform:translateX(-200%)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn i {top:-100%;left:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {-webkit-transform:translateY(400px);-moz-transform:translateY(400px);-ms-transform:translateY(400px);-o-transform:translateY(400px);transform:translateY(400px)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {top:100%;left:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {-webkit-transform:translateY(-400px);-moz-transform:translateY(-400px);-ms-transform:translateY(-400px);-o-transform:translateY(-400px);transform:translateY(-400px)}
.gh-migrated .uabb-tab-acc-content .wp-video, .gh-migrated .uabb-tab-acc-content video.wp-video-shortcode, .gh-migrated .uabb-tab-acc-content .mejs-container:not(.mejs-audio), .gh-migrated .uabb-tab-acc-content .mejs-overlay.load, .gh-migrated .uabb-adv-accordion-content .wp-video, .gh-migrated .uabb-adv-accordion-content video.wp-video-shortcode, .gh-migrated .uabb-adv-accordion-content .mejs-container:not(.mejs-audio), .gh-migrated .uabb-adv-accordion-content .mejs-overlay.load {width:100%!important;height:100%!important}
.gh-migrated .uabb-tab-acc-content .mejs-container:not(.mejs-audio), .gh-migrated .uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {padding-top:56.25%}
.gh-migrated .uabb-tab-acc-content .wp-video, .gh-migrated .uabb-tab-acc-content video.wp-video-shortcode, .gh-migrated .uabb-adv-accordion-content .wp-video, .gh-migrated .uabb-adv-accordion-content video.wp-video-shortcode {max-width:100%!important}
.gh-migrated .uabb-tab-acc-content video.wp-video-shortcode, .gh-migrated .uabb-adv-accordion-content video.wp-video-shortcode {position:relative}
.gh-migrated .uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement, .gh-migrated .uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {position:absolute;top:0;right:0;bottom:0;left:0}
.gh-migrated .uabb-tab-acc-content .mejs-overlay-play, .gh-migrated .uabb-adv-accordion-content .mejs-overlay-play {top:0;right:0;bottom:0;left:0;width:auto!important;height:auto!important}
.gh-migrated .fl-row-content-wrap .uabb-row-particles-background, .gh-migrated .uabb-col-particles-background {width:100%;height:100%;position:absolute;left:0;top:0}
.gh-migrated .uabb-js-breakpoint {content:"default";display:none}
@media screen and (max-width:1024px) {
.gh-migrated .uabb-js-breakpoint {content:"1024"}

}
@media screen and (max-width:767px) {
.gh-migrated .uabb-js-breakpoint {content:"767"}

}
.gh-migrated .fa, .gh-migrated .fab, .gh-migrated .fad, .gh-migrated .fal, .gh-migrated .far, .gh-migrated .fas {-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}
.gh-migrated .fa-lg {font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}
.gh-migrated .fa-xs {font-size:.75em}
.gh-migrated .fa-sm {font-size:.875em}
.gh-migrated .fa-1x {font-size:1em}
.gh-migrated .fa-2x {font-size:2em}
.gh-migrated .fa-3x {font-size:3em}
.gh-migrated .fa-4x {font-size:4em}
.gh-migrated .fa-5x {font-size:5em}
.gh-migrated .fa-6x {font-size:6em}
.gh-migrated .fa-7x {font-size:7em}
.gh-migrated .fa-8x {font-size:8em}
.gh-migrated .fa-9x {font-size:9em}
.gh-migrated .fa-10x {font-size:10em}
.gh-migrated .fa-fw {text-align:center;width:1.25em}
.gh-migrated .fa-ul {list-style-type:none;margin-left:2.5em;padding-left:0}
.gh-migrated .fa-ul>li {position:relative}
.gh-migrated .fa-li {left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}
.gh-migrated .fa-border {border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}
.gh-migrated .fa-pull-left {float:left}
.gh-migrated .fa-pull-right {float:right}
.gh-migrated .fa.fa-pull-left, .gh-migrated .fab.fa-pull-left, .gh-migrated .fal.fa-pull-left, .gh-migrated .far.fa-pull-left, .gh-migrated .fas.fa-pull-left {margin-right:.3em}
.gh-migrated .fa.fa-pull-right, .gh-migrated .fab.fa-pull-right, .gh-migrated .fal.fa-pull-right, .gh-migrated .far.fa-pull-right, .gh-migrated .fas.fa-pull-right {margin-left:.3em}
.gh-migrated .fa-spin {-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}
.gh-migrated .fa-pulse {-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}
@-webkit-keyframes fa-spin {0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
@keyframes fa-spin {0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
.gh-migrated .fa-rotate-90 {-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}
.gh-migrated .fa-rotate-180 {-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}
.gh-migrated .fa-rotate-270 {-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}
.gh-migrated .fa-flip-horizontal {-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}
.gh-migrated .fa-flip-vertical {-webkit-transform:scaleY(-1);transform:scaleY(-1)}
.gh-migrated .fa-flip-both, .gh-migrated .fa-flip-horizontal.fa-flip-vertical, .gh-migrated .fa-flip-vertical {-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}
.gh-migrated .fa-flip-both, .gh-migrated .fa-flip-horizontal.fa-flip-vertical {-webkit-transform:scale(-1);transform:scale(-1)}
.gh-migrated :root .fa-flip-both, .gh-migrated :root .fa-flip-horizontal, .gh-migrated :root .fa-flip-vertical, .gh-migrated :root .fa-rotate-90, .gh-migrated :root .fa-rotate-180, .gh-migrated :root .fa-rotate-270 {-webkit-filter:none;filter:none}
.gh-migrated .fa-stack {display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}
.gh-migrated .fa-stack-1x, .gh-migrated .fa-stack-2x {left:0;position:absolute;text-align:center;width:100%}
.gh-migrated .fa-stack-1x {line-height:inherit}
.gh-migrated .fa-stack-2x {font-size:2em}
.gh-migrated .fa-inverse {color:#fff}
.gh-migrated .fa-500px:before {content:"\f26e"}
.gh-migrated .fa-accessible-icon:before {content:"\f368"}
.gh-migrated .fa-accusoft:before {content:"\f369"}
.gh-migrated .fa-acquisitions-incorporated:before {content:"\f6af"}
.gh-migrated .fa-ad:before {content:"\f641"}
.gh-migrated .fa-address-book:before {content:"\f2b9"}
.gh-migrated .fa-address-card:before {content:"\f2bb"}
.gh-migrated .fa-adjust:before {content:"\f042"}
.gh-migrated .fa-adn:before {content:"\f170"}
.gh-migrated .fa-adversal:before {content:"\f36a"}
.gh-migrated .fa-affiliatetheme:before {content:"\f36b"}
.gh-migrated .fa-air-freshener:before {content:"\f5d0"}
.gh-migrated .fa-airbnb:before {content:"\f834"}
.gh-migrated .fa-algolia:before {content:"\f36c"}
.gh-migrated .fa-align-center:before {content:"\f037"}
.gh-migrated .fa-align-justify:before {content:"\f039"}
.gh-migrated .fa-align-left:before {content:"\f036"}
.gh-migrated .fa-align-right:before {content:"\f038"}
.gh-migrated .fa-alipay:before {content:"\f642"}
.gh-migrated .fa-allergies:before {content:"\f461"}
.gh-migrated .fa-amazon:before {content:"\f270"}
.gh-migrated .fa-amazon-pay:before {content:"\f42c"}
.gh-migrated .fa-ambulance:before {content:"\f0f9"}
.gh-migrated .fa-american-sign-language-interpreting:before {content:"\f2a3"}
.gh-migrated .fa-amilia:before {content:"\f36d"}
.gh-migrated .fa-anchor:before {content:"\f13d"}
.gh-migrated .fa-android:before {content:"\f17b"}
.gh-migrated .fa-angellist:before {content:"\f209"}
.gh-migrated .fa-angle-double-down:before {content:"\f103"}
.gh-migrated .fa-angle-double-left:before {content:"\f100"}
.gh-migrated .fa-angle-double-right:before {content:"\f101"}
.gh-migrated .fa-angle-double-up:before {content:"\f102"}
.gh-migrated .fa-angle-down:before {content:"\f107"}
.gh-migrated .fa-angle-left:before {content:"\f104"}
.gh-migrated .fa-angle-right:before {content:"\f105"}
.gh-migrated .fa-angle-up:before {content:"\f106"}
.gh-migrated .fa-angry:before {content:"\f556"}
.gh-migrated .fa-angrycreative:before {content:"\f36e"}
.gh-migrated .fa-angular:before {content:"\f420"}
.gh-migrated .fa-ankh:before {content:"\f644"}
.gh-migrated .fa-app-store:before {content:"\f36f"}
.gh-migrated .fa-app-store-ios:before {content:"\f370"}
.gh-migrated .fa-apper:before {content:"\f371"}
.gh-migrated .fa-apple:before {content:"\f179"}
.gh-migrated .fa-apple-alt:before {content:"\f5d1"}
.gh-migrated .fa-apple-pay:before {content:"\f415"}
.gh-migrated .fa-archive:before {content:"\f187"}
.gh-migrated .fa-archway:before {content:"\f557"}
.gh-migrated .fa-arrow-alt-circle-down:before {content:"\f358"}
.gh-migrated .fa-arrow-alt-circle-left:before {content:"\f359"}
.gh-migrated .fa-arrow-alt-circle-right:before {content:"\f35a"}
.gh-migrated .fa-arrow-alt-circle-up:before {content:"\f35b"}
.gh-migrated .fa-arrow-circle-down:before {content:"\f0ab"}
.gh-migrated .fa-arrow-circle-left:before {content:"\f0a8"}
.gh-migrated .fa-arrow-circle-right:before {content:"\f0a9"}
.gh-migrated .fa-arrow-circle-up:before {content:"\f0aa"}
.gh-migrated .fa-arrow-down:before {content:"\f063"}
.gh-migrated .fa-arrow-left:before {content:"\f060"}
.gh-migrated .fa-arrow-right:before {content:"\f061"}
.gh-migrated .fa-arrow-up:before {content:"\f062"}
.gh-migrated .fa-arrows-alt:before {content:"\f0b2"}
.gh-migrated .fa-arrows-alt-h:before {content:"\f337"}
.gh-migrated .fa-arrows-alt-v:before {content:"\f338"}
.gh-migrated .fa-artstation:before {content:"\f77a"}
.gh-migrated .fa-assistive-listening-systems:before {content:"\f2a2"}
.gh-migrated .fa-asterisk:before {content:"\f069"}
.gh-migrated .fa-asymmetrik:before {content:"\f372"}
.gh-migrated .fa-at:before {content:"\f1fa"}
.gh-migrated .fa-atlas:before {content:"\f558"}
.gh-migrated .fa-atlassian:before {content:"\f77b"}
.gh-migrated .fa-atom:before {content:"\f5d2"}
.gh-migrated .fa-audible:before {content:"\f373"}
.gh-migrated .fa-audio-description:before {content:"\f29e"}
.gh-migrated .fa-autoprefixer:before {content:"\f41c"}
.gh-migrated .fa-avianex:before {content:"\f374"}
.gh-migrated .fa-aviato:before {content:"\f421"}
.gh-migrated .fa-award:before {content:"\f559"}
.gh-migrated .fa-aws:before {content:"\f375"}
.gh-migrated .fa-baby:before {content:"\f77c"}
.gh-migrated .fa-baby-carriage:before {content:"\f77d"}
.gh-migrated .fa-backspace:before {content:"\f55a"}
.gh-migrated .fa-backward:before {content:"\f04a"}
.gh-migrated .fa-bacon:before {content:"\f7e5"}
.gh-migrated .fa-bacteria:before {content:"\e059"}
.gh-migrated .fa-bacterium:before {content:"\e05a"}
.gh-migrated .fa-bahai:before {content:"\f666"}
.gh-migrated .fa-balance-scale:before {content:"\f24e"}
.gh-migrated .fa-balance-scale-left:before {content:"\f515"}
.gh-migrated .fa-balance-scale-right:before {content:"\f516"}
.gh-migrated .fa-ban:before {content:"\f05e"}
.gh-migrated .fa-band-aid:before {content:"\f462"}
.gh-migrated .fa-bandcamp:before {content:"\f2d5"}
.gh-migrated .fa-barcode:before {content:"\f02a"}
.gh-migrated .fa-bars:before {content:"\f0c9"}
.gh-migrated .fa-baseball-ball:before {content:"\f433"}
.gh-migrated .fa-basketball-ball:before {content:"\f434"}
.gh-migrated .fa-bath:before {content:"\f2cd"}
.gh-migrated .fa-battery-empty:before {content:"\f244"}
.gh-migrated .fa-battery-full:before {content:"\f240"}
.gh-migrated .fa-battery-half:before {content:"\f242"}
.gh-migrated .fa-battery-quarter:before {content:"\f243"}
.gh-migrated .fa-battery-three-quarters:before {content:"\f241"}
.gh-migrated .fa-battle-net:before {content:"\f835"}
.gh-migrated .fa-bed:before {content:"\f236"}
.gh-migrated .fa-beer:before {content:"\f0fc"}
.gh-migrated .fa-behance:before {content:"\f1b4"}
.gh-migrated .fa-behance-square:before {content:"\f1b5"}
.gh-migrated .fa-bell:before {content:"\f0f3"}
.gh-migrated .fa-bell-slash:before {content:"\f1f6"}
.gh-migrated .fa-bezier-curve:before {content:"\f55b"}
.gh-migrated .fa-bible:before {content:"\f647"}
.gh-migrated .fa-bicycle:before {content:"\f206"}
.gh-migrated .fa-biking:before {content:"\f84a"}
.gh-migrated .fa-bimobject:before {content:"\f378"}
.gh-migrated .fa-binoculars:before {content:"\f1e5"}
.gh-migrated .fa-biohazard:before {content:"\f780"}
.gh-migrated .fa-birthday-cake:before {content:"\f1fd"}
.gh-migrated .fa-bitbucket:before {content:"\f171"}
.gh-migrated .fa-bitcoin:before {content:"\f379"}
.gh-migrated .fa-bity:before {content:"\f37a"}
.gh-migrated .fa-black-tie:before {content:"\f27e"}
.gh-migrated .fa-blackberry:before {content:"\f37b"}
.gh-migrated .fa-blender:before {content:"\f517"}
.gh-migrated .fa-blender-phone:before {content:"\f6b6"}
.gh-migrated .fa-blind:before {content:"\f29d"}
.gh-migrated .fa-blog:before {content:"\f781"}
.gh-migrated .fa-blogger:before {content:"\f37c"}
.gh-migrated .fa-blogger-b:before {content:"\f37d"}
.gh-migrated .fa-bluetooth:before {content:"\f293"}
.gh-migrated .fa-bluetooth-b:before {content:"\f294"}
.gh-migrated .fa-bold:before {content:"\f032"}
.gh-migrated .fa-bolt:before {content:"\f0e7"}
.gh-migrated .fa-bomb:before {content:"\f1e2"}
.gh-migrated .fa-bone:before {content:"\f5d7"}
.gh-migrated .fa-bong:before {content:"\f55c"}
.gh-migrated .fa-book:before {content:"\f02d"}
.gh-migrated .fa-book-dead:before {content:"\f6b7"}
.gh-migrated .fa-book-medical:before {content:"\f7e6"}
.gh-migrated .fa-book-open:before {content:"\f518"}
.gh-migrated .fa-book-reader:before {content:"\f5da"}
.gh-migrated .fa-bookmark:before {content:"\f02e"}
.gh-migrated .fa-bootstrap:before {content:"\f836"}
.gh-migrated .fa-border-all:before {content:"\f84c"}
.gh-migrated .fa-border-none:before {content:"\f850"}
.gh-migrated .fa-border-style:before {content:"\f853"}
.gh-migrated .fa-bowling-ball:before {content:"\f436"}
.gh-migrated .fa-box:before {content:"\f466"}
.gh-migrated .fa-box-open:before {content:"\f49e"}
.gh-migrated .fa-box-tissue:before {content:"\e05b"}
.gh-migrated .fa-boxes:before {content:"\f468"}
.gh-migrated .fa-braille:before {content:"\f2a1"}
.gh-migrated .fa-brain:before {content:"\f5dc"}
.gh-migrated .fa-bread-slice:before {content:"\f7ec"}
.gh-migrated .fa-briefcase:before {content:"\f0b1"}
.gh-migrated .fa-briefcase-medical:before {content:"\f469"}
.gh-migrated .fa-broadcast-tower:before {content:"\f519"}
.gh-migrated .fa-broom:before {content:"\f51a"}
.gh-migrated .fa-brush:before {content:"\f55d"}
.gh-migrated .fa-btc:before {content:"\f15a"}
.gh-migrated .fa-buffer:before {content:"\f837"}
.gh-migrated .fa-bug:before {content:"\f188"}
.gh-migrated .fa-building:before {content:"\f1ad"}
.gh-migrated .fa-bullhorn:before {content:"\f0a1"}
.gh-migrated .fa-bullseye:before {content:"\f140"}
.gh-migrated .fa-burn:before {content:"\f46a"}
.gh-migrated .fa-buromobelexperte:before {content:"\f37f"}
.gh-migrated .fa-bus:before {content:"\f207"}
.gh-migrated .fa-bus-alt:before {content:"\f55e"}
.gh-migrated .fa-business-time:before {content:"\f64a"}
.gh-migrated .fa-buy-n-large:before {content:"\f8a6"}
.gh-migrated .fa-buysellads:before {content:"\f20d"}
.gh-migrated .fa-calculator:before {content:"\f1ec"}
.gh-migrated .fa-calendar:before {content:"\f133"}
.gh-migrated .fa-calendar-alt:before {content:"\f073"}
.gh-migrated .fa-calendar-check:before {content:"\f274"}
.gh-migrated .fa-calendar-day:before {content:"\f783"}
.gh-migrated .fa-calendar-minus:before {content:"\f272"}
.gh-migrated .fa-calendar-plus:before {content:"\f271"}
.gh-migrated .fa-calendar-times:before {content:"\f273"}
.gh-migrated .fa-calendar-week:before {content:"\f784"}
.gh-migrated .fa-camera:before {content:"\f030"}
.gh-migrated .fa-camera-retro:before {content:"\f083"}
.gh-migrated .fa-campground:before {content:"\f6bb"}
.gh-migrated .fa-canadian-maple-leaf:before {content:"\f785"}
.gh-migrated .fa-candy-cane:before {content:"\f786"}
.gh-migrated .fa-cannabis:before {content:"\f55f"}
.gh-migrated .fa-capsules:before {content:"\f46b"}
.gh-migrated .fa-car:before {content:"\f1b9"}
.gh-migrated .fa-car-alt:before {content:"\f5de"}
.gh-migrated .fa-car-battery:before {content:"\f5df"}
.gh-migrated .fa-car-crash:before {content:"\f5e1"}
.gh-migrated .fa-car-side:before {content:"\f5e4"}
.gh-migrated .fa-caravan:before {content:"\f8ff"}
.gh-migrated .fa-caret-down:before {content:"\f0d7"}
.gh-migrated .fa-caret-left:before {content:"\f0d9"}
.gh-migrated .fa-caret-right:before {content:"\f0da"}
.gh-migrated .fa-caret-square-down:before {content:"\f150"}
.gh-migrated .fa-caret-square-left:before {content:"\f191"}
.gh-migrated .fa-caret-square-right:before {content:"\f152"}
.gh-migrated .fa-caret-square-up:before {content:"\f151"}
.gh-migrated .fa-caret-up:before {content:"\f0d8"}
.gh-migrated .fa-carrot:before {content:"\f787"}
.gh-migrated .fa-cart-arrow-down:before {content:"\f218"}
.gh-migrated .fa-cart-plus:before {content:"\f217"}
.gh-migrated .fa-cash-register:before {content:"\f788"}
.gh-migrated .fa-cat:before {content:"\f6be"}
.gh-migrated .fa-cc-amazon-pay:before {content:"\f42d"}
.gh-migrated .fa-cc-amex:before {content:"\f1f3"}
.gh-migrated .fa-cc-apple-pay:before {content:"\f416"}
.gh-migrated .fa-cc-diners-club:before {content:"\f24c"}
.gh-migrated .fa-cc-discover:before {content:"\f1f2"}
.gh-migrated .fa-cc-jcb:before {content:"\f24b"}
.gh-migrated .fa-cc-mastercard:before {content:"\f1f1"}
.gh-migrated .fa-cc-paypal:before {content:"\f1f4"}
.gh-migrated .fa-cc-stripe:before {content:"\f1f5"}
.gh-migrated .fa-cc-visa:before {content:"\f1f0"}
.gh-migrated .fa-centercode:before {content:"\f380"}
.gh-migrated .fa-centos:before {content:"\f789"}
.gh-migrated .fa-certificate:before {content:"\f0a3"}
.gh-migrated .fa-chair:before {content:"\f6c0"}
.gh-migrated .fa-chalkboard:before {content:"\f51b"}
.gh-migrated .fa-chalkboard-teacher:before {content:"\f51c"}
.gh-migrated .fa-charging-station:before {content:"\f5e7"}
.gh-migrated .fa-chart-area:before {content:"\f1fe"}
.gh-migrated .fa-chart-bar:before {content:"\f080"}
.gh-migrated .fa-chart-line:before {content:"\f201"}
.gh-migrated .fa-chart-pie:before {content:"\f200"}
.gh-migrated .fa-check:before {content:"\f00c"}
.gh-migrated .fa-check-circle:before {content:"\f058"}
.gh-migrated .fa-check-double:before {content:"\f560"}
.gh-migrated .fa-check-square:before {content:"\f14a"}
.gh-migrated .fa-cheese:before {content:"\f7ef"}
.gh-migrated .fa-chess:before {content:"\f439"}
.gh-migrated .fa-chess-bishop:before {content:"\f43a"}
.gh-migrated .fa-chess-board:before {content:"\f43c"}
.gh-migrated .fa-chess-king:before {content:"\f43f"}
.gh-migrated .fa-chess-knight:before {content:"\f441"}
.gh-migrated .fa-chess-pawn:before {content:"\f443"}
.gh-migrated .fa-chess-queen:before {content:"\f445"}
.gh-migrated .fa-chess-rook:before {content:"\f447"}
.gh-migrated .fa-chevron-circle-down:before {content:"\f13a"}
.gh-migrated .fa-chevron-circle-left:before {content:"\f137"}
.gh-migrated .fa-chevron-circle-right:before {content:"\f138"}
.gh-migrated .fa-chevron-circle-up:before {content:"\f139"}
.gh-migrated .fa-chevron-down:before {content:"\f078"}
.gh-migrated .fa-chevron-left:before {content:"\f053"}
.gh-migrated .fa-chevron-right:before {content:"\f054"}
.gh-migrated .fa-chevron-up:before {content:"\f077"}
.gh-migrated .fa-child:before {content:"\f1ae"}
.gh-migrated .fa-chrome:before {content:"\f268"}
.gh-migrated .fa-chromecast:before {content:"\f838"}
.gh-migrated .fa-church:before {content:"\f51d"}
.gh-migrated .fa-circle:before {content:"\f111"}
.gh-migrated .fa-circle-notch:before {content:"\f1ce"}
.gh-migrated .fa-city:before {content:"\f64f"}
.gh-migrated .fa-clinic-medical:before {content:"\f7f2"}
.gh-migrated .fa-clipboard:before {content:"\f328"}
.gh-migrated .fa-clipboard-check:before {content:"\f46c"}
.gh-migrated .fa-clipboard-list:before {content:"\f46d"}
.gh-migrated .fa-clock:before {content:"\f017"}
.gh-migrated .fa-clone:before {content:"\f24d"}
.gh-migrated .fa-closed-captioning:before {content:"\f20a"}
.gh-migrated .fa-cloud:before {content:"\f0c2"}
.gh-migrated .fa-cloud-download-alt:before {content:"\f381"}
.gh-migrated .fa-cloud-meatball:before {content:"\f73b"}
.gh-migrated .fa-cloud-moon:before {content:"\f6c3"}
.gh-migrated .fa-cloud-moon-rain:before {content:"\f73c"}
.gh-migrated .fa-cloud-rain:before {content:"\f73d"}
.gh-migrated .fa-cloud-showers-heavy:before {content:"\f740"}
.gh-migrated .fa-cloud-sun:before {content:"\f6c4"}
.gh-migrated .fa-cloud-sun-rain:before {content:"\f743"}
.gh-migrated .fa-cloud-upload-alt:before {content:"\f382"}
.gh-migrated .fa-cloudflare:before {content:"\e07d"}
.gh-migrated .fa-cloudscale:before {content:"\f383"}
.gh-migrated .fa-cloudsmith:before {content:"\f384"}
.gh-migrated .fa-cloudversify:before {content:"\f385"}
.gh-migrated .fa-cocktail:before {content:"\f561"}
.gh-migrated .fa-code:before {content:"\f121"}
.gh-migrated .fa-code-branch:before {content:"\f126"}
.gh-migrated .fa-codepen:before {content:"\f1cb"}
.gh-migrated .fa-codiepie:before {content:"\f284"}
.gh-migrated .fa-coffee:before {content:"\f0f4"}
.gh-migrated .fa-cog:before {content:"\f013"}
.gh-migrated .fa-cogs:before {content:"\f085"}
.gh-migrated .fa-coins:before {content:"\f51e"}
.gh-migrated .fa-columns:before {content:"\f0db"}
.gh-migrated .fa-comment:before {content:"\f075"}
.gh-migrated .fa-comment-alt:before {content:"\f27a"}
.gh-migrated .fa-comment-dollar:before {content:"\f651"}
.gh-migrated .fa-comment-dots:before {content:"\f4ad"}
.gh-migrated .fa-comment-medical:before {content:"\f7f5"}
.gh-migrated .fa-comment-slash:before {content:"\f4b3"}
.gh-migrated .fa-comments:before {content:"\f086"}
.gh-migrated .fa-comments-dollar:before {content:"\f653"}
.gh-migrated .fa-compact-disc:before {content:"\f51f"}
.gh-migrated .fa-compass:before {content:"\f14e"}
.gh-migrated .fa-compress:before {content:"\f066"}
.gh-migrated .fa-compress-alt:before {content:"\f422"}
.gh-migrated .fa-compress-arrows-alt:before {content:"\f78c"}
.gh-migrated .fa-concierge-bell:before {content:"\f562"}
.gh-migrated .fa-confluence:before {content:"\f78d"}
.gh-migrated .fa-connectdevelop:before {content:"\f20e"}
.gh-migrated .fa-contao:before {content:"\f26d"}
.gh-migrated .fa-cookie:before {content:"\f563"}
.gh-migrated .fa-cookie-bite:before {content:"\f564"}
.gh-migrated .fa-copy:before {content:"\f0c5"}
.gh-migrated .fa-copyright:before {content:"\f1f9"}
.gh-migrated .fa-cotton-bureau:before {content:"\f89e"}
.gh-migrated .fa-couch:before {content:"\f4b8"}
.gh-migrated .fa-cpanel:before {content:"\f388"}
.gh-migrated .fa-creative-commons:before {content:"\f25e"}
.gh-migrated .fa-creative-commons-by:before {content:"\f4e7"}
.gh-migrated .fa-creative-commons-nc:before {content:"\f4e8"}
.gh-migrated .fa-creative-commons-nc-eu:before {content:"\f4e9"}
.gh-migrated .fa-creative-commons-nc-jp:before {content:"\f4ea"}
.gh-migrated .fa-creative-commons-nd:before {content:"\f4eb"}
.gh-migrated .fa-creative-commons-pd:before {content:"\f4ec"}
.gh-migrated .fa-creative-commons-pd-alt:before {content:"\f4ed"}
.gh-migrated .fa-creative-commons-remix:before {content:"\f4ee"}
.gh-migrated .fa-creative-commons-sa:before {content:"\f4ef"}
.gh-migrated .fa-creative-commons-sampling:before {content:"\f4f0"}
.gh-migrated .fa-creative-commons-sampling-plus:before {content:"\f4f1"}
.gh-migrated .fa-creative-commons-share:before {content:"\f4f2"}
.gh-migrated .fa-creative-commons-zero:before {content:"\f4f3"}
.gh-migrated .fa-credit-card:before {content:"\f09d"}
.gh-migrated .fa-critical-role:before {content:"\f6c9"}
.gh-migrated .fa-crop:before {content:"\f125"}
.gh-migrated .fa-crop-alt:before {content:"\f565"}
.gh-migrated .fa-cross:before {content:"\f654"}
.gh-migrated .fa-crosshairs:before {content:"\f05b"}
.gh-migrated .fa-crow:before {content:"\f520"}
.gh-migrated .fa-crown:before {content:"\f521"}
.gh-migrated .fa-crutch:before {content:"\f7f7"}
.gh-migrated .fa-css3:before {content:"\f13c"}
.gh-migrated .fa-css3-alt:before {content:"\f38b"}
.gh-migrated .fa-cube:before {content:"\f1b2"}
.gh-migrated .fa-cubes:before {content:"\f1b3"}
.gh-migrated .fa-cut:before {content:"\f0c4"}
.gh-migrated .fa-cuttlefish:before {content:"\f38c"}
.gh-migrated .fa-d-and-d:before {content:"\f38d"}
.gh-migrated .fa-d-and-d-beyond:before {content:"\f6ca"}
.gh-migrated .fa-dailymotion:before {content:"\e052"}
.gh-migrated .fa-dashcube:before {content:"\f210"}
.gh-migrated .fa-database:before {content:"\f1c0"}
.gh-migrated .fa-deaf:before {content:"\f2a4"}
.gh-migrated .fa-deezer:before {content:"\e077"}
.gh-migrated .fa-delicious:before {content:"\f1a5"}
.gh-migrated .fa-democrat:before {content:"\f747"}
.gh-migrated .fa-deploydog:before {content:"\f38e"}
.gh-migrated .fa-deskpro:before {content:"\f38f"}
.gh-migrated .fa-desktop:before {content:"\f108"}
.gh-migrated .fa-dev:before {content:"\f6cc"}
.gh-migrated .fa-deviantart:before {content:"\f1bd"}
.gh-migrated .fa-dharmachakra:before {content:"\f655"}
.gh-migrated .fa-dhl:before {content:"\f790"}
.gh-migrated .fa-diagnoses:before {content:"\f470"}
.gh-migrated .fa-diaspora:before {content:"\f791"}
.gh-migrated .fa-dice:before {content:"\f522"}
.gh-migrated .fa-dice-d20:before {content:"\f6cf"}
.gh-migrated .fa-dice-d6:before {content:"\f6d1"}
.gh-migrated .fa-dice-five:before {content:"\f523"}
.gh-migrated .fa-dice-four:before {content:"\f524"}
.gh-migrated .fa-dice-one:before {content:"\f525"}
.gh-migrated .fa-dice-six:before {content:"\f526"}
.gh-migrated .fa-dice-three:before {content:"\f527"}
.gh-migrated .fa-dice-two:before {content:"\f528"}
.gh-migrated .fa-digg:before {content:"\f1a6"}
.gh-migrated .fa-digital-ocean:before {content:"\f391"}
.gh-migrated .fa-digital-tachograph:before {content:"\f566"}
.gh-migrated .fa-directions:before {content:"\f5eb"}
.gh-migrated .fa-discord:before {content:"\f392"}
.gh-migrated .fa-discourse:before {content:"\f393"}
.gh-migrated .fa-disease:before {content:"\f7fa"}
.gh-migrated .fa-divide:before {content:"\f529"}
.gh-migrated .fa-dizzy:before {content:"\f567"}
.gh-migrated .fa-dna:before {content:"\f471"}
.gh-migrated .fa-dochub:before {content:"\f394"}
.gh-migrated .fa-docker:before {content:"\f395"}
.gh-migrated .fa-dog:before {content:"\f6d3"}
.gh-migrated .fa-dollar-sign:before {content:"\f155"}
.gh-migrated .fa-dolly:before {content:"\f472"}
.gh-migrated .fa-dolly-flatbed:before {content:"\f474"}
.gh-migrated .fa-donate:before {content:"\f4b9"}
.gh-migrated .fa-door-closed:before {content:"\f52a"}
.gh-migrated .fa-door-open:before {content:"\f52b"}
.gh-migrated .fa-dot-circle:before {content:"\f192"}
.gh-migrated .fa-dove:before {content:"\f4ba"}
.gh-migrated .fa-download:before {content:"\f019"}
.gh-migrated .fa-draft2digital:before {content:"\f396"}
.gh-migrated .fa-drafting-compass:before {content:"\f568"}
.gh-migrated .fa-dragon:before {content:"\f6d5"}
.gh-migrated .fa-draw-polygon:before {content:"\f5ee"}
.gh-migrated .fa-dribbble:before {content:"\f17d"}
.gh-migrated .fa-dribbble-square:before {content:"\f397"}
.gh-migrated .fa-dropbox:before {content:"\f16b"}
.gh-migrated .fa-drum:before {content:"\f569"}
.gh-migrated .fa-drum-steelpan:before {content:"\f56a"}
.gh-migrated .fa-drumstick-bite:before {content:"\f6d7"}
.gh-migrated .fa-drupal:before {content:"\f1a9"}
.gh-migrated .fa-dumbbell:before {content:"\f44b"}
.gh-migrated .fa-dumpster:before {content:"\f793"}
.gh-migrated .fa-dumpster-fire:before {content:"\f794"}
.gh-migrated .fa-dungeon:before {content:"\f6d9"}
.gh-migrated .fa-dyalog:before {content:"\f399"}
.gh-migrated .fa-earlybirds:before {content:"\f39a"}
.gh-migrated .fa-ebay:before {content:"\f4f4"}
.gh-migrated .fa-edge:before {content:"\f282"}
.gh-migrated .fa-edge-legacy:before {content:"\e078"}
.gh-migrated .fa-edit:before {content:"\f044"}
.gh-migrated .fa-egg:before {content:"\f7fb"}
.gh-migrated .fa-eject:before {content:"\f052"}
.gh-migrated .fa-elementor:before {content:"\f430"}
.gh-migrated .fa-ellipsis-h:before {content:"\f141"}
.gh-migrated .fa-ellipsis-v:before {content:"\f142"}
.gh-migrated .fa-ello:before {content:"\f5f1"}
.gh-migrated .fa-ember:before {content:"\f423"}
.gh-migrated .fa-empire:before {content:"\f1d1"}
.gh-migrated .fa-envelope:before {content:"\f0e0"}
.gh-migrated .fa-envelope-open:before {content:"\f2b6"}
.gh-migrated .fa-envelope-open-text:before {content:"\f658"}
.gh-migrated .fa-envelope-square:before {content:"\f199"}
.gh-migrated .fa-envira:before {content:"\f299"}
.gh-migrated .fa-equals:before {content:"\f52c"}
.gh-migrated .fa-eraser:before {content:"\f12d"}
.gh-migrated .fa-erlang:before {content:"\f39d"}
.gh-migrated .fa-ethereum:before {content:"\f42e"}
.gh-migrated .fa-ethernet:before {content:"\f796"}
.gh-migrated .fa-etsy:before {content:"\f2d7"}
.gh-migrated .fa-euro-sign:before {content:"\f153"}
.gh-migrated .fa-evernote:before {content:"\f839"}
.gh-migrated .fa-exchange-alt:before {content:"\f362"}
.gh-migrated .fa-exclamation:before {content:"\f12a"}
.gh-migrated .fa-exclamation-circle:before {content:"\f06a"}
.gh-migrated .fa-exclamation-triangle:before {content:"\f071"}
.gh-migrated .fa-expand:before {content:"\f065"}
.gh-migrated .fa-expand-alt:before {content:"\f424"}
.gh-migrated .fa-expand-arrows-alt:before {content:"\f31e"}
.gh-migrated .fa-expeditedssl:before {content:"\f23e"}
.gh-migrated .fa-external-link-alt:before {content:"\f35d"}
.gh-migrated .fa-external-link-square-alt:before {content:"\f360"}
.gh-migrated .fa-eye:before {content:"\f06e"}
.gh-migrated .fa-eye-dropper:before {content:"\f1fb"}
.gh-migrated .fa-eye-slash:before {content:"\f070"}
.gh-migrated .fa-facebook:before {content:"\f09a"}
.gh-migrated .fa-facebook-f:before {content:"\f39e"}
.gh-migrated .fa-facebook-messenger:before {content:"\f39f"}
.gh-migrated .fa-facebook-square:before {content:"\f082"}
.gh-migrated .fa-fan:before {content:"\f863"}
.gh-migrated .fa-fantasy-flight-games:before {content:"\f6dc"}
.gh-migrated .fa-fast-backward:before {content:"\f049"}
.gh-migrated .fa-fast-forward:before {content:"\f050"}
.gh-migrated .fa-faucet:before {content:"\e005"}
.gh-migrated .fa-fax:before {content:"\f1ac"}
.gh-migrated .fa-feather:before {content:"\f52d"}
.gh-migrated .fa-feather-alt:before {content:"\f56b"}
.gh-migrated .fa-fedex:before {content:"\f797"}
.gh-migrated .fa-fedora:before {content:"\f798"}
.gh-migrated .fa-female:before {content:"\f182"}
.gh-migrated .fa-fighter-jet:before {content:"\f0fb"}
.gh-migrated .fa-figma:before {content:"\f799"}
.gh-migrated .fa-file:before {content:"\f15b"}
.gh-migrated .fa-file-alt:before {content:"\f15c"}
.gh-migrated .fa-file-archive:before {content:"\f1c6"}
.gh-migrated .fa-file-audio:before {content:"\f1c7"}
.gh-migrated .fa-file-code:before {content:"\f1c9"}
.gh-migrated .fa-file-contract:before {content:"\f56c"}
.gh-migrated .fa-file-csv:before {content:"\f6dd"}
.gh-migrated .fa-file-download:before {content:"\f56d"}
.gh-migrated .fa-file-excel:before {content:"\f1c3"}
.gh-migrated .fa-file-export:before {content:"\f56e"}
.gh-migrated .fa-file-image:before {content:"\f1c5"}
.gh-migrated .fa-file-import:before {content:"\f56f"}
.gh-migrated .fa-file-invoice:before {content:"\f570"}
.gh-migrated .fa-file-invoice-dollar:before {content:"\f571"}
.gh-migrated .fa-file-medical:before {content:"\f477"}
.gh-migrated .fa-file-medical-alt:before {content:"\f478"}
.gh-migrated .fa-file-pdf:before {content:"\f1c1"}
.gh-migrated .fa-file-powerpoint:before {content:"\f1c4"}
.gh-migrated .fa-file-prescription:before {content:"\f572"}
.gh-migrated .fa-file-signature:before {content:"\f573"}
.gh-migrated .fa-file-upload:before {content:"\f574"}
.gh-migrated .fa-file-video:before {content:"\f1c8"}
.gh-migrated .fa-file-word:before {content:"\f1c2"}
.gh-migrated .fa-fill:before {content:"\f575"}
.gh-migrated .fa-fill-drip:before {content:"\f576"}
.gh-migrated .fa-film:before {content:"\f008"}
.gh-migrated .fa-filter:before {content:"\f0b0"}
.gh-migrated .fa-fingerprint:before {content:"\f577"}
.gh-migrated .fa-fire:before {content:"\f06d"}
.gh-migrated .fa-fire-alt:before {content:"\f7e4"}
.gh-migrated .fa-fire-extinguisher:before {content:"\f134"}
.gh-migrated .fa-firefox:before {content:"\f269"}
.gh-migrated .fa-firefox-browser:before {content:"\e007"}
.gh-migrated .fa-first-aid:before {content:"\f479"}
.gh-migrated .fa-first-order:before {content:"\f2b0"}
.gh-migrated .fa-first-order-alt:before {content:"\f50a"}
.gh-migrated .fa-firstdraft:before {content:"\f3a1"}
.gh-migrated .fa-fish:before {content:"\f578"}
.gh-migrated .fa-fist-raised:before {content:"\f6de"}
.gh-migrated .fa-flag:before {content:"\f024"}
.gh-migrated .fa-flag-checkered:before {content:"\f11e"}
.gh-migrated .fa-flag-usa:before {content:"\f74d"}
.gh-migrated .fa-flask:before {content:"\f0c3"}
.gh-migrated .fa-flickr:before {content:"\f16e"}
.gh-migrated .fa-flipboard:before {content:"\f44d"}
.gh-migrated .fa-flushed:before {content:"\f579"}
.gh-migrated .fa-fly:before {content:"\f417"}
.gh-migrated .fa-folder:before {content:"\f07b"}
.gh-migrated .fa-folder-minus:before {content:"\f65d"}
.gh-migrated .fa-folder-open:before {content:"\f07c"}
.gh-migrated .fa-folder-plus:before {content:"\f65e"}
.gh-migrated .fa-font:before {content:"\f031"}
.gh-migrated .fa-font-awesome:before {content:"\f2b4"}
.gh-migrated .fa-font-awesome-alt:before {content:"\f35c"}
.gh-migrated .fa-font-awesome-flag:before {content:"\f425"}
.gh-migrated .fa-font-awesome-logo-full:before {content:"\f4e6"}
.gh-migrated .fa-fonticons:before {content:"\f280"}
.gh-migrated .fa-fonticons-fi:before {content:"\f3a2"}
.gh-migrated .fa-football-ball:before {content:"\f44e"}
.gh-migrated .fa-fort-awesome:before {content:"\f286"}
.gh-migrated .fa-fort-awesome-alt:before {content:"\f3a3"}
.gh-migrated .fa-forumbee:before {content:"\f211"}
.gh-migrated .fa-forward:before {content:"\f04e"}
.gh-migrated .fa-foursquare:before {content:"\f180"}
.gh-migrated .fa-free-code-camp:before {content:"\f2c5"}
.gh-migrated .fa-freebsd:before {content:"\f3a4"}
.gh-migrated .fa-frog:before {content:"\f52e"}
.gh-migrated .fa-frown:before {content:"\f119"}
.gh-migrated .fa-frown-open:before {content:"\f57a"}
.gh-migrated .fa-fulcrum:before {content:"\f50b"}
.gh-migrated .fa-funnel-dollar:before {content:"\f662"}
.gh-migrated .fa-futbol:before {content:"\f1e3"}
.gh-migrated .fa-galactic-republic:before {content:"\f50c"}
.gh-migrated .fa-galactic-senate:before {content:"\f50d"}
.gh-migrated .fa-gamepad:before {content:"\f11b"}
.gh-migrated .fa-gas-pump:before {content:"\f52f"}
.gh-migrated .fa-gavel:before {content:"\f0e3"}
.gh-migrated .fa-gem:before {content:"\f3a5"}
.gh-migrated .fa-genderless:before {content:"\f22d"}
.gh-migrated .fa-get-pocket:before {content:"\f265"}
.gh-migrated .fa-gg:before {content:"\f260"}
.gh-migrated .fa-gg-circle:before {content:"\f261"}
.gh-migrated .fa-ghost:before {content:"\f6e2"}
.gh-migrated .fa-gift:before {content:"\f06b"}
.gh-migrated .fa-gifts:before {content:"\f79c"}
.gh-migrated .fa-git:before {content:"\f1d3"}
.gh-migrated .fa-git-alt:before {content:"\f841"}
.gh-migrated .fa-git-square:before {content:"\f1d2"}
.gh-migrated .fa-github:before {content:"\f09b"}
.gh-migrated .fa-github-alt:before {content:"\f113"}
.gh-migrated .fa-github-square:before {content:"\f092"}
.gh-migrated .fa-gitkraken:before {content:"\f3a6"}
.gh-migrated .fa-gitlab:before {content:"\f296"}
.gh-migrated .fa-gitter:before {content:"\f426"}
.gh-migrated .fa-glass-cheers:before {content:"\f79f"}
.gh-migrated .fa-glass-martini:before {content:"\f000"}
.gh-migrated .fa-glass-martini-alt:before {content:"\f57b"}
.gh-migrated .fa-glass-whiskey:before {content:"\f7a0"}
.gh-migrated .fa-glasses:before {content:"\f530"}
.gh-migrated .fa-glide:before {content:"\f2a5"}
.gh-migrated .fa-glide-g:before {content:"\f2a6"}
.gh-migrated .fa-globe:before {content:"\f0ac"}
.gh-migrated .fa-globe-africa:before {content:"\f57c"}
.gh-migrated .fa-globe-americas:before {content:"\f57d"}
.gh-migrated .fa-globe-asia:before {content:"\f57e"}
.gh-migrated .fa-globe-europe:before {content:"\f7a2"}
.gh-migrated .fa-gofore:before {content:"\f3a7"}
.gh-migrated .fa-golf-ball:before {content:"\f450"}
.gh-migrated .fa-goodreads:before {content:"\f3a8"}
.gh-migrated .fa-goodreads-g:before {content:"\f3a9"}
.gh-migrated .fa-google:before {content:"\f1a0"}
.gh-migrated .fa-google-drive:before {content:"\f3aa"}
.gh-migrated .fa-google-pay:before {content:"\e079"}
.gh-migrated .fa-google-play:before {content:"\f3ab"}
.gh-migrated .fa-google-plus:before {content:"\f2b3"}
.gh-migrated .fa-google-plus-g:before {content:"\f0d5"}
.gh-migrated .fa-google-plus-square:before {content:"\f0d4"}
.gh-migrated .fa-google-wallet:before {content:"\f1ee"}
.gh-migrated .fa-gopuram:before {content:"\f664"}
.gh-migrated .fa-graduation-cap:before {content:"\f19d"}
.gh-migrated .fa-gratipay:before {content:"\f184"}
.gh-migrated .fa-grav:before {content:"\f2d6"}
.gh-migrated .fa-greater-than:before {content:"\f531"}
.gh-migrated .fa-greater-than-equal:before {content:"\f532"}
.gh-migrated .fa-grimace:before {content:"\f57f"}
.gh-migrated .fa-grin:before {content:"\f580"}
.gh-migrated .fa-grin-alt:before {content:"\f581"}
.gh-migrated .fa-grin-beam:before {content:"\f582"}
.gh-migrated .fa-grin-beam-sweat:before {content:"\f583"}
.gh-migrated .fa-grin-hearts:before {content:"\f584"}
.gh-migrated .fa-grin-squint:before {content:"\f585"}
.gh-migrated .fa-grin-squint-tears:before {content:"\f586"}
.gh-migrated .fa-grin-stars:before {content:"\f587"}
.gh-migrated .fa-grin-tears:before {content:"\f588"}
.gh-migrated .fa-grin-tongue:before {content:"\f589"}
.gh-migrated .fa-grin-tongue-squint:before {content:"\f58a"}
.gh-migrated .fa-grin-tongue-wink:before {content:"\f58b"}
.gh-migrated .fa-grin-wink:before {content:"\f58c"}
.gh-migrated .fa-grip-horizontal:before {content:"\f58d"}
.gh-migrated .fa-grip-lines:before {content:"\f7a4"}
.gh-migrated .fa-grip-lines-vertical:before {content:"\f7a5"}
.gh-migrated .fa-grip-vertical:before {content:"\f58e"}
.gh-migrated .fa-gripfire:before {content:"\f3ac"}
.gh-migrated .fa-grunt:before {content:"\f3ad"}
.gh-migrated .fa-guilded:before {content:"\e07e"}
.gh-migrated .fa-guitar:before {content:"\f7a6"}
.gh-migrated .fa-gulp:before {content:"\f3ae"}
.gh-migrated .fa-h-square:before {content:"\f0fd"}
.gh-migrated .fa-hacker-news:before {content:"\f1d4"}
.gh-migrated .fa-hacker-news-square:before {content:"\f3af"}
.gh-migrated .fa-hackerrank:before {content:"\f5f7"}
.gh-migrated .fa-hamburger:before {content:"\f805"}
.gh-migrated .fa-hammer:before {content:"\f6e3"}
.gh-migrated .fa-hamsa:before {content:"\f665"}
.gh-migrated .fa-hand-holding:before {content:"\f4bd"}
.gh-migrated .fa-hand-holding-heart:before {content:"\f4be"}
.gh-migrated .fa-hand-holding-medical:before {content:"\e05c"}
.gh-migrated .fa-hand-holding-usd:before {content:"\f4c0"}
.gh-migrated .fa-hand-holding-water:before {content:"\f4c1"}
.gh-migrated .fa-hand-lizard:before {content:"\f258"}
.gh-migrated .fa-hand-middle-finger:before {content:"\f806"}
.gh-migrated .fa-hand-paper:before {content:"\f256"}
.gh-migrated .fa-hand-peace:before {content:"\f25b"}
.gh-migrated .fa-hand-point-down:before {content:"\f0a7"}
.gh-migrated .fa-hand-point-left:before {content:"\f0a5"}
.gh-migrated .fa-hand-point-right:before {content:"\f0a4"}
.gh-migrated .fa-hand-point-up:before {content:"\f0a6"}
.gh-migrated .fa-hand-pointer:before {content:"\f25a"}
.gh-migrated .fa-hand-rock:before {content:"\f255"}
.gh-migrated .fa-hand-scissors:before {content:"\f257"}
.gh-migrated .fa-hand-sparkles:before {content:"\e05d"}
.gh-migrated .fa-hand-spock:before {content:"\f259"}
.gh-migrated .fa-hands:before {content:"\f4c2"}
.gh-migrated .fa-hands-helping:before {content:"\f4c4"}
.gh-migrated .fa-hands-wash:before {content:"\e05e"}
.gh-migrated .fa-handshake:before {content:"\f2b5"}
.gh-migrated .fa-handshake-alt-slash:before {content:"\e05f"}
.gh-migrated .fa-handshake-slash:before {content:"\e060"}
.gh-migrated .fa-hanukiah:before {content:"\f6e6"}
.gh-migrated .fa-hard-hat:before {content:"\f807"}
.gh-migrated .fa-hashtag:before {content:"\f292"}
.gh-migrated .fa-hat-cowboy:before {content:"\f8c0"}
.gh-migrated .fa-hat-cowboy-side:before {content:"\f8c1"}
.gh-migrated .fa-hat-wizard:before {content:"\f6e8"}
.gh-migrated .fa-hdd:before {content:"\f0a0"}
.gh-migrated .fa-head-side-cough:before {content:"\e061"}
.gh-migrated .fa-head-side-cough-slash:before {content:"\e062"}
.gh-migrated .fa-head-side-mask:before {content:"\e063"}
.gh-migrated .fa-head-side-virus:before {content:"\e064"}
.gh-migrated .fa-heading:before {content:"\f1dc"}
.gh-migrated .fa-headphones:before {content:"\f025"}
.gh-migrated .fa-headphones-alt:before {content:"\f58f"}
.gh-migrated .fa-headset:before {content:"\f590"}
.gh-migrated .fa-heart:before {content:"\f004"}
.gh-migrated .fa-heart-broken:before {content:"\f7a9"}
.gh-migrated .fa-heartbeat:before {content:"\f21e"}
.gh-migrated .fa-helicopter:before {content:"\f533"}
.gh-migrated .fa-highlighter:before {content:"\f591"}
.gh-migrated .fa-hiking:before {content:"\f6ec"}
.gh-migrated .fa-hippo:before {content:"\f6ed"}
.gh-migrated .fa-hips:before {content:"\f452"}
.gh-migrated .fa-hire-a-helper:before {content:"\f3b0"}
.gh-migrated .fa-history:before {content:"\f1da"}
.gh-migrated .fa-hive:before {content:"\e07f"}
.gh-migrated .fa-hockey-puck:before {content:"\f453"}
.gh-migrated .fa-holly-berry:before {content:"\f7aa"}
.gh-migrated .fa-home:before {content:"\f015"}
.gh-migrated .fa-hooli:before {content:"\f427"}
.gh-migrated .fa-hornbill:before {content:"\f592"}
.gh-migrated .fa-horse:before {content:"\f6f0"}
.gh-migrated .fa-horse-head:before {content:"\f7ab"}
.gh-migrated .fa-hospital:before {content:"\f0f8"}
.gh-migrated .fa-hospital-alt:before {content:"\f47d"}
.gh-migrated .fa-hospital-symbol:before {content:"\f47e"}
.gh-migrated .fa-hospital-user:before {content:"\f80d"}
.gh-migrated .fa-hot-tub:before {content:"\f593"}
.gh-migrated .fa-hotdog:before {content:"\f80f"}
.gh-migrated .fa-hotel:before {content:"\f594"}
.gh-migrated .fa-hotjar:before {content:"\f3b1"}
.gh-migrated .fa-hourglass:before {content:"\f254"}
.gh-migrated .fa-hourglass-end:before {content:"\f253"}
.gh-migrated .fa-hourglass-half:before {content:"\f252"}
.gh-migrated .fa-hourglass-start:before {content:"\f251"}
.gh-migrated .fa-house-damage:before {content:"\f6f1"}
.gh-migrated .fa-house-user:before {content:"\e065"}
.gh-migrated .fa-houzz:before {content:"\f27c"}
.gh-migrated .fa-hryvnia:before {content:"\f6f2"}
.gh-migrated .fa-html5:before {content:"\f13b"}
.gh-migrated .fa-hubspot:before {content:"\f3b2"}
.gh-migrated .fa-i-cursor:before {content:"\f246"}
.gh-migrated .fa-ice-cream:before {content:"\f810"}
.gh-migrated .fa-icicles:before {content:"\f7ad"}
.gh-migrated .fa-icons:before {content:"\f86d"}
.gh-migrated .fa-id-badge:before {content:"\f2c1"}
.gh-migrated .fa-id-card:before {content:"\f2c2"}
.gh-migrated .fa-id-card-alt:before {content:"\f47f"}
.gh-migrated .fa-ideal:before {content:"\e013"}
.gh-migrated .fa-igloo:before {content:"\f7ae"}
.gh-migrated .fa-image:before {content:"\f03e"}
.gh-migrated .fa-images:before {content:"\f302"}
.gh-migrated .fa-imdb:before {content:"\f2d8"}
.gh-migrated .fa-inbox:before {content:"\f01c"}
.gh-migrated .fa-indent:before {content:"\f03c"}
.gh-migrated .fa-industry:before {content:"\f275"}
.gh-migrated .fa-infinity:before {content:"\f534"}
.gh-migrated .fa-info:before {content:"\f129"}
.gh-migrated .fa-info-circle:before {content:"\f05a"}
.gh-migrated .fa-innosoft:before {content:"\e080"}
.gh-migrated .fa-instagram:before {content:"\f16d"}
.gh-migrated .fa-instagram-square:before {content:"\e055"}
.gh-migrated .fa-instalod:before {content:"\e081"}
.gh-migrated .fa-intercom:before {content:"\f7af"}
.gh-migrated .fa-internet-explorer:before {content:"\f26b"}
.gh-migrated .fa-invision:before {content:"\f7b0"}
.gh-migrated .fa-ioxhost:before {content:"\f208"}
.gh-migrated .fa-italic:before {content:"\f033"}
.gh-migrated .fa-itch-io:before {content:"\f83a"}
.gh-migrated .fa-itunes:before {content:"\f3b4"}
.gh-migrated .fa-itunes-note:before {content:"\f3b5"}
.gh-migrated .fa-java:before {content:"\f4e4"}
.gh-migrated .fa-jedi:before {content:"\f669"}
.gh-migrated .fa-jedi-order:before {content:"\f50e"}
.gh-migrated .fa-jenkins:before {content:"\f3b6"}
.gh-migrated .fa-jira:before {content:"\f7b1"}
.gh-migrated .fa-joget:before {content:"\f3b7"}
.gh-migrated .fa-joint:before {content:"\f595"}
.gh-migrated .fa-joomla:before {content:"\f1aa"}
.gh-migrated .fa-journal-whills:before {content:"\f66a"}
.gh-migrated .fa-js:before {content:"\f3b8"}
.gh-migrated .fa-js-square:before {content:"\f3b9"}
.gh-migrated .fa-jsfiddle:before {content:"\f1cc"}
.gh-migrated .fa-kaaba:before {content:"\f66b"}
.gh-migrated .fa-kaggle:before {content:"\f5fa"}
.gh-migrated .fa-key:before {content:"\f084"}
.gh-migrated .fa-keybase:before {content:"\f4f5"}
.gh-migrated .fa-keyboard:before {content:"\f11c"}
.gh-migrated .fa-keycdn:before {content:"\f3ba"}
.gh-migrated .fa-khanda:before {content:"\f66d"}
.gh-migrated .fa-kickstarter:before {content:"\f3bb"}
.gh-migrated .fa-kickstarter-k:before {content:"\f3bc"}
.gh-migrated .fa-kiss:before {content:"\f596"}
.gh-migrated .fa-kiss-beam:before {content:"\f597"}
.gh-migrated .fa-kiss-wink-heart:before {content:"\f598"}
.gh-migrated .fa-kiwi-bird:before {content:"\f535"}
.gh-migrated .fa-korvue:before {content:"\f42f"}
.gh-migrated .fa-landmark:before {content:"\f66f"}
.gh-migrated .fa-language:before {content:"\f1ab"}
.gh-migrated .fa-laptop:before {content:"\f109"}
.gh-migrated .fa-laptop-code:before {content:"\f5fc"}
.gh-migrated .fa-laptop-house:before {content:"\e066"}
.gh-migrated .fa-laptop-medical:before {content:"\f812"}
.gh-migrated .fa-laravel:before {content:"\f3bd"}
.gh-migrated .fa-lastfm:before {content:"\f202"}
.gh-migrated .fa-lastfm-square:before {content:"\f203"}
.gh-migrated .fa-laugh:before {content:"\f599"}
.gh-migrated .fa-laugh-beam:before {content:"\f59a"}
.gh-migrated .fa-laugh-squint:before {content:"\f59b"}
.gh-migrated .fa-laugh-wink:before {content:"\f59c"}
.gh-migrated .fa-layer-group:before {content:"\f5fd"}
.gh-migrated .fa-leaf:before {content:"\f06c"}
.gh-migrated .fa-leanpub:before {content:"\f212"}
.gh-migrated .fa-lemon:before {content:"\f094"}
.gh-migrated .fa-less:before {content:"\f41d"}
.gh-migrated .fa-less-than:before {content:"\f536"}
.gh-migrated .fa-less-than-equal:before {content:"\f537"}
.gh-migrated .fa-level-down-alt:before {content:"\f3be"}
.gh-migrated .fa-level-up-alt:before {content:"\f3bf"}
.gh-migrated .fa-life-ring:before {content:"\f1cd"}
.gh-migrated .fa-lightbulb:before {content:"\f0eb"}
.gh-migrated .fa-line:before {content:"\f3c0"}
.gh-migrated .fa-link:before {content:"\f0c1"}
.gh-migrated .fa-linkedin:before {content:"\f08c"}
.gh-migrated .fa-linkedin-in:before {content:"\f0e1"}
.gh-migrated .fa-linode:before {content:"\f2b8"}
.gh-migrated .fa-linux:before {content:"\f17c"}
.gh-migrated .fa-lira-sign:before {content:"\f195"}
.gh-migrated .fa-list:before {content:"\f03a"}
.gh-migrated .fa-list-alt:before {content:"\f022"}
.gh-migrated .fa-list-ol:before {content:"\f0cb"}
.gh-migrated .fa-list-ul:before {content:"\f0ca"}
.gh-migrated .fa-location-arrow:before {content:"\f124"}
.gh-migrated .fa-lock:before {content:"\f023"}
.gh-migrated .fa-lock-open:before {content:"\f3c1"}
.gh-migrated .fa-long-arrow-alt-down:before {content:"\f309"}
.gh-migrated .fa-long-arrow-alt-left:before {content:"\f30a"}
.gh-migrated .fa-long-arrow-alt-right:before {content:"\f30b"}
.gh-migrated .fa-long-arrow-alt-up:before {content:"\f30c"}
.gh-migrated .fa-low-vision:before {content:"\f2a8"}
.gh-migrated .fa-luggage-cart:before {content:"\f59d"}
.gh-migrated .fa-lungs:before {content:"\f604"}
.gh-migrated .fa-lungs-virus:before {content:"\e067"}
.gh-migrated .fa-lyft:before {content:"\f3c3"}
.gh-migrated .fa-magento:before {content:"\f3c4"}
.gh-migrated .fa-magic:before {content:"\f0d0"}
.gh-migrated .fa-magnet:before {content:"\f076"}
.gh-migrated .fa-mail-bulk:before {content:"\f674"}
.gh-migrated .fa-mailchimp:before {content:"\f59e"}
.gh-migrated .fa-male:before {content:"\f183"}
.gh-migrated .fa-mandalorian:before {content:"\f50f"}
.gh-migrated .fa-map:before {content:"\f279"}
.gh-migrated .fa-map-marked:before {content:"\f59f"}
.gh-migrated .fa-map-marked-alt:before {content:"\f5a0"}
.gh-migrated .fa-map-marker:before {content:"\f041"}
.gh-migrated .fa-map-marker-alt:before {content:"\f3c5"}
.gh-migrated .fa-map-pin:before {content:"\f276"}
.gh-migrated .fa-map-signs:before {content:"\f277"}
.gh-migrated .fa-markdown:before {content:"\f60f"}
.gh-migrated .fa-marker:before {content:"\f5a1"}
.gh-migrated .fa-mars:before {content:"\f222"}
.gh-migrated .fa-mars-double:before {content:"\f227"}
.gh-migrated .fa-mars-stroke:before {content:"\f229"}
.gh-migrated .fa-mars-stroke-h:before {content:"\f22b"}
.gh-migrated .fa-mars-stroke-v:before {content:"\f22a"}
.gh-migrated .fa-mask:before {content:"\f6fa"}
.gh-migrated .fa-mastodon:before {content:"\f4f6"}
.gh-migrated .fa-maxcdn:before {content:"\f136"}
.gh-migrated .fa-mdb:before {content:"\f8ca"}
.gh-migrated .fa-medal:before {content:"\f5a2"}
.gh-migrated .fa-medapps:before {content:"\f3c6"}
.gh-migrated .fa-medium:before {content:"\f23a"}
.gh-migrated .fa-medium-m:before {content:"\f3c7"}
.gh-migrated .fa-medkit:before {content:"\f0fa"}
.gh-migrated .fa-medrt:before {content:"\f3c8"}
.gh-migrated .fa-meetup:before {content:"\f2e0"}
.gh-migrated .fa-megaport:before {content:"\f5a3"}
.gh-migrated .fa-meh:before {content:"\f11a"}
.gh-migrated .fa-meh-blank:before {content:"\f5a4"}
.gh-migrated .fa-meh-rolling-eyes:before {content:"\f5a5"}
.gh-migrated .fa-memory:before {content:"\f538"}
.gh-migrated .fa-mendeley:before {content:"\f7b3"}
.gh-migrated .fa-menorah:before {content:"\f676"}
.gh-migrated .fa-mercury:before {content:"\f223"}
.gh-migrated .fa-meteor:before {content:"\f753"}
.gh-migrated .fa-microblog:before {content:"\e01a"}
.gh-migrated .fa-microchip:before {content:"\f2db"}
.gh-migrated .fa-microphone:before {content:"\f130"}
.gh-migrated .fa-microphone-alt:before {content:"\f3c9"}
.gh-migrated .fa-microphone-alt-slash:before {content:"\f539"}
.gh-migrated .fa-microphone-slash:before {content:"\f131"}
.gh-migrated .fa-microscope:before {content:"\f610"}
.gh-migrated .fa-microsoft:before {content:"\f3ca"}
.gh-migrated .fa-minus:before {content:"\f068"}
.gh-migrated .fa-minus-circle:before {content:"\f056"}
.gh-migrated .fa-minus-square:before {content:"\f146"}
.gh-migrated .fa-mitten:before {content:"\f7b5"}
.gh-migrated .fa-mix:before {content:"\f3cb"}
.gh-migrated .fa-mixcloud:before {content:"\f289"}
.gh-migrated .fa-mixer:before {content:"\e056"}
.gh-migrated .fa-mizuni:before {content:"\f3cc"}
.gh-migrated .fa-mobile:before {content:"\f10b"}
.gh-migrated .fa-mobile-alt:before {content:"\f3cd"}
.gh-migrated .fa-modx:before {content:"\f285"}
.gh-migrated .fa-monero:before {content:"\f3d0"}
.gh-migrated .fa-money-bill:before {content:"\f0d6"}
.gh-migrated .fa-money-bill-alt:before {content:"\f3d1"}
.gh-migrated .fa-money-bill-wave:before {content:"\f53a"}
.gh-migrated .fa-money-bill-wave-alt:before {content:"\f53b"}
.gh-migrated .fa-money-check:before {content:"\f53c"}
.gh-migrated .fa-money-check-alt:before {content:"\f53d"}
.gh-migrated .fa-monument:before {content:"\f5a6"}
.gh-migrated .fa-moon:before {content:"\f186"}
.gh-migrated .fa-mortar-pestle:before {content:"\f5a7"}
.gh-migrated .fa-mosque:before {content:"\f678"}
.gh-migrated .fa-motorcycle:before {content:"\f21c"}
.gh-migrated .fa-mountain:before {content:"\f6fc"}
.gh-migrated .fa-mouse:before {content:"\f8cc"}
.gh-migrated .fa-mouse-pointer:before {content:"\f245"}
.gh-migrated .fa-mug-hot:before {content:"\f7b6"}
.gh-migrated .fa-music:before {content:"\f001"}
.gh-migrated .fa-napster:before {content:"\f3d2"}
.gh-migrated .fa-neos:before {content:"\f612"}
.gh-migrated .fa-network-wired:before {content:"\f6ff"}
.gh-migrated .fa-neuter:before {content:"\f22c"}
.gh-migrated .fa-newspaper:before {content:"\f1ea"}
.gh-migrated .fa-nimblr:before {content:"\f5a8"}
.gh-migrated .fa-node:before {content:"\f419"}
.gh-migrated .fa-node-js:before {content:"\f3d3"}
.gh-migrated .fa-not-equal:before {content:"\f53e"}
.gh-migrated .fa-notes-medical:before {content:"\f481"}
.gh-migrated .fa-npm:before {content:"\f3d4"}
.gh-migrated .fa-ns8:before {content:"\f3d5"}
.gh-migrated .fa-nutritionix:before {content:"\f3d6"}
.gh-migrated .fa-object-group:before {content:"\f247"}
.gh-migrated .fa-object-ungroup:before {content:"\f248"}
.gh-migrated .fa-octopus-deploy:before {content:"\e082"}
.gh-migrated .fa-odnoklassniki:before {content:"\f263"}
.gh-migrated .fa-odnoklassniki-square:before {content:"\f264"}
.gh-migrated .fa-oil-can:before {content:"\f613"}
.gh-migrated .fa-old-republic:before {content:"\f510"}
.gh-migrated .fa-om:before {content:"\f679"}
.gh-migrated .fa-opencart:before {content:"\f23d"}
.gh-migrated .fa-openid:before {content:"\f19b"}
.gh-migrated .fa-opera:before {content:"\f26a"}
.gh-migrated .fa-optin-monster:before {content:"\f23c"}
.gh-migrated .fa-orcid:before {content:"\f8d2"}
.gh-migrated .fa-osi:before {content:"\f41a"}
.gh-migrated .fa-otter:before {content:"\f700"}
.gh-migrated .fa-outdent:before {content:"\f03b"}
.gh-migrated .fa-page4:before {content:"\f3d7"}
.gh-migrated .fa-pagelines:before {content:"\f18c"}
.gh-migrated .fa-pager:before {content:"\f815"}
.gh-migrated .fa-paint-brush:before {content:"\f1fc"}
.gh-migrated .fa-paint-roller:before {content:"\f5aa"}
.gh-migrated .fa-palette:before {content:"\f53f"}
.gh-migrated .fa-palfed:before {content:"\f3d8"}
.gh-migrated .fa-pallet:before {content:"\f482"}
.gh-migrated .fa-paper-plane:before {content:"\f1d8"}
.gh-migrated .fa-paperclip:before {content:"\f0c6"}
.gh-migrated .fa-parachute-box:before {content:"\f4cd"}
.gh-migrated .fa-paragraph:before {content:"\f1dd"}
.gh-migrated .fa-parking:before {content:"\f540"}
.gh-migrated .fa-passport:before {content:"\f5ab"}
.gh-migrated .fa-pastafarianism:before {content:"\f67b"}
.gh-migrated .fa-paste:before {content:"\f0ea"}
.gh-migrated .fa-patreon:before {content:"\f3d9"}
.gh-migrated .fa-pause:before {content:"\f04c"}
.gh-migrated .fa-pause-circle:before {content:"\f28b"}
.gh-migrated .fa-paw:before {content:"\f1b0"}
.gh-migrated .fa-paypal:before {content:"\f1ed"}
.gh-migrated .fa-peace:before {content:"\f67c"}
.gh-migrated .fa-pen:before {content:"\f304"}
.gh-migrated .fa-pen-alt:before {content:"\f305"}
.gh-migrated .fa-pen-fancy:before {content:"\f5ac"}
.gh-migrated .fa-pen-nib:before {content:"\f5ad"}
.gh-migrated .fa-pen-square:before {content:"\f14b"}
.gh-migrated .fa-pencil-alt:before {content:"\f303"}
.gh-migrated .fa-pencil-ruler:before {content:"\f5ae"}
.gh-migrated .fa-penny-arcade:before {content:"\f704"}
.gh-migrated .fa-people-arrows:before {content:"\e068"}
.gh-migrated .fa-people-carry:before {content:"\f4ce"}
.gh-migrated .fa-pepper-hot:before {content:"\f816"}
.gh-migrated .fa-perbyte:before {content:"\e083"}
.gh-migrated .fa-percent:before {content:"\f295"}
.gh-migrated .fa-percentage:before {content:"\f541"}
.gh-migrated .fa-periscope:before {content:"\f3da"}
.gh-migrated .fa-person-booth:before {content:"\f756"}
.gh-migrated .fa-phabricator:before {content:"\f3db"}
.gh-migrated .fa-phoenix-framework:before {content:"\f3dc"}
.gh-migrated .fa-phoenix-squadron:before {content:"\f511"}
.gh-migrated .fa-phone:before {content:"\f095"}
.gh-migrated .fa-phone-alt:before {content:"\f879"}
.gh-migrated .fa-phone-slash:before {content:"\f3dd"}
.gh-migrated .fa-phone-square:before {content:"\f098"}
.gh-migrated .fa-phone-square-alt:before {content:"\f87b"}
.gh-migrated .fa-phone-volume:before {content:"\f2a0"}
.gh-migrated .fa-photo-video:before {content:"\f87c"}
.gh-migrated .fa-php:before {content:"\f457"}
.gh-migrated .fa-pied-piper:before {content:"\f2ae"}
.gh-migrated .fa-pied-piper-alt:before {content:"\f1a8"}
.gh-migrated .fa-pied-piper-hat:before {content:"\f4e5"}
.gh-migrated .fa-pied-piper-pp:before {content:"\f1a7"}
.gh-migrated .fa-pied-piper-square:before {content:"\e01e"}
.gh-migrated .fa-piggy-bank:before {content:"\f4d3"}
.gh-migrated .fa-pills:before {content:"\f484"}
.gh-migrated .fa-pinterest:before {content:"\f0d2"}
.gh-migrated .fa-pinterest-p:before {content:"\f231"}
.gh-migrated .fa-pinterest-square:before {content:"\f0d3"}
.gh-migrated .fa-pizza-slice:before {content:"\f818"}
.gh-migrated .fa-place-of-worship:before {content:"\f67f"}
.gh-migrated .fa-plane:before {content:"\f072"}
.gh-migrated .fa-plane-arrival:before {content:"\f5af"}
.gh-migrated .fa-plane-departure:before {content:"\f5b0"}
.gh-migrated .fa-plane-slash:before {content:"\e069"}
.gh-migrated .fa-play:before {content:"\f04b"}
.gh-migrated .fa-play-circle:before {content:"\f144"}
.gh-migrated .fa-playstation:before {content:"\f3df"}
.gh-migrated .fa-plug:before {content:"\f1e6"}
.gh-migrated .fa-plus:before {content:"\f067"}
.gh-migrated .fa-plus-circle:before {content:"\f055"}
.gh-migrated .fa-plus-square:before {content:"\f0fe"}
.gh-migrated .fa-podcast:before {content:"\f2ce"}
.gh-migrated .fa-poll:before {content:"\f681"}
.gh-migrated .fa-poll-h:before {content:"\f682"}
.gh-migrated .fa-poo:before {content:"\f2fe"}
.gh-migrated .fa-poo-storm:before {content:"\f75a"}
.gh-migrated .fa-poop:before {content:"\f619"}
.gh-migrated .fa-portrait:before {content:"\f3e0"}
.gh-migrated .fa-pound-sign:before {content:"\f154"}
.gh-migrated .fa-power-off:before {content:"\f011"}
.gh-migrated .fa-pray:before {content:"\f683"}
.gh-migrated .fa-praying-hands:before {content:"\f684"}
.gh-migrated .fa-prescription:before {content:"\f5b1"}
.gh-migrated .fa-prescription-bottle:before {content:"\f485"}
.gh-migrated .fa-prescription-bottle-alt:before {content:"\f486"}
.gh-migrated .fa-print:before {content:"\f02f"}
.gh-migrated .fa-procedures:before {content:"\f487"}
.gh-migrated .fa-product-hunt:before {content:"\f288"}
.gh-migrated .fa-project-diagram:before {content:"\f542"}
.gh-migrated .fa-pump-medical:before {content:"\e06a"}
.gh-migrated .fa-pump-soap:before {content:"\e06b"}
.gh-migrated .fa-pushed:before {content:"\f3e1"}
.gh-migrated .fa-puzzle-piece:before {content:"\f12e"}
.gh-migrated .fa-python:before {content:"\f3e2"}
.gh-migrated .fa-qq:before {content:"\f1d6"}
.gh-migrated .fa-qrcode:before {content:"\f029"}
.gh-migrated .fa-question:before {content:"\f128"}
.gh-migrated .fa-question-circle:before {content:"\f059"}
.gh-migrated .fa-quidditch:before {content:"\f458"}
.gh-migrated .fa-quinscape:before {content:"\f459"}
.gh-migrated .fa-quora:before {content:"\f2c4"}
.gh-migrated .fa-quote-left:before {content:"\f10d"}
.gh-migrated .fa-quote-right:before {content:"\f10e"}
.gh-migrated .fa-quran:before {content:"\f687"}
.gh-migrated .fa-r-project:before {content:"\f4f7"}
.gh-migrated .fa-radiation:before {content:"\f7b9"}
.gh-migrated .fa-radiation-alt:before {content:"\f7ba"}
.gh-migrated .fa-rainbow:before {content:"\f75b"}
.gh-migrated .fa-random:before {content:"\f074"}
.gh-migrated .fa-raspberry-pi:before {content:"\f7bb"}
.gh-migrated .fa-ravelry:before {content:"\f2d9"}
.gh-migrated .fa-react:before {content:"\f41b"}
.gh-migrated .fa-reacteurope:before {content:"\f75d"}
.gh-migrated .fa-readme:before {content:"\f4d5"}
.gh-migrated .fa-rebel:before {content:"\f1d0"}
.gh-migrated .fa-receipt:before {content:"\f543"}
.gh-migrated .fa-record-vinyl:before {content:"\f8d9"}
.gh-migrated .fa-recycle:before {content:"\f1b8"}
.gh-migrated .fa-red-river:before {content:"\f3e3"}
.gh-migrated .fa-reddit:before {content:"\f1a1"}
.gh-migrated .fa-reddit-alien:before {content:"\f281"}
.gh-migrated .fa-reddit-square:before {content:"\f1a2"}
.gh-migrated .fa-redhat:before {content:"\f7bc"}
.gh-migrated .fa-redo:before {content:"\f01e"}
.gh-migrated .fa-redo-alt:before {content:"\f2f9"}
.gh-migrated .fa-registered:before {content:"\f25d"}
.gh-migrated .fa-remove-format:before {content:"\f87d"}
.gh-migrated .fa-renren:before {content:"\f18b"}
.gh-migrated .fa-reply:before {content:"\f3e5"}
.gh-migrated .fa-reply-all:before {content:"\f122"}
.gh-migrated .fa-replyd:before {content:"\f3e6"}
.gh-migrated .fa-republican:before {content:"\f75e"}
.gh-migrated .fa-researchgate:before {content:"\f4f8"}
.gh-migrated .fa-resolving:before {content:"\f3e7"}
.gh-migrated .fa-restroom:before {content:"\f7bd"}
.gh-migrated .fa-retweet:before {content:"\f079"}
.gh-migrated .fa-rev:before {content:"\f5b2"}
.gh-migrated .fa-ribbon:before {content:"\f4d6"}
.gh-migrated .fa-ring:before {content:"\f70b"}
.gh-migrated .fa-road:before {content:"\f018"}
.gh-migrated .fa-robot:before {content:"\f544"}
.gh-migrated .fa-rocket:before {content:"\f135"}
.gh-migrated .fa-rocketchat:before {content:"\f3e8"}
.gh-migrated .fa-rockrms:before {content:"\f3e9"}
.gh-migrated .fa-route:before {content:"\f4d7"}
.gh-migrated .fa-rss:before {content:"\f09e"}
.gh-migrated .fa-rss-square:before {content:"\f143"}
.gh-migrated .fa-ruble-sign:before {content:"\f158"}
.gh-migrated .fa-ruler:before {content:"\f545"}
.gh-migrated .fa-ruler-combined:before {content:"\f546"}
.gh-migrated .fa-ruler-horizontal:before {content:"\f547"}
.gh-migrated .fa-ruler-vertical:before {content:"\f548"}
.gh-migrated .fa-running:before {content:"\f70c"}
.gh-migrated .fa-rupee-sign:before {content:"\f156"}
.gh-migrated .fa-rust:before {content:"\e07a"}
.gh-migrated .fa-sad-cry:before {content:"\f5b3"}
.gh-migrated .fa-sad-tear:before {content:"\f5b4"}
.gh-migrated .fa-safari:before {content:"\f267"}
.gh-migrated .fa-salesforce:before {content:"\f83b"}
.gh-migrated .fa-sass:before {content:"\f41e"}
.gh-migrated .fa-satellite:before {content:"\f7bf"}
.gh-migrated .fa-satellite-dish:before {content:"\f7c0"}
.gh-migrated .fa-save:before {content:"\f0c7"}
.gh-migrated .fa-schlix:before {content:"\f3ea"}
.gh-migrated .fa-school:before {content:"\f549"}
.gh-migrated .fa-screwdriver:before {content:"\f54a"}
.gh-migrated .fa-scribd:before {content:"\f28a"}
.gh-migrated .fa-scroll:before {content:"\f70e"}
.gh-migrated .fa-sd-card:before {content:"\f7c2"}
.gh-migrated .fa-search:before {content:"\f002"}
.gh-migrated .fa-search-dollar:before {content:"\f688"}
.gh-migrated .fa-search-location:before {content:"\f689"}
.gh-migrated .fa-search-minus:before {content:"\f010"}
.gh-migrated .fa-search-plus:before {content:"\f00e"}
.gh-migrated .fa-searchengin:before {content:"\f3eb"}
.gh-migrated .fa-seedling:before {content:"\f4d8"}
.gh-migrated .fa-sellcast:before {content:"\f2da"}
.gh-migrated .fa-sellsy:before {content:"\f213"}
.gh-migrated .fa-server:before {content:"\f233"}
.gh-migrated .fa-servicestack:before {content:"\f3ec"}
.gh-migrated .fa-shapes:before {content:"\f61f"}
.gh-migrated .fa-share:before {content:"\f064"}
.gh-migrated .fa-share-alt:before {content:"\f1e0"}
.gh-migrated .fa-share-alt-square:before {content:"\f1e1"}
.gh-migrated .fa-share-square:before {content:"\f14d"}
.gh-migrated .fa-shekel-sign:before {content:"\f20b"}
.gh-migrated .fa-shield-alt:before {content:"\f3ed"}
.gh-migrated .fa-shield-virus:before {content:"\e06c"}
.gh-migrated .fa-ship:before {content:"\f21a"}
.gh-migrated .fa-shipping-fast:before {content:"\f48b"}
.gh-migrated .fa-shirtsinbulk:before {content:"\f214"}
.gh-migrated .fa-shoe-prints:before {content:"\f54b"}
.gh-migrated .fa-shopify:before {content:"\e057"}
.gh-migrated .fa-shopping-bag:before {content:"\f290"}
.gh-migrated .fa-shopping-basket:before {content:"\f291"}
.gh-migrated .fa-shopping-cart:before {content:"\f07a"}
.gh-migrated .fa-shopware:before {content:"\f5b5"}
.gh-migrated .fa-shower:before {content:"\f2cc"}
.gh-migrated .fa-shuttle-van:before {content:"\f5b6"}
.gh-migrated .fa-sign:before {content:"\f4d9"}
.gh-migrated .fa-sign-in-alt:before {content:"\f2f6"}
.gh-migrated .fa-sign-language:before {content:"\f2a7"}
.gh-migrated .fa-sign-out-alt:before {content:"\f2f5"}
.gh-migrated .fa-signal:before {content:"\f012"}
.gh-migrated .fa-signature:before {content:"\f5b7"}
.gh-migrated .fa-sim-card:before {content:"\f7c4"}
.gh-migrated .fa-simplybuilt:before {content:"\f215"}
.gh-migrated .fa-sink:before {content:"\e06d"}
.gh-migrated .fa-sistrix:before {content:"\f3ee"}
.gh-migrated .fa-sitemap:before {content:"\f0e8"}
.gh-migrated .fa-sith:before {content:"\f512"}
.gh-migrated .fa-skating:before {content:"\f7c5"}
.gh-migrated .fa-sketch:before {content:"\f7c6"}
.gh-migrated .fa-skiing:before {content:"\f7c9"}
.gh-migrated .fa-skiing-nordic:before {content:"\f7ca"}
.gh-migrated .fa-skull:before {content:"\f54c"}
.gh-migrated .fa-skull-crossbones:before {content:"\f714"}
.gh-migrated .fa-skyatlas:before {content:"\f216"}
.gh-migrated .fa-skype:before {content:"\f17e"}
.gh-migrated .fa-slack:before {content:"\f198"}
.gh-migrated .fa-slack-hash:before {content:"\f3ef"}
.gh-migrated .fa-slash:before {content:"\f715"}
.gh-migrated .fa-sleigh:before {content:"\f7cc"}
.gh-migrated .fa-sliders-h:before {content:"\f1de"}
.gh-migrated .fa-slideshare:before {content:"\f1e7"}
.gh-migrated .fa-smile:before {content:"\f118"}
.gh-migrated .fa-smile-beam:before {content:"\f5b8"}
.gh-migrated .fa-smile-wink:before {content:"\f4da"}
.gh-migrated .fa-smog:before {content:"\f75f"}
.gh-migrated .fa-smoking:before {content:"\f48d"}
.gh-migrated .fa-smoking-ban:before {content:"\f54d"}
.gh-migrated .fa-sms:before {content:"\f7cd"}
.gh-migrated .fa-snapchat:before {content:"\f2ab"}
.gh-migrated .fa-snapchat-ghost:before {content:"\f2ac"}
.gh-migrated .fa-snapchat-square:before {content:"\f2ad"}
.gh-migrated .fa-snowboarding:before {content:"\f7ce"}
.gh-migrated .fa-snowflake:before {content:"\f2dc"}
.gh-migrated .fa-snowman:before {content:"\f7d0"}
.gh-migrated .fa-snowplow:before {content:"\f7d2"}
.gh-migrated .fa-soap:before {content:"\e06e"}
.gh-migrated .fa-socks:before {content:"\f696"}
.gh-migrated .fa-solar-panel:before {content:"\f5ba"}
.gh-migrated .fa-sort:before {content:"\f0dc"}
.gh-migrated .fa-sort-alpha-down:before {content:"\f15d"}
.gh-migrated .fa-sort-alpha-down-alt:before {content:"\f881"}
.gh-migrated .fa-sort-alpha-up:before {content:"\f15e"}
.gh-migrated .fa-sort-alpha-up-alt:before {content:"\f882"}
.gh-migrated .fa-sort-amount-down:before {content:"\f160"}
.gh-migrated .fa-sort-amount-down-alt:before {content:"\f884"}
.gh-migrated .fa-sort-amount-up:before {content:"\f161"}
.gh-migrated .fa-sort-amount-up-alt:before {content:"\f885"}
.gh-migrated .fa-sort-down:before {content:"\f0dd"}
.gh-migrated .fa-sort-numeric-down:before {content:"\f162"}
.gh-migrated .fa-sort-numeric-down-alt:before {content:"\f886"}
.gh-migrated .fa-sort-numeric-up:before {content:"\f163"}
.gh-migrated .fa-sort-numeric-up-alt:before {content:"\f887"}
.gh-migrated .fa-sort-up:before {content:"\f0de"}
.gh-migrated .fa-soundcloud:before {content:"\f1be"}
.gh-migrated .fa-sourcetree:before {content:"\f7d3"}
.gh-migrated .fa-spa:before {content:"\f5bb"}
.gh-migrated .fa-space-shuttle:before {content:"\f197"}
.gh-migrated .fa-speakap:before {content:"\f3f3"}
.gh-migrated .fa-speaker-deck:before {content:"\f83c"}
.gh-migrated .fa-spell-check:before {content:"\f891"}
.gh-migrated .fa-spider:before {content:"\f717"}
.gh-migrated .fa-spinner:before {content:"\f110"}
.gh-migrated .fa-splotch:before {content:"\f5bc"}
.gh-migrated .fa-spotify:before {content:"\f1bc"}
.gh-migrated .fa-spray-can:before {content:"\f5bd"}
.gh-migrated .fa-square:before {content:"\f0c8"}
.gh-migrated .fa-square-full:before {content:"\f45c"}
.gh-migrated .fa-square-root-alt:before {content:"\f698"}
.gh-migrated .fa-squarespace:before {content:"\f5be"}
.gh-migrated .fa-stack-exchange:before {content:"\f18d"}
.gh-migrated .fa-stack-overflow:before {content:"\f16c"}
.gh-migrated .fa-stackpath:before {content:"\f842"}
.gh-migrated .fa-stamp:before {content:"\f5bf"}
.gh-migrated .fa-star:before {content:"\f005"}
.gh-migrated .fa-star-and-crescent:before {content:"\f699"}
.gh-migrated .fa-star-half:before {content:"\f089"}
.gh-migrated .fa-star-half-alt:before {content:"\f5c0"}
.gh-migrated .fa-star-of-david:before {content:"\f69a"}
.gh-migrated .fa-star-of-life:before {content:"\f621"}
.gh-migrated .fa-staylinked:before {content:"\f3f5"}
.gh-migrated .fa-steam:before {content:"\f1b6"}
.gh-migrated .fa-steam-square:before {content:"\f1b7"}
.gh-migrated .fa-steam-symbol:before {content:"\f3f6"}
.gh-migrated .fa-step-backward:before {content:"\f048"}
.gh-migrated .fa-step-forward:before {content:"\f051"}
.gh-migrated .fa-stethoscope:before {content:"\f0f1"}
.gh-migrated .fa-sticker-mule:before {content:"\f3f7"}
.gh-migrated .fa-sticky-note:before {content:"\f249"}
.gh-migrated .fa-stop:before {content:"\f04d"}
.gh-migrated .fa-stop-circle:before {content:"\f28d"}
.gh-migrated .fa-stopwatch:before {content:"\f2f2"}
.gh-migrated .fa-stopwatch-20:before {content:"\e06f"}
.gh-migrated .fa-store:before {content:"\f54e"}
.gh-migrated .fa-store-alt:before {content:"\f54f"}
.gh-migrated .fa-store-alt-slash:before {content:"\e070"}
.gh-migrated .fa-store-slash:before {content:"\e071"}
.gh-migrated .fa-strava:before {content:"\f428"}
.gh-migrated .fa-stream:before {content:"\f550"}
.gh-migrated .fa-street-view:before {content:"\f21d"}
.gh-migrated .fa-strikethrough:before {content:"\f0cc"}
.gh-migrated .fa-stripe:before {content:"\f429"}
.gh-migrated .fa-stripe-s:before {content:"\f42a"}
.gh-migrated .fa-stroopwafel:before {content:"\f551"}
.gh-migrated .fa-studiovinari:before {content:"\f3f8"}
.gh-migrated .fa-stumbleupon:before {content:"\f1a4"}
.gh-migrated .fa-stumbleupon-circle:before {content:"\f1a3"}
.gh-migrated .fa-subscript:before {content:"\f12c"}
.gh-migrated .fa-subway:before {content:"\f239"}
.gh-migrated .fa-suitcase:before {content:"\f0f2"}
.gh-migrated .fa-suitcase-rolling:before {content:"\f5c1"}
.gh-migrated .fa-sun:before {content:"\f185"}
.gh-migrated .fa-superpowers:before {content:"\f2dd"}
.gh-migrated .fa-superscript:before {content:"\f12b"}
.gh-migrated .fa-supple:before {content:"\f3f9"}
.gh-migrated .fa-surprise:before {content:"\f5c2"}
.gh-migrated .fa-suse:before {content:"\f7d6"}
.gh-migrated .fa-swatchbook:before {content:"\f5c3"}
.gh-migrated .fa-swift:before {content:"\f8e1"}
.gh-migrated .fa-swimmer:before {content:"\f5c4"}
.gh-migrated .fa-swimming-pool:before {content:"\f5c5"}
.gh-migrated .fa-symfony:before {content:"\f83d"}
.gh-migrated .fa-synagogue:before {content:"\f69b"}
.gh-migrated .fa-sync:before {content:"\f021"}
.gh-migrated .fa-sync-alt:before {content:"\f2f1"}
.gh-migrated .fa-syringe:before {content:"\f48e"}
.gh-migrated .fa-table:before {content:"\f0ce"}
.gh-migrated .fa-table-tennis:before {content:"\f45d"}
.gh-migrated .fa-tablet:before {content:"\f10a"}
.gh-migrated .fa-tablet-alt:before {content:"\f3fa"}
.gh-migrated .fa-tablets:before {content:"\f490"}
.gh-migrated .fa-tachometer-alt:before {content:"\f3fd"}
.gh-migrated .fa-tag:before {content:"\f02b"}
.gh-migrated .fa-tags:before {content:"\f02c"}
.gh-migrated .fa-tape:before {content:"\f4db"}
.gh-migrated .fa-tasks:before {content:"\f0ae"}
.gh-migrated .fa-taxi:before {content:"\f1ba"}
.gh-migrated .fa-teamspeak:before {content:"\f4f9"}
.gh-migrated .fa-teeth:before {content:"\f62e"}
.gh-migrated .fa-teeth-open:before {content:"\f62f"}
.gh-migrated .fa-telegram:before {content:"\f2c6"}
.gh-migrated .fa-telegram-plane:before {content:"\f3fe"}
.gh-migrated .fa-temperature-high:before {content:"\f769"}
.gh-migrated .fa-temperature-low:before {content:"\f76b"}
.gh-migrated .fa-tencent-weibo:before {content:"\f1d5"}
.gh-migrated .fa-tenge:before {content:"\f7d7"}
.gh-migrated .fa-terminal:before {content:"\f120"}
.gh-migrated .fa-text-height:before {content:"\f034"}
.gh-migrated .fa-text-width:before {content:"\f035"}
.gh-migrated .fa-th:before {content:"\f00a"}
.gh-migrated .fa-th-large:before {content:"\f009"}
.gh-migrated .fa-th-list:before {content:"\f00b"}
.gh-migrated .fa-the-red-yeti:before {content:"\f69d"}
.gh-migrated .fa-theater-masks:before {content:"\f630"}
.gh-migrated .fa-themeco:before {content:"\f5c6"}
.gh-migrated .fa-themeisle:before {content:"\f2b2"}
.gh-migrated .fa-thermometer:before {content:"\f491"}
.gh-migrated .fa-thermometer-empty:before {content:"\f2cb"}
.gh-migrated .fa-thermometer-full:before {content:"\f2c7"}
.gh-migrated .fa-thermometer-half:before {content:"\f2c9"}
.gh-migrated .fa-thermometer-quarter:before {content:"\f2ca"}
.gh-migrated .fa-thermometer-three-quarters:before {content:"\f2c8"}
.gh-migrated .fa-think-peaks:before {content:"\f731"}
.gh-migrated .fa-thumbs-down:before {content:"\f165"}
.gh-migrated .fa-thumbs-up:before {content:"\f164"}
.gh-migrated .fa-thumbtack:before {content:"\f08d"}
.gh-migrated .fa-ticket-alt:before {content:"\f3ff"}
.gh-migrated .fa-tiktok:before {content:"\e07b"}
.gh-migrated .fa-times:before {content:"\f00d"}
.gh-migrated .fa-times-circle:before {content:"\f057"}
.gh-migrated .fa-tint:before {content:"\f043"}
.gh-migrated .fa-tint-slash:before {content:"\f5c7"}
.gh-migrated .fa-tired:before {content:"\f5c8"}
.gh-migrated .fa-toggle-off:before {content:"\f204"}
.gh-migrated .fa-toggle-on:before {content:"\f205"}
.gh-migrated .fa-toilet:before {content:"\f7d8"}
.gh-migrated .fa-toilet-paper:before {content:"\f71e"}
.gh-migrated .fa-toilet-paper-slash:before {content:"\e072"}
.gh-migrated .fa-toolbox:before {content:"\f552"}
.gh-migrated .fa-tools:before {content:"\f7d9"}
.gh-migrated .fa-tooth:before {content:"\f5c9"}
.gh-migrated .fa-torah:before {content:"\f6a0"}
.gh-migrated .fa-torii-gate:before {content:"\f6a1"}
.gh-migrated .fa-tractor:before {content:"\f722"}
.gh-migrated .fa-trade-federation:before {content:"\f513"}
.gh-migrated .fa-trademark:before {content:"\f25c"}
.gh-migrated .fa-traffic-light:before {content:"\f637"}
.gh-migrated .fa-trailer:before {content:"\e041"}
.gh-migrated .fa-train:before {content:"\f238"}
.gh-migrated .fa-tram:before {content:"\f7da"}
.gh-migrated .fa-transgender:before {content:"\f224"}
.gh-migrated .fa-transgender-alt:before {content:"\f225"}
.gh-migrated .fa-trash:before {content:"\f1f8"}
.gh-migrated .fa-trash-alt:before {content:"\f2ed"}
.gh-migrated .fa-trash-restore:before {content:"\f829"}
.gh-migrated .fa-trash-restore-alt:before {content:"\f82a"}
.gh-migrated .fa-tree:before {content:"\f1bb"}
.gh-migrated .fa-trello:before {content:"\f181"}
.gh-migrated .fa-trophy:before {content:"\f091"}
.gh-migrated .fa-truck:before {content:"\f0d1"}
.gh-migrated .fa-truck-loading:before {content:"\f4de"}
.gh-migrated .fa-truck-monster:before {content:"\f63b"}
.gh-migrated .fa-truck-moving:before {content:"\f4df"}
.gh-migrated .fa-truck-pickup:before {content:"\f63c"}
.gh-migrated .fa-tshirt:before {content:"\f553"}
.gh-migrated .fa-tty:before {content:"\f1e4"}
.gh-migrated .fa-tumblr:before {content:"\f173"}
.gh-migrated .fa-tumblr-square:before {content:"\f174"}
.gh-migrated .fa-tv:before {content:"\f26c"}
.gh-migrated .fa-twitch:before {content:"\f1e8"}
.gh-migrated .fa-twitter:before {content:"\f099"}
.gh-migrated .fa-twitter-square:before {content:"\f081"}
.gh-migrated .fa-typo3:before {content:"\f42b"}
.gh-migrated .fa-uber:before {content:"\f402"}
.gh-migrated .fa-ubuntu:before {content:"\f7df"}
.gh-migrated .fa-uikit:before {content:"\f403"}
.gh-migrated .fa-umbraco:before {content:"\f8e8"}
.gh-migrated .fa-umbrella:before {content:"\f0e9"}
.gh-migrated .fa-umbrella-beach:before {content:"\f5ca"}
.gh-migrated .fa-uncharted:before {content:"\e084"}
.gh-migrated .fa-underline:before {content:"\f0cd"}
.gh-migrated .fa-undo:before {content:"\f0e2"}
.gh-migrated .fa-undo-alt:before {content:"\f2ea"}
.gh-migrated .fa-uniregistry:before {content:"\f404"}
.gh-migrated .fa-unity:before {content:"\e049"}
.gh-migrated .fa-universal-access:before {content:"\f29a"}
.gh-migrated .fa-university:before {content:"\f19c"}
.gh-migrated .fa-unlink:before {content:"\f127"}
.gh-migrated .fa-unlock:before {content:"\f09c"}
.gh-migrated .fa-unlock-alt:before {content:"\f13e"}
.gh-migrated .fa-unsplash:before {content:"\e07c"}
.gh-migrated .fa-untappd:before {content:"\f405"}
.gh-migrated .fa-upload:before {content:"\f093"}
.gh-migrated .fa-ups:before {content:"\f7e0"}
.gh-migrated .fa-usb:before {content:"\f287"}
.gh-migrated .fa-user:before {content:"\f007"}
.gh-migrated .fa-user-alt:before {content:"\f406"}
.gh-migrated .fa-user-alt-slash:before {content:"\f4fa"}
.gh-migrated .fa-user-astronaut:before {content:"\f4fb"}
.gh-migrated .fa-user-check:before {content:"\f4fc"}
.gh-migrated .fa-user-circle:before {content:"\f2bd"}
.gh-migrated .fa-user-clock:before {content:"\f4fd"}
.gh-migrated .fa-user-cog:before {content:"\f4fe"}
.gh-migrated .fa-user-edit:before {content:"\f4ff"}
.gh-migrated .fa-user-friends:before {content:"\f500"}
.gh-migrated .fa-user-graduate:before {content:"\f501"}
.gh-migrated .fa-user-injured:before {content:"\f728"}
.gh-migrated .fa-user-lock:before {content:"\f502"}
.gh-migrated .fa-user-md:before {content:"\f0f0"}
.gh-migrated .fa-user-minus:before {content:"\f503"}
.gh-migrated .fa-user-ninja:before {content:"\f504"}
.gh-migrated .fa-user-nurse:before {content:"\f82f"}
.gh-migrated .fa-user-plus:before {content:"\f234"}
.gh-migrated .fa-user-secret:before {content:"\f21b"}
.gh-migrated .fa-user-shield:before {content:"\f505"}
.gh-migrated .fa-user-slash:before {content:"\f506"}
.gh-migrated .fa-user-tag:before {content:"\f507"}
.gh-migrated .fa-user-tie:before {content:"\f508"}
.gh-migrated .fa-user-times:before {content:"\f235"}
.gh-migrated .fa-users:before {content:"\f0c0"}
.gh-migrated .fa-users-cog:before {content:"\f509"}
.gh-migrated .fa-users-slash:before {content:"\e073"}
.gh-migrated .fa-usps:before {content:"\f7e1"}
.gh-migrated .fa-ussunnah:before {content:"\f407"}
.gh-migrated .fa-utensil-spoon:before {content:"\f2e5"}
.gh-migrated .fa-utensils:before {content:"\f2e7"}
.gh-migrated .fa-vaadin:before {content:"\f408"}
.gh-migrated .fa-vector-square:before {content:"\f5cb"}
.gh-migrated .fa-venus:before {content:"\f221"}
.gh-migrated .fa-venus-double:before {content:"\f226"}
.gh-migrated .fa-venus-mars:before {content:"\f228"}
.gh-migrated .fa-vest:before {content:"\e085"}
.gh-migrated .fa-vest-patches:before {content:"\e086"}
.gh-migrated .fa-viacoin:before {content:"\f237"}
.gh-migrated .fa-viadeo:before {content:"\f2a9"}
.gh-migrated .fa-viadeo-square:before {content:"\f2aa"}
.gh-migrated .fa-vial:before {content:"\f492"}
.gh-migrated .fa-vials:before {content:"\f493"}
.gh-migrated .fa-viber:before {content:"\f409"}
.gh-migrated .fa-video:before {content:"\f03d"}
.gh-migrated .fa-video-slash:before {content:"\f4e2"}
.gh-migrated .fa-vihara:before {content:"\f6a7"}
.gh-migrated .fa-vimeo:before {content:"\f40a"}
.gh-migrated .fa-vimeo-square:before {content:"\f194"}
.gh-migrated .fa-vimeo-v:before {content:"\f27d"}
.gh-migrated .fa-vine:before {content:"\f1ca"}
.gh-migrated .fa-virus:before {content:"\e074"}
.gh-migrated .fa-virus-slash:before {content:"\e075"}
.gh-migrated .fa-viruses:before {content:"\e076"}
.gh-migrated .fa-vk:before {content:"\f189"}
.gh-migrated .fa-vnv:before {content:"\f40b"}
.gh-migrated .fa-voicemail:before {content:"\f897"}
.gh-migrated .fa-volleyball-ball:before {content:"\f45f"}
.gh-migrated .fa-volume-down:before {content:"\f027"}
.gh-migrated .fa-volume-mute:before {content:"\f6a9"}
.gh-migrated .fa-volume-off:before {content:"\f026"}
.gh-migrated .fa-volume-up:before {content:"\f028"}
.gh-migrated .fa-vote-yea:before {content:"\f772"}
.gh-migrated .fa-vr-cardboard:before {content:"\f729"}
.gh-migrated .fa-vuejs:before {content:"\f41f"}
.gh-migrated .fa-walking:before {content:"\f554"}
.gh-migrated .fa-wallet:before {content:"\f555"}
.gh-migrated .fa-warehouse:before {content:"\f494"}
.gh-migrated .fa-watchman-monitoring:before {content:"\e087"}
.gh-migrated .fa-water:before {content:"\f773"}
.gh-migrated .fa-wave-square:before {content:"\f83e"}
.gh-migrated .fa-waze:before {content:"\f83f"}
.gh-migrated .fa-weebly:before {content:"\f5cc"}
.gh-migrated .fa-weibo:before {content:"\f18a"}
.gh-migrated .fa-weight:before {content:"\f496"}
.gh-migrated .fa-weight-hanging:before {content:"\f5cd"}
.gh-migrated .fa-weixin:before {content:"\f1d7"}
.gh-migrated .fa-whatsapp:before {content:"\f232"}
.gh-migrated .fa-whatsapp-square:before {content:"\f40c"}
.gh-migrated .fa-wheelchair:before {content:"\f193"}
.gh-migrated .fa-whmcs:before {content:"\f40d"}
.gh-migrated .fa-wifi:before {content:"\f1eb"}
.gh-migrated .fa-wikipedia-w:before {content:"\f266"}
.gh-migrated .fa-wind:before {content:"\f72e"}
.gh-migrated .fa-window-close:before {content:"\f410"}
.gh-migrated .fa-window-maximize:before {content:"\f2d0"}
.gh-migrated .fa-window-minimize:before {content:"\f2d1"}
.gh-migrated .fa-window-restore:before {content:"\f2d2"}
.gh-migrated .fa-windows:before {content:"\f17a"}
.gh-migrated .fa-wine-bottle:before {content:"\f72f"}
.gh-migrated .fa-wine-glass:before {content:"\f4e3"}
.gh-migrated .fa-wine-glass-alt:before {content:"\f5ce"}
.gh-migrated .fa-wix:before {content:"\f5cf"}
.gh-migrated .fa-wizards-of-the-coast:before {content:"\f730"}
.gh-migrated .fa-wodu:before {content:"\e088"}
.gh-migrated .fa-wolf-pack-battalion:before {content:"\f514"}
.gh-migrated .fa-won-sign:before {content:"\f159"}
.gh-migrated .fa-wordpress:before {content:"\f19a"}
.gh-migrated .fa-wordpress-simple:before {content:"\f411"}
.gh-migrated .fa-wpbeginner:before {content:"\f297"}
.gh-migrated .fa-wpexplorer:before {content:"\f2de"}
.gh-migrated .fa-wpforms:before {content:"\f298"}
.gh-migrated .fa-wpressr:before {content:"\f3e4"}
.gh-migrated .fa-wrench:before {content:"\f0ad"}
.gh-migrated .fa-x-ray:before {content:"\f497"}
.gh-migrated .fa-xbox:before {content:"\f412"}
.gh-migrated .fa-xing:before {content:"\f168"}
.gh-migrated .fa-xing-square:before {content:"\f169"}
.gh-migrated .fa-y-combinator:before {content:"\f23b"}
.gh-migrated .fa-yahoo:before {content:"\f19e"}
.gh-migrated .fa-yammer:before {content:"\f840"}
.gh-migrated .fa-yandex:before {content:"\f413"}
.gh-migrated .fa-yandex-international:before {content:"\f414"}
.gh-migrated .fa-yarn:before {content:"\f7e3"}
.gh-migrated .fa-yelp:before {content:"\f1e9"}
.gh-migrated .fa-yen-sign:before {content:"\f157"}
.gh-migrated .fa-yin-yang:before {content:"\f6ad"}
.gh-migrated .fa-yoast:before {content:"\f2b1"}
.gh-migrated .fa-youtube:before {content:"\f167"}
.gh-migrated .fa-youtube-square:before {content:"\f431"}
.gh-migrated .fa-zhihu:before {content:"\f63f"}
.gh-migrated .sr-only {border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}
.gh-migrated .sr-only-focusable:active, .gh-migrated .sr-only-focusable:focus {clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}
@font-face { font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:swap;src:url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-brands-400.eot");src:url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-brands-400.woff2") format("woff2"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-brands-400.woff") format("woff"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-brands-400.ttf") format("truetype"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-brands-400.svg#fontawesome") format("svg") }
.gh-migrated .fab {font-family:"Font Awesome 5 Brands"}
@font-face { font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:swap;src:url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-regular-400.eot");src:url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-regular-400.woff2") format("woff2"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-regular-400.woff") format("woff"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-regular-400.ttf") format("truetype"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-regular-400.svg#fontawesome") format("svg") }
.gh-migrated .fab, .gh-migrated .far {font-weight:400}
@font-face { font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:swap;src:url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-solid-900.eot");src:url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-solid-900.woff2") format("woff2"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-solid-900.woff") format("woff"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-solid-900.ttf") format("truetype"),url("https://webuyhomesinstlouis-staging.apexvivus.com/wp-content/litespeed/css/ts/fontawesome/5.15.4/webfonts/fa-solid-900.svg#fontawesome") format("svg") }
.gh-migrated .fa, .gh-migrated .far, .gh-migrated .fas {font-family:"Font Awesome 5 Free"}
.gh-migrated .fa, .gh-migrated .fas {font-weight:900}
.gh-migrated.fl-builder-content .fl-node-lwgbv1fo92aj .fl-row-content-wrap a {color:#000}
.gh-migrated .fl-node-lwgbv1fo92aj>.fl-row-content-wrap, .gh-migrated .fl-node-lwgbv1fo92aj> .wp-block-group__inner-container > .fl-row-content-wrap {background-color:#fff}
.gh-migrated .fl-node-lwgbv1fo92aj .fl-row-content {max-width:1600px}
.gh-migrated .fl-node-lwgbv1fo92aj>.fl-row-content-wrap, .gh-migrated .fl-node-lwgbv1fo92aj> .wp-block-group__inner-container > .fl-row-content-wrap {padding-top:0;padding-bottom:0}
.gh-migrated .fl-node-nlfz0hcguw5s {width:13.7%}
@media(max-width:1366px) {
.gh-migrated.fl-builder-content .fl-node-nlfz0hcguw5s {width:17%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-nlfz0hcguw5s {width:22%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:767px) {
.gh-migrated.fl-builder-content .fl-node-nlfz0hcguw5s {width:100%!important;max-width:none;clear:none;float:left}

}
.gh-migrated .fl-node-l0go45im12qw {width:61%}
@media(max-width:1366px) {
.gh-migrated.fl-builder-content .fl-node-l0go45im12qw {width:41%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-l0go45im12qw {width:23%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
.gh-migrated .fl-node-bk7x3gqv9iy6 {width:100%}
.gh-migrated .fl-node-01o4mrd5abes {width:70.3%}
@media(max-width:1366px) {
.gh-migrated.fl-builder-content .fl-node-01o4mrd5abes {width:58%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-01o4mrd5abes {width:50%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:767px) {
.gh-migrated.fl-builder-content .fl-node-01o4mrd5abes {width:40%!important;max-width:none;clear:none;float:left}

}
.gh-migrated .fl-node-o519rfsext6b {width:39%}
@media(max-width:1366px) {
.gh-migrated.fl-builder-content .fl-node-o519rfsext6b {width:58%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-o519rfsext6b {width:77%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:767px) {
.gh-migrated.fl-builder-content .fl-node-o519rfsext6b {width:50%!important;max-width:none;clear:none;float:left}

}
.gh-migrated .fl-node-78egnb9cv4oa {width:16%}
@media(max-width:1366px) {
.gh-migrated.fl-builder-content .fl-node-78egnb9cv4oa {width:22%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-78egnb9cv4oa {width:28%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:767px) {
.gh-migrated.fl-builder-content .fl-node-78egnb9cv4oa {width:50%!important;max-width:none;clear:none;float:left}

}
.gh-migrated img.mfp-img {padding-bottom:40px!important}
.gh-migrated .fl-builder-edit .fl-fill-container img {transition:object-position .5s}
.gh-migrated .fl-fill-container :is(.fl-module-content,.fl-photo,.fl-photo-content,img) {height:100%!important;width:100%!important}
@media (max-width:767px) {
.gh-migrated .fl-photo-content, .gh-migrated img {max-width:100%}

}
.gh-migrated .fl-node-sbzwax9ryvi0, .gh-migrated .fl-node-sbzwax9ryvi0 .fl-photo {text-align:center}
@media(max-width:1366px) {
.gh-migrated .fl-node-sbzwax9ryvi0 .fl-photo-content, .gh-migrated .fl-node-sbzwax9ryvi0 img {width:190px}

}
@media(max-width:767px) {
.gh-migrated .fl-node-sbzwax9ryvi0 .fl-photo-content, .gh-migrated .fl-node-sbzwax9ryvi0 img {width:140px}

}
.gh-migrated .uabb-list-icon-wrap .uabb-icon-wrap, .gh-migrated .uabb-list-icon-wrap .uabb-list-icon-text {display:inline-block;vertical-align:middle}
.gh-migrated .uabb-list-icon-wrap {display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.gh-migrated .uabb-list-icon-text h1.uabb-list-icon-text-heading, .gh-migrated .uabb-list-icon-text h2.uabb-list-icon-text-heading, .gh-migrated .uabb-list-icon-text h3.uabb-list-icon-text-heading, .gh-migrated .uabb-list-icon-text h4.uabb-list-icon-text-heading, .gh-migrated .uabb-list-icon-text h5.uabb-list-icon-text-heading, .gh-migrated .uabb-list-icon-text h6.uabb-list-icon-text-heading {padding:0;margin:0}
.gh-migrated .fl-module-list-icon .uabb-list-icon {display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}
.gh-migrated .uabb-list-icon-text * {margin:0}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-imgicon-wrap {text-align:}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-icon-wrap .uabb-icon i, .gh-migrated .fl-node-dtqw3zurm2s8 .uabb-icon-wrap .uabb-icon i:before {color:#176824;font-size:30px;height:auto;width:auto;line-height:30px;height:30px;width:30px;text-align:center}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-icon-wrap .uabb-icon i:before {background:none}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-icon-wrap .uabb-icon i:hover, .gh-migrated .fl-node-dtqw3zurm2s8 .uabb-icon-wrap .uabb-icon i:hover:before, .gh-migrated .fl-node-dtqw3zurm2s8 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i, .gh-migrated .fl-node-dtqw3zurm2s8 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {color:}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-icon-wrap .uabb-icon i:hover:before {background:none}
@media (max-width:1024px) {
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-imgicon-wrap {text-align:}

}
@media (max-width:767px) {
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-imgicon-wrap {text-align:}

}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-callout-outter, .gh-migrated .fl-node-dtqw3zurm2s8 .uabb-list-icon-text {display:inline-block;vertical-align:middle}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-list-icon-wrap:not(:last-child) {margin-bottom:10px}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-list-icon-wrap .uabb-callout-outter {margin-right:10px}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-list-icon-wrap .uabb-list-icon-text {width:calc(100% - 40px)}
.gh-migrated ?>.fl-node-dtqw3zurm2s8 .uabb-list-icon {-webkit-box-align:flex-start;-webkit-align-items:start;-ms-flex-align:start;align-items:flex-start}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-list-icon-wrap {-webkit-justify-content:flex-start;justify-content:flex-start}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {color:#000}
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {font-family:Roboto,sans-serif;font-weight:400;font-size:24px;text-align:left}
@media(max-width:1024px) {
.gh-migrated .fl-node-dtqw3zurm2s8 .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {font-size:16px}

}
.gh-migrated .fl-node-dtqw3zurm2s8>.fl-module-content, .gh-migrated .fl-node-dtqw3zurm2s8> .wp-block-group__inner-container > .fl-module-content {margin-top:40px}
@media (max-width:767px) {
.gh-migrated .fl-node-dtqw3zurm2s8>.fl-module-content, .gh-migrated .fl-node-dtqw3zurm2s8> .wp-block-group__inner-container > .fl-module-content {margin-top:20px}

}
.gh-migrated .fl-node-dcotbezshfmx .uabb-imgicon-wrap {text-align:}
.gh-migrated .fl-node-dcotbezshfmx .uabb-icon-wrap .uabb-icon i, .gh-migrated .fl-node-dcotbezshfmx .uabb-icon-wrap .uabb-icon i:before {color:#176824;font-size:25px;height:auto;width:auto;line-height:25px;height:25px;width:25px;text-align:center}
.gh-migrated .fl-node-dcotbezshfmx .uabb-icon-wrap .uabb-icon i:before {background:none}
.gh-migrated .fl-node-dcotbezshfmx .uabb-icon-wrap .uabb-icon i:hover, .gh-migrated .fl-node-dcotbezshfmx .uabb-icon-wrap .uabb-icon i:hover:before, .gh-migrated .fl-node-dcotbezshfmx .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i, .gh-migrated .fl-node-dcotbezshfmx .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {color:}
.gh-migrated .fl-node-dcotbezshfmx .uabb-icon-wrap .uabb-icon i:hover:before {background:none}
@media (max-width:1024px) {
.gh-migrated .fl-node-dcotbezshfmx .uabb-imgicon-wrap {text-align:}

}
@media (max-width:767px) {
.gh-migrated .fl-node-dcotbezshfmx .uabb-imgicon-wrap {text-align:}

}
.gh-migrated .fl-node-dcotbezshfmx .uabb-callout-outter, .gh-migrated .fl-node-dcotbezshfmx .uabb-list-icon-text {display:inline-block;vertical-align:middle}
.gh-migrated .fl-node-dcotbezshfmx .uabb-list-icon-wrap:not(:last-child) {margin-bottom:10px}
.gh-migrated .fl-node-dcotbezshfmx .uabb-list-icon-wrap .uabb-callout-outter {margin-right:10px}
.gh-migrated .fl-node-dcotbezshfmx .uabb-list-icon-wrap .uabb-list-icon-text {width:calc(100% - 35px)}
.gh-migrated ?>.fl-node-dcotbezshfmx .uabb-list-icon {-webkit-box-align:flex-start;-webkit-align-items:start;-ms-flex-align:start;align-items:flex-start}
.gh-migrated .fl-node-dcotbezshfmx .uabb-list-icon-wrap {-webkit-justify-content:flex-start;justify-content:flex-start}
.gh-migrated .fl-node-dcotbezshfmx .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {color:#000}
.gh-migrated .fl-node-dcotbezshfmx .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {font-family:Roboto,sans-serif;font-weight:400;font-size:24px;text-align:left}
@media(max-width:1024px) {
.gh-migrated .fl-node-dcotbezshfmx .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {font-size:16px}

}
.gh-migrated .fl-node-dcotbezshfmx>.fl-module-content, .gh-migrated .fl-node-dcotbezshfmx> .wp-block-group__inner-container > .fl-module-content {margin-top:40px;margin-left:35px}
@media (max-width:767px) {
.gh-migrated .fl-node-dcotbezshfmx>.fl-module-content, .gh-migrated .fl-node-dcotbezshfmx> .wp-block-group__inner-container > .fl-module-content {margin-top:20px;margin-left:20px}

}
.gh-migrated .fl-menu ul, .gh-migrated .fl-menu li {list-style:none;margin:0;padding:0}
.gh-migrated .fl-menu .menu:before, .gh-migrated .fl-menu .menu:after {content:'';display:table;clear:both}
.gh-migrated .fl-menu-horizontal {display:inline-flex;flex-wrap:wrap;align-items:center}
.gh-migrated .fl-menu li {position:relative}
.gh-migrated .fl-menu a {display:block;padding:10px;text-decoration:none}
.gh-migrated .fl-menu a:hover {text-decoration:none}
.gh-migrated .fl-menu .sub-menu {min-width:220px}
.gh-migrated .fl-module[data-node] .fl-menu .fl-menu-expanded .sub-menu {background-color:#fff0;-webkit-box-shadow:none;-ms-box-shadow:none;box-shadow:none}
.gh-migrated .fl-menu .fl-has-submenu:focus, .gh-migrated .fl-menu .fl-has-submenu .sub-menu:focus, .gh-migrated .fl-menu .fl-has-submenu-container:focus {outline:0}
.gh-migrated .fl-menu .fl-has-submenu-container:has(span.fl-menu-toggle) {position:relative}
.gh-migrated .fl-menu .fl-has-submenu-container:has(button.fl-menu-toggle) {display:grid;grid-template-columns:1fr 40px}
.gh-migrated .fl-menu .fl-menu-accordion .fl-has-submenu>.sub-menu {display:none}
.gh-migrated .fl-menu .fl-menu-accordion .fl-has-submenu.fl-active .hide-heading>.sub-menu {box-shadow:none;display:block!important}
.gh-migrated .fl-menu span.fl-menu-toggle {position:absolute;top:0;right:0;bottom:0;height:100%;cursor:pointer}
.gh-migrated .fl-menu button.fl-menu-toggle {all:unset;position:relative;cursor:pointer}
.gh-migrated .fl-menu .fl-toggle-arrows .fl-menu-toggle:before {border-color:#333}
.gh-migrated .fl-menu .fl-menu-expanded .fl-menu-toggle {display:none}
.gh-migrated .fl-menu .fl-menu-mobile-toggle {position:relative;padding:8px;background-color:#fff0;border:none;color:#333;border-radius:0;cursor:pointer}
.gh-migrated .fl-menu .fl-menu-mobile-toggle:focus-visible, .gh-migrated .fl-menu-mobile-close:focus-visible, .gh-migrated .fl-menu .fl-menu-toggle:focus-visible {outline:2px auto Highlight;outline:2px auto -webkit-focus-ring-color}
.gh-migrated .fl-menu .fl-menu-mobile-toggle.text {width:100%;text-align:center}
.gh-migrated .fl-menu .fl-menu-mobile-toggle.hamburger .fl-menu-mobile-toggle-label, .gh-migrated .fl-menu .fl-menu-mobile-toggle.hamburger-label .fl-menu-mobile-toggle-label {display:inline-block;margin-left:10px;vertical-align:middle}
.gh-migrated .fl-menu .fl-menu-mobile-toggle.hamburger .svg-container, .gh-migrated .fl-menu .fl-menu-mobile-toggle.hamburger-label .svg-container {display:inline-block;position:relative;width:1.4em;height:1.4em;vertical-align:middle}
.gh-migrated .fl-menu .fl-menu-mobile-toggle.hamburger .hamburger-menu, .gh-migrated .fl-menu .fl-menu-mobile-toggle.hamburger-label .hamburger-menu {position:absolute;top:0;left:0;right:0;bottom:0}
.gh-migrated .fl-menu .fl-menu-mobile-toggle.hamburger .hamburger-menu rect, .gh-migrated .fl-menu .fl-menu-mobile-toggle.hamburger-label .hamburger-menu rect {fill:currentColor}
.gh-migrated li.mega-menu .hide-heading>a, .gh-migrated li.mega-menu .hide-heading>.fl-has-submenu-container, .gh-migrated li.mega-menu-disabled .hide-heading>a, .gh-migrated li.mega-menu-disabled .hide-heading>.fl-has-submenu-container {display:none}
.gh-migrated ul.fl-menu-horizontal li.mega-menu {position:static}
.gh-migrated ul.fl-menu-horizontal li.mega-menu>ul.sub-menu {top:inherit!important;left:0!important;right:0!important;width:100%}
.gh-migrated ul.fl-menu-horizontal li.mega-menu.fl-has-submenu:hover>ul.sub-menu, .gh-migrated ul.fl-menu-horizontal li.mega-menu.fl-has-submenu.focus>ul.sub-menu {display:flex!important}
.gh-migrated ul.fl-menu-horizontal li.mega-menu>ul.sub-menu li {border-color:#fff0}
.gh-migrated ul.fl-menu-horizontal li.mega-menu>ul.sub-menu>li {width:100%}
.gh-migrated ul.fl-menu-horizontal li.mega-menu>ul.sub-menu>li>.fl-has-submenu-container a {font-weight:700}
.gh-migrated ul.fl-menu-horizontal li.mega-menu>ul.sub-menu>li>.fl-has-submenu-container a:hover {background:#fff0}
.gh-migrated ul.fl-menu-horizontal li.mega-menu>ul.sub-menu .fl-menu-toggle {display:none}
.gh-migrated ul.fl-menu-horizontal li.mega-menu>ul.sub-menu ul.sub-menu {background:#fff0;-webkit-box-shadow:none;-ms-box-shadow:none;box-shadow:none;display:block;min-width:0;opacity:1;padding:0;position:static;visibility:visible}
.gh-migrated :where(.fl-col-group-medium-reversed,.fl-col-group-responsive-reversed,.fl-col-group-equal-height.fl-col-group-custom-width)>.fl-menu-mobile-clone {flex:1 1 100%}
.gh-migrated .fl-menu-mobile-clone {clear:both}
.gh-migrated .fl-menu-mobile-clone .fl-menu .menu {float:none!important}
.gh-migrated .fl-menu-mobile-flyout .fl-menu-mobile-close, .gh-migrated .fl-menu-mobile-flyout .fl-menu-mobile-close:hover, .gh-migrated .fl-menu-mobile-flyout .fl-menu-mobile-close:focus {background:none;border:0 none;color:inherit;font-size:18px;padding:10px 15px;margin:5px 0;cursor:pointer}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu {background-color:#fff}
.gh-migrated .fl-node-kl973h6sdywp .menu-item a {color:#000}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-toggle-arrows .fl-menu-toggle:before {border-color:#000}
.gh-migrated .fl-node-kl973h6sdywp .menu-item :is(*:focus,a:hover,.fl-has-submenu-container:hover>*), .gh-migrated .fl-node-kl973h6sdywp .current-menu-item>a, .gh-migrated .fl-node-kl973h6sdywp .current-menu-item>.fl-has-submenu-container>* {color:#176824}
.gh-migrated .fl-node-kl973h6sdywp .fl-toggle-arrows :is(.fl-menu-toggle:focus,.fl-has-submenu-container:hover>.fl-menu-toggle):before, .gh-migrated .fl-node-kl973h6sdywp .fl-toggle-arrows .current-menu-item>.fl-has-submenu-container>.fl-menu-toggle:before {border-color:#176824}
.gh-migrated .fl-node-kl973h6sdywp .menu .fl-has-submenu .sub-menu {display:none}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .sub-menu {background-color:#fff;-webkit-box-shadow:0 1px 20px rgb(0 0 0 / .1);-ms-box-shadow:0 1px 20px rgb(0 0 0 / .1);box-shadow:0 1px 20px rgb(0 0 0 / .1)}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-toggle:before {content:'';position:absolute;right:50%;top:50%;z-index:1;display:block;width:9px;height:9px;margin:-5px -5px 0 0;border-right:2px solid;border-bottom:2px solid;-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translateX(-5px) rotate(45deg);-ms-transform:translateX(-5px) rotate(45deg);transform:translateX(-5px) rotate(45deg)}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-has-submenu.focus>.fl-has-submenu-container>.fl-menu-toggle, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-has-submenu.fl-active>.fl-has-submenu-container .fl-menu-toggle, .gh-migrated .fl-node-kl973h6sdywp .fl-menu:not(.no-hover) .fl-has-submenu:hover>.fl-has-submenu-container>.fl-menu-toggle {-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu-horizontal.fl-toggle-arrows .fl-has-submenu-container a {padding-right:28px}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu-horizontal.fl-toggle-arrows .fl-menu-toggle {width:28px}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu-horizontal.fl-toggle-arrows .fl-menu-toggle, .gh-migrated .fl-node-kl973h6sdywp .fl-menu-vertical.fl-toggle-arrows .fl-menu-toggle {width:28px}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu li {border-top:1px solid #fff0}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu li:first-child {border-top:none}
@media (max-width:1024px) {
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu {position:absolute;left:20px;right:20px;z-index:1500}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu {background-color:#fff}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu ul.menu {display:none;float:none}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .sub-menu {-webkit-box-shadow:none;-ms-box-shadow:none;box-shadow:none}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu:not(.no-hover) .fl-has-submenu:hover>.sub-menu, .gh-migrated .fl-node-kl973h6sdywp .mega-menu.fl-active .hide-heading>.sub-menu, .gh-migrated .fl-node-kl973h6sdywp .mega-menu-disabled.fl-active .hide-heading>.sub-menu {display:block!important}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu-logo, .gh-migrated .fl-node-kl973h6sdywp .fl-menu-search-item {display:none}

}
@media (min-width:1025px) {
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu>li {display:inline-block}
.gh-migrated .fl-node-kl973h6sdywp .menu li {border-left:1px solid #fff0;border-top:none}
.gh-migrated .fl-node-kl973h6sdywp .menu li:first-child {border:none}
.gh-migrated .fl-node-kl973h6sdywp .menu li li {border-top:1px solid #fff0;border-left:none}
.gh-migrated .fl-node-kl973h6sdywp .menu .fl-has-submenu .sub-menu {position:absolute;top:100%;left:0;z-index:10;visibility:hidden;opacity:0;text-align:left}
.gh-migrated .fl-node-kl973h6sdywp .fl-has-submenu .fl-has-submenu .sub-menu {top:0;left:100%}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-has-submenu:hover>.sub-menu, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-has-submenu.focus>.sub-menu {display:block;visibility:visible;opacity:1}
.gh-migrated .fl-node-kl973h6sdywp .menu .fl-has-submenu.fl-menu-submenu-right .sub-menu {left:inherit;right:0}
.gh-migrated .fl-node-kl973h6sdywp .menu .fl-has-submenu .fl-has-submenu.fl-menu-submenu-right .sub-menu {top:0;left:inherit;right:100%}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-has-submenu.fl-active>.fl-has-submenu-container .fl-menu-toggle {-webkit-transform:none;-ms-transform:none;transform:none}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-has-submenu .fl-has-submenu .fl-menu-toggle:before {-webkit-transform:translateY(-5px) rotate(-45deg);-ms-transform:translateY(-5px) rotate(-45deg);transform:translateY(-5px) rotate(-45deg)}
.gh-migrated .fl-node-kl973h6sdywp ul.sub-menu {padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle {display:none}

}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle {color:#000;background-color:#fff;font-size:16px;text-transform:none;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;border-color:rgb(0 0 0 / .1)}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle rect, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle.hamburger .hamburger-menu rect {fill:#000}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle:hover, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle.fl-active {color:#176824}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle:hover rect, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle.fl-active rect, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle.hamburger:hover .hamburger-menu rect, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle.fl-active .hamburger-menu rect {fill:#176824}
.gh-migrated .fl-node-kl973h6sdywp ul.fl-menu-horizontal li.mega-menu>ul.sub-menu>li>.fl-has-submenu-container a:hover {color:#000}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu>li {font-family:Roboto,sans-serif;font-weight:400;font-size:24px;line-height:1}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu {text-align:right}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu {justify-content:right}
.gh-migrated .fl-node-kl973h6sdywp .menu a {padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu .sub-menu>li {font-family:Roboto,sans-serif;font-weight:400;font-size:24px;line-height:1}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle {float:right}
@media(max-width:1366px) {
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle {float:none}

}
@media(max-width:1024px) {
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu>li {font-size:22px}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu .sub-menu>li {font-size:22px}
.gh-migrated .fl-node-kl973h6sdywp .menu li.fl-has-submenu ul.sub-menu {padding-left:15px}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .sub-menu {background-color:#fff}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle {float:none}

}
@media(max-width:767px) {
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu, .gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu>li {font-size:22px}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu {text-align:center}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu {justify-content:center}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .menu .sub-menu>li {font-size:22px}
.gh-migrated .fl-node-kl973h6sdywp .fl-menu .fl-menu-mobile-toggle {float:none}

}
.gh-migrated .fl-node-kl973h6sdywp>.fl-module-content, .gh-migrated .fl-node-kl973h6sdywp> .wp-block-group__inner-container > .fl-module-content {margin-top:10px}
@media (max-width:1024px) {
.gh-migrated .fl-node-kl973h6sdywp.fl-module>.fl-module-content, .gh-migrated .fl-node-kl973h6sdywp.fl-module> .wp-block-group__inner-container > .fl-module-content {margin-top:0}

}
@media (max-width:767px) {
.gh-migrated .fl-node-kl973h6sdywp.fl-module>.fl-module-content, .gh-migrated .fl-node-kl973h6sdywp.fl-module> .wp-block-group__inner-container > .fl-module-content {margin-top:10px}

}
.gh-migrated .fl-button:is(a,button) {cursor:pointer}
.gh-migrated .fl-node-d70z52vtkb1l.fl-button-wrap, .gh-migrated .fl-node-d70z52vtkb1l .fl-button-wrap {text-align:center}
.gh-migrated.fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button), .gh-migrated.fl-builder-content .fl-node-d70z52vtkb1l a.fl-button:visited, .gh-migrated .fl-page .fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button), .gh-migrated .fl-page .fl-builder-content .fl-node-d70z52vtkb1l a.fl-button:visited {font-family:Roboto,sans-serif;font-weight:400;font-size:24px;border:1px solid #f34800;background-color:#FF5400}
.gh-migrated.fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button):hover, .gh-migrated.fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button):focus, .gh-migrated .fl-page .fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button):hover, .gh-migrated .fl-page .fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button):focus {border:1px solid #f34800}
.gh-migrated.fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button):hover, .gh-migrated .fl-page .fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button):hover, .gh-migrated .fl-page .fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button):hover, .gh-migrated .fl-page .fl-page .fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button):hover {background-color:#FF5400}
.gh-migrated.fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button), .gh-migrated.fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button) * {transition:none;-moz-transition:none;-webkit-transition:none;-o-transition:none}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button), .gh-migrated.fl-builder-content .fl-node-d70z52vtkb1l a.fl-button:visited, .gh-migrated .fl-page .fl-builder-content .fl-node-d70z52vtkb1l .fl-button:is(a,button), .gh-migrated .fl-page .fl-builder-content .fl-node-d70z52vtkb1l a.fl-button:visited {font-size:16px}

}
.gh-migrated .fl-node-d70z52vtkb1l.fl-module-button {margin-top:15px;margin-right:0;margin-left:0}
.gh-migrated.fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {position:fixed;width:100%;z-index:100}
.gh-migrated .fl-theme-builder-flyout-menu-push-left .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {left:auto!important;transition:left 0.2s!important}
.gh-migrated .fl-theme-builder-flyout-menu-push-right .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {right:auto!important;transition:right 0.2s!important}
.gh-migrated.fl-builder-content[data-type="header"].fl-theme-builder-header-sticky .fl-menu .fl-menu-mobile-opacity {height:100vh;width:100vw}
.gh-migrated.fl-builder-content[data-type="header"]:not([data-overlay="1"]).fl-theme-builder-header-sticky .fl-menu-mobile-flyout {top:0}
.gh-migrated .fl-theme-builder-flyout-menu-active body {margin-left:0px!important;margin-right:0px!important}
.gh-migrated .fl-theme-builder-has-flyout-menu, .gh-migrated .fl-theme-builder-has-flyout-menu body {overflow-x:hidden}
.gh-migrated .fl-theme-builder-flyout-menu-push-right {right:0;transition:right 0.2s ease-in-out}
.gh-migrated .fl-theme-builder-flyout-menu-push-left {left:0;transition:left 0.2s ease-in-out}
.gh-migrated .fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-right {position:relative;right:250px}
.gh-migrated .fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-left {position:relative;left:250px}
.gh-migrated .fl-theme-builder-flyout-menu-active .fl-builder-content[data-type="header"] .fl-menu-disable-transition {transition:none}
.gh-migrated.fl-builder-content[data-shrink="1"] .fl-row-content-wrap, .gh-migrated.fl-builder-content[data-shrink="1"] .fl-col-content, .gh-migrated.fl-builder-content[data-shrink="1"] .fl-module-content, .gh-migrated.fl-builder-content[data-shrink="1"] img {-webkit-transition:all 0.4s ease-in-out,background-position 1ms;-moz-transition:all 0.4s ease-in-out,background-position 1ms;transition:all 0.4s ease-in-out,background-position 1ms}
.gh-migrated.fl-builder-content[data-shrink="1"] img {width:auto}
.gh-migrated.fl-builder-content[data-shrink="1"] imgimg {width:auto;height:auto}
.gh-migrated.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-row-content-wrap {margin-bottom:0;margin-top:0}
.gh-migrated .fl-theme-builder-header-shrink-row-bottom.fl-row-content-wrap {padding-bottom:5px}
.gh-migrated .fl-theme-builder-header-shrink-row-top.fl-row-content-wrap {padding-top:5px}
.gh-migrated.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-col-content {margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}
.gh-migrated .fl-theme-builder-header-shrink-module-bottom.fl-module-content, .gh-migrated .fl-theme-builder-header-shrink-module-bottom.fl-module:where(.fl-module:not(:has(> .fl-module-content, > .wp-block-group__inner-container > .fl-module-content))) {margin-bottom:5px}
.gh-migrated .fl-theme-builder-header-shrink-module-top.fl-module-content, .gh-migrated .fl-theme-builder-header-shrink-module-bottom.fl-module:where(.fl-module:not(:has(> .fl-module-content, > .wp-block-group__inner-container > .fl-module-content))) {margin-top:5px}
.gh-migrated.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink img {-webkit-transition:all 0.4s ease-in-out,background-position 1ms;-moz-transition:all 0.4s ease-in-out,background-position 1ms;transition:all 0.4s ease-in-out,background-position 1ms}
.gh-migrated.fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-sticky):not(.fl-builder-content-editing) {position:absolute;width:100%;z-index:100}
.gh-migrated .fl-builder-edit body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"] {display:none}
.gh-migrated :not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-row-content-wrap, .gh-migrated :not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-col-content, .gh-migrated :not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-module-box {background:#fff0}
.gh-migrated .fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-box-align:end;-webkit-box-pack:end;-ms-flex-pack:end}
.gh-migrated .uabb-module-content h1, .gh-migrated .uabb-module-content h2, .gh-migrated .uabb-module-content h3, .gh-migrated .uabb-module-content h4, .gh-migrated .uabb-module-content h5, .gh-migrated .uabb-module-content h6 {margin:0;clear:both}
.gh-migrated .fl-module-content a, .gh-migrated .fl-module-content a:hover, .gh-migrated .fl-module-content a:focus {text-decoration:none}
.gh-migrated .uabb-row-separator {position:absolute;width:100%;left:0}
.gh-migrated .uabb-top-row-separator {top:0;bottom:auto}
.gh-migrated .uabb-bottom-row-separator {top:auto;bottom:0}
.gh-migrated.fl-builder-content-editing .fl-visible-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-mobile.uabb-row {display:none!important}
@media (max-width:992px) {
.gh-migrated.fl-builder-content-editing .fl-visible-desktop.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-mobile.uabb-row {display:none!important}
.gh-migrated.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {display:block!important}

}
@media (max-width:768px) {
.gh-migrated.fl-builder-content-editing .fl-visible-desktop.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium.uabb-row {display:none!important}
.gh-migrated.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-mobile.uabb-row {display:block!important}

}
.gh-migrated .fl-responsive-preview-content .fl-builder-content-editing {overflow-x:hidden;overflow-y:visible}
.gh-migrated .uabb-row-separator svg {width:100%}
.gh-migrated .uabb-top-row-separator.uabb-has-svg svg {position:absolute;padding:0;margin:0;left:50%;top:-1px;bottom:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}
.gh-migrated .uabb-bottom-row-separator.uabb-has-svg svg {position:absolute;padding:0;margin:0;left:50%;bottom:-1px;top:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}
.gh-migrated .uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {bottom:0}
.gh-migrated .uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {top:0}
.gh-migrated .uabb-bottom-row-separator.uabb-svg-triangle svg, .gh-migrated .uabb-bottom-row-separator.uabb-xlarge-triangle svg, .gh-migrated .uabb-top-row-separator.uabb-xlarge-triangle-left svg, .gh-migrated .uabb-bottom-row-separator.uabb-svg-circle svg, .gh-migrated .uabb-top-row-separator.uabb-slime-separator svg, .gh-migrated .uabb-top-row-separator.uabb-grass-separator svg, .gh-migrated .uabb-top-row-separator.uabb-grass-bend-separator svg, .gh-migrated .uabb-bottom-row-separator.uabb-mul-triangles-separator svg, .gh-migrated .uabb-top-row-separator.uabb-wave-slide-separator svg, .gh-migrated .uabb-top-row-separator.uabb-pine-tree-separator svg, .gh-migrated .uabb-top-row-separator.uabb-pine-tree-bend-separator svg, .gh-migrated .uabb-bottom-row-separator.uabb-stamp-separator svg, .gh-migrated .uabb-bottom-row-separator.uabb-xlarge-circle svg, .gh-migrated .uabb-top-row-separator.uabb-wave-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-big-triangle svg {left:50%;-webkit-transform:scale(1) scaleY(-1) translateX(-50%);-moz-transform:scale(1) scaleY(-1) translateX(-50%);-ms-transform:scale(1) scaleY(-1) translateX(-50%);-o-transform:scale(1) scaleY(-1) translateX(-50%);transform:scale(1) scaleY(-1) translateX(-50%)}
.gh-migrated .uabb-top-row-separator.uabb-big-triangle svg {left:50%;-webkit-transform:translateX(-50%) scale(1);-moz-transform:translateX(-50%) scale(1);-ms-transform:translateX(-50%) scale(1);-o-transform:translateX(-50%) scale(1);transform:translateX(-50%) scale(1)}
.gh-migrated .uabb-top-row-separator.uabb-xlarge-triangle-right svg {left:50%;-webkit-transform:translateX(-50%) scale(-1);-moz-transform:translateX(-50%) scale(-1);-ms-transform:translateX(-50%) scale(-1);-o-transform:translateX(-50%) scale(-1);transform:translateX(-50%) scale(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {left:50%;-webkit-transform:translateX(-50%) scaleX(-1);-moz-transform:translateX(-50%) scaleX(-1);-ms-transform:translateX(-50%) scaleX(-1);-o-transform:translateX(-50%) scaleX(-1);transform:translateX(-50%) scaleX(-1)}
.gh-migrated .uabb-top-row-separator.uabb-curve-up-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-top-row-separator.uabb-curve-down-separator svg {left:50%;-webkit-transform:translateX(-50%) scale(-1);-moz-transform:translateX(-50%) scale(-1);-ms-transform:translateX(-50%) scale(-1);-o-transform:translateX(-50%) scale(-1);transform:translateX(-50%) scale(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-curve-down-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleX(-1);-moz-transform:translateX(-50%) scaleX(-1);-ms-transform:translateX(-50%) scaleX(-1);-o-transform:translateX(-50%) scaleX(-1);transform:translateX(-50%) scaleX(-1)}
.gh-migrated .uabb-top-row-separator.uabb-tilt-left-separator svg {left:50%;-webkit-transform:translateX(-50%) scale(-1);-moz-transform:translateX(-50%) scale(-1);-ms-transform:translateX(-50%) scale(-1);-o-transform:translateX(-50%) scale(-1);transform:translateX(-50%) scale(-1)}
.gh-migrated .uabb-top-row-separator.uabb-tilt-right-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-tilt-left-separator svg {left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}
.gh-migrated .uabb-bottom-row-separator.uabb-tilt-right-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleX(-1);-moz-transform:translateX(-50%) scaleX(-1);-ms-transform:translateX(-50%) scaleX(-1);-o-transform:translateX(-50%) scaleX(-1);transform:translateX(-50%) scaleX(-1)}
.gh-migrated .uabb-top-row-separator.uabb-tilt-left-separator, .gh-migrated .uabb-top-row-separator.uabb-tilt-right-separator {top:0}
.gh-migrated .uabb-bottom-row-separator.uabb-tilt-left-separator, .gh-migrated .uabb-bottom-row-separator.uabb-tilt-right-separator {bottom:0}
.gh-migrated .uabb-top-row-separator.uabb-arrow-outward-separator svg, .gh-migrated .uabb-top-row-separator.uabb-arrow-inward-separator svg, .gh-migrated .uabb-top-row-separator.uabb-cloud-separator svg, .gh-migrated .uabb-top-row-separator.uabb-multi-triangle svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-multi-triangle svg {bottom:-2px}
.gh-migrated .uabb-row-separator.uabb-round-split:after, .gh-migrated .uabb-row-separator.uabb-round-split:before {left:0;width:50%;background:inherit inherit/inherit inherit inherit inherit;content:'';position:absolute}
.gh-migrated .uabb-button-wrap a, .gh-migrated .uabb-button-wrap a:visited {display:inline-block;font-size:16px;line-height:18px;text-decoration:none;text-shadow:none}
.gh-migrated.fl-builder-content .uabb-button:hover {text-decoration:none}
.gh-migrated.fl-builder-content .uabb-button-width-full .uabb-button {display:block;text-align:center}
.gh-migrated .uabb-button-width-custom .uabb-button {display:inline-block;text-align:center;max-width:100%}
.gh-migrated.fl-builder-content .uabb-button-left {text-align:left}
.gh-migrated.fl-builder-content .uabb-button-center {text-align:center}
.gh-migrated.fl-builder-content .uabb-infobox .uabb-button-center, .gh-migrated.fl-builder-content .uabb-modal-action-wrap .uabb-button-center, .gh-migrated.fl-builder-content .uabb-ultb3-box .uabb-button-center, .gh-migrated.fl-builder-content .uabb-slide-down .uabb-button-center, .gh-migrated.fl-builder-content .uabb-blog-post-content .uabb-button-center, .gh-migrated.fl-builder-content .uabb-cta-wrap .uabb-button-center, .gh-migrated.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center {text-align:inherit}
.gh-migrated.fl-builder-content .uabb-button-right {text-align:right}
.gh-migrated.fl-builder-content .uabb-button i, .gh-migrated.fl-builder-content .uabb-button i:before {font-size:1em;height:1em;line-height:1em;width:1em}
.gh-migrated .uabb-button .uabb-button-icon-after {margin-left:8px;margin-right:0}
.gh-migrated .uabb-button .uabb-button-icon-before {margin-left:0;margin-right:8px}
.gh-migrated .uabb-button .uabb-button-icon-no-text {margin:0}
.gh-migrated .uabb-button-has-icon .uabb-button-text {vertical-align:middle}
.gh-migrated .uabb-icon-wrap {display:inline-block}
.gh-migrated .uabb-icon a {text-decoration:none}
.gh-migrated .uabb-icon i {display:block}
.gh-migrated .uabb-icon i:before {border:none!important;background:none!important}
.gh-migrated .uabb-icon-text {display:table-cell;text-align:left;padding-left:15px;vertical-align:middle}
.gh-migrated .uabb-icon-text *:last-child {margin:0!important;padding:0!important}
.gh-migrated .uabb-icon-text a {text-decoration:none}
.gh-migrated .uabb-photo {line-height:0;position:relative;z-index:2}
.gh-migrated .uabb-photo-align-left {text-align:left}
.gh-migrated .uabb-photo-align-center {text-align:center}
.gh-migrated .uabb-photo-align-right {text-align:right}
.gh-migrated .uabb-photo-content {border-radius:0;display:inline-block;line-height:0;position:relative;max-width:100%;overflow:hidden}
.gh-migrated .uabb-photo-content img {border-radius:inherit;display:inline;height:auto;max-width:100%;width:auto}
.gh-migrated.fl-builder-content .uabb-photo-crop-circle img {-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%}
.gh-migrated.fl-builder-content .uabb-photo-crop-square img {-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
.gh-migrated .uabb-photo-caption {font-size:13px;line-height:18px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.gh-migrated .uabb-photo-caption-below {padding-bottom:20px;padding-top:10px}
.gh-migrated .uabb-photo-caption-hover {background:rgb(0 0 0 / .7);bottom:0;color:#fff;left:0;opacity:0;visibility:hidden;filter:alpha(opacity=0);padding:10px 15px;position:absolute;right:0;-webkit-transition:visibility 200ms linear;-moz-transition:visibility 200ms linear;transition:visibility 200ms linear}
.gh-migrated .uabb-photo-content:hover .uabb-photo-caption-hover {opacity:100;visibility:visible}
.gh-migrated .uabb-active-btn {background:#1e8cbe;border-color:#0074a2;-webkit-box-shadow:inset 0 1px 0 rgb(120 200 230 / .6);box-shadow:inset 0 1px 0 rgb(120 200 230 / .6);color:#fff}
.gh-migrated .fl-builder-bar .fl-builder-add-content-button {display:block!important;opacity:1!important}
.gh-migrated .uabb-imgicon-wrap .uabb-icon {display:block}
.gh-migrated .uabb-imgicon-wrap .uabb-icon i {float:none}
.gh-migrated .uabb-imgicon-wrap .uabb-image {line-height:0;position:relative}
.gh-migrated .uabb-imgicon-wrap .uabb-image-align-left {text-align:left}
.gh-migrated .uabb-imgicon-wrap .uabb-image-align-center {text-align:center}
.gh-migrated .uabb-imgicon-wrap .uabb-image-align-right {text-align:right}
.gh-migrated .uabb-imgicon-wrap .uabb-image-content {display:inline-block;border-radius:0;line-height:0;position:relative;max-width:100%}
.gh-migrated .uabb-imgicon-wrap .uabb-image-content img {display:inline;height:auto!important;max-width:100%;width:auto;border-radius:inherit;box-shadow:none;box-sizing:content-box}
.gh-migrated.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%}
.gh-migrated.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
.gh-migrated .uabb-creative-button-wrap a, .gh-migrated .uabb-creative-button-wrap a:visited {background:#fafafa;border:1px solid #ccc;color:#333;display:inline-block;vertical-align:middle;text-align:center;overflow:hidden;text-decoration:none;text-shadow:none;box-shadow:none;position:relative;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-creative-button-wrap a:focus {text-decoration:none;text-shadow:none;box-shadow:none}
.gh-migrated .uabb-creative-button-wrap a .uabb-creative-button-text, .gh-migrated .uabb-creative-button-wrap a .uabb-creative-button-icon, .gh-migrated .uabb-creative-button-wrap a:visited .uabb-creative-button-text, .gh-migrated .uabb-creative-button-wrap a:visited .uabb-creative-button-icon {-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-creative-button-wrap a:hover {text-decoration:none}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {display:block;text-align:center}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {display:inline-block;text-align:center;max-width:100%}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-left {text-align:left}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-center {text-align:center}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-right {text-align:right}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button i {font-size:1.3em;height:auto;vertical-align:middle;width:auto}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {margin-left:8px;margin-right:0}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {margin-right:8px;margin-left:0}
.gh-migrated .uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {margin:0}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {vertical-align:middle}
.gh-migrated .uabb-creative-button-wrap a, .gh-migrated .uabb-creative-button-wrap a:visited {padding:12px 24px}
.gh-migrated .uabb-creative-button.uabb-creative-transparent-btn {background:#fff0}
.gh-migrated .uabb-creative-button.uabb-creative-transparent-btn:after {content:'';position:absolute;z-index:1;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-transparent-fill-top-btn:after, .gh-migrated .uabb-transparent-fill-bottom-btn:after {width:100%;height:0;left:0}
.gh-migrated .uabb-transparent-fill-top-btn:after {top:0}
.gh-migrated .uabb-transparent-fill-bottom-btn:after {bottom:0}
.gh-migrated .uabb-transparent-fill-left-btn:after, .gh-migrated .uabb-transparent-fill-right-btn:after {width:0;height:100%;top:0}
.gh-migrated .uabb-transparent-fill-left-btn:after {left:0}
.gh-migrated .uabb-transparent-fill-right-btn:after {right:0}
.gh-migrated .uabb-transparent-fill-center-btn:after {width:0;height:100%;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}
.gh-migrated .uabb-transparent-fill-diagonal-btn:after, .gh-migrated .uabb-transparent-fill-horizontal-btn:after {width:100%;height:0;top:50%;left:50%}
.gh-migrated .uabb-transparent-fill-diagonal-btn {overflow:hidden}
.gh-migrated .uabb-transparent-fill-diagonal-btn:after {-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-moz-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);-o-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg)}
.gh-migrated .uabb-transparent-fill-horizontal-btn:after {-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn, .gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn, .gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn, .gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}
.gh-migrated .perspective {-webkit-perspective:800px;-moz-perspective:800px;perspective:800px;margin:0}
.gh-migrated .uabb-creative-button.uabb-creative-threed-btn:after {content:'';position:absolute;z-index:-1;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-creative-button.uabb-creative-threed-btn {outline:1px solid #fff0;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_top-btn:after {height:40%;left:0;top:-40%;width:100%;-webkit-transform-origin:0% 100%;-moz-transform-origin:0% 100%;transform-origin:0% 100%;-webkit-transform:rotateX(90deg);-moz-transform:rotateX(90deg);transform:rotateX(90deg)}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_bottom-btn:after {width:100%;height:40%;left:0;top:100%;-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateX(-90deg);-moz-transform:rotateX(-90deg);-ms-transform:rotateX(-90deg);transform:rotateX(-90deg)}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_left-btn:after {width:20%;height:100%;left:-20%;top:0;-webkit-transform-origin:100% 0%;-moz-transform-origin:100% 0%;-ms-transform-origin:100% 0%;transform-origin:100% 0%;-webkit-transform:rotateY(-60deg);-moz-transform:rotateY(-60deg);-ms-transform:rotateY(-60deg);transform:rotateY(-60deg)}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_right-btn:after {width:20%;height:100%;left:104%;top:0;-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateY(120deg);-moz-transform:rotateY(120deg);-ms-transform:rotateY(120deg);transform:rotateY(120deg)}
.gh-migrated .uabb-animate_top-btn:hover {-webkit-transform:rotateX(-15deg);-moz-transform:rotateX(-15deg);-ms-transform:rotateX(-15deg);-o-transform:rotateX(-15deg);transform:rotateX(-15deg)}
.gh-migrated .uabb-animate_bottom-btn:hover {-webkit-transform:rotateX(15deg);-moz-transform:rotateX(15deg);-ms-transform:rotateX(15deg);-o-transform:rotateX(15deg);transform:rotateX(15deg)}
.gh-migrated .uabb-animate_left-btn:hover {-webkit-transform:rotateY(6deg);-moz-transform:rotateY(6deg);-ms-transform:rotateY(6deg);-o-transform:rotateY(6deg);transform:rotateY(6deg)}
.gh-migrated .uabb-animate_right-btn:hover {-webkit-transform:rotateY(-6deg);-moz-transform:rotateY(-6deg);-ms-transform:rotateY(-6deg);-o-transform:rotateY(-6deg);transform:rotateY(-6deg)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn {overflow:hidden;position:relative}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {bottom:0;height:100%;margin:0;opacity:1;position:absolute;right:0;width:100%;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;transition:all 200ms linear;-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {display:inline-block;width:100%;height:100%;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn i:before, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn i:before, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn i:before, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {left:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {top:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn i {top:0;left:-100%}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {-webkit-transform:translateX(200%);-moz-transform:translateX(200%);-ms-transform:translateX(200%);-o-transform:translateX(200%);transform:translateX(200%)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn i {top:0;left:100%}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {-webkit-transform:translateX(-200%);-moz-transform:translateX(-200%);-ms-transform:translateX(-200%);-o-transform:translateX(-200%);transform:translateX(-200%)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn i {top:-100%;left:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {-webkit-transform:translateY(400px);-moz-transform:translateY(400px);-ms-transform:translateY(400px);-o-transform:translateY(400px);transform:translateY(400px)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {top:100%;left:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {-webkit-transform:translateY(-400px);-moz-transform:translateY(-400px);-ms-transform:translateY(-400px);-o-transform:translateY(-400px);transform:translateY(-400px)}
.gh-migrated .uabb-tab-acc-content .wp-video, .gh-migrated .uabb-tab-acc-content video.wp-video-shortcode, .gh-migrated .uabb-tab-acc-content .mejs-container:not(.mejs-audio), .gh-migrated .uabb-tab-acc-content .mejs-overlay.load, .gh-migrated .uabb-adv-accordion-content .wp-video, .gh-migrated .uabb-adv-accordion-content video.wp-video-shortcode, .gh-migrated .uabb-adv-accordion-content .mejs-container:not(.mejs-audio), .gh-migrated .uabb-adv-accordion-content .mejs-overlay.load {width:100%!important;height:100%!important}
.gh-migrated .uabb-tab-acc-content .mejs-container:not(.mejs-audio), .gh-migrated .uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {padding-top:56.25%}
.gh-migrated .uabb-tab-acc-content .wp-video, .gh-migrated .uabb-tab-acc-content video.wp-video-shortcode, .gh-migrated .uabb-adv-accordion-content .wp-video, .gh-migrated .uabb-adv-accordion-content video.wp-video-shortcode {max-width:100%!important}
.gh-migrated .uabb-tab-acc-content video.wp-video-shortcode, .gh-migrated .uabb-adv-accordion-content video.wp-video-shortcode {position:relative}
.gh-migrated .uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement, .gh-migrated .uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {position:absolute;top:0;right:0;bottom:0;left:0}
.gh-migrated .uabb-tab-acc-content .mejs-overlay-play, .gh-migrated .uabb-adv-accordion-content .mejs-overlay-play {top:0;right:0;bottom:0;left:0;width:auto!important;height:auto!important}
.gh-migrated .fl-row-content-wrap .uabb-row-particles-background, .gh-migrated .uabb-col-particles-background {width:100%;height:100%;position:absolute;left:0;top:0}
.gh-migrated .uabb-js-breakpoint {content:"default";display:none}
@media screen and (max-width:1024px) {
.gh-migrated .uabb-js-breakpoint {content:"1024"}

}
@media screen and (max-width:767px) {
.gh-migrated .uabb-js-breakpoint {content:"767"}

}
.gh-migrated .fl-node-fhn8qsicbtyl {color:#fff}
.gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {color:inherit}
.gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl a {color:#fff}
.gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl a:hover {color:#fff}
.gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h1, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h2, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h3, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h4, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h5, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h6, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h1 a, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h2 a, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h3 a, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h4 a, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h5 a, .gh-migrated.fl-builder-content .fl-node-fhn8qsicbtyl h6 a {color:#fff}
.gh-migrated .fl-node-fhn8qsicbtyl>.fl-row-content-wrap, .gh-migrated .fl-node-fhn8qsicbtyl> .wp-block-group__inner-container > .fl-row-content-wrap {background-color:#ACE1AF;border-top-width:1px;border-right-width:0;border-bottom-width:1px;border-left-width:0}
.gh-migrated .fl-node-fhn8qsicbtyl .fl-row-content {max-width:1600px}
.gh-migrated .fl-node-fhn8qsicbtyl>.fl-row-content-wrap, .gh-migrated .fl-node-fhn8qsicbtyl> .wp-block-group__inner-container > .fl-row-content-wrap {padding-top:40px;padding-bottom:20px}
@media (max-width:767px) {
.gh-migrated .fl-node-fhn8qsicbtyl.fl-row>.fl-row-content-wrap, .gh-migrated .fl-node-fhn8qsicbtyl.fl-row> .wp-block-group__inner-container > .fl-row-content-wrap {padding-right:20px;padding-left:20px}

}
.gh-migrated .fl-node-vgmyfdhjaor0 {color:#fff}
.gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {color:inherit}
.gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 a {color:#fff}
.gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 a:hover {color:#fff}
.gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h1, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h2, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h3, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h4, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h5, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h6, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h1 a, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h2 a, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h3 a, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h4 a, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h5 a, .gh-migrated.fl-builder-content .fl-node-vgmyfdhjaor0 h6 a {color:#fff}
.gh-migrated .fl-node-vgmyfdhjaor0>.fl-row-content-wrap, .gh-migrated .fl-node-vgmyfdhjaor0> .wp-block-group__inner-container > .fl-row-content-wrap {background-color:#ACE1AF;border-top-width:1px;border-right-width:0;border-bottom-width:1px;border-left-width:0}
.gh-migrated .fl-node-vgmyfdhjaor0>.fl-row-content-wrap, .gh-migrated .fl-node-vgmyfdhjaor0> .wp-block-group__inner-container > .fl-row-content-wrap {padding-top:13px;padding-bottom:20px}
.gh-migrated .fl-node-rbnkc3odwjxs {width:25%}
.gh-migrated .fl-node-rbnkc3odwjxs>.fl-col-content, .gh-migrated .fl-node-rbnkc3odwjxs> .wp-block-group__inner-container > .fl-col-content {border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-rbnkc3odwjxs {width:40%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:767px) {
.gh-migrated.fl-builder-content .fl-node-rbnkc3odwjxs {width:100%!important;max-width:none;clear:none;float:left}

}
.gh-migrated .fl-node-aegmqk23y64v {width:100%}
.gh-migrated .fl-node-kn08rsyfbt4c {width:28.91%}
.gh-migrated .fl-node-kn08rsyfbt4c>.fl-col-content, .gh-migrated .fl-node-kn08rsyfbt4c> .wp-block-group__inner-container > .fl-col-content {border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-kn08rsyfbt4c {width:60%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:767px) {
.gh-migrated.fl-builder-content .fl-node-kn08rsyfbt4c {width:100%!important;max-width:none;clear:none;float:left}

}
.gh-migrated .fl-node-q98ieyj2n1to {width:17%}
.gh-migrated .fl-node-q98ieyj2n1to>.fl-col-content, .gh-migrated .fl-node-q98ieyj2n1to> .wp-block-group__inner-container > .fl-col-content {border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-q98ieyj2n1to {width:44%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:767px) {
.gh-migrated.fl-builder-content .fl-node-q98ieyj2n1to {width:100%!important;max-width:none;clear:none;float:left}

}
.gh-migrated .fl-node-lw2x3z7ihy9u {width:29.09%}
.gh-migrated .fl-node-lw2x3z7ihy9u>.fl-col-content, .gh-migrated .fl-node-lw2x3z7ihy9u> .wp-block-group__inner-container > .fl-col-content {border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-lw2x3z7ihy9u {width:50%!important;max-width:none;-webkit-box-flex:0 1 auto;-moz-box-flex:0 1 auto;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}

}
@media(max-width:767px) {
.gh-migrated.fl-builder-content .fl-node-lw2x3z7ihy9u {width:100%!important;max-width:none;clear:none;float:left}

}
@media (max-width:767px) {
.gh-migrated .fl-module-icon {text-align:center}

}
.gh-migrated .fl-node-mow8ftdgprln .fl-icon i, .gh-migrated .fl-node-mow8ftdgprln .fl-icon i:before {color:#9b9b9b}
.gh-migrated .fl-node-mow8ftdgprln .fl-icon i:hover, .gh-migrated .fl-node-mow8ftdgprln .fl-icon i:hover:before, .gh-migrated .fl-node-mow8ftdgprln .fl-icon a:hover i, .gh-migrated .fl-node-mow8ftdgprln .fl-icon a:hover i:before {color:#7f7f7f}
.gh-migrated .fl-node-mow8ftdgprln .fl-icon i, .gh-migrated .fl-node-mow8ftdgprln .fl-icon i:before {font-size:16px}
.gh-migrated .fl-node-mow8ftdgprln .fl-icon-wrap .fl-icon-text {height:28px}
.gh-migrated .fl-node-mow8ftdgprln.fl-module-icon {text-align:left}
@media(max-width:1366px) {
.gh-migrated .fl-node-mow8ftdgprln .fl-icon-wrap .fl-icon-text {height:28px}

}
@media(max-width:1024px) {
.gh-migrated .fl-node-mow8ftdgprln .fl-icon-wrap .fl-icon-text {height:28px}

}
@media(max-width:767px) {
.gh-migrated .fl-node-mow8ftdgprln .fl-icon-wrap .fl-icon-text {height:28px}

}
.gh-migrated .fl-node-mow8ftdgprln>.fl-module-content, .gh-migrated .fl-node-mow8ftdgprln> .wp-block-group__inner-container > .fl-module-content {margin-top:0;margin-bottom:0;margin-left:5px}
.gh-migrated .fl-node-1ykqmpe7fawh .fl-icon i, .gh-migrated .fl-node-1ykqmpe7fawh .fl-icon i:before {color:#9b9b9b}
.gh-migrated .fl-node-1ykqmpe7fawh .fl-icon i, .gh-migrated .fl-node-1ykqmpe7fawh .fl-icon i:before {font-size:16px}
.gh-migrated .fl-node-1ykqmpe7fawh .fl-icon-wrap .fl-icon-text {height:28px}
.gh-migrated .fl-node-1ykqmpe7fawh.fl-module-icon {text-align:left}
@media(max-width:1366px) {
.gh-migrated .fl-node-1ykqmpe7fawh .fl-icon-wrap .fl-icon-text {height:28px}

}
@media(max-width:1024px) {
.gh-migrated .fl-node-1ykqmpe7fawh .fl-icon-wrap .fl-icon-text {height:28px}

}
@media(max-width:767px) {
.gh-migrated .fl-node-1ykqmpe7fawh .fl-icon-wrap .fl-icon-text {height:28px}

}
.gh-migrated .fl-node-1ykqmpe7fawh>.fl-module-content, .gh-migrated .fl-node-1ykqmpe7fawh> .wp-block-group__inner-container > .fl-module-content {margin-top:0;margin-right:0;margin-bottom:0;margin-left:3px}
.gh-migrated .fl-node-3zh82paywtnb .fl-icon i, .gh-migrated .fl-node-3zh82paywtnb .fl-icon i:before {color:#9b9b9b}
.gh-migrated .fl-node-3zh82paywtnb .fl-icon i:hover, .gh-migrated .fl-node-3zh82paywtnb .fl-icon i:hover:before, .gh-migrated .fl-node-3zh82paywtnb .fl-icon a:hover i, .gh-migrated .fl-node-3zh82paywtnb .fl-icon a:hover i:before {color:#7f7f7f}
.gh-migrated .fl-node-3zh82paywtnb .fl-icon i, .gh-migrated .fl-node-3zh82paywtnb .fl-icon i:before {font-size:16px}
.gh-migrated .fl-node-3zh82paywtnb .fl-icon-wrap .fl-icon-text {height:28px}
.gh-migrated .fl-node-3zh82paywtnb.fl-module-icon {text-align:left}
@media(max-width:1366px) {
.gh-migrated .fl-node-3zh82paywtnb .fl-icon-wrap .fl-icon-text {height:28px}

}
@media(max-width:1024px) {
.gh-migrated .fl-node-3zh82paywtnb .fl-icon-wrap .fl-icon-text {height:28px}

}
@media(max-width:767px) {
.gh-migrated .fl-node-3zh82paywtnb .fl-icon-wrap .fl-icon-text {height:28px}

}
.gh-migrated .fl-node-3zh82paywtnb>.fl-module-content, .gh-migrated .fl-node-3zh82paywtnb> .wp-block-group__inner-container > .fl-module-content {margin-top:0;margin-bottom:0;margin-left:5px}
.gh-migrated .fl-node-5he31jfroz2c .fl-icon i, .gh-migrated .fl-node-5he31jfroz2c .fl-icon i:before {color:#9b9b9b}
.gh-migrated .fl-node-5he31jfroz2c .fl-icon i, .gh-migrated .fl-node-5he31jfroz2c .fl-icon i:before {font-size:16px}
.gh-migrated .fl-node-5he31jfroz2c .fl-icon-wrap .fl-icon-text {height:28px}
.gh-migrated .fl-node-5he31jfroz2c.fl-module-icon {text-align:left}
@media(max-width:1366px) {
.gh-migrated .fl-node-5he31jfroz2c .fl-icon-wrap .fl-icon-text {height:28px}

}
@media(max-width:1024px) {
.gh-migrated .fl-node-5he31jfroz2c .fl-icon-wrap .fl-icon-text {height:28px}

}
@media(max-width:767px) {
.gh-migrated .fl-node-5he31jfroz2c .fl-icon-wrap .fl-icon-text {height:28px}

}
.gh-migrated .fl-node-5he31jfroz2c>.fl-module-content, .gh-migrated .fl-node-5he31jfroz2c> .wp-block-group__inner-container > .fl-module-content {margin-top:0;margin-right:0;margin-bottom:0;margin-left:3px}
.gh-migrated .fl-module-heading .fl-heading {padding:0!important;margin:0!important}
.gh-migrated .fl-row .fl-col .fl-node-vs9j4ubetng0 h3.fl-heading a, .gh-migrated .fl-row .fl-col .fl-node-vs9j4ubetng0 h3.fl-heading .fl-heading-text, .gh-migrated .fl-row .fl-col .fl-node-vs9j4ubetng0 h3.fl-heading .fl-heading-text *, .gh-migrated .fl-node-vs9j4ubetng0 h3.fl-heading .fl-heading-text {color:#353535}
.gh-migrated .fl-node-vs9j4ubetng0.fl-module-heading .fl-heading {font-family:Roboto,sans-serif;font-weight:700;font-size:25px;text-align:left}
@media(max-width:1024px) {
.gh-migrated .fl-node-vs9j4ubetng0.fl-module-heading .fl-heading {text-align:center}

}
.gh-migrated .fl-node-vs9j4ubetng0>.fl-module-content, .gh-migrated .fl-node-vs9j4ubetng0> .wp-block-group__inner-container > .fl-module-content {margin-top:20px}
.gh-migrated .fl-row .fl-col .fl-node-dj08mxi31th6 h3.fl-heading a, .gh-migrated .fl-row .fl-col .fl-node-dj08mxi31th6 h3.fl-heading .fl-heading-text, .gh-migrated .fl-row .fl-col .fl-node-dj08mxi31th6 h3.fl-heading .fl-heading-text *, .gh-migrated .fl-node-dj08mxi31th6 h3.fl-heading .fl-heading-text {color:#353535}
.gh-migrated .fl-node-dj08mxi31th6.fl-module-heading .fl-heading {font-family:Roboto,sans-serif;font-weight:700;font-size:25px;text-align:left}
@media(max-width:1024px) {
.gh-migrated .fl-node-dj08mxi31th6.fl-module-heading .fl-heading {text-align:center}

}
.gh-migrated .fl-node-5ka4m7lubn21, .gh-migrated .fl-node-5ka4m7lubn21 .fl-photo {text-align:center}
.gh-migrated .fl-node-5ka4m7lubn21 .fl-photo-content, .gh-migrated .fl-node-5ka4m7lubn21 img {width:150px}
.gh-migrated .fl-row .fl-col .fl-node-g4ush3yzi5d8 h3.fl-heading a, .gh-migrated .fl-row .fl-col .fl-node-g4ush3yzi5d8 h3.fl-heading .fl-heading-text, .gh-migrated .fl-row .fl-col .fl-node-g4ush3yzi5d8 h3.fl-heading .fl-heading-text *, .gh-migrated .fl-node-g4ush3yzi5d8 h3.fl-heading .fl-heading-text {color:#353535}
.gh-migrated .fl-node-g4ush3yzi5d8.fl-module-heading .fl-heading {font-family:Roboto,sans-serif;font-weight:700;font-size:25px;text-align:left}
@media(max-width:1024px) {
.gh-migrated .fl-node-g4ush3yzi5d8.fl-module-heading .fl-heading {text-align:center}

}
.gh-migrated.fl-builder-content .fl-rich-text strong {font-weight:700}
.gh-migrated .fl-module.fl-rich-text p:last-child {margin-bottom:0}
.gh-migrated .fl-builder-edit .fl-module.fl-rich-text p:not(:has(~*:not(.fl-block-overlay))) {margin-bottom:0}
.gh-migrated.fl-builder-content .fl-node-6ucz425fnqps .fl-module-content .fl-rich-text, .gh-migrated.fl-builder-content .fl-node-6ucz425fnqps .fl-module-content .fl-rich-text * {color:#000}
.gh-migrated.fl-builder-content .fl-node-6ucz425fnqps .fl-rich-text, .gh-migrated.fl-builder-content .fl-node-6ucz425fnqps .fl-rich-text *:not(b,strong) {font-family:Inter,sans-serif;font-weight:400;font-size:21px}
.gh-migrated .fl-node-6ucz425fnqps>.fl-module-content, .gh-migrated .fl-node-6ucz425fnqps> .wp-block-group__inner-container > .fl-module-content {margin-top:0;margin-bottom:0}
.gh-migrated .fl-node-1u2h8v7agswq>.fl-module-content, .gh-migrated .fl-node-1u2h8v7agswq> .wp-block-group__inner-container > .fl-module-content {margin-top:0}
.gh-migrated.fl-builder-content .fl-node-vdsa3u62hmtl .fl-module-content .fl-rich-text, .gh-migrated.fl-builder-content .fl-node-vdsa3u62hmtl .fl-module-content .fl-rich-text * {color:#000}
.gh-migrated.fl-builder-content .fl-node-vdsa3u62hmtl .fl-rich-text, .gh-migrated.fl-builder-content .fl-node-vdsa3u62hmtl .fl-rich-text *:not(b,strong) {font-family:Inter,sans-serif;font-weight:400;font-size:21px}
@media(max-width:1024px) {
.gh-migrated.fl-builder-content .fl-node-vdsa3u62hmtl .fl-rich-text, .gh-migrated.fl-builder-content .fl-node-vdsa3u62hmtl .fl-rich-text *:not(b,strong) {text-align:center}

}
@media(max-width:767px) {
.gh-migrated.fl-builder-content .fl-node-vdsa3u62hmtl .fl-rich-text, .gh-migrated.fl-builder-content .fl-node-vdsa3u62hmtl .fl-rich-text *:not(b,strong) {text-align:center}

}
.gh-migrated .fl-node-vdsa3u62hmtl>.fl-module-content, .gh-migrated .fl-node-vdsa3u62hmtl> .wp-block-group__inner-container > .fl-module-content {margin-top:0}
.gh-migrated .fl-icon-group .fl-icon {display:inline-block;margin-bottom:10px;margin-top:10px}
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-icon i, .gh-migrated .fl-node-3qvb4xtu81e6 .fl-icon i:before {font-size:30px}
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-icon-wrap .fl-icon-text {height:52.5px}
@media(max-width:1366px) {
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-icon-wrap .fl-icon-text {height:52.5px}

}
@media(max-width:1024px) {
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-icon-wrap .fl-icon-text {height:52.5px}

}
@media(max-width:767px) {
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-icon-wrap .fl-icon-text {height:52.5px}

}
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(1) i, .gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(1) i:before {color:#005fa4}
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(2) i, .gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(2) i:before {color:#005fa4}
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(3) i, .gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(3) i:before {color:#005fa4}
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(4) i, .gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(4) i:before {color:#005fa4}
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(5) i, .gh-migrated .fl-node-3qvb4xtu81e6 .fl-module-content .fl-icon:nth-child(5) i:before {color:#005fa4}
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-icon-group {display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.gh-migrated .fl-node-3qvb4xtu81e6 .fl-icon-group .fl-icon {margin:0}
.gh-migrated .fl-node-3qvb4xtu81e6>.fl-module-content, .gh-migrated .fl-node-3qvb4xtu81e6> .wp-block-group__inner-container > .fl-module-content {margin-top:0}
.gh-migrated.fl-builder-content .fl-node-zp4qyfav1x85 .fl-icon-wrap .fl-icon-text, .gh-migrated.fl-builder-content .fl-node-zp4qyfav1x85 .fl-icon-wrap .fl-icon-text * {color:#000}
.gh-migrated .fl-node-zp4qyfav1x85 .fl-icon i, .gh-migrated .fl-node-zp4qyfav1x85 .fl-icon i:before {color:#005fa4}
.gh-migrated .fl-node-zp4qyfav1x85 .fl-icon i, .gh-migrated .fl-node-zp4qyfav1x85 .fl-icon i:before {font-size:25px}
.gh-migrated .fl-node-zp4qyfav1x85 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-zp4qyfav1x85.fl-module-icon {text-align:left}
.gh-migrated.fl-builder-content .fl-node-zp4qyfav1x85 .fl-icon-wrap .fl-icon-text, .gh-migrated.fl-builder-content .fl-node-zp4qyfav1x85 .fl-icon-wrap .fl-icon-text-link * {color:#000}
.gh-migrated .fl-node-zp4qyfav1x85 .fl-icon-text, .gh-migrated .fl-node-zp4qyfav1x85 .fl-icon-text-link {font-family:Inter,sans-serif;font-weight:400;font-size:21px}
@media(max-width:1366px) {
.gh-migrated .fl-node-zp4qyfav1x85 .fl-icon-wrap .fl-icon-text {height:43.75px}

}
@media(max-width:1024px) {
.gh-migrated .fl-node-zp4qyfav1x85 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-zp4qyfav1x85.fl-module-icon {text-align:center}

}
@media(max-width:767px) {
.gh-migrated .fl-node-zp4qyfav1x85 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-zp4qyfav1x85.fl-module-icon {text-align:center}

}
.gh-migrated .fl-node-zp4qyfav1x85>.fl-module-content, .gh-migrated .fl-node-zp4qyfav1x85> .wp-block-group__inner-container > .fl-module-content {margin-top:0;margin-bottom:0}
.gh-migrated.fl-builder-content .fl-node-57bopg1xeml6 .fl-icon-wrap .fl-icon-text, .gh-migrated.fl-builder-content .fl-node-57bopg1xeml6 .fl-icon-wrap .fl-icon-text * {color:#000}
.gh-migrated .fl-node-57bopg1xeml6 .fl-icon i, .gh-migrated .fl-node-57bopg1xeml6 .fl-icon i:before {color:#005fa4}
.gh-migrated .fl-node-57bopg1xeml6 .fl-icon i, .gh-migrated .fl-node-57bopg1xeml6 .fl-icon i:before {font-size:25px}
.gh-migrated .fl-node-57bopg1xeml6 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-57bopg1xeml6.fl-module-icon {text-align:left}
.gh-migrated.fl-builder-content .fl-node-57bopg1xeml6 .fl-icon-wrap .fl-icon-text, .gh-migrated.fl-builder-content .fl-node-57bopg1xeml6 .fl-icon-wrap .fl-icon-text-link * {color:#000}
.gh-migrated .fl-node-57bopg1xeml6 .fl-icon-text, .gh-migrated .fl-node-57bopg1xeml6 .fl-icon-text-link {font-family:Inter,sans-serif;font-weight:400;font-size:21px}
@media(max-width:1366px) {
.gh-migrated .fl-node-57bopg1xeml6 .fl-icon-wrap .fl-icon-text {height:43.75px}

}
@media(max-width:1024px) {
.gh-migrated .fl-node-57bopg1xeml6 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-57bopg1xeml6.fl-module-icon {text-align:center}

}
@media(max-width:767px) {
.gh-migrated .fl-node-57bopg1xeml6 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-57bopg1xeml6.fl-module-icon {text-align:center}

}
.gh-migrated .fl-node-57bopg1xeml6>.fl-module-content, .gh-migrated .fl-node-57bopg1xeml6> .wp-block-group__inner-container > .fl-module-content {margin-top:0;margin-bottom:0}
.gh-migrated.fl-builder-content .fl-node-f9sjdki1up35 .fl-icon-wrap .fl-icon-text, .gh-migrated.fl-builder-content .fl-node-f9sjdki1up35 .fl-icon-wrap .fl-icon-text * {color:#000}
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon i, .gh-migrated .fl-node-f9sjdki1up35 .fl-icon i:before {color:#005fa4}
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon i, .gh-migrated .fl-node-f9sjdki1up35 .fl-icon i:before {font-size:25px}
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-f9sjdki1up35.fl-module-icon {text-align:left}
.gh-migrated.fl-builder-content .fl-node-f9sjdki1up35 .fl-icon-wrap .fl-icon-text, .gh-migrated.fl-builder-content .fl-node-f9sjdki1up35 .fl-icon-wrap .fl-icon-text-link * {color:#000}
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon-text, .gh-migrated .fl-node-f9sjdki1up35 .fl-icon-text-link {font-family:Inter,sans-serif;font-weight:400;font-size:21px}
@media(max-width:1366px) {
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon-text, .gh-migrated .fl-node-f9sjdki1up35 .fl-icon-text-link {font-size:16px}

}
@media(max-width:1024px) {
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-f9sjdki1up35.fl-module-icon {text-align:center}
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon-text, .gh-migrated .fl-node-f9sjdki1up35 .fl-icon-text-link {font-size:21px}

}
@media(max-width:767px) {
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon-wrap .fl-icon-text {height:43.75px}
.gh-migrated .fl-node-f9sjdki1up35.fl-module-icon {text-align:center}
.gh-migrated .fl-node-f9sjdki1up35 .fl-icon-text, .gh-migrated .fl-node-f9sjdki1up35 .fl-icon-text-link {font-size:21px}

}
.gh-migrated .fl-node-f9sjdki1up35>.fl-module-content, .gh-migrated .fl-node-f9sjdki1up35> .wp-block-group__inner-container > .fl-module-content {margin-top:0}
.gh-migrated .fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-box-align:end;-webkit-box-pack:end;-ms-flex-pack:end}
.gh-migrated .uabb-module-content h1, .gh-migrated .uabb-module-content h2, .gh-migrated .uabb-module-content h3, .gh-migrated .uabb-module-content h4, .gh-migrated .uabb-module-content h5, .gh-migrated .uabb-module-content h6 {margin:0;clear:both}
.gh-migrated .fl-module-content a, .gh-migrated .fl-module-content a:hover, .gh-migrated .fl-module-content a:focus {text-decoration:none}
.gh-migrated .uabb-row-separator {position:absolute;width:100%;left:0}
.gh-migrated .uabb-top-row-separator {top:0;bottom:auto}
.gh-migrated .uabb-bottom-row-separator {top:auto;bottom:0}
.gh-migrated.fl-builder-content-editing .fl-visible-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-mobile.uabb-row {display:none!important}
@media (max-width:992px) {
.gh-migrated.fl-builder-content-editing .fl-visible-desktop.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-mobile.uabb-row {display:none!important}
.gh-migrated.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {display:block!important}

}
@media (max-width:768px) {
.gh-migrated.fl-builder-content-editing .fl-visible-desktop.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-medium.uabb-row {display:none!important}
.gh-migrated.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row, .gh-migrated.fl-builder-content-editing .fl-visible-mobile.uabb-row {display:block!important}

}
.gh-migrated .fl-responsive-preview-content .fl-builder-content-editing {overflow-x:hidden;overflow-y:visible}
.gh-migrated .uabb-row-separator svg {width:100%}
.gh-migrated .uabb-top-row-separator.uabb-has-svg svg {position:absolute;padding:0;margin:0;left:50%;top:-1px;bottom:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}
.gh-migrated .uabb-bottom-row-separator.uabb-has-svg svg {position:absolute;padding:0;margin:0;left:50%;bottom:-1px;top:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}
.gh-migrated .uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {bottom:0}
.gh-migrated .uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {top:0}
.gh-migrated .uabb-bottom-row-separator.uabb-svg-triangle svg, .gh-migrated .uabb-bottom-row-separator.uabb-xlarge-triangle svg, .gh-migrated .uabb-top-row-separator.uabb-xlarge-triangle-left svg, .gh-migrated .uabb-bottom-row-separator.uabb-svg-circle svg, .gh-migrated .uabb-top-row-separator.uabb-slime-separator svg, .gh-migrated .uabb-top-row-separator.uabb-grass-separator svg, .gh-migrated .uabb-top-row-separator.uabb-grass-bend-separator svg, .gh-migrated .uabb-bottom-row-separator.uabb-mul-triangles-separator svg, .gh-migrated .uabb-top-row-separator.uabb-wave-slide-separator svg, .gh-migrated .uabb-top-row-separator.uabb-pine-tree-separator svg, .gh-migrated .uabb-top-row-separator.uabb-pine-tree-bend-separator svg, .gh-migrated .uabb-bottom-row-separator.uabb-stamp-separator svg, .gh-migrated .uabb-bottom-row-separator.uabb-xlarge-circle svg, .gh-migrated .uabb-top-row-separator.uabb-wave-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-big-triangle svg {left:50%;-webkit-transform:scale(1) scaleY(-1) translateX(-50%);-moz-transform:scale(1) scaleY(-1) translateX(-50%);-ms-transform:scale(1) scaleY(-1) translateX(-50%);-o-transform:scale(1) scaleY(-1) translateX(-50%);transform:scale(1) scaleY(-1) translateX(-50%)}
.gh-migrated .uabb-top-row-separator.uabb-big-triangle svg {left:50%;-webkit-transform:translateX(-50%) scale(1);-moz-transform:translateX(-50%) scale(1);-ms-transform:translateX(-50%) scale(1);-o-transform:translateX(-50%) scale(1);transform:translateX(-50%) scale(1)}
.gh-migrated .uabb-top-row-separator.uabb-xlarge-triangle-right svg {left:50%;-webkit-transform:translateX(-50%) scale(-1);-moz-transform:translateX(-50%) scale(-1);-ms-transform:translateX(-50%) scale(-1);-o-transform:translateX(-50%) scale(-1);transform:translateX(-50%) scale(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {left:50%;-webkit-transform:translateX(-50%) scaleX(-1);-moz-transform:translateX(-50%) scaleX(-1);-ms-transform:translateX(-50%) scaleX(-1);-o-transform:translateX(-50%) scaleX(-1);transform:translateX(-50%) scaleX(-1)}
.gh-migrated .uabb-top-row-separator.uabb-curve-up-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-top-row-separator.uabb-curve-down-separator svg {left:50%;-webkit-transform:translateX(-50%) scale(-1);-moz-transform:translateX(-50%) scale(-1);-ms-transform:translateX(-50%) scale(-1);-o-transform:translateX(-50%) scale(-1);transform:translateX(-50%) scale(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-curve-down-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleX(-1);-moz-transform:translateX(-50%) scaleX(-1);-ms-transform:translateX(-50%) scaleX(-1);-o-transform:translateX(-50%) scaleX(-1);transform:translateX(-50%) scaleX(-1)}
.gh-migrated .uabb-top-row-separator.uabb-tilt-left-separator svg {left:50%;-webkit-transform:translateX(-50%) scale(-1);-moz-transform:translateX(-50%) scale(-1);-ms-transform:translateX(-50%) scale(-1);-o-transform:translateX(-50%) scale(-1);transform:translateX(-50%) scale(-1)}
.gh-migrated .uabb-top-row-separator.uabb-tilt-right-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-tilt-left-separator svg {left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}
.gh-migrated .uabb-bottom-row-separator.uabb-tilt-right-separator svg {left:50%;-webkit-transform:translateX(-50%) scaleX(-1);-moz-transform:translateX(-50%) scaleX(-1);-ms-transform:translateX(-50%) scaleX(-1);-o-transform:translateX(-50%) scaleX(-1);transform:translateX(-50%) scaleX(-1)}
.gh-migrated .uabb-top-row-separator.uabb-tilt-left-separator, .gh-migrated .uabb-top-row-separator.uabb-tilt-right-separator {top:0}
.gh-migrated .uabb-bottom-row-separator.uabb-tilt-left-separator, .gh-migrated .uabb-bottom-row-separator.uabb-tilt-right-separator {bottom:0}
.gh-migrated .uabb-top-row-separator.uabb-arrow-outward-separator svg, .gh-migrated .uabb-top-row-separator.uabb-arrow-inward-separator svg, .gh-migrated .uabb-top-row-separator.uabb-cloud-separator svg, .gh-migrated .uabb-top-row-separator.uabb-multi-triangle svg {left:50%;-webkit-transform:translateX(-50%) scaleY(-1);-moz-transform:translateX(-50%) scaleY(-1);-ms-transform:translateX(-50%) scaleY(-1);-o-transform:translateX(-50%) scaleY(-1);transform:translateX(-50%) scaleY(-1)}
.gh-migrated .uabb-bottom-row-separator.uabb-multi-triangle svg {bottom:-2px}
.gh-migrated .uabb-row-separator.uabb-round-split:after, .gh-migrated .uabb-row-separator.uabb-round-split:before {left:0;width:50%;background:inherit inherit/inherit inherit inherit inherit;content:'';position:absolute}
.gh-migrated .uabb-button-wrap a, .gh-migrated .uabb-button-wrap a:visited {display:inline-block;font-size:16px;line-height:18px;text-decoration:none;text-shadow:none}
.gh-migrated.fl-builder-content .uabb-button:hover {text-decoration:none}
.gh-migrated.fl-builder-content .uabb-button-width-full .uabb-button {display:block;text-align:center}
.gh-migrated .uabb-button-width-custom .uabb-button {display:inline-block;text-align:center;max-width:100%}
.gh-migrated.fl-builder-content .uabb-button-left {text-align:left}
.gh-migrated.fl-builder-content .uabb-button-center {text-align:center}
.gh-migrated.fl-builder-content .uabb-infobox .uabb-button-center, .gh-migrated.fl-builder-content .uabb-modal-action-wrap .uabb-button-center, .gh-migrated.fl-builder-content .uabb-ultb3-box .uabb-button-center, .gh-migrated.fl-builder-content .uabb-slide-down .uabb-button-center, .gh-migrated.fl-builder-content .uabb-blog-post-content .uabb-button-center, .gh-migrated.fl-builder-content .uabb-cta-wrap .uabb-button-center, .gh-migrated.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center {text-align:inherit}
.gh-migrated.fl-builder-content .uabb-button-right {text-align:right}
.gh-migrated.fl-builder-content .uabb-button i, .gh-migrated.fl-builder-content .uabb-button i:before {font-size:1em;height:1em;line-height:1em;width:1em}
.gh-migrated .uabb-button .uabb-button-icon-after {margin-left:8px;margin-right:0}
.gh-migrated .uabb-button .uabb-button-icon-before {margin-left:0;margin-right:8px}
.gh-migrated .uabb-button .uabb-button-icon-no-text {margin:0}
.gh-migrated .uabb-button-has-icon .uabb-button-text {vertical-align:middle}
.gh-migrated .uabb-icon-wrap {display:inline-block}
.gh-migrated .uabb-icon a {text-decoration:none}
.gh-migrated .uabb-icon i {display:block}
.gh-migrated .uabb-icon i:before {border:none!important;background:none!important}
.gh-migrated .uabb-icon-text {display:table-cell;text-align:left;padding-left:15px;vertical-align:middle}
.gh-migrated .uabb-icon-text *:last-child {margin:0!important;padding:0!important}
.gh-migrated .uabb-icon-text a {text-decoration:none}
.gh-migrated .uabb-photo {line-height:0;position:relative;z-index:2}
.gh-migrated .uabb-photo-align-left {text-align:left}
.gh-migrated .uabb-photo-align-center {text-align:center}
.gh-migrated .uabb-photo-align-right {text-align:right}
.gh-migrated .uabb-photo-content {border-radius:0;display:inline-block;line-height:0;position:relative;max-width:100%;overflow:hidden}
.gh-migrated .uabb-photo-content img {border-radius:inherit;display:inline;height:auto;max-width:100%;width:auto}
.gh-migrated.fl-builder-content .uabb-photo-crop-circle img {-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%}
.gh-migrated.fl-builder-content .uabb-photo-crop-square img {-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
.gh-migrated .uabb-photo-caption {font-size:13px;line-height:18px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.gh-migrated .uabb-photo-caption-below {padding-bottom:20px;padding-top:10px}
.gh-migrated .uabb-photo-caption-hover {background:rgb(0 0 0 / .7);bottom:0;color:#fff;left:0;opacity:0;visibility:hidden;filter:alpha(opacity=0);padding:10px 15px;position:absolute;right:0;-webkit-transition:visibility 200ms linear;-moz-transition:visibility 200ms linear;transition:visibility 200ms linear}
.gh-migrated .uabb-photo-content:hover .uabb-photo-caption-hover {opacity:100;visibility:visible}
.gh-migrated .uabb-active-btn {background:#1e8cbe;border-color:#0074a2;-webkit-box-shadow:inset 0 1px 0 rgb(120 200 230 / .6);box-shadow:inset 0 1px 0 rgb(120 200 230 / .6);color:#fff}
.gh-migrated .fl-builder-bar .fl-builder-add-content-button {display:block!important;opacity:1!important}
.gh-migrated .uabb-imgicon-wrap .uabb-icon {display:block}
.gh-migrated .uabb-imgicon-wrap .uabb-icon i {float:none}
.gh-migrated .uabb-imgicon-wrap .uabb-image {line-height:0;position:relative}
.gh-migrated .uabb-imgicon-wrap .uabb-image-align-left {text-align:left}
.gh-migrated .uabb-imgicon-wrap .uabb-image-align-center {text-align:center}
.gh-migrated .uabb-imgicon-wrap .uabb-image-align-right {text-align:right}
.gh-migrated .uabb-imgicon-wrap .uabb-image-content {display:inline-block;border-radius:0;line-height:0;position:relative;max-width:100%}
.gh-migrated .uabb-imgicon-wrap .uabb-image-content img {display:inline;height:auto!important;max-width:100%;width:auto;border-radius:inherit;box-shadow:none;box-sizing:content-box}
.gh-migrated.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%}
.gh-migrated.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
.gh-migrated .uabb-creative-button-wrap a, .gh-migrated .uabb-creative-button-wrap a:visited {background:#fafafa;border:1px solid #ccc;color:#333;display:inline-block;vertical-align:middle;text-align:center;overflow:hidden;text-decoration:none;text-shadow:none;box-shadow:none;position:relative;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-creative-button-wrap a:focus {text-decoration:none;text-shadow:none;box-shadow:none}
.gh-migrated .uabb-creative-button-wrap a .uabb-creative-button-text, .gh-migrated .uabb-creative-button-wrap a .uabb-creative-button-icon, .gh-migrated .uabb-creative-button-wrap a:visited .uabb-creative-button-text, .gh-migrated .uabb-creative-button-wrap a:visited .uabb-creative-button-icon {-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-creative-button-wrap a:hover {text-decoration:none}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {display:block;text-align:center}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {display:inline-block;text-align:center;max-width:100%}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-left {text-align:left}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-center {text-align:center}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-right {text-align:right}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button i {font-size:1.3em;height:auto;vertical-align:middle;width:auto}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {margin-left:8px;margin-right:0}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {margin-right:8px;margin-left:0}
.gh-migrated .uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {margin:0}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {vertical-align:middle}
.gh-migrated .uabb-creative-button-wrap a, .gh-migrated .uabb-creative-button-wrap a:visited {padding:12px 24px}
.gh-migrated .uabb-creative-button.uabb-creative-transparent-btn {background:#fff0}
.gh-migrated .uabb-creative-button.uabb-creative-transparent-btn:after {content:'';position:absolute;z-index:1;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-transparent-fill-top-btn:after, .gh-migrated .uabb-transparent-fill-bottom-btn:after {width:100%;height:0;left:0}
.gh-migrated .uabb-transparent-fill-top-btn:after {top:0}
.gh-migrated .uabb-transparent-fill-bottom-btn:after {bottom:0}
.gh-migrated .uabb-transparent-fill-left-btn:after, .gh-migrated .uabb-transparent-fill-right-btn:after {width:0;height:100%;top:0}
.gh-migrated .uabb-transparent-fill-left-btn:after {left:0}
.gh-migrated .uabb-transparent-fill-right-btn:after {right:0}
.gh-migrated .uabb-transparent-fill-center-btn:after {width:0;height:100%;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}
.gh-migrated .uabb-transparent-fill-diagonal-btn:after, .gh-migrated .uabb-transparent-fill-horizontal-btn:after {width:100%;height:0;top:50%;left:50%}
.gh-migrated .uabb-transparent-fill-diagonal-btn {overflow:hidden}
.gh-migrated .uabb-transparent-fill-diagonal-btn:after {-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);-moz-transform:translateX(-50%) translateY(-50%) rotate(45deg);-ms-transform:translateX(-50%) translateY(-50%) rotate(45deg);-o-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg)}
.gh-migrated .uabb-transparent-fill-horizontal-btn:after {-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}
.gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn, .gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn, .gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn, .gh-migrated .uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}
.gh-migrated .perspective {-webkit-perspective:800px;-moz-perspective:800px;perspective:800px;margin:0}
.gh-migrated .uabb-creative-button.uabb-creative-threed-btn:after {content:'';position:absolute;z-index:-1;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;transition:all 200ms linear}
.gh-migrated .uabb-creative-button.uabb-creative-threed-btn {outline:1px solid #fff0;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_top-btn:after {height:40%;left:0;top:-40%;width:100%;-webkit-transform-origin:0% 100%;-moz-transform-origin:0% 100%;transform-origin:0% 100%;-webkit-transform:rotateX(90deg);-moz-transform:rotateX(90deg);transform:rotateX(90deg)}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_bottom-btn:after {width:100%;height:40%;left:0;top:100%;-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateX(-90deg);-moz-transform:rotateX(-90deg);-ms-transform:rotateX(-90deg);transform:rotateX(-90deg)}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_left-btn:after {width:20%;height:100%;left:-20%;top:0;-webkit-transform-origin:100% 0%;-moz-transform-origin:100% 0%;-ms-transform-origin:100% 0%;transform-origin:100% 0%;-webkit-transform:rotateY(-60deg);-moz-transform:rotateY(-60deg);-ms-transform:rotateY(-60deg);transform:rotateY(-60deg)}
.gh-migrated .uabb-creative-threed-btn.uabb-animate_right-btn:after {width:20%;height:100%;left:104%;top:0;-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-ms-transform-origin:0% 0%;transform-origin:0% 0%;-webkit-transform:rotateY(120deg);-moz-transform:rotateY(120deg);-ms-transform:rotateY(120deg);transform:rotateY(120deg)}
.gh-migrated .uabb-animate_top-btn:hover {-webkit-transform:rotateX(-15deg);-moz-transform:rotateX(-15deg);-ms-transform:rotateX(-15deg);-o-transform:rotateX(-15deg);transform:rotateX(-15deg)}
.gh-migrated .uabb-animate_bottom-btn:hover {-webkit-transform:rotateX(15deg);-moz-transform:rotateX(15deg);-ms-transform:rotateX(15deg);-o-transform:rotateX(15deg);transform:rotateX(15deg)}
.gh-migrated .uabb-animate_left-btn:hover {-webkit-transform:rotateY(6deg);-moz-transform:rotateY(6deg);-ms-transform:rotateY(6deg);-o-transform:rotateY(6deg);transform:rotateY(6deg)}
.gh-migrated .uabb-animate_right-btn:hover {-webkit-transform:rotateY(-6deg);-moz-transform:rotateY(-6deg);-ms-transform:rotateY(-6deg);-o-transform:rotateY(-6deg);transform:rotateY(-6deg)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn {overflow:hidden;position:relative}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {bottom:0;height:100%;margin:0;opacity:1;position:absolute;right:0;width:100%;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;transition:all 200ms linear;-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {display:inline-block;width:100%;height:100%;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-ms-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn i:before, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn i:before, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn i:before, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {left:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i, .gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {top:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn i {top:0;left:-100%}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {-webkit-transform:translateX(200%);-moz-transform:translateX(200%);-ms-transform:translateX(200%);-o-transform:translateX(200%);transform:translateX(200%)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn i {top:0;left:100%}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {-webkit-transform:translateX(-200%);-moz-transform:translateX(-200%);-ms-transform:translateX(-200%);-o-transform:translateX(-200%);transform:translateX(-200%)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn i {top:-100%;left:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {-webkit-transform:translateY(400px);-moz-transform:translateY(400px);-ms-transform:translateY(400px);-o-transform:translateY(400px);transform:translateY(400px)}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {top:100%;left:0}
.gh-migrated .uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {-webkit-transform:translateY(-400px);-moz-transform:translateY(-400px);-ms-transform:translateY(-400px);-o-transform:translateY(-400px);transform:translateY(-400px)}
.gh-migrated .uabb-tab-acc-content .wp-video, .gh-migrated .uabb-tab-acc-content video.wp-video-shortcode, .gh-migrated .uabb-tab-acc-content .mejs-container:not(.mejs-audio), .gh-migrated .uabb-tab-acc-content .mejs-overlay.load, .gh-migrated .uabb-adv-accordion-content .wp-video, .gh-migrated .uabb-adv-accordion-content video.wp-video-shortcode, .gh-migrated .uabb-adv-accordion-content .mejs-container:not(.mejs-audio), .gh-migrated .uabb-adv-accordion-content .mejs-overlay.load {width:100%!important;height:100%!important}
.gh-migrated .uabb-tab-acc-content .mejs-container:not(.mejs-audio), .gh-migrated .uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {padding-top:56.25%}
.gh-migrated .uabb-tab-acc-content .wp-video, .gh-migrated .uabb-tab-acc-content video.wp-video-shortcode, .gh-migrated .uabb-adv-accordion-content .wp-video, .gh-migrated .uabb-adv-accordion-content video.wp-video-shortcode {max-width:100%!important}
.gh-migrated .uabb-tab-acc-content video.wp-video-shortcode, .gh-migrated .uabb-adv-accordion-content video.wp-video-shortcode {position:relative}
.gh-migrated .uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement, .gh-migrated .uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {position:absolute;top:0;right:0;bottom:0;left:0}
.gh-migrated .uabb-tab-acc-content .mejs-overlay-play, .gh-migrated .uabb-adv-accordion-content .mejs-overlay-play {top:0;right:0;bottom:0;left:0;width:auto!important;height:auto!important}
.gh-migrated .fl-row-content-wrap .uabb-row-particles-background, .gh-migrated .uabb-col-particles-background {width:100%;height:100%;position:absolute;left:0;top:0}
.gh-migrated .uabb-js-breakpoint {content:"default";display:none}
@media screen and (max-width:1024px) {
.gh-migrated .uabb-js-breakpoint {content:"1024"}

}
@media screen and (max-width:767px) {
.gh-migrated .uabb-js-breakpoint {content:"767"}

}
.gh-migrated .mfp-bg {top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}
.gh-migrated .mfp-wrap {top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}
.gh-migrated .mfp-container {text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.gh-migrated .mfp-container:before {content:'';display:inline-block;height:100%;vertical-align:middle}
.gh-migrated .mfp-align-top .mfp-container:before {display:none}
.gh-migrated .mfp-content {position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}
.gh-migrated .mfp-ajax-holder .mfp-content, .gh-migrated .mfp-inline-holder .mfp-content {width:100%;cursor:auto}
.gh-migrated .mfp-ajax-cur {cursor:progress}
.gh-migrated .mfp-zoom-out-cur, .gh-migrated .mfp-zoom-out-cur .mfp-image-holder .mfp-close {cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}
.gh-migrated .mfp-zoom {cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}
.gh-migrated .mfp-auto-cursor .mfp-content {cursor:auto}
.gh-migrated .mfp-arrow, .gh-migrated .mfp-close, .gh-migrated .mfp-counter, .gh-migrated .mfp-preloader {-webkit-user-select:none;-moz-user-select:none;user-select:none}
.gh-migrated .mfp-loading.mfp-figure {display:none}
.gh-migrated .mfp-hide {display:none!important}
.gh-migrated .mfp-preloader {color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}
.gh-migrated .mfp-preloader a {color:#ccc}
.gh-migrated .mfp-preloader a:hover {color:#fff}
.gh-migrated .mfp-s-ready .mfp-preloader {display:none}
.gh-migrated .mfp-s-error .mfp-content {display:none}
.gh-migrated button.mfp-arrow, .gh-migrated button.mfp-close {overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}
.gh-migrated button::-moz-focus-inner {padding:0;border:0}
.gh-migrated .mfp-close {width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}
.gh-migrated .mfp-close:focus, .gh-migrated .mfp-close:hover {opacity:1}
.gh-migrated .mfp-close:active {top:1px}
.gh-migrated .mfp-close-btn-in .mfp-close {color:#333}
.gh-migrated .mfp-iframe-holder .mfp-close, .gh-migrated .mfp-image-holder .mfp-close {color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}
.gh-migrated .mfp-counter {position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px}
.gh-migrated .mfp-arrow {position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}
.gh-migrated .mfp-arrow:active {margin-top:-54px}
.gh-migrated .mfp-arrow:focus, .gh-migrated .mfp-arrow:hover {opacity:1}
.gh-migrated .mfp-arrow .mfp-a, .gh-migrated .mfp-arrow .mfp-b, .gh-migrated .mfp-arrow:after, .gh-migrated .mfp-arrow:before {content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}
.gh-migrated .mfp-arrow .mfp-a, .gh-migrated .mfp-arrow:after {border-top-width:13px;border-bottom-width:13px;top:8px}
.gh-migrated .mfp-arrow .mfp-b, .gh-migrated .mfp-arrow:before {border-top-width:21px;border-bottom-width:21px}
.gh-migrated .mfp-arrow-left {left:0}
.gh-migrated .mfp-arrow-left .mfp-a, .gh-migrated .mfp-arrow-left:after {border-right:17px solid #fff;margin-left:31px}
.gh-migrated .mfp-arrow-left .mfp-b, .gh-migrated .mfp-arrow-left:before {margin-left:25px;border-right:27px solid #3f3f3f}
.gh-migrated .mfp-arrow-right {right:0}
.gh-migrated .mfp-arrow-right .mfp-a, .gh-migrated .mfp-arrow-right:after {border-left:17px solid #fff;margin-left:39px}
.gh-migrated .mfp-arrow-right .mfp-b, .gh-migrated .mfp-arrow-right:before {border-left:27px solid #3f3f3f}
.gh-migrated .mfp-iframe-holder {padding-top:40px;padding-bottom:40px}
.gh-migrated .mfp-iframe-holder .mfp-content {line-height:0;width:100%;max-width:900px}
.gh-migrated .mfp-iframe-holder .mfp-close {top:-40px}
.gh-migrated .mfp-iframe-scaler {width:100%;height:0;overflow:hidden;padding-top:56.25%}
.gh-migrated .mfp-iframe-scaler iframe {position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}
.gh-migrated img.mfp-img {width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}
.gh-migrated .mfp-figure {line-height:0}
.gh-migrated .mfp-figure:after {content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}
.gh-migrated .mfp-figure small {color:#bdbdbd;display:block;font-size:12px;line-height:14px}
.gh-migrated .mfp-figure figure {margin:0}
.gh-migrated .mfp-bottom-bar {margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}
.gh-migrated .mfp-title {text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}
.gh-migrated .mfp-image-holder .mfp-content {max-width:100%}
.gh-migrated .mfp-gallery .mfp-image-holder .mfp-figure {cursor:pointer}
@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px) {
.gh-migrated .mfp-img-mobile .mfp-image-holder {padding-left:0;padding-right:0}
.gh-migrated .mfp-img-mobile img.mfp-img {padding:0}
.gh-migrated .mfp-img-mobile .mfp-figure:after {top:0;bottom:0}
.gh-migrated .mfp-img-mobile .mfp-figure small {display:inline;margin-left:5px}
.gh-migrated .mfp-img-mobile .mfp-bottom-bar {background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.gh-migrated .mfp-img-mobile .mfp-bottom-bar:empty {padding:0}
.gh-migrated .mfp-img-mobile .mfp-counter {right:5px;top:3px}
.gh-migrated .mfp-img-mobile .mfp-close {top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}

}
@media all and (max-width:900px) {
.gh-migrated .mfp-arrow {-webkit-transform:scale(.75);transform:scale(.75)}
.gh-migrated .mfp-arrow-left {-webkit-transform-origin:0;transform-origin:0}
.gh-migrated .mfp-arrow-right {-webkit-transform-origin:100%;transform-origin:100%}
.gh-migrated .mfp-container {padding-left:6px;padding-right:6px}

}
.gh-migrated .mfp-ie7 .mfp-img {padding:0}
.gh-migrated .mfp-ie7 .mfp-bottom-bar {width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}
.gh-migrated .mfp-ie7 .mfp-container {padding:0}
.gh-migrated .mfp-ie7 .mfp-content {padding-top:44px}
.gh-migrated .mfp-ie7 .mfp-close {top:0;right:0;padding-top:0}
.gh-migrated {font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
.gh-migrated {margin:0}
.gh-migrated article, .gh-migrated aside, .gh-migrated details, .gh-migrated figcaption, .gh-migrated figure, .gh-migrated footer, .gh-migrated header, .gh-migrated hgroup, .gh-migrated main, .gh-migrated menu, .gh-migrated nav, .gh-migrated section, .gh-migrated summary {display:block}
.gh-migrated audio, .gh-migrated canvas, .gh-migrated progress, .gh-migrated video {display:inline-block;vertical-align:baseline}
.gh-migrated audio:not([controls]) {display:none;height:0}
.gh-migrated [hidden], .gh-migrated template {display:none}
.gh-migrated a {background-color:transparent}
.gh-migrated a:active, .gh-migrated a:hover {outline:0}
.gh-migrated abbr[title] {border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
.gh-migrated b, .gh-migrated strong {font-weight:bold}
.gh-migrated dfn {font-style:italic}
.gh-migrated h1 {font-size:2em;margin:0.67em 0}
.gh-migrated mark {background:#ff0;color:#000}
.gh-migrated small {font-size:80%}
.gh-migrated sub, .gh-migrated sup {font-size:75%;line-height:0;position:relative;vertical-align:baseline}
.gh-migrated sup {top:-0.5em}
.gh-migrated sub {bottom:-0.25em}
.gh-migrated img {border:0}
.gh-migrated svg:not(:root) {overflow:hidden}
.gh-migrated figure {margin:1em 40px}
.gh-migrated hr {-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}
.gh-migrated pre {overflow:auto}
.gh-migrated code, .gh-migrated kbd, .gh-migrated pre, .gh-migrated samp {font-family:monospace, monospace;font-size:1em}
.gh-migrated button, .gh-migrated input, .gh-migrated optgroup, .gh-migrated select, .gh-migrated textarea {color:inherit;font:inherit;margin:0}
.gh-migrated button {overflow:visible}
.gh-migrated button, .gh-migrated select {text-transform:none}
.gh-migrated button, .gh-migrated input[type="button"], .gh-migrated input[type="reset"], .gh-migrated input[type="submit"] {-webkit-appearance:button;cursor:pointer}
.gh-migrated button[disabled], .gh-migrated input[disabled] {cursor:default}
.gh-migrated button::-moz-focus-inner, .gh-migrated input::-moz-focus-inner {border:0;padding:0}
.gh-migrated input {line-height:normal}
.gh-migrated input[type="checkbox"], .gh-migrated input[type="radio"] {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}
.gh-migrated input[type="number"]::-webkit-inner-spin-button, .gh-migrated input[type="number"]::-webkit-outer-spin-button {height:auto}
.gh-migrated input[type="search"] {-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
.gh-migrated input[type="search"]::-webkit-search-cancel-button, .gh-migrated input[type="search"]::-webkit-search-decoration {-webkit-appearance:none}
.gh-migrated fieldset {border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}
.gh-migrated legend {border:0;padding:0}
.gh-migrated textarea {overflow:auto}
.gh-migrated optgroup {font-weight:bold}
.gh-migrated table {border-collapse:collapse;border-spacing:0}
.gh-migrated td, .gh-migrated th {padding:0}
@media print {
.gh-migrated *, .gh-migrated *:before, .gh-migrated *:after {color:#000 !important;text-shadow:none !important;background:transparent !important;-webkit-box-shadow:none !important;box-shadow:none !important}
.gh-migrated a, .gh-migrated a:visited {text-decoration:underline}
.gh-migrated a[href]:after {content:" (" attr(href) ")"}
.gh-migrated abbr[title]:after {content:" (" attr(title) ")"}
.gh-migrated a[href^="#"]:after, .gh-migrated a[href^="javascript:"]:after {content:""}
.gh-migrated pre, .gh-migrated blockquote {border:1px solid #999;page-break-inside:avoid}
.gh-migrated thead {display:table-header-group}
.gh-migrated tr, .gh-migrated img {page-break-inside:avoid}
.gh-migrated img {max-width:100% !important}
.gh-migrated p, .gh-migrated h2, .gh-migrated h3 {orphans:3;widows:3}
.gh-migrated h2, .gh-migrated h3 {page-break-after:avoid}
.gh-migrated .navbar {display:none}
.gh-migrated .btn>.caret, .gh-migrated .dropup>.btn>.caret {border-top-color:#000 !important}
.gh-migrated .label {border:1px solid #000}
.gh-migrated .table {border-collapse:collapse !important}
.gh-migrated .table td, .gh-migrated .table th {background-color:#fff !important}
.gh-migrated .table-bordered th, .gh-migrated .table-bordered td {border:1px solid #ddd !important}

}
.gh-migrated * {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.gh-migrated *:before, .gh-migrated *:after {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.gh-migrated {font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}
.gh-migrated {font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;}
.gh-migrated input, .gh-migrated button, .gh-migrated select, .gh-migrated textarea {font-family:inherit;font-size:inherit;line-height:inherit}
.gh-migrated a {color:#337ab7;text-decoration:none}
.gh-migrated a:hover, .gh-migrated a:focus {color:#23527c;text-decoration:underline}
.gh-migrated a:focus {outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
.gh-migrated figure {margin:0}
.gh-migrated img {vertical-align:middle}
.gh-migrated .img-responsive {display:block;max-width:100%;height:auto}
.gh-migrated .img-rounded {border-radius:6px}
.gh-migrated .img-thumbnail {padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}
.gh-migrated .img-circle {border-radius:50%}
.gh-migrated hr {margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}
.gh-migrated .sr-only {position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
.gh-migrated .sr-only-focusable:active, .gh-migrated .sr-only-focusable:focus {position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
.gh-migrated [role="button"] {cursor:pointer}
.gh-migrated h1, .gh-migrated h2, .gh-migrated h3, .gh-migrated h4, .gh-migrated h5, .gh-migrated h6, .gh-migrated .h1, .gh-migrated .h2, .gh-migrated .h3, .gh-migrated .h4, .gh-migrated .h5, .gh-migrated .h6 {font-family:inherit;font-weight:500;line-height:1.1;color:inherit}
.gh-migrated h1 small, .gh-migrated h2 small, .gh-migrated h3 small, .gh-migrated h4 small, .gh-migrated h5 small, .gh-migrated h6 small, .gh-migrated .h1 small, .gh-migrated .h2 small, .gh-migrated .h3 small, .gh-migrated .h4 small, .gh-migrated .h5 small, .gh-migrated .h6 small, .gh-migrated h1 .small, .gh-migrated h2 .small, .gh-migrated h3 .small, .gh-migrated h4 .small, .gh-migrated h5 .small, .gh-migrated h6 .small, .gh-migrated .h1 .small, .gh-migrated .h2 .small, .gh-migrated .h3 .small, .gh-migrated .h4 .small, .gh-migrated .h5 .small, .gh-migrated .h6 .small {font-weight:400;line-height:1;color:#777}
.gh-migrated h1, .gh-migrated .h1, .gh-migrated h2, .gh-migrated .h2, .gh-migrated h3, .gh-migrated .h3 {margin-top:20px;margin-bottom:10px}
.gh-migrated h1 small, .gh-migrated .h1 small, .gh-migrated h2 small, .gh-migrated .h2 small, .gh-migrated h3 small, .gh-migrated .h3 small, .gh-migrated h1 .small, .gh-migrated .h1 .small, .gh-migrated h2 .small, .gh-migrated .h2 .small, .gh-migrated h3 .small, .gh-migrated .h3 .small {font-size:65%}
.gh-migrated h4, .gh-migrated .h4, .gh-migrated h5, .gh-migrated .h5, .gh-migrated h6, .gh-migrated .h6 {margin-top:10px;margin-bottom:10px}
.gh-migrated h4 small, .gh-migrated .h4 small, .gh-migrated h5 small, .gh-migrated .h5 small, .gh-migrated h6 small, .gh-migrated .h6 small, .gh-migrated h4 .small, .gh-migrated .h4 .small, .gh-migrated h5 .small, .gh-migrated .h5 .small, .gh-migrated h6 .small, .gh-migrated .h6 .small {font-size:75%}
.gh-migrated h1, .gh-migrated .h1 {font-size:36px}
.gh-migrated h2, .gh-migrated .h2 {font-size:30px}
.gh-migrated h3, .gh-migrated .h3 {font-size:24px}
.gh-migrated h4, .gh-migrated .h4 {font-size:18px}
.gh-migrated h5, .gh-migrated .h5 {font-size:14px}
.gh-migrated h6, .gh-migrated .h6 {font-size:12px}
.gh-migrated p {margin:0 0 10px}
.gh-migrated .lead {margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}
@media (min-width:768px) {
.gh-migrated .lead {font-size:21px}

}
.gh-migrated small, .gh-migrated .small {font-size:85%}
.gh-migrated mark, .gh-migrated .mark {padding:.2em;background-color:#fcf8e3}
.gh-migrated .text-left {text-align:left}
.gh-migrated .text-right {text-align:right}
.gh-migrated .text-center {text-align:center}
.gh-migrated .text-justify {text-align:justify}
.gh-migrated .text-nowrap {white-space:nowrap}
.gh-migrated .text-lowercase {text-transform:lowercase}
.gh-migrated .text-uppercase {text-transform:uppercase}
.gh-migrated .text-capitalize {text-transform:capitalize}
.gh-migrated .text-muted {color:#777}
.gh-migrated .text-primary {color:#337ab7}
.gh-migrated a.text-primary:hover, .gh-migrated a.text-primary:focus {color:#286090}
.gh-migrated .text-success {color:#3c763d}
.gh-migrated a.text-success:hover, .gh-migrated a.text-success:focus {color:#2b542c}
.gh-migrated .text-info {color:#31708f}
.gh-migrated a.text-info:hover, .gh-migrated a.text-info:focus {color:#245269}
.gh-migrated .text-warning {color:#8a6d3b}
.gh-migrated a.text-warning:hover, .gh-migrated a.text-warning:focus {color:#66512c}
.gh-migrated .text-danger {color:#a94442}
.gh-migrated a.text-danger:hover, .gh-migrated a.text-danger:focus {color:#843534}
.gh-migrated .bg-primary {color:#fff;background-color:#337ab7}
.gh-migrated a.bg-primary:hover, .gh-migrated a.bg-primary:focus {background-color:#286090}
.gh-migrated .bg-success {background-color:#dff0d8}
.gh-migrated a.bg-success:hover, .gh-migrated a.bg-success:focus {background-color:#c1e2b3}
.gh-migrated .bg-info {background-color:#d9edf7}
.gh-migrated a.bg-info:hover, .gh-migrated a.bg-info:focus {background-color:#afd9ee}
.gh-migrated .bg-warning {background-color:#fcf8e3}
.gh-migrated a.bg-warning:hover, .gh-migrated a.bg-warning:focus {background-color:#f7ecb5}
.gh-migrated .bg-danger {background-color:#f2dede}
.gh-migrated a.bg-danger:hover, .gh-migrated a.bg-danger:focus {background-color:#e4b9b9}
.gh-migrated .page-header {padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}
.gh-migrated ul, .gh-migrated ol {margin-top:0;margin-bottom:10px}
.gh-migrated ul ul, .gh-migrated ol ul, .gh-migrated ul ol, .gh-migrated ol ol {margin-bottom:0}
.gh-migrated .list-unstyled {padding-left:0;list-style:none}
.gh-migrated .list-inline {padding-left:0;list-style:none;margin-left:-5px}
.gh-migrated .list-inline>li {display:inline-block;padding-right:5px;padding-left:5px}
.gh-migrated dl {margin-top:0;margin-bottom:20px}
.gh-migrated dt, .gh-migrated dd {line-height:1.42857143}
.gh-migrated dt {font-weight:700}
.gh-migrated dd {margin-left:0}
@media (min-width:768px) {
.gh-migrated .dl-horizontal dt {float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.gh-migrated .dl-horizontal dd {margin-left:180px}

}
.gh-migrated abbr[title], .gh-migrated abbr[data-original-title] {cursor:help}
.gh-migrated .initialism {font-size:90%;text-transform:uppercase}
.gh-migrated blockquote {padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}
.gh-migrated blockquote p:last-child, .gh-migrated blockquote ul:last-child, .gh-migrated blockquote ol:last-child {margin-bottom:0}
.gh-migrated blockquote footer, .gh-migrated blockquote small, .gh-migrated blockquote .small {display:block;font-size:80%;line-height:1.42857143;color:#777}
.gh-migrated blockquote footer:before, .gh-migrated blockquote small:before, .gh-migrated blockquote .small:before {content:"\2014 \00A0"}
.gh-migrated .blockquote-reverse, .gh-migrated blockquote.pull-right {padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}
.gh-migrated .blockquote-reverse footer:before, .gh-migrated blockquote.pull-right footer:before, .gh-migrated .blockquote-reverse small:before, .gh-migrated blockquote.pull-right small:before, .gh-migrated .blockquote-reverse .small:before, .gh-migrated blockquote.pull-right .small:before {content:""}
.gh-migrated .blockquote-reverse footer:after, .gh-migrated blockquote.pull-right footer:after, .gh-migrated .blockquote-reverse small:after, .gh-migrated blockquote.pull-right small:after, .gh-migrated .blockquote-reverse .small:after, .gh-migrated blockquote.pull-right .small:after {content:"\00A0 \2014"}
.gh-migrated address {margin-bottom:20px;font-style:normal;line-height:1.42857143}
.gh-migrated code, .gh-migrated kbd, .gh-migrated pre, .gh-migrated samp {font-family:Menlo,Monaco,Consolas,"Courier New",monospace}
.gh-migrated code {padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}
.gh-migrated kbd {padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}
.gh-migrated kbd kbd {padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}
.gh-migrated pre {display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}
.gh-migrated pre code {padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}
.gh-migrated .pre-scrollable {max-height:340px;overflow-y:scroll}
.gh-migrated .container {padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}
@media (min-width:768px) {
.gh-migrated .container {width:750px}

}
@media (min-width:992px) {
.gh-migrated .container {width:970px}

}
@media (min-width:1200px) {
.gh-migrated .container {width:1170px}

}
.gh-migrated .container-fluid {padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}
.gh-migrated .row {margin-right:-15px;margin-left:-15px}
.gh-migrated .row-no-gutters {margin-right:0;margin-left:0}
.gh-migrated .row-no-gutters [class*="col-"] {padding-right:0;padding-left:0}
.gh-migrated .col-xs-1, .gh-migrated .col-sm-1, .gh-migrated .col-md-1, .gh-migrated .col-lg-1, .gh-migrated .col-xs-2, .gh-migrated .col-sm-2, .gh-migrated .col-md-2, .gh-migrated .col-lg-2, .gh-migrated .col-xs-3, .gh-migrated .col-sm-3, .gh-migrated .col-md-3, .gh-migrated .col-lg-3, .gh-migrated .col-xs-4, .gh-migrated .col-sm-4, .gh-migrated .col-md-4, .gh-migrated .col-lg-4, .gh-migrated .col-xs-5, .gh-migrated .col-sm-5, .gh-migrated .col-md-5, .gh-migrated .col-lg-5, .gh-migrated .col-xs-6, .gh-migrated .col-sm-6, .gh-migrated .col-md-6, .gh-migrated .col-lg-6, .gh-migrated .col-xs-7, .gh-migrated .col-sm-7, .gh-migrated .col-md-7, .gh-migrated .col-lg-7, .gh-migrated .col-xs-8, .gh-migrated .col-sm-8, .gh-migrated .col-md-8, .gh-migrated .col-lg-8, .gh-migrated .col-xs-9, .gh-migrated .col-sm-9, .gh-migrated .col-md-9, .gh-migrated .col-lg-9, .gh-migrated .col-xs-10, .gh-migrated .col-sm-10, .gh-migrated .col-md-10, .gh-migrated .col-lg-10, .gh-migrated .col-xs-11, .gh-migrated .col-sm-11, .gh-migrated .col-md-11, .gh-migrated .col-lg-11, .gh-migrated .col-xs-12, .gh-migrated .col-sm-12, .gh-migrated .col-md-12, .gh-migrated .col-lg-12 {position:relative;min-height:1px;padding-right:15px;padding-left:15px}
.gh-migrated .col-xs-1, .gh-migrated .col-xs-2, .gh-migrated .col-xs-3, .gh-migrated .col-xs-4, .gh-migrated .col-xs-5, .gh-migrated .col-xs-6, .gh-migrated .col-xs-7, .gh-migrated .col-xs-8, .gh-migrated .col-xs-9, .gh-migrated .col-xs-10, .gh-migrated .col-xs-11, .gh-migrated .col-xs-12 {float:left}
.gh-migrated .col-xs-12 {width:100%}
.gh-migrated .col-xs-11 {width:91.66666667%}
.gh-migrated .col-xs-10 {width:83.33333333%}
.gh-migrated .col-xs-9 {width:75%}
.gh-migrated .col-xs-8 {width:66.66666667%}
.gh-migrated .col-xs-7 {width:58.33333333%}
.gh-migrated .col-xs-6 {width:50%}
.gh-migrated .col-xs-5 {width:41.66666667%}
.gh-migrated .col-xs-4 {width:33.33333333%}
.gh-migrated .col-xs-3 {width:25%}
.gh-migrated .col-xs-2 {width:16.66666667%}
.gh-migrated .col-xs-1 {width:8.33333333%}
.gh-migrated .col-xs-pull-12 {right:100%}
.gh-migrated .col-xs-pull-11 {right:91.66666667%}
.gh-migrated .col-xs-pull-10 {right:83.33333333%}
.gh-migrated .col-xs-pull-9 {right:75%}
.gh-migrated .col-xs-pull-8 {right:66.66666667%}
.gh-migrated .col-xs-pull-7 {right:58.33333333%}
.gh-migrated .col-xs-pull-6 {right:50%}
.gh-migrated .col-xs-pull-5 {right:41.66666667%}
.gh-migrated .col-xs-pull-4 {right:33.33333333%}
.gh-migrated .col-xs-pull-3 {right:25%}
.gh-migrated .col-xs-pull-2 {right:16.66666667%}
.gh-migrated .col-xs-pull-1 {right:8.33333333%}
.gh-migrated .col-xs-pull-0 {right:auto}
.gh-migrated .col-xs-push-12 {left:100%}
.gh-migrated .col-xs-push-11 {left:91.66666667%}
.gh-migrated .col-xs-push-10 {left:83.33333333%}
.gh-migrated .col-xs-push-9 {left:75%}
.gh-migrated .col-xs-push-8 {left:66.66666667%}
.gh-migrated .col-xs-push-7 {left:58.33333333%}
.gh-migrated .col-xs-push-6 {left:50%}
.gh-migrated .col-xs-push-5 {left:41.66666667%}
.gh-migrated .col-xs-push-4 {left:33.33333333%}
.gh-migrated .col-xs-push-3 {left:25%}
.gh-migrated .col-xs-push-2 {left:16.66666667%}
.gh-migrated .col-xs-push-1 {left:8.33333333%}
.gh-migrated .col-xs-push-0 {left:auto}
.gh-migrated .col-xs-offset-12 {margin-left:100%}
.gh-migrated .col-xs-offset-11 {margin-left:91.66666667%}
.gh-migrated .col-xs-offset-10 {margin-left:83.33333333%}
.gh-migrated .col-xs-offset-9 {margin-left:75%}
.gh-migrated .col-xs-offset-8 {margin-left:66.66666667%}
.gh-migrated .col-xs-offset-7 {margin-left:58.33333333%}
.gh-migrated .col-xs-offset-6 {margin-left:50%}
.gh-migrated .col-xs-offset-5 {margin-left:41.66666667%}
.gh-migrated .col-xs-offset-4 {margin-left:33.33333333%}
.gh-migrated .col-xs-offset-3 {margin-left:25%}
.gh-migrated .col-xs-offset-2 {margin-left:16.66666667%}
.gh-migrated .col-xs-offset-1 {margin-left:8.33333333%}
.gh-migrated .col-xs-offset-0 {margin-left:0}
@media (min-width:768px) {
.gh-migrated .col-sm-1, .gh-migrated .col-sm-2, .gh-migrated .col-sm-3, .gh-migrated .col-sm-4, .gh-migrated .col-sm-5, .gh-migrated .col-sm-6, .gh-migrated .col-sm-7, .gh-migrated .col-sm-8, .gh-migrated .col-sm-9, .gh-migrated .col-sm-10, .gh-migrated .col-sm-11, .gh-migrated .col-sm-12 {float:left}
.gh-migrated .col-sm-12 {width:100%}
.gh-migrated .col-sm-11 {width:91.66666667%}
.gh-migrated .col-sm-10 {width:83.33333333%}
.gh-migrated .col-sm-9 {width:75%}
.gh-migrated .col-sm-8 {width:66.66666667%}
.gh-migrated .col-sm-7 {width:58.33333333%}
.gh-migrated .col-sm-6 {width:50%}
.gh-migrated .col-sm-5 {width:41.66666667%}
.gh-migrated .col-sm-4 {width:33.33333333%}
.gh-migrated .col-sm-3 {width:25%}
.gh-migrated .col-sm-2 {width:16.66666667%}
.gh-migrated .col-sm-1 {width:8.33333333%}
.gh-migrated .col-sm-pull-12 {right:100%}
.gh-migrated .col-sm-pull-11 {right:91.66666667%}
.gh-migrated .col-sm-pull-10 {right:83.33333333%}
.gh-migrated .col-sm-pull-9 {right:75%}
.gh-migrated .col-sm-pull-8 {right:66.66666667%}
.gh-migrated .col-sm-pull-7 {right:58.33333333%}
.gh-migrated .col-sm-pull-6 {right:50%}
.gh-migrated .col-sm-pull-5 {right:41.66666667%}
.gh-migrated .col-sm-pull-4 {right:33.33333333%}
.gh-migrated .col-sm-pull-3 {right:25%}
.gh-migrated .col-sm-pull-2 {right:16.66666667%}
.gh-migrated .col-sm-pull-1 {right:8.33333333%}
.gh-migrated .col-sm-pull-0 {right:auto}
.gh-migrated .col-sm-push-12 {left:100%}
.gh-migrated .col-sm-push-11 {left:91.66666667%}
.gh-migrated .col-sm-push-10 {left:83.33333333%}
.gh-migrated .col-sm-push-9 {left:75%}
.gh-migrated .col-sm-push-8 {left:66.66666667%}
.gh-migrated .col-sm-push-7 {left:58.33333333%}
.gh-migrated .col-sm-push-6 {left:50%}
.gh-migrated .col-sm-push-5 {left:41.66666667%}
.gh-migrated .col-sm-push-4 {left:33.33333333%}
.gh-migrated .col-sm-push-3 {left:25%}
.gh-migrated .col-sm-push-2 {left:16.66666667%}
.gh-migrated .col-sm-push-1 {left:8.33333333%}
.gh-migrated .col-sm-push-0 {left:auto}
.gh-migrated .col-sm-offset-12 {margin-left:100%}
.gh-migrated .col-sm-offset-11 {margin-left:91.66666667%}
.gh-migrated .col-sm-offset-10 {margin-left:83.33333333%}
.gh-migrated .col-sm-offset-9 {margin-left:75%}
.gh-migrated .col-sm-offset-8 {margin-left:66.66666667%}
.gh-migrated .col-sm-offset-7 {margin-left:58.33333333%}
.gh-migrated .col-sm-offset-6 {margin-left:50%}
.gh-migrated .col-sm-offset-5 {margin-left:41.66666667%}
.gh-migrated .col-sm-offset-4 {margin-left:33.33333333%}
.gh-migrated .col-sm-offset-3 {margin-left:25%}
.gh-migrated .col-sm-offset-2 {margin-left:16.66666667%}
.gh-migrated .col-sm-offset-1 {margin-left:8.33333333%}
.gh-migrated .col-sm-offset-0 {margin-left:0}

}
@media (min-width:992px) {
.gh-migrated .col-md-1, .gh-migrated .col-md-2, .gh-migrated .col-md-3, .gh-migrated .col-md-4, .gh-migrated .col-md-5, .gh-migrated .col-md-6, .gh-migrated .col-md-7, .gh-migrated .col-md-8, .gh-migrated .col-md-9, .gh-migrated .col-md-10, .gh-migrated .col-md-11, .gh-migrated .col-md-12 {float:left}
.gh-migrated .col-md-12 {width:100%}
.gh-migrated .col-md-11 {width:91.66666667%}
.gh-migrated .col-md-10 {width:83.33333333%}
.gh-migrated .col-md-9 {width:75%}
.gh-migrated .col-md-8 {width:66.66666667%}
.gh-migrated .col-md-7 {width:58.33333333%}
.gh-migrated .col-md-6 {width:50%}
.gh-migrated .col-md-5 {width:41.66666667%}
.gh-migrated .col-md-4 {width:33.33333333%}
.gh-migrated .col-md-3 {width:25%}
.gh-migrated .col-md-2 {width:16.66666667%}
.gh-migrated .col-md-1 {width:8.33333333%}
.gh-migrated .col-md-pull-12 {right:100%}
.gh-migrated .col-md-pull-11 {right:91.66666667%}
.gh-migrated .col-md-pull-10 {right:83.33333333%}
.gh-migrated .col-md-pull-9 {right:75%}
.gh-migrated .col-md-pull-8 {right:66.66666667%}
.gh-migrated .col-md-pull-7 {right:58.33333333%}
.gh-migrated .col-md-pull-6 {right:50%}
.gh-migrated .col-md-pull-5 {right:41.66666667%}
.gh-migrated .col-md-pull-4 {right:33.33333333%}
.gh-migrated .col-md-pull-3 {right:25%}
.gh-migrated .col-md-pull-2 {right:16.66666667%}
.gh-migrated .col-md-pull-1 {right:8.33333333%}
.gh-migrated .col-md-pull-0 {right:auto}
.gh-migrated .col-md-push-12 {left:100%}
.gh-migrated .col-md-push-11 {left:91.66666667%}
.gh-migrated .col-md-push-10 {left:83.33333333%}
.gh-migrated .col-md-push-9 {left:75%}
.gh-migrated .col-md-push-8 {left:66.66666667%}
.gh-migrated .col-md-push-7 {left:58.33333333%}
.gh-migrated .col-md-push-6 {left:50%}
.gh-migrated .col-md-push-5 {left:41.66666667%}
.gh-migrated .col-md-push-4 {left:33.33333333%}
.gh-migrated .col-md-push-3 {left:25%}
.gh-migrated .col-md-push-2 {left:16.66666667%}
.gh-migrated .col-md-push-1 {left:8.33333333%}
.gh-migrated .col-md-push-0 {left:auto}
.gh-migrated .col-md-offset-12 {margin-left:100%}
.gh-migrated .col-md-offset-11 {margin-left:91.66666667%}
.gh-migrated .col-md-offset-10 {margin-left:83.33333333%}
.gh-migrated .col-md-offset-9 {margin-left:75%}
.gh-migrated .col-md-offset-8 {margin-left:66.66666667%}
.gh-migrated .col-md-offset-7 {margin-left:58.33333333%}
.gh-migrated .col-md-offset-6 {margin-left:50%}
.gh-migrated .col-md-offset-5 {margin-left:41.66666667%}
.gh-migrated .col-md-offset-4 {margin-left:33.33333333%}
.gh-migrated .col-md-offset-3 {margin-left:25%}
.gh-migrated .col-md-offset-2 {margin-left:16.66666667%}
.gh-migrated .col-md-offset-1 {margin-left:8.33333333%}
.gh-migrated .col-md-offset-0 {margin-left:0}

}
@media (min-width:1200px) {
.gh-migrated .col-lg-1, .gh-migrated .col-lg-2, .gh-migrated .col-lg-3, .gh-migrated .col-lg-4, .gh-migrated .col-lg-5, .gh-migrated .col-lg-6, .gh-migrated .col-lg-7, .gh-migrated .col-lg-8, .gh-migrated .col-lg-9, .gh-migrated .col-lg-10, .gh-migrated .col-lg-11, .gh-migrated .col-lg-12 {float:left}
.gh-migrated .col-lg-12 {width:100%}
.gh-migrated .col-lg-11 {width:91.66666667%}
.gh-migrated .col-lg-10 {width:83.33333333%}
.gh-migrated .col-lg-9 {width:75%}
.gh-migrated .col-lg-8 {width:66.66666667%}
.gh-migrated .col-lg-7 {width:58.33333333%}
.gh-migrated .col-lg-6 {width:50%}
.gh-migrated .col-lg-5 {width:41.66666667%}
.gh-migrated .col-lg-4 {width:33.33333333%}
.gh-migrated .col-lg-3 {width:25%}
.gh-migrated .col-lg-2 {width:16.66666667%}
.gh-migrated .col-lg-1 {width:8.33333333%}
.gh-migrated .col-lg-pull-12 {right:100%}
.gh-migrated .col-lg-pull-11 {right:91.66666667%}
.gh-migrated .col-lg-pull-10 {right:83.33333333%}
.gh-migrated .col-lg-pull-9 {right:75%}
.gh-migrated .col-lg-pull-8 {right:66.66666667%}
.gh-migrated .col-lg-pull-7 {right:58.33333333%}
.gh-migrated .col-lg-pull-6 {right:50%}
.gh-migrated .col-lg-pull-5 {right:41.66666667%}
.gh-migrated .col-lg-pull-4 {right:33.33333333%}
.gh-migrated .col-lg-pull-3 {right:25%}
.gh-migrated .col-lg-pull-2 {right:16.66666667%}
.gh-migrated .col-lg-pull-1 {right:8.33333333%}
.gh-migrated .col-lg-pull-0 {right:auto}
.gh-migrated .col-lg-push-12 {left:100%}
.gh-migrated .col-lg-push-11 {left:91.66666667%}
.gh-migrated .col-lg-push-10 {left:83.33333333%}
.gh-migrated .col-lg-push-9 {left:75%}
.gh-migrated .col-lg-push-8 {left:66.66666667%}
.gh-migrated .col-lg-push-7 {left:58.33333333%}
.gh-migrated .col-lg-push-6 {left:50%}
.gh-migrated .col-lg-push-5 {left:41.66666667%}
.gh-migrated .col-lg-push-4 {left:33.33333333%}
.gh-migrated .col-lg-push-3 {left:25%}
.gh-migrated .col-lg-push-2 {left:16.66666667%}
.gh-migrated .col-lg-push-1 {left:8.33333333%}
.gh-migrated .col-lg-push-0 {left:auto}
.gh-migrated .col-lg-offset-12 {margin-left:100%}
.gh-migrated .col-lg-offset-11 {margin-left:91.66666667%}
.gh-migrated .col-lg-offset-10 {margin-left:83.33333333%}
.gh-migrated .col-lg-offset-9 {margin-left:75%}
.gh-migrated .col-lg-offset-8 {margin-left:66.66666667%}
.gh-migrated .col-lg-offset-7 {margin-left:58.33333333%}
.gh-migrated .col-lg-offset-6 {margin-left:50%}
.gh-migrated .col-lg-offset-5 {margin-left:41.66666667%}
.gh-migrated .col-lg-offset-4 {margin-left:33.33333333%}
.gh-migrated .col-lg-offset-3 {margin-left:25%}
.gh-migrated .col-lg-offset-2 {margin-left:16.66666667%}
.gh-migrated .col-lg-offset-1 {margin-left:8.33333333%}
.gh-migrated .col-lg-offset-0 {margin-left:0}

}
.gh-migrated table {background-color:transparent}
.gh-migrated table col[class*="col-"] {position:static;display:table-column;float:none}
.gh-migrated table td[class*="col-"], .gh-migrated table th[class*="col-"] {position:static;display:table-cell;float:none}
.gh-migrated caption {padding-top:8px;padding-bottom:8px;color:#777;text-align:left}
.gh-migrated th {text-align:left}
.gh-migrated .table {width:100%;max-width:100%;margin-bottom:20px}
.gh-migrated .table>thead>tr>th, .gh-migrated .table>tbody>tr>th, .gh-migrated .table>tfoot>tr>th, .gh-migrated .table>thead>tr>td, .gh-migrated .table>tbody>tr>td, .gh-migrated .table>tfoot>tr>td {padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}
.gh-migrated .table>thead>tr>th {vertical-align:bottom;border-bottom:2px solid #ddd}
.gh-migrated .table>caption+thead>tr:first-child>th, .gh-migrated .table>colgroup+thead>tr:first-child>th, .gh-migrated .table>thead:first-child>tr:first-child>th, .gh-migrated .table>caption+thead>tr:first-child>td, .gh-migrated .table>colgroup+thead>tr:first-child>td, .gh-migrated .table>thead:first-child>tr:first-child>td {border-top:0}
.gh-migrated .table>tbody+tbody {border-top:2px solid #ddd}
.gh-migrated .table .table {background-color:#fff}
.gh-migrated .table-condensed>thead>tr>th, .gh-migrated .table-condensed>tbody>tr>th, .gh-migrated .table-condensed>tfoot>tr>th, .gh-migrated .table-condensed>thead>tr>td, .gh-migrated .table-condensed>tbody>tr>td, .gh-migrated .table-condensed>tfoot>tr>td {padding:5px}
.gh-migrated .table-bordered {border:1px solid #ddd}
.gh-migrated .table-bordered>thead>tr>th, .gh-migrated .table-bordered>tbody>tr>th, .gh-migrated .table-bordered>tfoot>tr>th, .gh-migrated .table-bordered>thead>tr>td, .gh-migrated .table-bordered>tbody>tr>td, .gh-migrated .table-bordered>tfoot>tr>td {border:1px solid #ddd}
.gh-migrated .table-bordered>thead>tr>th, .gh-migrated .table-bordered>thead>tr>td {border-bottom-width:2px}
.gh-migrated .table-striped>tbody>tr:nth-of-type(odd) {background-color:#f9f9f9}
.gh-migrated .table-hover>tbody>tr:hover {background-color:#f5f5f5}
.gh-migrated .table>thead>tr>td.active, .gh-migrated .table>tbody>tr>td.active, .gh-migrated .table>tfoot>tr>td.active, .gh-migrated .table>thead>tr>th.active, .gh-migrated .table>tbody>tr>th.active, .gh-migrated .table>tfoot>tr>th.active, .gh-migrated .table>thead>tr.active>td, .gh-migrated .table>tbody>tr.active>td, .gh-migrated .table>tfoot>tr.active>td, .gh-migrated .table>thead>tr.active>th, .gh-migrated .table>tbody>tr.active>th, .gh-migrated .table>tfoot>tr.active>th {background-color:#f5f5f5}
.gh-migrated .table-hover>tbody>tr>td.active:hover, .gh-migrated .table-hover>tbody>tr>th.active:hover, .gh-migrated .table-hover>tbody>tr.active:hover>td, .gh-migrated .table-hover>tbody>tr:hover>.active, .gh-migrated .table-hover>tbody>tr.active:hover>th {background-color:#e8e8e8}
.gh-migrated .table>thead>tr>td.success, .gh-migrated .table>tbody>tr>td.success, .gh-migrated .table>tfoot>tr>td.success, .gh-migrated .table>thead>tr>th.success, .gh-migrated .table>tbody>tr>th.success, .gh-migrated .table>tfoot>tr>th.success, .gh-migrated .table>thead>tr.success>td, .gh-migrated .table>tbody>tr.success>td, .gh-migrated .table>tfoot>tr.success>td, .gh-migrated .table>thead>tr.success>th, .gh-migrated .table>tbody>tr.success>th, .gh-migrated .table>tfoot>tr.success>th {background-color:#dff0d8}
.gh-migrated .table-hover>tbody>tr>td.success:hover, .gh-migrated .table-hover>tbody>tr>th.success:hover, .gh-migrated .table-hover>tbody>tr.success:hover>td, .gh-migrated .table-hover>tbody>tr:hover>.success, .gh-migrated .table-hover>tbody>tr.success:hover>th {background-color:#d0e9c6}
.gh-migrated .table>thead>tr>td.info, .gh-migrated .table>tbody>tr>td.info, .gh-migrated .table>tfoot>tr>td.info, .gh-migrated .table>thead>tr>th.info, .gh-migrated .table>tbody>tr>th.info, .gh-migrated .table>tfoot>tr>th.info, .gh-migrated .table>thead>tr.info>td, .gh-migrated .table>tbody>tr.info>td, .gh-migrated .table>tfoot>tr.info>td, .gh-migrated .table>thead>tr.info>th, .gh-migrated .table>tbody>tr.info>th, .gh-migrated .table>tfoot>tr.info>th {background-color:#d9edf7}
.gh-migrated .table-hover>tbody>tr>td.info:hover, .gh-migrated .table-hover>tbody>tr>th.info:hover, .gh-migrated .table-hover>tbody>tr.info:hover>td, .gh-migrated .table-hover>tbody>tr:hover>.info, .gh-migrated .table-hover>tbody>tr.info:hover>th {background-color:#c4e3f3}
.gh-migrated .table>thead>tr>td.warning, .gh-migrated .table>tbody>tr>td.warning, .gh-migrated .table>tfoot>tr>td.warning, .gh-migrated .table>thead>tr>th.warning, .gh-migrated .table>tbody>tr>th.warning, .gh-migrated .table>tfoot>tr>th.warning, .gh-migrated .table>thead>tr.warning>td, .gh-migrated .table>tbody>tr.warning>td, .gh-migrated .table>tfoot>tr.warning>td, .gh-migrated .table>thead>tr.warning>th, .gh-migrated .table>tbody>tr.warning>th, .gh-migrated .table>tfoot>tr.warning>th {background-color:#fcf8e3}
.gh-migrated .table-hover>tbody>tr>td.warning:hover, .gh-migrated .table-hover>tbody>tr>th.warning:hover, .gh-migrated .table-hover>tbody>tr.warning:hover>td, .gh-migrated .table-hover>tbody>tr:hover>.warning, .gh-migrated .table-hover>tbody>tr.warning:hover>th {background-color:#faf2cc}
.gh-migrated .table>thead>tr>td.danger, .gh-migrated .table>tbody>tr>td.danger, .gh-migrated .table>tfoot>tr>td.danger, .gh-migrated .table>thead>tr>th.danger, .gh-migrated .table>tbody>tr>th.danger, .gh-migrated .table>tfoot>tr>th.danger, .gh-migrated .table>thead>tr.danger>td, .gh-migrated .table>tbody>tr.danger>td, .gh-migrated .table>tfoot>tr.danger>td, .gh-migrated .table>thead>tr.danger>th, .gh-migrated .table>tbody>tr.danger>th, .gh-migrated .table>tfoot>tr.danger>th {background-color:#f2dede}
.gh-migrated .table-hover>tbody>tr>td.danger:hover, .gh-migrated .table-hover>tbody>tr>th.danger:hover, .gh-migrated .table-hover>tbody>tr.danger:hover>td, .gh-migrated .table-hover>tbody>tr:hover>.danger, .gh-migrated .table-hover>tbody>tr.danger:hover>th {background-color:#ebcccc}
.gh-migrated .table-responsive {min-height:.01%;overflow-x:auto}
@media screen and (max-width:767px) {
.gh-migrated .table-responsive {width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}
.gh-migrated .table-responsive>.table {margin-bottom:0}
.gh-migrated .table-responsive>.table>thead>tr>th, .gh-migrated .table-responsive>.table>tbody>tr>th, .gh-migrated .table-responsive>.table>tfoot>tr>th, .gh-migrated .table-responsive>.table>thead>tr>td, .gh-migrated .table-responsive>.table>tbody>tr>td, .gh-migrated .table-responsive>.table>tfoot>tr>td {white-space:nowrap}
.gh-migrated .table-responsive>.table-bordered {border:0}
.gh-migrated .table-responsive>.table-bordered>thead>tr>th:first-child, .gh-migrated .table-responsive>.table-bordered>tbody>tr>th:first-child, .gh-migrated .table-responsive>.table-bordered>tfoot>tr>th:first-child, .gh-migrated .table-responsive>.table-bordered>thead>tr>td:first-child, .gh-migrated .table-responsive>.table-bordered>tbody>tr>td:first-child, .gh-migrated .table-responsive>.table-bordered>tfoot>tr>td:first-child {border-left:0}
.gh-migrated .table-responsive>.table-bordered>thead>tr>th:last-child, .gh-migrated .table-responsive>.table-bordered>tbody>tr>th:last-child, .gh-migrated .table-responsive>.table-bordered>tfoot>tr>th:last-child, .gh-migrated .table-responsive>.table-bordered>thead>tr>td:last-child, .gh-migrated .table-responsive>.table-bordered>tbody>tr>td:last-child, .gh-migrated .table-responsive>.table-bordered>tfoot>tr>td:last-child {border-right:0}
.gh-migrated .table-responsive>.table-bordered>tbody>tr:last-child>th, .gh-migrated .table-responsive>.table-bordered>tfoot>tr:last-child>th, .gh-migrated .table-responsive>.table-bordered>tbody>tr:last-child>td, .gh-migrated .table-responsive>.table-bordered>tfoot>tr:last-child>td {border-bottom:0}

}
.gh-migrated fieldset {min-width:0;padding:0;margin:0;border:0}
.gh-migrated legend {display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}
.gh-migrated label {display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}
.gh-migrated input[type="search"] {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;appearance:none}
.gh-migrated input[type="radio"], .gh-migrated input[type="checkbox"] {margin:4px 0 0;margin-top:1px \9;line-height:normal}
.gh-migrated input[type="radio"][disabled], .gh-migrated input[type="checkbox"][disabled], .gh-migrated input[type="radio"].disabled, .gh-migrated input[type="checkbox"].disabled, .gh-migrated fieldset[disabled] input[type="radio"], .gh-migrated fieldset[disabled] input[type="checkbox"] {cursor:not-allowed}
.gh-migrated input[type="file"] {display:block}
.gh-migrated input[type="range"] {display:block;width:100%}
.gh-migrated select[multiple], .gh-migrated select[size] {height:auto}
.gh-migrated input[type="file"]:focus, .gh-migrated input[type="radio"]:focus, .gh-migrated input[type="checkbox"]:focus {outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
.gh-migrated output {display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}
.gh-migrated .form-control {display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}
.gh-migrated .form-control:focus {border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6)}
.gh-migrated .form-control::-moz-placeholder {color:#999;opacity:1}
.gh-migrated .form-control:-ms-input-placeholder {color:#999}
.gh-migrated .form-control::-webkit-input-placeholder {color:#999}
.gh-migrated .form-control::-ms-expand {background-color:transparent;border:0}
.gh-migrated .form-control[disabled], .gh-migrated .form-control[readonly], .gh-migrated fieldset[disabled] .form-control {background-color:#eee;opacity:1}
.gh-migrated .form-control[disabled], .gh-migrated fieldset[disabled] .form-control {cursor:not-allowed}
.gh-migrated textarea.form-control {height:auto}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.gh-migrated input[type="date"].form-control, .gh-migrated input[type="time"].form-control, .gh-migrated input[type="datetime-local"].form-control, .gh-migrated input[type="month"].form-control {line-height:34px}
.gh-migrated input[type="date"].input-sm, .gh-migrated input[type="time"].input-sm, .gh-migrated input[type="datetime-local"].input-sm, .gh-migrated input[type="month"].input-sm, .gh-migrated .input-group-sm input[type="date"], .gh-migrated .input-group-sm input[type="time"], .gh-migrated .input-group-sm input[type="datetime-local"], .gh-migrated .input-group-sm input[type="month"] {line-height:30px}
.gh-migrated input[type="date"].input-lg, .gh-migrated input[type="time"].input-lg, .gh-migrated input[type="datetime-local"].input-lg, .gh-migrated input[type="month"].input-lg, .gh-migrated .input-group-lg input[type="date"], .gh-migrated .input-group-lg input[type="time"], .gh-migrated .input-group-lg input[type="datetime-local"], .gh-migrated .input-group-lg input[type="month"] {line-height:46px}

}
.gh-migrated .form-group {margin-bottom:15px}
.gh-migrated .radio, .gh-migrated .checkbox {position:relative;display:block;margin-top:10px;margin-bottom:10px}
.gh-migrated .radio.disabled label, .gh-migrated .checkbox.disabled label, .gh-migrated fieldset[disabled] .radio label, .gh-migrated fieldset[disabled] .checkbox label {cursor:not-allowed}
.gh-migrated .radio label, .gh-migrated .checkbox label {min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}
.gh-migrated .radio input[type="radio"], .gh-migrated .radio-inline input[type="radio"], .gh-migrated .checkbox input[type="checkbox"], .gh-migrated .checkbox-inline input[type="checkbox"] {position:absolute;margin-top:4px \9;margin-left:-20px}
.gh-migrated .radio+.radio, .gh-migrated .checkbox+.checkbox {margin-top:-5px}
.gh-migrated .radio-inline, .gh-migrated .checkbox-inline {position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}
.gh-migrated .radio-inline.disabled, .gh-migrated .checkbox-inline.disabled, .gh-migrated fieldset[disabled] .radio-inline, .gh-migrated fieldset[disabled] .checkbox-inline {cursor:not-allowed}
.gh-migrated .radio-inline+.radio-inline, .gh-migrated .checkbox-inline+.checkbox-inline {margin-top:0;margin-left:10px}
.gh-migrated .form-control-static {min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}
.gh-migrated .form-control-static.input-lg, .gh-migrated .form-control-static.input-sm {padding-right:0;padding-left:0}
.gh-migrated .input-sm {height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
.gh-migrated select.input-sm {height:30px;line-height:30px}
.gh-migrated textarea.input-sm, .gh-migrated select[multiple].input-sm {height:auto}
.gh-migrated .form-group-sm .form-control {height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
.gh-migrated .form-group-sm select.form-control {height:30px;line-height:30px}
.gh-migrated .form-group-sm textarea.form-control, .gh-migrated .form-group-sm select[multiple].form-control {height:auto}
.gh-migrated .form-group-sm .form-control-static {height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}
.gh-migrated .input-lg {height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
.gh-migrated select.input-lg {height:46px;line-height:46px}
.gh-migrated textarea.input-lg, .gh-migrated select[multiple].input-lg {height:auto}
.gh-migrated .form-group-lg .form-control {height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
.gh-migrated .form-group-lg select.form-control {height:46px;line-height:46px}
.gh-migrated .form-group-lg textarea.form-control, .gh-migrated .form-group-lg select[multiple].form-control {height:auto}
.gh-migrated .form-group-lg .form-control-static {height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}
.gh-migrated .has-feedback {position:relative}
.gh-migrated .has-feedback .form-control {padding-right:42.5px}
.gh-migrated .form-control-feedback {position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}
.gh-migrated .input-lg+.form-control-feedback, .gh-migrated .input-group-lg+.form-control-feedback, .gh-migrated .form-group-lg .form-control+.form-control-feedback {width:46px;height:46px;line-height:46px}
.gh-migrated .input-sm+.form-control-feedback, .gh-migrated .input-group-sm+.form-control-feedback, .gh-migrated .form-group-sm .form-control+.form-control-feedback {width:30px;height:30px;line-height:30px}
.gh-migrated .has-success .help-block, .gh-migrated .has-success .control-label, .gh-migrated .has-success .radio, .gh-migrated .has-success .checkbox, .gh-migrated .has-success .radio-inline, .gh-migrated .has-success .checkbox-inline, .gh-migrated .has-success.radio label, .gh-migrated .has-success.checkbox label, .gh-migrated .has-success.radio-inline label, .gh-migrated .has-success.checkbox-inline label {color:#3c763d}
.gh-migrated .has-success .form-control {border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}
.gh-migrated .has-success .form-control:focus {border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}
.gh-migrated .has-success .input-group-addon {color:#3c763d;background-color:#dff0d8;border-color:#3c763d}
.gh-migrated .has-success .form-control-feedback {color:#3c763d}
.gh-migrated .has-warning .help-block, .gh-migrated .has-warning .control-label, .gh-migrated .has-warning .radio, .gh-migrated .has-warning .checkbox, .gh-migrated .has-warning .radio-inline, .gh-migrated .has-warning .checkbox-inline, .gh-migrated .has-warning.radio label, .gh-migrated .has-warning.checkbox label, .gh-migrated .has-warning.radio-inline label, .gh-migrated .has-warning.checkbox-inline label {color:#8a6d3b}
.gh-migrated .has-warning .form-control {border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}
.gh-migrated .has-warning .form-control:focus {border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}
.gh-migrated .has-warning .input-group-addon {color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}
.gh-migrated .has-warning .form-control-feedback {color:#8a6d3b}
.gh-migrated .has-error .help-block, .gh-migrated .has-error .control-label, .gh-migrated .has-error .radio, .gh-migrated .has-error .checkbox, .gh-migrated .has-error .radio-inline, .gh-migrated .has-error .checkbox-inline, .gh-migrated .has-error.radio label, .gh-migrated .has-error.checkbox label, .gh-migrated .has-error.radio-inline label, .gh-migrated .has-error.checkbox-inline label {color:#a94442}
.gh-migrated .has-error .form-control {border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}
.gh-migrated .has-error .form-control:focus {border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}
.gh-migrated .has-error .input-group-addon {color:#a94442;background-color:#f2dede;border-color:#a94442}
.gh-migrated .has-error .form-control-feedback {color:#a94442}
.gh-migrated .has-feedback label~.form-control-feedback {top:25px}
.gh-migrated .has-feedback label.sr-only~.form-control-feedback {top:0}
.gh-migrated .help-block {display:block;margin-top:5px;margin-bottom:10px;color:#737373}
@media (min-width:768px) {
.gh-migrated .form-inline .form-group {display:inline-block;margin-bottom:0;vertical-align:middle}
.gh-migrated .form-inline .form-control {display:inline-block;width:auto;vertical-align:middle}
.gh-migrated .form-inline .form-control-static {display:inline-block}
.gh-migrated .form-inline .input-group {display:inline-table;vertical-align:middle}
.gh-migrated .form-inline .input-group .input-group-addon, .gh-migrated .form-inline .input-group .input-group-btn, .gh-migrated .form-inline .input-group .form-control {width:auto}
.gh-migrated .form-inline .input-group>.form-control {width:100%}
.gh-migrated .form-inline .control-label {margin-bottom:0;vertical-align:middle}
.gh-migrated .form-inline .radio, .gh-migrated .form-inline .checkbox {display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}
.gh-migrated .form-inline .radio label, .gh-migrated .form-inline .checkbox label {padding-left:0}
.gh-migrated .form-inline .radio input[type="radio"], .gh-migrated .form-inline .checkbox input[type="checkbox"] {position:relative;margin-left:0}
.gh-migrated .form-inline .has-feedback .form-control-feedback {top:0}

}
.gh-migrated .form-horizontal .radio, .gh-migrated .form-horizontal .checkbox, .gh-migrated .form-horizontal .radio-inline, .gh-migrated .form-horizontal .checkbox-inline {padding-top:7px;margin-top:0;margin-bottom:0}
.gh-migrated .form-horizontal .radio, .gh-migrated .form-horizontal .checkbox {min-height:27px}
.gh-migrated .form-horizontal .form-group {margin-right:-15px;margin-left:-15px}
@media (min-width:768px) {
.gh-migrated .form-horizontal .control-label {padding-top:7px;margin-bottom:0;text-align:right}

}
.gh-migrated .form-horizontal .has-feedback .form-control-feedback {right:15px}
@media (min-width:768px) {
.gh-migrated .form-horizontal .form-group-lg .control-label {padding-top:11px;font-size:18px}

}
@media (min-width:768px) {
.gh-migrated .form-horizontal .form-group-sm .control-label {padding-top:6px;font-size:12px}

}
.gh-migrated .nav {padding-left:0;margin-bottom:0;list-style:none}
.gh-migrated .nav>li {position:relative;display:block}
.gh-migrated .nav>li>a {position:relative;display:block;padding:10px 15px}
.gh-migrated .nav>li>a:hover, .gh-migrated .nav>li>a:focus {text-decoration:none;background-color:#eee}
.gh-migrated .nav>li.disabled>a {color:#777}
.gh-migrated .nav>li.disabled>a:hover, .gh-migrated .nav>li.disabled>a:focus {color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}
.gh-migrated .nav .open>a, .gh-migrated .nav .open>a:hover, .gh-migrated .nav .open>a:focus {background-color:#eee;border-color:#337ab7}
.gh-migrated .nav .nav-divider {height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}
.gh-migrated .nav>li>a>img {max-width:none}
.gh-migrated .nav-tabs {border-bottom:1px solid #ddd}
.gh-migrated .nav-tabs>li {float:left;margin-bottom:-1px}
.gh-migrated .nav-tabs>li>a {margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}
.gh-migrated .nav-tabs>li>a:hover {border-color:#eee #eee #ddd}
.gh-migrated .nav-tabs>li.active>a, .gh-migrated .nav-tabs>li.active>a:hover, .gh-migrated .nav-tabs>li.active>a:focus {color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}
.gh-migrated .nav-tabs.nav-justified {width:100%;border-bottom:0}
.gh-migrated .nav-tabs.nav-justified>li {float:none}
.gh-migrated .nav-tabs.nav-justified>li>a {margin-bottom:5px;text-align:center}
.gh-migrated .nav-tabs.nav-justified>.dropdown .dropdown-menu {top:auto;left:auto}
@media (min-width:768px) {
.gh-migrated .nav-tabs.nav-justified>li {display:table-cell;width:1%}
.gh-migrated .nav-tabs.nav-justified>li>a {margin-bottom:0}

}
.gh-migrated .nav-tabs.nav-justified>li>a {margin-right:0;border-radius:4px}
.gh-migrated .nav-tabs.nav-justified>.active>a, .gh-migrated .nav-tabs.nav-justified>.active>a:hover, .gh-migrated .nav-tabs.nav-justified>.active>a:focus {border:1px solid #ddd}
@media (min-width:768px) {
.gh-migrated .nav-tabs.nav-justified>li>a {border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}
.gh-migrated .nav-tabs.nav-justified>.active>a, .gh-migrated .nav-tabs.nav-justified>.active>a:hover, .gh-migrated .nav-tabs.nav-justified>.active>a:focus {border-bottom-color:#fff}

}
.gh-migrated .nav-pills>li {float:left}
.gh-migrated .nav-pills>li>a {border-radius:4px}
.gh-migrated .nav-pills>li+li {margin-left:2px}
.gh-migrated .nav-pills>li.active>a, .gh-migrated .nav-pills>li.active>a:hover, .gh-migrated .nav-pills>li.active>a:focus {color:#fff;background-color:#337ab7}
.gh-migrated .nav-stacked>li {float:none}
.gh-migrated .nav-stacked>li+li {margin-top:2px;margin-left:0}
.gh-migrated .nav-justified {width:100%}
.gh-migrated .nav-justified>li {float:none}
.gh-migrated .nav-justified>li>a {margin-bottom:5px;text-align:center}
.gh-migrated .nav-justified>.dropdown .dropdown-menu {top:auto;left:auto}
@media (min-width:768px) {
.gh-migrated .nav-justified>li {display:table-cell;width:1%}
.gh-migrated .nav-justified>li>a {margin-bottom:0}

}
.gh-migrated .nav-tabs-justified {border-bottom:0}
.gh-migrated .nav-tabs-justified>li>a {margin-right:0;border-radius:4px}
.gh-migrated .nav-tabs-justified>.active>a, .gh-migrated .nav-tabs-justified>.active>a:hover, .gh-migrated .nav-tabs-justified>.active>a:focus {border:1px solid #ddd}
@media (min-width:768px) {
.gh-migrated .nav-tabs-justified>li>a {border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}
.gh-migrated .nav-tabs-justified>.active>a, .gh-migrated .nav-tabs-justified>.active>a:hover, .gh-migrated .nav-tabs-justified>.active>a:focus {border-bottom-color:#fff}

}
.gh-migrated .tab-content>.tab-pane {display:none}
.gh-migrated .tab-content>.active {display:block}
.gh-migrated .nav-tabs .dropdown-menu {margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}
.gh-migrated .navbar {position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}
@media (min-width:768px) {
.gh-migrated .navbar {border-radius:4px}

}
@media (min-width:768px) {
.gh-migrated .navbar-header {float:left}

}
.gh-migrated .navbar-collapse {padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}
.gh-migrated .navbar-collapse.in {overflow-y:auto}
@media (min-width:768px) {
.gh-migrated .navbar-collapse {width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}
.gh-migrated .navbar-collapse.collapse {display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}
.gh-migrated .navbar-collapse.in {overflow-y:visible}
.gh-migrated .navbar-fixed-top .navbar-collapse, .gh-migrated .navbar-static-top .navbar-collapse, .gh-migrated .navbar-fixed-bottom .navbar-collapse {padding-right:0;padding-left:0}

}
.gh-migrated .navbar-fixed-top, .gh-migrated .navbar-fixed-bottom {position:fixed;right:0;left:0;z-index:1030}
.gh-migrated .navbar-fixed-top .navbar-collapse, .gh-migrated .navbar-fixed-bottom .navbar-collapse {max-height:340px}
@media (max-device-width:480px) and (orientation:landscape) {
.gh-migrated .navbar-fixed-top .navbar-collapse, .gh-migrated .navbar-fixed-bottom .navbar-collapse {max-height:200px}

}
@media (min-width:768px) {
.gh-migrated .navbar-fixed-top, .gh-migrated .navbar-fixed-bottom {border-radius:0}

}
.gh-migrated .navbar-fixed-top {top:0;border-width:0 0 1px}
.gh-migrated .navbar-fixed-bottom {bottom:0;margin-bottom:0;border-width:1px 0 0}
.gh-migrated .container>.navbar-header, .gh-migrated .container-fluid>.navbar-header, .gh-migrated .container>.navbar-collapse, .gh-migrated .container-fluid>.navbar-collapse {margin-right:-15px;margin-left:-15px}
@media (min-width:768px) {
.gh-migrated .container>.navbar-header, .gh-migrated .container-fluid>.navbar-header, .gh-migrated .container>.navbar-collapse, .gh-migrated .container-fluid>.navbar-collapse {margin-right:0;margin-left:0}

}
.gh-migrated .navbar-static-top {z-index:1000;border-width:0 0 1px}
@media (min-width:768px) {
.gh-migrated .navbar-static-top {border-radius:0}

}
.gh-migrated .navbar-brand {float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}
.gh-migrated .navbar-brand:hover, .gh-migrated .navbar-brand:focus {text-decoration:none}
.gh-migrated .navbar-brand>img {display:block}
@media (min-width:768px) {
.gh-migrated .navbar>.container .navbar-brand, .gh-migrated .navbar>.container-fluid .navbar-brand {margin-left:-15px}

}
.gh-migrated .navbar-toggle {position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}
.gh-migrated .navbar-toggle:focus {outline:0}
.gh-migrated .navbar-toggle .icon-bar {display:block;width:22px;height:2px;border-radius:1px}
.gh-migrated .navbar-toggle .icon-bar+.icon-bar {margin-top:4px}
@media (min-width:768px) {
.gh-migrated .navbar-toggle {display:none}

}
.gh-migrated .navbar-nav {margin:7.5px -15px}
.gh-migrated .navbar-nav>li>a {padding-top:10px;padding-bottom:10px;line-height:20px}
@media (max-width:767px) {
.gh-migrated .navbar-nav .open .dropdown-menu {position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}
.gh-migrated .navbar-nav .open .dropdown-menu>li>a, .gh-migrated .navbar-nav .open .dropdown-menu .dropdown-header {padding:5px 15px 5px 25px}
.gh-migrated .navbar-nav .open .dropdown-menu>li>a {line-height:20px}
.gh-migrated .navbar-nav .open .dropdown-menu>li>a:hover, .gh-migrated .navbar-nav .open .dropdown-menu>li>a:focus {background-image:none}

}
@media (min-width:768px) {
.gh-migrated .navbar-nav {float:left;margin:0}
.gh-migrated .navbar-nav>li {float:left}
.gh-migrated .navbar-nav>li>a {padding-top:15px;padding-bottom:15px}

}
.gh-migrated .navbar-form {padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}
@media (min-width:768px) {
.gh-migrated .navbar-form .form-group {display:inline-block;margin-bottom:0;vertical-align:middle}
.gh-migrated .navbar-form .form-control {display:inline-block;width:auto;vertical-align:middle}
.gh-migrated .navbar-form .form-control-static {display:inline-block}
.gh-migrated .navbar-form .input-group {display:inline-table;vertical-align:middle}
.gh-migrated .navbar-form .input-group .input-group-addon, .gh-migrated .navbar-form .input-group .input-group-btn, .gh-migrated .navbar-form .input-group .form-control {width:auto}
.gh-migrated .navbar-form .input-group>.form-control {width:100%}
.gh-migrated .navbar-form .control-label {margin-bottom:0;vertical-align:middle}
.gh-migrated .navbar-form .radio, .gh-migrated .navbar-form .checkbox {display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}
.gh-migrated .navbar-form .radio label, .gh-migrated .navbar-form .checkbox label {padding-left:0}
.gh-migrated .navbar-form .radio input[type="radio"], .gh-migrated .navbar-form .checkbox input[type="checkbox"] {position:relative;margin-left:0}
.gh-migrated .navbar-form .has-feedback .form-control-feedback {top:0}

}
@media (max-width:767px) {
.gh-migrated .navbar-form .form-group {margin-bottom:5px}
.gh-migrated .navbar-form .form-group:last-child {margin-bottom:0}

}
@media (min-width:768px) {
.gh-migrated .navbar-form {width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}

}
.gh-migrated .navbar-nav>li>.dropdown-menu {margin-top:0;border-top-left-radius:0;border-top-right-radius:0}
.gh-migrated .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}
.gh-migrated .navbar-btn {margin-top:8px;margin-bottom:8px}
.gh-migrated .navbar-btn.btn-sm {margin-top:10px;margin-bottom:10px}
.gh-migrated .navbar-btn.btn-xs {margin-top:14px;margin-bottom:14px}
.gh-migrated .navbar-text {margin-top:15px;margin-bottom:15px}
@media (min-width:768px) {
.gh-migrated .navbar-text {float:left;margin-right:15px;margin-left:15px}

}
@media (min-width:768px) {
.gh-migrated .navbar-left {float:left !important}
.gh-migrated .navbar-right {float:right !important;margin-right:-15px}
.gh-migrated .navbar-right~.navbar-right {margin-right:0}

}
.gh-migrated .navbar-default {background-color:#f8f8f8;border-color:#e7e7e7}
.gh-migrated .navbar-default .navbar-brand {color:#777}
.gh-migrated .navbar-default .navbar-brand:hover, .gh-migrated .navbar-default .navbar-brand:focus {color:#5e5e5e;background-color:transparent}
.gh-migrated .navbar-default .navbar-text {color:#777}
.gh-migrated .navbar-default .navbar-nav>li>a {color:#777}
.gh-migrated .navbar-default .navbar-nav>li>a:hover, .gh-migrated .navbar-default .navbar-nav>li>a:focus {color:#333;background-color:transparent}
.gh-migrated .navbar-default .navbar-nav>.active>a, .gh-migrated .navbar-default .navbar-nav>.active>a:hover, .gh-migrated .navbar-default .navbar-nav>.active>a:focus {color:#555;background-color:#e7e7e7}
.gh-migrated .navbar-default .navbar-nav>.disabled>a, .gh-migrated .navbar-default .navbar-nav>.disabled>a:hover, .gh-migrated .navbar-default .navbar-nav>.disabled>a:focus {color:#ccc;background-color:transparent}
.gh-migrated .navbar-default .navbar-nav>.open>a, .gh-migrated .navbar-default .navbar-nav>.open>a:hover, .gh-migrated .navbar-default .navbar-nav>.open>a:focus {color:#555;background-color:#e7e7e7}
@media (max-width:767px) {
.gh-migrated .navbar-default .navbar-nav .open .dropdown-menu>li>a {color:#777}
.gh-migrated .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .gh-migrated .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {color:#333;background-color:transparent}
.gh-migrated .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .gh-migrated .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .gh-migrated .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {color:#555;background-color:#e7e7e7}
.gh-migrated .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, .gh-migrated .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, .gh-migrated .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus {color:#ccc;background-color:transparent}

}
.gh-migrated .navbar-default .navbar-toggle {border-color:#ddd}
.gh-migrated .navbar-default .navbar-toggle:hover, .gh-migrated .navbar-default .navbar-toggle:focus {background-color:#ddd}
.gh-migrated .navbar-default .navbar-toggle .icon-bar {background-color:#888}
.gh-migrated .navbar-default .navbar-collapse, .gh-migrated .navbar-default .navbar-form {border-color:#e7e7e7}
.gh-migrated .navbar-default .navbar-link {color:#777}
.gh-migrated .navbar-default .navbar-link:hover {color:#333}
.gh-migrated .navbar-default .btn-link {color:#777}
.gh-migrated .navbar-default .btn-link:hover, .gh-migrated .navbar-default .btn-link:focus {color:#333}
.gh-migrated .navbar-default .btn-link[disabled]:hover, .gh-migrated fieldset[disabled] .navbar-default .btn-link:hover, .gh-migrated .navbar-default .btn-link[disabled]:focus, .gh-migrated fieldset[disabled] .navbar-default .btn-link:focus {color:#ccc}
.gh-migrated .navbar-inverse {background-color:#222;border-color:#080808}
.gh-migrated .navbar-inverse .navbar-brand {color:#9d9d9d}
.gh-migrated .navbar-inverse .navbar-brand:hover, .gh-migrated .navbar-inverse .navbar-brand:focus {color:#fff;background-color:transparent}
.gh-migrated .navbar-inverse .navbar-text {color:#9d9d9d}
.gh-migrated .navbar-inverse .navbar-nav>li>a {color:#9d9d9d}
.gh-migrated .navbar-inverse .navbar-nav>li>a:hover, .gh-migrated .navbar-inverse .navbar-nav>li>a:focus {color:#fff;background-color:transparent}
.gh-migrated .navbar-inverse .navbar-nav>.active>a, .gh-migrated .navbar-inverse .navbar-nav>.active>a:hover, .gh-migrated .navbar-inverse .navbar-nav>.active>a:focus {color:#fff;background-color:#080808}
.gh-migrated .navbar-inverse .navbar-nav>.disabled>a, .gh-migrated .navbar-inverse .navbar-nav>.disabled>a:hover, .gh-migrated .navbar-inverse .navbar-nav>.disabled>a:focus {color:#444;background-color:transparent}
.gh-migrated .navbar-inverse .navbar-nav>.open>a, .gh-migrated .navbar-inverse .navbar-nav>.open>a:hover, .gh-migrated .navbar-inverse .navbar-nav>.open>a:focus {color:#fff;background-color:#080808}
@media (max-width:767px) {
.gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {border-color:#080808}
.gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu .divider {background-color:#080808}
.gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {color:#9d9d9d}
.gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, .gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus {color:#fff;background-color:transparent}
.gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, .gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {color:#fff;background-color:#080808}
.gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, .gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, .gh-migrated .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus {color:#444;background-color:transparent}

}
.gh-migrated .navbar-inverse .navbar-toggle {border-color:#333}
.gh-migrated .navbar-inverse .navbar-toggle:hover, .gh-migrated .navbar-inverse .navbar-toggle:focus {background-color:#333}
.gh-migrated .navbar-inverse .navbar-toggle .icon-bar {background-color:#fff}
.gh-migrated .navbar-inverse .navbar-collapse, .gh-migrated .navbar-inverse .navbar-form {border-color:#101010}
.gh-migrated .navbar-inverse .navbar-link {color:#9d9d9d}
.gh-migrated .navbar-inverse .navbar-link:hover {color:#fff}
.gh-migrated .navbar-inverse .btn-link {color:#9d9d9d}
.gh-migrated .navbar-inverse .btn-link:hover, .gh-migrated .navbar-inverse .btn-link:focus {color:#fff}
.gh-migrated .navbar-inverse .btn-link[disabled]:hover, .gh-migrated fieldset[disabled] .navbar-inverse .btn-link:hover, .gh-migrated .navbar-inverse .btn-link[disabled]:focus, .gh-migrated fieldset[disabled] .navbar-inverse .btn-link:focus {color:#444}
.gh-migrated .clearfix:before, .gh-migrated .clearfix:after, .gh-migrated .dl-horizontal dd:before, .gh-migrated .dl-horizontal dd:after, .gh-migrated .container:before, .gh-migrated .container:after, .gh-migrated .container-fluid:before, .gh-migrated .container-fluid:after, .gh-migrated .row:before, .gh-migrated .row:after, .gh-migrated .form-horizontal .form-group:before, .gh-migrated .form-horizontal .form-group:after, .gh-migrated .nav:before, .gh-migrated .nav:after, .gh-migrated .navbar:before, .gh-migrated .navbar:after, .gh-migrated .navbar-header:before, .gh-migrated .navbar-header:after, .gh-migrated .navbar-collapse:before, .gh-migrated .navbar-collapse:after {display:table;content:" "}
.gh-migrated .clearfix:after, .gh-migrated .dl-horizontal dd:after, .gh-migrated .container:after, .gh-migrated .container-fluid:after, .gh-migrated .row:after, .gh-migrated .form-horizontal .form-group:after, .gh-migrated .nav:after, .gh-migrated .navbar:after, .gh-migrated .navbar-header:after, .gh-migrated .navbar-collapse:after {clear:both}
.gh-migrated .center-block {display:block;margin-right:auto;margin-left:auto}
.gh-migrated .pull-right {float:right !important}
.gh-migrated .pull-left {float:left !important}
.gh-migrated .hide {display:none !important}
.gh-migrated .show {display:block !important}
.gh-migrated .invisible {visibility:hidden}
.gh-migrated .text-hide {font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}
.gh-migrated .hidden {display:none !important}
.gh-migrated .affix {position:fixed}
.gh-migrated {;color:#2c3e50;font-family:"Lato",sans-serif;font-size:16px;font-weight:400;line-height:1.45;font-style:normal;padding:0;word-wrap:break-word}
.gh-migrated .modal-open .media-modal-close:hover, .gh-migrated .modal-open .media-modal-close:focus {background:none;border:none;padding:1px}
.gh-migrated .modal-open .media-modal-close:focus {position:absolute}
.gh-migrated h1, .gh-migrated h2, .gh-migrated h3, .gh-migrated h4, .gh-migrated h5, .gh-migrated h6 {color:#176824;font-family:"Lato",sans-serif;font-weight:400;line-height:1.4;text-transform:none;font-style:normal}
.gh-migrated h1 a, .gh-migrated h2 a, .gh-migrated h3 a, .gh-migrated h4 a, .gh-migrated h5 a, .gh-migrated h6 a {color:#176824}
.gh-migrated h1 a:hover, .gh-migrated h2 a:hover, .gh-migrated h3 a:hover, .gh-migrated h4 a:hover, .gh-migrated h5 a:hover, .gh-migrated h6 a:hover {text-decoration:none}
.gh-migrated h1 {font-size:36px;line-height:1.4;letter-spacing:0;color:#176824;font-family:"Lato",sans-serif;font-weight:400;font-style:normal;text-transform:none}
.gh-migrated h1 a {color:#176824}
.gh-migrated h2 {font-size:30px;line-height:1.4;letter-spacing:0}
.gh-migrated h2 .fl-comments-list-title {font-size:24px}
.gh-migrated h3 {font-size:24px;line-height:1.4;letter-spacing:0}
.gh-migrated h4 {font-size:18px;line-height:1.4;letter-spacing:0}
.gh-migrated h5 {font-size:14px;line-height:1.4;letter-spacing:0}
.gh-migrated h6 {font-size:12px;line-height:1.4;letter-spacing:0}
.gh-migrated a {color:#1e73be;text-decoration:none}
.gh-migrated a:hover {color:#483182;text-decoration:underline}
.gh-migrated a:focus {color:#483182}
.gh-migrated blockquote {border-color:#e6e6e6}
.gh-migrated iframe {max-width:100%}
.gh-migrated img {max-width:100%;height:auto}
.gh-migrated .fl-screen-reader-text {position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden;padding:10px 15px;background:#fff!important}
.gh-migrated .fl-screen-reader-text:focus {width:auto;height:auto;position:fixed;left:0;top:0;z-index:99999}
.gh-migrated .rtl .fl-screen-reader-text {right:-10000px}
.gh-migrated .rtl .fl-screen-reader-text:focus {position:fixed;left:auto;right:0;top:0;width:auto;height:auto;z-index:99999}
.gh-migrated .admin-bar .fl-screen-reader-text:focus {top:32px}
.gh-migrated .screen-reader-text {clip:rect(1px,1px,1px,1px);position:absolute;height:1px;width:1px;overflow:hidden}
.gh-migrated .container {padding-left:20px;padding-right:20px}
.gh-migrated .fl-page {position:relative;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;margin:0 auto}
.gh-migrated .fl-page-header {border-color:#e6e6e6;background-color:#fff0;color:#757575}
.gh-migrated .fl-page-header *, .gh-migrated .fl-page-header h1, .gh-migrated .fl-page-header h2, .gh-migrated .fl-page-header h3, .gh-migrated .fl-page-header h4, .gh-migrated .fl-page-header h5, .gh-migrated .fl-page-header h6 {color:#757575}
.gh-migrated .fl-page-header a, .gh-migrated .fl-page-header a *, .gh-migrated .fl-page-header a.fas, .gh-migrated .fl-page-header a.fab {color:#757575}
.gh-migrated .fl-page-header a:hover, .gh-migrated .fl-page-header a:focus, .gh-migrated .fl-page-header a:hover *, .gh-migrated .fl-page-header a:focus *, .gh-migrated .fl-page-header a.fas:hover, .gh-migrated .fl-page-header a.fab:hover, .gh-migrated .fl-page-header a.fas:focus, .gh-migrated .fl-page-header a.fab:focus {color:#483182}
.gh-migrated .fl-page-header .navbar-nav li>a {color:#757575}
.gh-migrated .fl-page-header .navbar-nav li>a:hover, .gh-migrated .fl-page-header .navbar-nav li>a:focus {color:#483182}
.gh-migrated .fl-page-header .navbar-nav li.current-menu-ancestor>a, .gh-migrated .fl-page-header .navbar-nav li.current-menu-parent>a, .gh-migrated .fl-page-header .navbar-nav li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-header .navbar-nav li.current-menu-item~li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-header-container {padding-bottom:20px;padding-top:20px}
.gh-migrated .fl-page-header-logo {text-align:center}
.gh-migrated .fl-page-header-logo a {text-decoration:none}
.gh-migrated .fl-logo-text {font-family:"Helvetica",Verdana,Arial,sans-serif;font-weight:400;font-size:30px;color:#757575!important}
.gh-migrated .fl-logo-text:hover, .gh-migrated .fl-logo-text:focus {color:#2b7bb9!important}
.gh-migrated .fl-theme-tagline {color:#757575!important}
.gh-migrated .fl-logo-img {max-width:100%}
.gh-migrated .fl-page-header-primary .fl-logo-img {height:auto!important}
.gh-migrated .fl-logo-img.sticky-logo {display:none}
.gh-migrated .fl-page-header-fixed .fl-logo-img {display:inherit}
.gh-migrated .fl-page-header-fixed .fl-logo-img.sticky-logo {display:inherit}
.gh-migrated .fl-nav-mobile-offcanvas .fl-button-close {display:none}
.gh-migrated .fl-page-nav-wrap {padding-bottom:20px}
.gh-migrated .fl-page-nav {background:#fff0;border:none;min-height:0;margin-bottom:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}
.gh-migrated .fl-page-nav .navbar-nav>li>a {padding:15px}
.gh-migrated .fl-page-nav .navbar-toggle {border:none;float:none;font-family:"Lato",sans-serif;font-size:16px;font-weight:400;line-height:1.4;text-transform:none;margin:0;width:100%;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}
.gh-migrated .fl-page-nav .navbar-toggle:hover {outline:none}
.gh-migrated .fl-page-nav .navbar-toggle:focus {outline:auto}
.gh-migrated .fl-page-nav .navbar-nav, .gh-migrated .fl-page-nav .navbar-nav a {font-family:"Lato",sans-serif;font-size:16px;font-weight:400;line-height:1.4;text-transform:none}
.gh-migrated .fl-page-nav {margin:0 auto}
.gh-migrated .fl-page-nav .mega-menu a[href="#"]:hover, .gh-migrated .fl-page-nav .mega-menu a[href="#"]:focus {color:#757575!important;cursor:default}
.gh-migrated .mega-menu-spacer {background:none;display:block;left:0;position:absolute;width:100%}
.gh-migrated .fl-page-header[class*=" fl-page-nav-toggle-visible"] ul.navbar-nav li.hide-heading {border-top:0 none!important}
.gh-migrated .fl-page-header[class*=" fl-page-nav-toggle-visible"] ul.navbar-nav li.hide-heading>a, .gh-migrated .fl-page-header[class*=" fl-page-nav-toggle-visible"] ul.navbar-nav li.hide-heading>.fl-submenu-icon-wrap {display:none!important}
.gh-migrated .fl-page-header[class*=" fl-page-nav-toggle-visible"] ul.navbar-nav li.hide-heading>ul.sub-menu {margin-left:0}
.gh-migrated .fl-page-nav-collapse {border:none;max-height:none;padding:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}
.gh-migrated .fl-page-nav-collapse ul.navbar-nav {margin:0}
.gh-migrated .fl-page-nav-collapse ul.navbar-nav>li {border-bottom:1px solid #e6e6e6}
.gh-migrated .fl-page-nav-collapse ul.navbar-nav>li:last-child {border-bottom:none}
.gh-migrated .fl-page-nav-collapse.in {overflow-y:visible}
.gh-migrated .fl-page-nav-search {bottom:0;display:none;position:absolute;right:0;top:0}
.gh-migrated .fl-page-nav-search a.fa-search {color:#c8c2da;font-size:20px;padding:8px;position:absolute;right:0;top:5px}
.gh-migrated .fl-page-nav-search a.fa-search:hover, .gh-migrated .fl-page-nav-search a.fa-search:focus {color:#fff;text-decoration:none}
.gh-migrated .fl-page-nav-search form {background-color:#483182;border-top:3px solid #a498c1;display:none;padding:20px;position:absolute;right:0;top:100%;width:400px;z-index:1000;-moz-box-shadow:0 1px 20px rgb(0 0 0 / .15);-webkit-box-shadow:0 1px 20px rgb(0 0 0 / .15);box-shadow:0 1px 20px rgb(0 0 0 / .15)}
.gh-migrated .fl-page-nav-search form input.fl-search-input {background-color:#483182;border-color:#6343b2;color:#c8c2da}
.gh-migrated .fl-page-nav-search form input.fl-search-input:focus {color:#c8c2da}
.gh-migrated .fl-page-nav ul.sub-menu {background-clip:padding-box;background-color:#483182;border-top:3px solid #a498c1;font-size:14px;float:none;left:-99999px;list-style:none;padding:10px 0;position:absolute;top:100%;width:240px;z-index:1000;-moz-box-shadow:0 1px 20px rgb(0 0 0 / .15);-webkit-box-shadow:0 1px 20px rgb(0 0 0 / .15);box-shadow:0 1px 20px rgb(0 0 0 / .15)}
.gh-migrated .fl-page-nav ul.sub-menu ul.sub-menu {left:-99999px;padding-bottom:10px;top:-13px}
.gh-migrated .fl-page-nav ul.sub-menu li {border:none}
.gh-migrated .fl-page-nav ul.sub-menu li a {clear:none;color:#c8c2da;display:block;font-weight:400;line-height:20px;margin:0 10px;padding:10px 15px}
.gh-migrated .fl-page-nav ul.sub-menu li a:hover, .gh-migrated .fl-page-nav ul.sub-menu li a:focus {color:#fff;text-decoration:none}
.gh-migrated .fl-page-nav ul.sub-menu li a:before {content:'';margin-right:0}
.gh-migrated .fl-page-nav ul li {position:relative}
.gh-migrated .fl-page-nav ul li.fl-sub-menu-open>ul.sub-menu {left:auto}
.gh-migrated .fl-page-nav ul li.fl-sub-menu-open>ul.sub-menu li.fl-sub-menu-open>ul.sub-menu {left:100%}
.gh-migrated .fl-page-nav ul li.fl-sub-menu-open>ul.sub-menu li.fl-sub-menu-open.fl-sub-menu-right>ul.sub-menu {left:auto;right:100%}
.gh-migrated .fl-page-nav ul li.fl-sub-menu-open.fl-sub-menu-right>ul.sub-menu {right:0}
.gh-migrated .fl-page-nav ul li.fl-sub-menu-open .hide-heading>ul.sub-menu {position:static;padding:0;border-top:0 none;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}
.gh-migrated .fl-page-content {background-color:#fff}
.gh-migrated .fl-content, .gh-migrated .fl-sidebar {margin:20px 0}
.gh-migrated .fl-sidebar {display:none}
.gh-migrated .fl-sidebar.fl-sidebar-display-always {display:block}
.gh-migrated #fl-to-top {display:none;background-color:#ccc;background-color:rgb(0 0 0 / .2);position:fixed;bottom:15px;right:15px;width:44px;height:42px;text-align:center;z-index:1003}
.gh-migrated #fl-to-top:hover {background-color:rgb(0 0 0 / .3)}
.gh-migrated #fl-to-top i {position:absolute;top:12px;left:14px;color:#fff;font-size:16px;line-height:16px}
.gh-migrated .fl-social-icons .fa-stack.icon-facebook-f i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-facebook-f.branded {color:#3b5997}
.gh-migrated .fl-social-icons .fa-stack.icon-twitter i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-twitter.branded {color:#00aaef}
.gh-migrated .fl-social-icons .fa-stack.icon-google i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-google.branded {color:#d13e2b}
.gh-migrated .fl-social-icons .fa-stack.icon-google-maps i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-map-marker-alt.branded {color:#eb5f1a}
.gh-migrated .fl-social-icons .fa-stack.icon-linkedin i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-linkedin.branded {color:#007ab8}
.gh-migrated .fl-social-icons .fa-stack.icon-yelp i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-yelp.branded {color:#c31200}
.gh-migrated .fl-social-icons .fa-stack.icon-xing i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-xing.branded {color:#006567}
.gh-migrated .fl-social-icons .fa-stack.icon-pinterest i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-pinterest.branded {color:#cb2127}
.gh-migrated .fl-social-icons .fa-stack.icon-tumblr i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-tumblr.branded {color:#304e6c}
.gh-migrated .fl-social-icons .fa-stack.icon-vimeo i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-vimeo.branded {color:#41b1db}
.gh-migrated .fl-social-icons .fa-stack.icon-youtube i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-youtube.branded {color:#d6000f}
.gh-migrated .fl-social-icons .fa-stack.icon-flickr i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-flickr.branded {color:#ec1982}
.gh-migrated .fl-social-icons .fa-stack.icon-instagram i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-instagram.branded {color:#517fa5}
.gh-migrated .fl-social-icons .fa-stack.icon-dribbble i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-dribbble.branded {color:#eb4a88}
.gh-migrated .fl-social-icons .fa-stack.icon-skype i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-skype.branded {color:#009EE5}
.gh-migrated .fl-social-icons .fa-stack.icon-500px i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-500px.branded {color:#333}
.gh-migrated .fl-social-icons .fa-stack.icon-github i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-github.branded {color:#333}
.gh-migrated .fl-social-icons .fa-stack.icon-rss i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-rss.branded {color:#e09026}
.gh-migrated .fl-social-icons .fa-stack.icon-envelope i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-envelope.branded {color:#333}
.gh-migrated .fl-social-icons .fa-stack.icon-blogger i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-blogger.branded {color:#fe7300}
.gh-migrated .fl-social-icons .fa-stack.icon-snapchat i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-snapchat.branded {color:#FFFC00}
.gh-migrated .fl-social-icons .fa-stack.icon-wordpress i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-wordpress.branded {color:#15aabf}
.gh-migrated .fl-social-icons .fa-stack.icon-spotify i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-spotify.branded {color:#1cd760}
.gh-migrated .fl-social-icons .fa-stack.icon-tiktok i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-tiktok.branded {color:#000}
.gh-migrated .fl-social-icons .fa-stack.icon-soundcloud i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-soundcloud.branded {color:#f50}
.gh-migrated .fl-social-icons .fa-stack.icon-x-twitter i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-x-twitter.branded {color:#000}
.gh-migrated .fl-social-icons .fa-stack.icon-bluesky i.fa-circle.branded, .gh-migrated .fl-social-icons .fa-bluesky.branded {color:#01aaff}
.gh-migrated .fl-social-icons .fa-stack i.branded {color:#fff}
.gh-migrated .fl-social-icons .fa-stack {margin:0 0 10px 8px}
.gh-migrated .fl-social-icons .fallback {height:28px;width:28px;margin:0 0 10px 5px!important;vertical-align:inherit;font-size:30px}
.gh-migrated .fl-social-icons .fallback:before {width:28px!important;display:inline-block;height:28px!important}
.gh-migrated .fl-page-header-content .fa-stack i.fa-inverse.mono {color:#fff}
.gh-migrated .fa-stack i.fa-inverse.mono {color:#fff}
.gh-migrated .fl-404 {padding:30px 0 50px;text-align:center}
.gh-migrated .fl-404 .fl-post-header {margin-bottom:45px}
.gh-migrated .fl-404 .fl-post-header h2 {font-size:24px}
.gh-migrated .fl-404 form {margin:0 auto;max-width:400px}
.gh-migrated .fl-archive .fl-post {border-bottom:1px solid #e6e6e6;padding-bottom:40px}
.gh-migrated .fl-archive .fl-post:last-child {border-bottom:none;padding-bottom:0}
.gh-migrated .fl-archive .fl-archive-title {border-bottom:1px solid #e6e6e6;font-size:18px;margin-bottom:40px;padding-bottom:8px}
.gh-migrated .fl-archive .fl-archive-title a:hover {text-decoration:none}
.gh-migrated .fl-archive .fl-archive-nav-prev {float:left}
.gh-migrated .fl-archive .fl-archive-nav-next {float:right}
.gh-migrated .wp-pagenavi a, .gh-migrated .wp-pagenavi span {border:1px solid #e6e6e6;border-right:none;margin:0;padding:6px 10px}
.gh-migrated .wp-pagenavi a:hover {border-color:#e6e6e6}
.gh-migrated .wp-pagenavi>*:last-child {border-right:1px solid #e6e6e6}
.gh-migrated .wp-pagenavi span.current, .gh-migrated .wp-pagenavi a:hover {border-color:#e6e6e6;color:#fff;background:#1e73be;font-weight:400}
.gh-migrated .search .page .fl-post-header {display:block}
.gh-migrated .fl-post {margin-bottom:40px}
.gh-migrated .fl-post:last-child {margin-bottom:0}
.gh-migrated .fl-post img[class*="wp-image-"], .gh-migrated .fl-post img.alignnone, .gh-migrated .fl-post img.alignleft, .gh-migrated .fl-post img.aligncenter, .gh-migrated .fl-post img.alignright {height:auto;max-width:100%}
.gh-migrated .fl-post img[class*="wp-block-cover"] {height:100%}
.gh-migrated .fl-post .fl-post-image-beside {float:left;margin-right:25px}
.gh-migrated .fl-post .fl-author-box {margin-top:40px;background:#f5f5f5;border:1px solid #ddd;padding:20px}
.gh-migrated .fl-post .fl-author-box .fl-author-avatar {float:left;margin-right:25px}
.gh-migrated .fl-post .fl-author-box .fl-author-description h4 {margin-top:0;margin-bottom:5px}
.gh-migrated .fl-post-thumb {margin-bottom:25px}
.gh-migrated .fl-post-thumb img {height:auto!important;max-width:100%}
.gh-migrated .fl-post-header {margin-bottom:25px}
.gh-migrated .fl-post-title {margin-top:0}
.gh-migrated .fl-post-meta .fl-sep {margin:0 3px}
.gh-migrated .fl-post-meta-bottom {border-top:1px solid #e6e6e6;font-style:italic;margin-top:20px;padding-top:10px}
.gh-migrated .fl-comments-popup-link a:hover {text-decoration:none}
.gh-migrated .fl-comments-popup-link i {vertical-align:text-top}
.gh-migrated .post-edit-link {color:#1e73be;font-size:14px;font-weight:400}
.gh-migrated .fl-post-nav {border-top:1px solid #e6e6e6;margin-top:10px;padding-top:10px}
.gh-migrated .fl-post-nav-prev {float:left}
.gh-migrated .fl-post-nav-next {float:right}
.gh-migrated .alignnone {margin:5px 20px 20px 0}
.gh-migrated .aligncenter, .gh-migrated div.aligncenter {display:block;margin:5px auto 5px auto}
.gh-migrated .alignright {float:right;margin:5px 0 20px 20px}
.gh-migrated .alignleft {float:left;margin:5px 20px 20px 0}
.gh-migrated .aligncenter {display:block;margin:5px auto 5px auto}
.gh-migrated a img.alignright {float:right;margin:5px 0 20px 20px}
.gh-migrated a img.alignnone {margin:5px 20px 20px 0}
.gh-migrated a img.alignleft {float:left;margin:5px 20px 20px 0}
.gh-migrated a img.aligncenter {display:block;margin-left:auto;margin-right:auto}
.gh-migrated .wp-caption {background:#f7f7f7;border:1px solid #e6e6e6;max-width:100%;padding:10px;text-align:center}
.gh-migrated .wp-caption.alignnone {margin:5px 20px 20px 0}
.gh-migrated .wp-caption.alignleft {margin:5px 20px 20px 0}
.gh-migrated .wp-caption.alignright {margin:5px 0 20px 20px}
.gh-migrated .wp-caption img {border:0 none;height:auto;margin:0;max-width:100%;padding:0;width:auto}
.gh-migrated .wp-caption p.wp-caption-text {font-size:11px;line-height:17px;margin:0;padding:5px}
.gh-migrated .fl-comments {margin-top:60px}
.gh-migrated .fl-comment-form .fl-comment-form-cancel {padding:15px 0}
.gh-migrated .fl-comments-list ol {margin:0;padding:0}
.gh-migrated .fl-comments-list ol li {line-height:inherit;list-style:none}
.gh-migrated .fl-comments-list .fl-comments-list-nav {border-top:1px solid #e6e6e6;margin-top:30px;padding:10px 0 30px 0}
.gh-migrated .fl-comments-list .fl-comments-list-prev {float:left}
.gh-migrated .fl-comments-list .fl-comments-list-next {float:right}
.gh-migrated .fl-comments-list .fl-comments-respond-title {margin-top:0}
.gh-migrated .fl-comments-list .comment-meta {margin:20px 0 10px}
.gh-migrated .fl-comments-list .comment-avatar img {height:auto;max-width:40px;-moz-border-radius:100%;-webkit-border-radius:100%;border-radius:100%}
.gh-migrated .fl-comments-list .comment-author-link {font-size:16px;font-weight:700;margin-left:10px}
.gh-migrated .fl-comments-list .comment-content {border:1px solid #e6e6e6;padding:15px}
.gh-migrated .fl-comments-list .comment-reply-link {padding:5px;text-align:right}
.gh-migrated .fl-comments-list ul.children {margin:0;padding:0}
.gh-migrated .fl-comments-list ul.children li {margin:0 0 0 6%}
.gh-migrated #wp-comment-cookies-consent {margin-right:5px}
.gh-migrated .fl-widget {margin-bottom:40px}
.gh-migrated .fl-module-widget .fl-widget {margin-bottom:0}
.gh-migrated .fl-widget .fl-widget-title {margin-bottom:20px}
.gh-migrated .fl-widget ul {list-style:none;padding:0}
.gh-migrated .fl-widget ul li {display:block;margin-bottom:8px}
.gh-migrated .fl-widget ul li:last-child {margin-bottom:0}
.gh-migrated .fl-widget ul.sub-menu li {margin:0;padding:5px}
.gh-migrated .fl-widget ul.sub-menu li:before {content:"\2013";padding-right:5px}
.gh-migrated input[type=text].fl-search-input {color:rgb(44 62 80 / .6);width:100%}
.gh-migrated input[type=text].fl-search-input:focus {color:#2c3e50}
.gh-migrated .widget_calendar table {width:100%}
.gh-migrated .widget_calendar caption, .gh-migrated .widget_calendar th, .gh-migrated .widget_calendar td {border-bottom:1px solid #e6e6e6;padding:3px 0;text-align:center}
.gh-migrated .widget_calendar caption td, .gh-migrated .widget_calendar tfoot td {border:none}
.gh-migrated .widget_calendar caption #prev, .gh-migrated .widget_calendar tfoot #prev {text-align:left}
.gh-migrated .widget_calendar caption #next, .gh-migrated .widget_calendar tfoot #next {text-align:right}
.gh-migrated .woocommerce-account .woocommerce-Address {max-width:none}
.gh-migrated .fl-page .fl-module span.onsale {color:#fff;background:#1e73be;font-size:13px;font-weight:400;left:10px;margin:0;padding:2px 13px;right:auto;text-shadow:none;top:10px;min-height:3.236em;min-width:3.236em;position:absolute;text-align:center;line-height:3.236;z-index:9;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}
.gh-migrated .fl-page .fl-module-woocommerce a.button, .gh-migrated .fl-page .fl-module-woocommerce button.button.alt, .gh-migrated .fl-page .fl-post-module-woo-button button[type=submit], .gh-migrated .fl-page .fl-post-module-woo-button button[type=submit].alt.disabled, .gh-migrated .fl-page .fl-post-module-woo-button a.button {color:#515151;background-color:#ebe9eb;font-family:"Lato",sans-serif;font-weight:400;font-size:16px;line-height:1.2;text-transform:none;border:none;border-radius:4px}
.gh-migrated .fl-page .fl-module-woocommerce a.button:hover, .gh-migrated .fl-page .fl-module-woocommerce button.button.alt:hover, .gh-migrated .fl-page .fl-post-module-woo-button button[type=submit]:hover, .gh-migrated .fl-page .fl-post-module-woo-button a.button:hover {background-color:#dfdcde;color:#515151;border:none;border-radius:4px;border-color:#2f2056}
.gh-migrated .fl-page .fl-module-woocommerce button.button:disabled, .gh-migrated .fl-page .fl-module-woocommerce button.button:disabled[disabled], .gh-migrated .fl-page .fl-module-woocommerce button.alt.disabled {padding:6px 12px}
.gh-migrated .woocommerce-page ul.products li.product a.button, .gh-migrated .woocommerce-page .woocommerce-message a.button, .gh-migrated .woocommerce-page .woocommerce-message a.button.wc-forward, .gh-migrated .woocommerce-page .woocommerce a.button.wc-forward, .gh-migrated .woocommerce-page button.button, .gh-migrated .woocommerce-page button.button.alt, .gh-migrated .woocommerce-page a.button, .gh-migrated .woocommerce-page a.button.alt, .gh-migrated .woocommerce-page .woocommerce button[type=submit], .gh-migrated .woocommerce-page button[type=submit].alt.disabled {color:#515151;background-color:#ebe9eb;font-family:"Lato",sans-serif;font-weight:400;font-size:16px;line-height:1.2;text-transform:none;border:none;border-radius:4px}
.gh-migrated .woocommerce-page button.button:disabled, .gh-migrated .woocommerce-page button.button:disabled[disabled], .gh-migrated .woocommerce-page button.alt.disabled {padding:6px 12px}
.gh-migrated .woocommerce-page ul.products li.product a.button:hover, .gh-migrated .woocommerce-page .woocommerce-message a.button:hover, .gh-migrated .woocommerce-page button.button:hover, .gh-migrated .woocommerce-page button.button.alt:hover, .gh-migrated .woocommerce-page a.button.alt:hover, .gh-migrated .woocommerce-page a.button:hover, .gh-migrated .woocommerce-page .woocommerce button[type=submit]:hover, .gh-migrated .woocommerce-page button[type=submit].alt.disabled:hover {background-color:#dfdcde;color:#515151;border:none;border-radius:4px;border-color:#2f2056}
.gh-migrated .woocommerce-page button.pswp__button:hover {border:0}
.gh-migrated .woocommerce-page button.pswp__button.pswp__button--arrow--left, .gh-migrated .woocommerce-page button.pswp__button.pswp__button--arrow--right {position:absolute;top:50%}
.gh-migrated .woocommerce form .form-row .input-checkbox {position:static}
.gh-migrated a.fl-button, .gh-migrated a.fl-button:visited {background:#1e73be;color:#fff;border:1px solid #165389}
.gh-migrated a.fl-button:hover, .gh-migrated.fl-builder-content a.fl-button:hover {color:#fff;background:#483182}
.gh-migrated a.fl-button *, .gh-migrated a.fl-button:visited * {color:#fff}
.gh-migrated a.fl-button:hover * {color:#fff}
.gh-migrated a.fl-button:hover, .gh-migrated a.button:hover {color:#fff;background-color:#483182;border:1px solid #2f2056}
.gh-migrated .woocommerce a.button, .gh-migrated .woocommerce a.button:hover {border:1px solid #fff0}
.gh-migrated .wp-block-button .wp-block-button__link {font-size:16px;line-height:1.2}
.gh-migrated button, .gh-migrated input[type=button], .gh-migrated input[type=submit] {background-color:#1e73be;color:#fff;font-size:16px;line-height:1.2;padding:6px 12px;font-weight:400;text-shadow:none;border:1px solid #165389;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}
.gh-migrated button:hover, .gh-migrated input[type=button]:hover, .gh-migrated input[type=submit]:hover {background-color:#483182;color:#fff;border:1px solid #2f2056;text-decoration:none}
.gh-migrated button:active, .gh-migrated input[type=button]:active, .gh-migrated input[type=submit]:active, .gh-migrated button:focus, .gh-migrated input[type=button]:focus, .gh-migrated input[type=submit]:focus {background-color:#483182;color:#fff;border:1px solid #2f2056;outline:none;position:relative}
.gh-migrated button.btn-default, .gh-migrated input[type=button].btn-default, .gh-migrated input[type=submit].btn-default, .gh-migrated button.btn-default:hover, .gh-migrated input[type=button].btn-default:hover, .gh-migrated input[type=submit].btn-default:hover, .gh-migrated button.btn-default:focus, .gh-migrated input[type=button].btn-default:focus, .gh-migrated input[type=submit].btn-default:focus, .gh-migrated button.btn-default.active, .gh-migrated input[type=button].btn-default.active, .gh-migrated input[type=submit].btn-default.active {color:#2c3e50;background-color:#fcfcfc;border-color:#ccc}
.gh-migrated .mejs-button button .mejs-button button:active, .gh-migrated .mejs-button button:hover, .gh-migrated .mejs-button button:visited, .gh-migrated .mejs-button button:focus {background-color:#fff0;border:none}
.gh-migrated input[type=text], .gh-migrated input[type=password], .gh-migrated input[type=email], .gh-migrated input[type=tel], .gh-migrated input[type=date], .gh-migrated input[type=month], .gh-migrated input[type=week], .gh-migrated input[type=time], .gh-migrated input[type=number], .gh-migrated input[type=search], .gh-migrated input[type=url], .gh-migrated textarea {display:block;width:100%;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#2c3e50;background-color:#fcfcfc;background-image:none;border:1px solid #e6e6e6;-moz-transition:all ease-in-out .15s;-webkit-transition:all ease-in-out .15s;transition:all ease-in-out .15s;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}
.gh-migrated input[type=text]::-webkit-input-placeholder, .gh-migrated input[type=password]::-webkit-input-placeholder, .gh-migrated input[type=email]::-webkit-input-placeholder, .gh-migrated input[type=tel]::-webkit-input-placeholder, .gh-migrated input[type=date]::-webkit-input-placeholder, .gh-migrated input[type=month]::-webkit-input-placeholder, .gh-migrated input[type=week]::-webkit-input-placeholder, .gh-migrated input[type=time]::-webkit-input-placeholder, .gh-migrated input[type=number]::-webkit-input-placeholder, .gh-migrated input[type=search]::-webkit-input-placeholder, .gh-migrated input[type=url]::-webkit-input-placeholder, .gh-migrated textarea::-webkit-input-placeholder {color:rgb(44 62 80 / .4)}
.gh-migrated input[type=text]:-moz-placeholder, .gh-migrated input[type=password]:-moz-placeholder, .gh-migrated input[type=email]:-moz-placeholder, .gh-migrated input[type=tel]:-moz-placeholder, .gh-migrated input[type=date]:-moz-placeholder, .gh-migrated input[type=month]:-moz-placeholder, .gh-migrated input[type=week]:-moz-placeholder, .gh-migrated input[type=time]:-moz-placeholder, .gh-migrated input[type=number]:-moz-placeholder, .gh-migrated input[type=search]:-moz-placeholder, .gh-migrated input[type=url]:-moz-placeholder, .gh-migrated textarea:-moz-placeholder {color:rgb(44 62 80 / .4)}
.gh-migrated input[type=text]::-moz-placeholder, .gh-migrated input[type=password]::-moz-placeholder, .gh-migrated input[type=email]::-moz-placeholder, .gh-migrated input[type=tel]::-moz-placeholder, .gh-migrated input[type=date]::-moz-placeholder, .gh-migrated input[type=month]::-moz-placeholder, .gh-migrated input[type=week]::-moz-placeholder, .gh-migrated input[type=time]::-moz-placeholder, .gh-migrated input[type=number]::-moz-placeholder, .gh-migrated input[type=search]::-moz-placeholder, .gh-migrated input[type=url]::-moz-placeholder, .gh-migrated textarea::-moz-placeholder {color:rgb(44 62 80 / .4)}
.gh-migrated input[type=text]:-ms-input-placeholder, .gh-migrated input[type=password]:-ms-input-placeholder, .gh-migrated input[type=email]:-ms-input-placeholder, .gh-migrated input[type=tel]:-ms-input-placeholder, .gh-migrated input[type=date]:-ms-input-placeholder, .gh-migrated input[type=month]:-ms-input-placeholder, .gh-migrated input[type=week]:-ms-input-placeholder, .gh-migrated input[type=time]:-ms-input-placeholder, .gh-migrated input[type=number]:-ms-input-placeholder, .gh-migrated input[type=search]:-ms-input-placeholder, .gh-migrated input[type=url]:-ms-input-placeholder, .gh-migrated textarea:-ms-input-placeholder {color:rgb(44 62 80 / .4)}
.gh-migrated input[type=text]:focus, .gh-migrated input[type=password]:focus, .gh-migrated input[type=email]:focus, .gh-migrated input[type=tel]:focus, .gh-migrated input[type=date]:focus, .gh-migrated input[type=month]:focus, .gh-migrated input[type=week]:focus, .gh-migrated input[type=time]:focus, .gh-migrated input[type=number]:focus, .gh-migrated input[type=search]:focus, .gh-migrated input[type=url]:focus, .gh-migrated textarea:focus {background-color:#fcfcfc;border-color:#ccc;outline:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}
.gh-migrated .form-control {background-color:#fcfcfc;border-color:#e6e6e6;color:#2c3e50;-moz-transition:all ease-in-out .15s;-webkit-transition:all ease-in-out .15s;transition:all ease-in-out .15s}
.gh-migrated .form-control::-webkit-input-placeholder {color:rgb(44 62 80 / .4)}
.gh-migrated .form-control:-moz-placeholder {color:rgb(44 62 80 / .4)}
.gh-migrated .form-control::-moz-placeholder {color:rgb(44 62 80 / .4)}
.gh-migrated .form-control:-ms-input-placeholder {color:rgb(44 62 80 / .4)}
.gh-migrated .form-control:focus {background-color:#fcfcfc;border-color:#ccc;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}
.gh-migrated .mfp-wrap button.mfp-arrow, .gh-migrated .mfp-wrap button.mfp-arrow:active, .gh-migrated .mfp-wrap button.mfp-arrow:hover, .gh-migrated .mfp-wrap button.mfp-arrow:focus {background:transparent!important;border:none!important;outline:none;position:absolute;top:50%;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}
.gh-migrated .mfp-wrap .mfp-close, .gh-migrated .mfp-wrap .mfp-close:active, .gh-migrated .mfp-wrap .mfp-close:hover, .gh-migrated .mfp-wrap .mfp-close:focus {background:transparent!important;border:none!important;outline:none;position:absolute;top:0;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}
.gh-migrated img.mfp-img {padding:0}
.gh-migrated .mfp-counter {display:none}
.gh-migrated .fl-builder-edit .fl-page-header-fixed {display:none!important}
.gh-migrated .fl-builder .container.fl-content-full {margin:0;padding:0;width:auto;max-width:none}
.gh-migrated .fl-builder .container.fl-content-full>.row {margin:0}
.gh-migrated .fl-builder .container.fl-content-full .fl-content {margin:0;padding:0}
.gh-migrated .fl-builder .container.fl-content-full .fl-post-header {margin-left:20px;margin-right:20px;padding-top:40px}
.gh-migrated .fl-builder .container.fl-content-full .fl-comments {margin-left:20px;margin-right:20px}
@media (max-width:767px) {
.gh-migrated .fl-post .fl-post-image-beside {float:none;margin-right:0}
.gh-migrated .fl-post .fl-post-image-beside, .gh-migrated .fl-post .fl-post-content-beside {padding:0 15px}
.gh-migrated .fl-page-header-logo img[data-mobile] {display:none}

}
@media (max-width:992px) {
.gh-migrated .woocommerce-page.fl-framework-bootstrap .row, .gh-migrated .woocommerce-page.fl-framework-base .row {display:flex;flex-wrap:wrap;flex-direction:column}
.gh-migrated .woocommerce-page.fl-framework-bootstrap .fl-page-content .row .fl-woo-content, .gh-migrated .woocommerce-page.fl-framework-base .fl-page-content .row .fl-woo-content {box-sizing:border-box;width:100%}
.gh-migrated .woocommerce-page.fl-framework-bootstrap .fl-woo-content-right, .gh-migrated .woocommerce-page.fl-framework-base .fl-woo-content-right {order:1;width:100%}
.gh-migrated .woocommerce-page.fl-framework-bootstrap .fl-woo-sidebar-left, .gh-migrated .woocommerce-page.fl-framework-base .fl-woo-sidebar-left, .gh-migrated .woocommerce-page.fl-framework-bootstrap .fl-sidebar, .gh-migrated .woocommerce-page.fl-framework-base .fl-sidebar {width:100%}

}
@media (min-width:768px) {
.gh-migrated .container {padding-left:40px;padding-right:40px;width:auto}
.gh-migrated .fl-page-nav {background:#fff0}
.gh-migrated .fl-page-nav .navbar-nav li>a {padding:15px 15px;color:#2c3e50}
.gh-migrated .fl-page-nav .navbar-nav li>a:hover, .gh-migrated .fl-page-nav .navbar-nav li>a:focus {color:#483182}
.gh-migrated .fl-page-nav .navbar-nav li.current-menu-ancestor>a, .gh-migrated .fl-page-nav .navbar-nav li.current-menu-parent>a, .gh-migrated .fl-page-nav .navbar-nav li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-nav .navbar-nav li.current-menu-item~li.current-menu-item>a {color:#2c3e50}
.gh-migrated .fl-page-nav-wrap {border-bottom:1px solid #e6e6e6;border-top:1px solid #e6e6e6;padding:0;border-color:#6343b2;background-color:#483182;color:#c8c2da}
.gh-migrated .fl-page-nav-wrap *, .gh-migrated .fl-page-nav-wrap h1, .gh-migrated .fl-page-nav-wrap h2, .gh-migrated .fl-page-nav-wrap h3, .gh-migrated .fl-page-nav-wrap h4, .gh-migrated .fl-page-nav-wrap h5, .gh-migrated .fl-page-nav-wrap h6 {color:#c8c2da}
.gh-migrated .fl-page-nav-wrap a, .gh-migrated .fl-page-nav-wrap a *, .gh-migrated .fl-page-nav-wrap a.fas, .gh-migrated .fl-page-nav-wrap a.fab {color:#c8c2da}
.gh-migrated .fl-page-nav-wrap a:hover, .gh-migrated .fl-page-nav-wrap a:focus, .gh-migrated .fl-page-nav-wrap a:hover *, .gh-migrated .fl-page-nav-wrap a:focus *, .gh-migrated .fl-page-nav-wrap a.fas:hover, .gh-migrated .fl-page-nav-wrap a.fab:hover, .gh-migrated .fl-page-nav-wrap a.fas:focus, .gh-migrated .fl-page-nav-wrap a.fab:focus {color:#fff}
.gh-migrated .fl-page-nav-wrap .navbar-nav li>a {color:#c8c2da}
.gh-migrated .fl-page-nav-wrap .navbar-nav li>a:hover, .gh-migrated .fl-page-nav-wrap .navbar-nav li>a:focus {color:#fff}
.gh-migrated .fl-page-nav-wrap .navbar-nav li.current-menu-ancestor>a, .gh-migrated .fl-page-nav-wrap .navbar-nav li.current-menu-parent>a, .gh-migrated .fl-page-nav-wrap .navbar-nav li.current-menu-item>a {color:#fff}
.gh-migrated .fl-page-nav-wrap .navbar-nav li.current-menu-item~li.current-menu-item>a {color:#fff}
.gh-migrated .fl-page-nav-toggle-visible-always .fl-page-header-wrap .fl-page-header-container, .gh-migrated .fl-page-nav-toggle-visible-medium-mobile .fl-page-header-wrap .fl-page-header-container {padding-left:40px;padding-right:40px}
.gh-migrated .fl-page-nav-collapse ul.navbar-nav>li {border:none}
.gh-migrated .fl-page-nav-collapse ul.navbar-nav>li:first-child {border:none}
.gh-migrated .fl-page-header-container, .gh-migrated .fl-page-nav-container {position:relative}
.gh-migrated .fl-page-nav-col, .gh-migrated .fl-page-nav, .gh-migrated .fl-page-fixed-nav-wrap {position:inherit}
.gh-migrated ul.navbar-nav li.mega-menu {position:inherit}
.gh-migrated ul.navbar-nav li.mega-menu.fl-sub-menu-open>ul.sub-menu {left:0}
.gh-migrated ul.navbar-nav li.mega-menu>ul.sub-menu {position:absolute!important;width:100%;padding:20px;display:table}
.gh-migrated ul.navbar-nav li.mega-menu>ul.sub-menu ul.sub-menu {position:relative;width:auto;left:0!important;top:0;opacity:1!important;padding:0;border-top:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}
.gh-migrated ul.navbar-nav li.mega-menu>ul.sub-menu>li {position:relative;float:none;display:table-cell;height:auto;vertical-align:top;border-right:1px solid #6d5a9b}
.gh-migrated ul.navbar-nav li.mega-menu>ul.sub-menu>li:last-child {border-right:none}
.gh-migrated ul.navbar-nav li.mega-menu>ul.sub-menu>li li li a::before {font-family:'Font Awesome 5 Free';content:'\f105';font-weight:900;margin-right:10px}
.gh-migrated ul.navbar-nav li.mega-menu>ul.sub-menu>li>a {font-weight:700}
.gh-migrated ul.navbar-nav li.mega-menu.mega-menu-items-1>ul>li {width:100%}
.gh-migrated ul.navbar-nav li.mega-menu.mega-menu-items-2>ul>li {width:50%}
.gh-migrated ul.navbar-nav li.mega-menu.mega-menu-items-3>ul>li {width:33.33%}
.gh-migrated ul.navbar-nav li.mega-menu.mega-menu-items-4>ul>li {width:25%}
.gh-migrated ul.navbar-nav li.mega-menu.mega-menu-items-5>ul>li {width:20%}
.gh-migrated ul.navbar-nav li.mega-menu.mega-menu-items-6>ul>li {width:16.66%}
.gh-migrated .fl-content, .gh-migrated .fl-sidebar {margin:40px 0}
.gh-migrated .fl-footer-effect .fl-page-footer-wrap {z-index:-1;position:fixed;bottom:0;left:0;width:100%}
.gh-migrated .fl-footer-effect .fl-page {z-index:10}
.gh-migrated .fl-404 {padding:100px 0 150px}
.gh-migrated .fl-404 .fl-post-header h2 {font-size:30px}
.gh-migrated .fl-builder .container.fl-content-full .fl-post-header, .gh-migrated .fl-builder .container.fl-content-full .fl-comments {margin:0 40px;width:auto}

}
@media (min-width:992px) {
.gh-migrated .fl-fixed-width:not(.fl-nav-vertical):not(.fl-fixed-header):not(.fl-shrink) {padding:0}
.gh-migrated .container {padding-left:0;padding-right:0;width:900px}
.gh-migrated .container {padding-left:40px;padding-right:40px;width:auto}
.gh-migrated .fl-page {-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;width:980px}
.gh-migrated .fl-page {width:auto}
.gh-migrated .fl-page-nav-search {display:block}
.gh-migrated .fl-scroll-header .fl-page-header-primary, .gh-migrated .fl-scroll-header .fl-page-bar {-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:-webkit-transform .4s ease-in-out;-moz-transition:transform .4s ease-in-out;-o-transition:transform .4s ease-in-out;transition:transform .4s ease-in-out}
.gh-migrated .fl-scroll-header .fl-page-header-primary.fl-show, .gh-migrated .fl-scroll-header .fl-page-bar.fl-show {-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}
.gh-migrated .fl-sidebar {display:block}
.gh-migrated .fl-content {margin:40px 0}
.gh-migrated .fl-content-left {border-right:1px solid #e6e6e6;padding-right:40px}
.gh-migrated .fl-content-right {border-left:1px solid #e6e6e6;padding-left:40px}
.gh-migrated .fl-woo-content-left {float:left}
.gh-migrated .fl-woo-content-right {float:right}
.gh-migrated .fl-sidebar-right {padding-left:40px}
.gh-migrated .fl-sidebar-left {padding-right:40px}
.gh-migrated .fl-builder.fl-full-width .container.fl-content-full .fl-post-header, .gh-migrated .fl-builder.fl-full-width .container.fl-content-full .fl-comments {margin:0 40px;width:auto}

}
@media (min-width:1100px) {
.gh-migrated .fl-fixed-width .fl-page {width:1100px;max-width:90%}
.gh-migrated .container {width:1020px;max-width:90%}
.gh-migrated .container {padding-left:0;padding-right:0;width:1020px}
.gh-migrated .fl-page-nav-toggle-visible-always .fl-page-header-wrap .fl-page-header-container, .gh-migrated .fl-page-nav-toggle-visible-medium-mobile .fl-page-header-wrap .fl-page-header-container {padding-left:0;padding-right:0}
.gh-migrated .fl-builder.fl-full-width .container.fl-content-full .fl-post-header, .gh-migrated .fl-builder.fl-full-width .container.fl-content-full .fl-comments {margin:0 auto;width:1020px}

}
.gh-migrated .fl-framework-base-4 nav a.no-menu, .gh-migrated .fl-framework-bootstrap-4 nav a.no-menu {display:block}
.gh-migrated .woocommerce-page.fl-framework-bootstrap .product .label {font-size:16px;color:#2c3e50;padding:0}
@media (max-width:767px) {
.gh-migrated :not(.fl-nav-mobile-offcanvas) .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-right .fl-page-nav-collapse {width:100%}
.gh-migrated :not(.fl-nav-mobile-offcanvas) .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-right .fl-page-nav-collapse ul.navbar-nav {flex:0 0 100%}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-right .fl-page-nav-collapse ul.navbar-nav {float:none!important}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-right .fl-page-header-row .fl-page-header-logo {padding-bottom:20px}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-right .fl-page-header-logo-col, .gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-right .fl-page-nav-col {width:100%}
.gh-migrated .fl-framework-bootstrap-4 .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-right .fl-page-header-logo-col, .gh-migrated .fl-framework-bootstrap-4 .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-right .fl-page-nav-col {flex-basis:100%;max-width:100%}
.gh-migrated :not(.fl-nav-mobile-offcanvas) .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-left .fl-page-nav-collapse {width:100%}
.gh-migrated :not(.fl-nav-mobile-offcanvas) .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-left .fl-page-nav-collapse ul.navbar-nav {flex:0 0 100%}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-left .fl-page-header-row .fl-page-header-logo {padding-bottom:20px}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-left .fl-page-nav ul.navbar-nav>li:first-child a {padding-left:17px}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-left .fl-page-logo-wrap, .gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-left .fl-page-nav-col {width:100%}
.gh-migrated .fl-framework-bootstrap-4 .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-left .fl-page-header-logo-col, .gh-migrated .fl-framework-bootstrap-4 .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-left .fl-page-nav-col {flex-basis:100%;max-width:100%}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-centered-inline-logo {text-align:left}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-nav-centered-inline-logo .fl-page-header-logo {display:block}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-header-vertical {top:0}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse {border-top:1px solid #e6e6e6;padding-bottom:10px}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse.collapse {display:none!important;visibility:hidden!important}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse.collapse.in, .gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse.collapse.show {display:block!important;visibility:visible!important}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse.collapsing {display:block!important}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.navbar-nav {display:block;float:none}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.navbar-nav>li {border-color:#e6e6e6;border-bottom-style:solid;border-bottom-width:1px;display:block;float:none;position:relative}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.navbar-nav>li>a {color:#757575;text-align:left}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.navbar-nav>li>a:hover, .gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.navbar-nav>li>a:focus {color:#483182}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.navbar-nav>li.current-menu-item>a, .gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.navbar-nav>li.current-menu-item>.fl-submenu-icon-wrap .fl-submenu-toggle-icon {color:#483182}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.sub-menu li {border-color:#e6e6e6}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.sub-menu li a {color:#757575}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.sub-menu li a:hover {color:#483182}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse ul.sub-menu li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-collapse .fl-page-nav-search {display:none}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.sub-menu {background-color:#fff0;border:none;float:none;height:100%;list-style:none;overflow:hidden;padding:0;position:absolute;top:0;width:auto;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.sub-menu ul.sub-menu {padding-bottom:0;margin-left:15px}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.sub-menu li {border-top:1px solid #e6e6e6}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.sub-menu li a {clear:both;color:#757575;display:block;font-weight:400;line-height:20px;margin:0;padding:15px}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.sub-menu li a:hover, .gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.sub-menu li a:focus {color:#483182;text-decoration:none}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.sub-menu li a:before {font-family:'Font Awesome 5 Free';content:'\f105';font-weight:900;margin-right:10px}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul li.fl-mobile-sub-menu-open ul.sub-menu {position:static}
.gh-migrated .fl-submenu-toggle .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.navbar-nav .sub-menu {position:absolute}
.gh-migrated .fl-submenu-toggle .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.navbar-nav li.menu-item-has-children>a {padding-right:40px}
.gh-migrated .fl-submenu-toggle .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.navbar-nav li.menu-item-has-children>.fl-submenu-icon-wrap {visibility:visible}
.gh-migrated .fl-submenu-toggle .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.navbar-nav li.fl-mobile-sub-menu-open>.fl-submenu-icon-wrap .fl-submenu-toggle-icon:after {content:'\f106'}
.gh-migrated .fl-submenu-toggle .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.navbar-nav li.fl-mobile-sub-menu-open>ul.sub-menu, .gh-migrated .fl-submenu-toggle .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.navbar-nav li.fl-mobile-sub-menu-open .hide-heading>ul.sub-menu {position:static}
.gh-migrated .fl-submenu-toggle .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.navbar-nav li a {padding:15px}
.gh-migrated .fl-submenu-toggle .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.navbar-nav li:hover>.fl-submenu-icon-wrap .fl-submenu-toggle-icon, .gh-migrated .fl-submenu-toggle .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav ul.navbar-nav li:focus>.fl-submenu-icon-wrap .fl-submenu-toggle-icon {color:#483182}
.gh-migrated .fl-submenu-indicator .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile ul.navbar-nav li.menu-item-has-children>a {padding-right:40px}
.gh-migrated .fl-submenu-indicator .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile ul.navbar-nav li.menu-item-has-children>a:after {content:''!important}
.gh-migrated .fl-submenu-indicator .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile ul.navbar-nav li.menu-item-has-children>.fl-submenu-icon-wrap {visibility:visible}
.gh-migrated .fl-submenu-indicator .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile ul.navbar-nav li.menu-item-has-children:hover>.fl-submenu-icon-wrap .fl-submenu-toggle-icon, .gh-migrated .fl-submenu-indicator .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile ul.navbar-nav li.menu-item-has-children:focus>.fl-submenu-icon-wrap .fl-submenu-toggle-icon {color:#483182}
.gh-migrated .fl-submenu-indicator .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile ul.navbar-nav li.menu-item-has-children.fl-mobile-sub-menu-open>.fl-submenu-icon-wrap .fl-submenu-toggle-icon:after {content:'\f106'}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-submenu-icon-wrap {visibility:hidden}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-submenu-icon-wrap .fl-submenu-toggle-icon {position:absolute;padding:15px;top:0;right:0;bottom:0;cursor:pointer}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-submenu-icon-wrap .fl-submenu-toggle-icon:after {font-family:'Font Awesome 5 Free';content:'\f107';font-weight:900;font-size:16px;float:right}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-wrap {border:0 none;margin:0;padding-bottom:20px}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav .navbar-toggle {display:block;background:#e6e6e6;color:#757575}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav .navbar-toggle * {color:#757575}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav .navbar-toggle:hover, .gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav .navbar-toggle:focus {background:#e6e6e6}
.gh-migrated .fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile.fl-page-header-fixed .fl-page-nav-wrap {padding-top:20px}

}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed, .gh-migrated .fl-page-header-fixed {display:none;left:auto;position:fixed!important;top:0;width:100%;z-index:100;border-color:#e6e6e6;background-color:#fff0;color:#757575;-moz-box-shadow:0 0 7px rgb(0 0 0 / .1);-webkit-box-shadow:0 0 7px rgb(0 0 0 / .1);box-shadow:0 0 7px rgb(0 0 0 / .1)}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed *, .gh-migrated .fl-page-header-fixed *, .gh-migrated .fl-page-nav-right.fl-page-header-fixed h1, .gh-migrated .fl-page-header-fixed h1, .gh-migrated .fl-page-nav-right.fl-page-header-fixed h2, .gh-migrated .fl-page-header-fixed h2, .gh-migrated .fl-page-nav-right.fl-page-header-fixed h3, .gh-migrated .fl-page-header-fixed h3, .gh-migrated .fl-page-nav-right.fl-page-header-fixed h4, .gh-migrated .fl-page-header-fixed h4, .gh-migrated .fl-page-nav-right.fl-page-header-fixed h5, .gh-migrated .fl-page-header-fixed h5, .gh-migrated .fl-page-nav-right.fl-page-header-fixed h6, .gh-migrated .fl-page-header-fixed h6 {color:#757575}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed a, .gh-migrated .fl-page-header-fixed a, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a *, .gh-migrated .fl-page-header-fixed a *, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a.fas, .gh-migrated .fl-page-header-fixed a.fas, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a.fab, .gh-migrated .fl-page-header-fixed a.fab {color:#757575}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed a:hover, .gh-migrated .fl-page-header-fixed a:hover, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a:focus, .gh-migrated .fl-page-header-fixed a:focus, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a:hover *, .gh-migrated .fl-page-header-fixed a:hover *, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a:focus *, .gh-migrated .fl-page-header-fixed a:focus *, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a.fas:hover, .gh-migrated .fl-page-header-fixed a.fas:hover, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a.fab:hover, .gh-migrated .fl-page-header-fixed a.fab:hover, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a.fas:focus, .gh-migrated .fl-page-header-fixed a.fas:focus, .gh-migrated .fl-page-nav-right.fl-page-header-fixed a.fab:focus, .gh-migrated .fl-page-header-fixed a.fab:focus {color:#483182}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed .navbar-nav li>a, .gh-migrated .fl-page-header-fixed .navbar-nav li>a {color:#757575}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed .navbar-nav li>a:hover, .gh-migrated .fl-page-header-fixed .navbar-nav li>a:hover, .gh-migrated .fl-page-nav-right.fl-page-header-fixed .navbar-nav li>a:focus, .gh-migrated .fl-page-header-fixed .navbar-nav li>a:focus {color:#483182}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed .navbar-nav li.current-menu-ancestor>a, .gh-migrated .fl-page-header-fixed .navbar-nav li.current-menu-ancestor>a, .gh-migrated .fl-page-nav-right.fl-page-header-fixed .navbar-nav li.current-menu-parent>a, .gh-migrated .fl-page-header-fixed .navbar-nav li.current-menu-parent>a, .gh-migrated .fl-page-nav-right.fl-page-header-fixed .navbar-nav li.current-menu-item>a, .gh-migrated .fl-page-header-fixed .navbar-nav li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed .navbar-nav li.current-menu-item~li.current-menu-item>a, .gh-migrated .fl-page-header-fixed .navbar-nav li.current-menu-item~li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed .fl-page-header-container.container, .gh-migrated .fl-page-header-fixed .fl-page-header-container.container {padding-bottom:8px;padding-top:8px}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed.fl-page-header.fl-page-nav-toggle-visible-always .fl-page-header-row .fl-page-header-logo, .gh-migrated .fl-page-header-fixed.fl-page-header.fl-page-nav-toggle-visible-always .fl-page-header-row .fl-page-header-logo {padding-bottom:0}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed.fl-page-header.fl-page-nav-toggle-visible-always .fl-page-nav-collapse, .gh-migrated .fl-page-header-fixed.fl-page-header.fl-page-nav-toggle-visible-always .fl-page-nav-collapse {margin-top:20px}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed.fl-page-header.fl-page-nav-toggle-visible-always .fl-page-nav .navbar-toggle, .gh-migrated .fl-page-header-fixed.fl-page-header.fl-page-nav-toggle-visible-always .fl-page-nav .navbar-toggle {top:15px}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed .fl-logo-img, .gh-migrated .fl-page-header-fixed .fl-logo-img {max-height:80px!important;width:auto!important}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed .fl-logo-text, .gh-migrated .fl-page-header-fixed .fl-logo-text {font-size:28px}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed .fl-page-nav-wrap .navbar-nav>li>a, .gh-migrated .fl-page-header-fixed .fl-page-nav-wrap .navbar-nav>li>a {padding:10px 15px}
.gh-migrated .fl-page-nav-right.fl-page-header-fixed .fl-page-nav ul.sub-menu, .gh-migrated .fl-page-header-fixed .fl-page-nav ul.sub-menu {background-color:#fff0}
.gh-migrated .admin-bar .fl-page-nav-right.fl-page-header-fixed, .gh-migrated .admin-bar .fl-page-header-fixed, .gh-migrated .admin-bar .fl-page-header-vertical {top:32px}
@media (min-width:991px) {
.gh-migrated .fl-page-header-fixed .fl-page-fixed-nav-wrap {padding-right:0}

}
@media (min-width:992px) {
.gh-migrated .fl-fixed-width .fl-page-nav-right.fl-page-header-fixed, .gh-migrated .fl-fixed-width .fl-page-header-fixed {width:980px}

}
@media (min-width:1100px) {
.gh-migrated .fl-fixed-width .fl-page-nav-right.fl-page-header-fixed, .gh-migrated .fl-fixed-width .fl-page-header-fixed {width:1100px;max-width:90%}

}
.gh-migrated .fl-page-nav-bottom .fl-page-header-content {text-align:center}
.gh-migrated .fl-page-nav-bottom .fl-page-header-content .fl-page-header-text {font-size:16px;margin:25px 0 0}
.gh-migrated .fl-page-nav-bottom .fl-page-header-content .fl-social-icons {margin:15px 0 0}
.gh-migrated .fl-page-nav-bottom .fl-page-header-content .fl-social-icons .fl-icon {margin:0 5px 10px}
.gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked {font-size:1em}
.gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fas {color:#000}
.gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fab, .gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fas.fa-envelope, .gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fas.fa-rss, .gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fas.fa-map-marker-alt {color:#fff;transition:opacity .2s ease-in-out;opacity:.8}
.gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fab:hover, .gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fas.fa-envelope:hover, .gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fas.fa-rss:hover, .gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fas.fa-map-marker-alt:hover {color:#666;opacity:1}
.gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fab, .gh-migrated .fl-page-nav-bottom .fl-social-icons-stacked .fas {vertical-align:inherit;width:inherit;height:inherit;line-height:inherit}
@media (max-width:767px) {
.gh-migrated .fl-page-nav-toggle-icon.fl-page-nav-bottom .fl-page-header-content {border-top:1px solid #e6e6e6;margin-top:20px}

}
@media (min-width:768px) {
.gh-migrated .fl-page-nav-bottom .fl-page-header-row {display:table;table-layout:fixed;width:100%}
.gh-migrated .fl-page-nav-bottom .fl-page-header-row .col-md-6, .gh-migrated .fl-page-nav-bottom .fl-page-header-row .col-lg-6 {display:table-cell;float:none;vertical-align:middle}
.gh-migrated .fl-page-nav-bottom .fl-page-header-logo {text-align:left}
.gh-migrated .fl-page-nav-bottom .fl-page-header-content {margin-right:-15px;text-align:right}
.gh-migrated .fl-page-nav-bottom .fl-page-header-content .fl-page-header-text {margin:0 0 10px}
.gh-migrated .fl-page-nav-bottom .fl-page-header-content .fl-social-icons {margin:0}
.gh-migrated .fl-page-nav-bottom .fl-page-header-content .fl-social-icons .fl-icon {margin:0 0 10px 10px}

}
@media (max-width:991px) {
.gh-migrated .fl-page-nav-toggle-icon.fl-page-nav-bottom .fl-page-header-content {margin-right:0}

}
.gh-migrated .fl-page-nav-right .fl-page-header-container {padding-bottom:0}
.gh-migrated .fl-page-nav-right .fl-page-header-logo {padding-bottom:20px}
.gh-migrated .fl-page-nav-right .fl-page-nav-search {position:relative}
.gh-migrated .fl-page-nav-right .fl-page-nav-search a.fa-search {padding:13px 0 13px 15px;position:static}
.gh-migrated .fl-page-nav-right .fl-page-nav-collapse {display:inline-flex!important;align-items:center;justify-content:flex-end}
@media (min-width:768px) {
.gh-migrated .fl-page-nav-right {text-align:center}
.gh-migrated .fl-page-nav-right .fl-page-header-container {padding-left:15px;padding-right:15px}
.gh-migrated .fl-page-nav-right .fl-page-header-logo {padding-left:40px;padding-right:40px}
.gh-migrated .fl-page-nav-right .fl-page-nav-wrap {margin-left:-15px;margin-right:-15px}
.gh-migrated .fl-page-nav-right .fl-page-nav ul.navbar-nav {float:none!important}
.gh-migrated .fl-page-nav-right .fl-page-nav ul.navbar-nav:last-child {margin-right:0}
.gh-migrated .fl-page-nav-right .fl-page-nav ul.navbar-nav>li {display:inline-block;float:none}
.gh-migrated .fl-page-nav-right .fl-page-nav ul.sub-menu {text-align:left}

}
@media (min-width:992px) {
.gh-migrated .fl-page-nav-right {text-align:right}
.gh-migrated .fl-page-nav-right .fl-page-header-wrap {border-bottom:1px solid rgb(117 117 117 / .13)}
.gh-migrated .fl-page-nav-right .fl-page-header-container {padding-bottom:20px}
.gh-migrated .fl-page-nav-right .fl-page-header-row {display:table;table-layout:fixed;width:100%;margin-left:0;margin-right:0}
.gh-migrated .fl-page-nav-right .fl-page-header-row>div {display:table-cell;float:none;vertical-align:middle}
.gh-migrated .fl-page-nav-right .fl-page-header-row .fl-page-header-logo-col {padding-left:0}
.gh-migrated .fl-page-nav-right .fl-page-header-row .fl-page-logo-wrap {padding-left:0}
.gh-migrated .fl-page-nav-right .fl-page-header-row .fl-page-nav-col {padding-right:0}
.gh-migrated .fl-page-nav-right.fl-page-nav-toggle-visible-always .fl-page-header-row {display:block;width:auto}
.gh-migrated .fl-page-nav-right.fl-page-nav-toggle-visible-always .fl-page-header-row>div {display:block;width:100%}
.gh-migrated .fl-page-nav-right .fl-page-header-logo {padding:0;text-align:left}
.gh-migrated .fl-page-nav-right .fl-page-nav-wrap {border-color:#e6e6e6;background-color:#fff0;color:#757575;background:none;border:none;margin-left:0;margin-right:0}
.gh-migrated .fl-page-nav-right .fl-page-nav-wrap *, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap h1, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap h2, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap h3, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap h4, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap h5, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap h6 {color:#757575}
.gh-migrated .fl-page-nav-right .fl-page-nav-wrap a, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a *, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a.fas, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a.fab {color:#757575}
.gh-migrated .fl-page-nav-right .fl-page-nav-wrap a:hover, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a:focus, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a:hover *, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a:focus *, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a.fas:hover, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a.fab:hover, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a.fas:focus, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap a.fab:focus {color:#483182}
.gh-migrated .fl-page-nav-right .fl-page-nav-wrap .navbar-nav li>a {color:#757575}
.gh-migrated .fl-page-nav-right .fl-page-nav-wrap .navbar-nav li>a:hover, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap .navbar-nav li>a:focus {color:#483182}
.gh-migrated .fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.current-menu-ancestor>a, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.current-menu-parent>a, .gh-migrated .fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.current-menu-item~li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-nav-right .fl-page-nav {border:none;margin:0}
.gh-migrated .fl-page-nav-right .fl-page-nav ul.navbar-nav {float:right!important}
.gh-migrated .fl-page-nav-right .fl-page-nav ul.navbar-nav>li {display:block;float:left}
.gh-migrated .fl-fixed-width .fl-page-nav-right .fl-page-header-container {padding-left:0;padding-right:0}

}
@media (min-width:1100px) {
.gh-migrated .fl-page-nav-right.fl-page-nav-toggle-visible-always .fl-page-header-container, .gh-migrated .fl-page-nav-right.fl-page-nav-toggle-visible-medium-mobile .fl-page-header-container, .gh-migrated .fl-page-nav-right .fl-page-header-container {padding-left:0;padding-right:0}

}
.gh-migrated .fl-page-footer {border-top:1px solid #e6e6e6;font-size:12px;border-color:#e6e6e6;background-color:#fff;color:#757575}
.gh-migrated .fl-page-footer *, .gh-migrated .fl-page-footer h1, .gh-migrated .fl-page-footer h2, .gh-migrated .fl-page-footer h3, .gh-migrated .fl-page-footer h4, .gh-migrated .fl-page-footer h5, .gh-migrated .fl-page-footer h6 {color:#757575}
.gh-migrated .fl-page-footer a, .gh-migrated .fl-page-footer a *, .gh-migrated .fl-page-footer a.fas, .gh-migrated .fl-page-footer a.fab {color:#483182}
.gh-migrated .fl-page-footer a:hover, .gh-migrated .fl-page-footer a:focus, .gh-migrated .fl-page-footer a:hover *, .gh-migrated .fl-page-footer a:focus *, .gh-migrated .fl-page-footer a.fas:hover, .gh-migrated .fl-page-footer a.fab:hover, .gh-migrated .fl-page-footer a.fas:focus, .gh-migrated .fl-page-footer a.fab:focus {color:#483182}
.gh-migrated .fl-page-footer .navbar-nav li>a {color:#483182}
.gh-migrated .fl-page-footer .navbar-nav li>a:hover, .gh-migrated .fl-page-footer .navbar-nav li>a:focus {color:#483182}
.gh-migrated .fl-page-footer .navbar-nav li.current-menu-ancestor>a, .gh-migrated .fl-page-footer .navbar-nav li.current-menu-parent>a, .gh-migrated .fl-page-footer .navbar-nav li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-footer .navbar-nav li.current-menu-item~li.current-menu-item>a {color:#483182}
.gh-migrated .fl-page-footer-container {padding-top:20px}
.gh-migrated .fl-page-footer-text {padding-bottom:20px;text-align:center}
.gh-migrated .fl-page-footer .fl-social-icons {text-align:center}
.gh-migrated .fl-page-footer .fl-social-icons .fl-icon {margin:0 5px 20px 5px}
.gh-migrated .fl-page-footer .fl-social-icons .fallback {font-size:26px;line-height:24px}
.gh-migrated .fl-page-footer .fl-social-icons-stacked {font-size:1em}
.gh-migrated .fl-page-footer .fl-social-icons-stacked .fas {color:#000}
.gh-migrated .fl-page-footer .fl-social-icons-stacked .fab, .gh-migrated .fl-page-footer .fl-social-icons-stacked .fas.fa-envelope, .gh-migrated .fl-page-footer .fl-social-icons-stacked .fas.fa-rss, .gh-migrated .fl-page-footer .fl-social-icons-stacked .fas.fa-map-marker-alt {color:#fff;transition:opacity .2s ease-in-out;opacity:.8}
.gh-migrated .fl-page-footer .fl-social-icons-stacked .fab:hover, .gh-migrated .fl-page-footer .fl-social-icons-stacked .fas.fa-envelope:hover, .gh-migrated .fl-page-footer .fl-social-icons-stacked .fas.fa-rss:hover, .gh-migrated .fl-page-footer .fl-social-icons-stacked .fas.fa-map-marker-alt:hover {color:#666;opacity:1}
.gh-migrated .fl-page-footer .fl-social-icons-stacked .fab, .gh-migrated .fl-page-footer .fl-social-icons-stacked .fas {vertical-align:inherit;width:inherit;height:inherit;line-height:inherit}
.gh-migrated .fl-page-footer-nav {float:none;text-align:center;margin:0 0 10px}
.gh-migrated .fl-page-footer-nav>li {display:inline-block;float:none}
.gh-migrated .fl-page-footer-nav ul.sub-menu {display:none}
.gh-migrated .fl-page-footer-nav>li>a {padding-top:0}
.gh-migrated .fl-page-footer-nav>li>a:hover, .gh-migrated .fl-page-footer-nav>li>a:focus {background:#fff0}
@media (min-width:768px) {
.gh-migrated .fl-page-footer .fl-page-footer-text, .gh-migrated .fl-page-footer .fl-social-icons {text-align:inherit}
.gh-migrated .fl-page-footer .fl-page-footer-nav {margin:0 -15px 10px}
.gh-migrated .fl-page-footer .text-left .fl-social-icons .fl-icon {margin:0 10px 20px 0}
.gh-migrated .fl-page-footer .text-left .fl-page-footer-nav {text-align:left}
.gh-migrated .fl-page-footer .text-right .fl-social-icons .fl-icon {margin:0 0 20px 10px}
.gh-migrated .fl-page-footer .text-right .fl-page-footer-nav {text-align:right}

}
@media (min-width:992px) {
.gh-migrated .fl-page-footer-container {padding:20px 0 0}

}
.gh-migrated .has-blocks .fl-post-content>.alignwide {max-width:1100px}
.gh-migrated .fl-fixed-width.has-blocks:not(.fl-has-sidebar) .fl-post-content .alignfull {width:auto;max-width:100vw}
.gh-migrated .has-blocks:not(.fl-has-sidebar) .fl-post-content .alignfull {margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);width:auto;max-width:100vw}
.gh-migrated .has-blocks .fl-post-content .wp-block-group.alignwide, .gh-migrated .has-blocks .fl-post-content .wp-block-group.alignfull {margin-left:0;margin-right:0}
.gh-migrated .has-blocks .fl-post-content .wp-block-group.alignwide .wp-block-list, .gh-migrated .has-blocks .fl-post-content .wp-block-group.alignfull .wp-block-list {padding-inline:0}
.gh-migrated .has-blocks .fl-post-content .wp-block-group.alignwide .wp-block-list li, .gh-migrated .has-blocks .fl-post-content .wp-block-group.alignfull .wp-block-list li {list-style-position:inside}
.gh-migrated .has-blocks:not(.fl-has-sidebar) .fl-post-content .wp-block-group.alignfull, .gh-migrated .has-blocks:not(.fl-has-sidebar) .fl-post-content .wp-block-group.alignfull.wp-block-group-is-layout-flex, .gh-migrated .has-blocks:not(.fl-has-sidebar) .fl-post-content .wp-block-group.alignfull.wp-block-group-is-layout-grid {margin-left:calc(-100vw / 2 + 100% / 2);margin-right:calc(-100vw / 2 + 100% / 2)}
.gh-migrated .has-blocks .fl-post-content>.alignfull, .gh-migrated .page-template-tpl-sidebar.has-blocks .fl-post-content .alignfull {margin:1.5em 0;max-width:100%}
.gh-migrated .has-blocks .fl-post-content .alignwide {margin-left:-5%;margin-right:-5%;width:auto;max-width:100vw}
.gh-migrated .has-blocks .fl-post-content ul, .gh-migrated .has-blocks .fl-post-content ol {margin:1.5em 0;list-style-position:outside}
.gh-migrated .has-blocks .fl-post-content .alignwide ul, .gh-migrated .has-blocks .fl-post-content .alignfull ul, .gh-migrated .has-blocks .fl-post-content .alignwide ol, .gh-migrated .has-blocks .fl-post-content .alignfull ol {max-width:100%}
.gh-migrated .has-blocks .fl-post-content li {list-style-position:outside}
.gh-migrated .has-blocks .fl-post-content .wp-block-navigation {margin-bottom:1.5em}
.gh-migrated .has-blocks .fl-post-content .wp-block-navigation ul {margin-top:0;margin-bottom:0}
.gh-migrated .wp-block-embed.type-video>.wp-block-embed__wrapper {position:relative;width:100%;height:0;padding-top:56.25%}
.gh-migrated .wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {position:absolute;width:100%;height:100%;top:0;left:0;bottom:0;right:0}
.gh-migrated .wp-block-file object, .gh-migrated .wp-block-file .fluid-width-video-wrapper object {position:static}
.gh-migrated .wp-block-gallery:not(.components-placeholder) {margin:1.5em auto}
.gh-migrated .wp-block-cover-text p {padding:1.5em 20px}
@media screen and (min-width:768px) {
.gh-migrated .wp-block-cover-text p {padding:1.5em 0}

}
.gh-migrated ul.wp-block-latest-posts.alignwide, .gh-migrated ul.wp-block-latest-posts.alignfull, .gh-migrated ul.wp-block-latest-posts.is-grid.alignwide, .gh-migrated ul.wp-block-latest-posts.is-grid.alignwide {padding:0 20px}
.gh-migrated .wp-block-table {display:block;overflow-x:auto}
.gh-migrated .wp-block-table table {border-collapse:collapse;width:100%}
.gh-migrated .wp-block-table td, .gh-migrated .wp-block-table th {padding:.5em}
.gh-migrated .has-blocks .has-fl-heading-text-color {color:#176824}
.gh-migrated .has-blocks .has-fl-heading-text-background-color {background-color:#176824}
.gh-migrated .has-blocks .has-fl-body-bg-color {color:#efefe9}
.gh-migrated .has-blocks .has-fl-body-bg-background-color {background-color:#efefe9}
.gh-migrated .has-blocks .has-fl-body-text-color {color:#2c3e50}
.gh-migrated .has-blocks .has-fl-body-text-background-color {background-color:#2c3e50}
.gh-migrated .has-blocks .has-fl-accent-color {color:#1e73be}
.gh-migrated .has-blocks .has-fl-accent-background-color {background-color:#1e73be}
.gh-migrated .has-blocks .has-fl-accent-hover-color {color:#483182}
.gh-migrated .has-blocks .has-fl-accent-hover-background-color {background-color:#483182}
.gh-migrated .has-blocks .has-fl-topbar-bg-color {color:#fff}
.gh-migrated .has-blocks .has-fl-topbar-bg-background-color {background-color:#fff}
.gh-migrated .has-blocks .has-fl-topbar-text-color {color:#757575}
.gh-migrated .has-blocks .has-fl-topbar-text-background-color {background-color:#757575}
.gh-migrated .has-blocks .has-fl-topbar-link-color {color:#483182}
.gh-migrated .has-blocks .has-fl-topbar-link-background-color {background-color:#483182}
.gh-migrated .has-blocks .has-fl-topbar-hover-color {color:#483182}
.gh-migrated .has-blocks .has-fl-topbar-hover-background-color {background-color:#483182}
.gh-migrated .has-blocks .has-fl-header-bg-color {color:#fff}
.gh-migrated .has-blocks .has-fl-header-bg-background-color {background-color:#fff}
.gh-migrated .has-blocks .has-fl-header-text-color {color:#757575}
.gh-migrated .has-blocks .has-fl-header-text-background-color {background-color:#757575}
.gh-migrated .has-blocks .has-fl-header-link-color {color:#757575}
.gh-migrated .has-blocks .has-fl-header-link-background-color {background-color:#757575}
.gh-migrated .has-blocks .has-fl-header-hover-color {color:#483182}
.gh-migrated .has-blocks .has-fl-header-hover-background-color {background-color:#483182}
.gh-migrated .has-blocks .has-fl-nav-bg-color {color:#483182}
.gh-migrated .has-blocks .has-fl-nav-bg-background-color {background-color:#483182}
.gh-migrated .has-blocks .has-fl-nav-link-color {color:#c8c2da}
.gh-migrated .has-blocks .has-fl-nav-link-background-color {background-color:#c8c2da}
.gh-migrated .has-blocks .has-fl-nav-hover-color {color:#fff}
.gh-migrated .has-blocks .has-fl-nav-hover-background-color {background-color:#fff}
.gh-migrated .has-blocks .has-fl-content-bg-color {color:#fff}
.gh-migrated .has-blocks .has-fl-content-bg-background-color {background-color:#fff}
.gh-migrated .has-blocks .has-fl-footer-widgets-bg-color {color:#fff}
.gh-migrated .has-blocks .has-fl-footer-widgets-bg-background-color {background-color:#fff}
.gh-migrated .has-blocks .has-fl-footer-widgets-text-color {color:#757575}
.gh-migrated .has-blocks .has-fl-footer-widgets-text-background-color {background-color:#757575}
.gh-migrated .has-blocks .has-fl-footer-widgets-link-color {color:#483182}
.gh-migrated .has-blocks .has-fl-footer-widgets-link-background-color {background-color:#483182}
.gh-migrated .has-blocks .has-fl-footer-widgets-hover-color {color:#483182}
.gh-migrated .has-blocks .has-fl-footer-widgets-hover-background-color {background-color:#483182}
.gh-migrated .has-blocks .has-fl-footer-bg-color {color:#fff}
.gh-migrated .has-blocks .has-fl-footer-bg-background-color {background-color:#fff}
.gh-migrated .has-blocks .has-fl-footer-text-color {color:#757575}
.gh-migrated .has-blocks .has-fl-footer-text-background-color {background-color:#757575}
.gh-migrated .has-blocks .has-fl-footer-link-color {color:#483182}
.gh-migrated .has-blocks .has-fl-footer-link-background-color {background-color:#483182}
.gh-migrated .has-blocks .has-fl-footer-hover-color {color:#483182}
.gh-migrated .has-blocks .has-fl-footer-hover-background-color {background-color:#483182}
@media (max-width:991px) {
.gh-migrated {font-size:14px;line-height:1.45}
.gh-migrated h1 {font-size:36px;line-height:1.4;letter-spacing:0}
.gh-migrated h2 {font-size:30px;line-height:1.4;letter-spacing:0}
.gh-migrated h3 {font-size:24px;line-height:1.4;letter-spacing:0}
.gh-migrated h4 {font-size:18px;line-height:1.4;letter-spacing:0}
.gh-migrated h5 {font-size:14px;line-height:1.4;letter-spacing:0}
.gh-migrated h6 {font-size:12px;line-height:1.4;letter-spacing:0}
.gh-migrated .wp-block-button .wp-block-button__link {font-size:16px;line-height:1.2}
.gh-migrated .fl-page button, .gh-migrated .fl-page input[type=button], .gh-migrated .fl-page input[type=submit] {font-size:16px;line-height:1.2}
.gh-migrated a.fl-button, .gh-migrated a.fl-button:visited, .gh-migrated .fl-page a.fl-button, .gh-migrated .fl-page a.fl-button:visited {font-size:16px;line-height:1.2}
.gh-migrated a.fl-button:hover {font-size:16px;line-height:1.2}
.gh-migrated .fl-page .fl-module-woocommerce a.button, .gh-migrated .fl-page .fl-post-module-woo-button a.button, .gh-migrated .fl-page .fl-module-woocommerce a.button:visited, .gh-migrated .fl-page .fl-post-module-woo-button a.button:visited, .gh-migrated .fl-page .fl-module-woocommerce button[type=button], .gh-migrated .fl-page .fl-post-module-woo-button button[type=button], .gh-migrated .fl-page .fl-module-woocommerce button[type=submit], .gh-migrated .fl-page .fl-post-module-woo-button button[type=submit] {font-size:16px;line-height:1.2}

}
@media (max-width:767px) {
.gh-migrated {font-size:14px;line-height:1.45}
.gh-migrated h1 {font-size:36px;line-height:1.4;letter-spacing:0}
.gh-migrated h2 {font-size:30px;line-height:1.4;letter-spacing:0}
.gh-migrated h3 {font-size:24px;line-height:1.4;letter-spacing:0}
.gh-migrated h3 {font-size:24px;line-height:1.4;letter-spacing:0}
.gh-migrated h4 {font-size:18px;line-height:1.4;letter-spacing:0}
.gh-migrated h5 {font-size:14px;line-height:1.4;letter-spacing:0}
.gh-migrated h6 {font-size:12px;line-height:1.4;letter-spacing:0}
.gh-migrated .wp-block-button .wp-block-button__link {font-size:16px;line-height:1.2}
.gh-migrated .fl-page button, .gh-migrated .fl-page input[type=button], .gh-migrated .fl-page input[type=submit] {font-size:16px;line-height:1.2}
.gh-migrated a.fl-button, .gh-migrated a.fl-button:visited, .gh-migrated .fl-page a.fl-button, .gh-migrated .fl-page a.fl-button:visited {font-size:16px;line-height:1.2}
.gh-migrated .fl-page .fl-module-woocommerce a.button, .gh-migrated .fl-page .fl-post-module-woo-button a.button, .gh-migrated .fl-page .fl-module-woocommerce a.button:visited, .gh-migrated .fl-page .fl-post-module-woo-button a.button:visited, .gh-migrated .fl-page .fl-module-woocommerce button[type=button], .gh-migrated .fl-page .fl-post-module-woo-button button[type=button], .gh-migrated .fl-page .fl-module-woocommerce button[type=submit], .gh-migrated .fl-page .fl-post-module-woo-button button[type=submit] {font-size:16px;line-height:1.2}

}
.gh-migrated .pum-theme-797 .pum-container, .gh-migrated .pum-theme-lightbox .pum-container {padding:6px 6px 1px 6px!important;border-radius:50px!important}
.gh-migrated .pum-container.custom-position {border-radius:50px!important}
.gh-migrated .pum-content iframe {border-radius:45px!important}
.gh-migrated .fl-logo-img {max-width:200px}
.gh-migrated .new-header {position:absolute;width:100%;z-index:9}
.gh-migrated .gform_heading {display:none}
.gh-migrated input#gform_submit_button_1, .gh-migrated input#gform_submit_button_4 {background:#ff681f;border:3px solid #fff;border-radius:10px;color:#fff;filter:drop-shadow(2px 4px 6px rgb(0 0 0 / .3));font-size:21px;font-weight:800;padding:14px;text-transform:uppercase;width:100%}
.gh-migrated .faq-sec i.fl-accordion-button-icon.fl-accordion-button-icon-left.fas.fa-hand-point-right {opacity:1!important}
.gh-migrated .contact-us-form .gform-theme--foundation .gform_fields {row-gap:15px!important}
.gh-migrated .contact-us-form input {height:35px!important;padding:0!important}
.gh-migrated .contact-us-form textarea#input_3_4 {max-height:130px}
.gh-migrated .web-form-template {background:#fff;border-radius:5px;box-shadow:2px 2px 10px rgb(0 0 0 / 40%);padding:20px}
.gh-migrated input#input_1_3, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields li.gfield {padding-right:0!important}
.gh-migrated .gform_footer.top_label {margin:0!important;padding:10px 0 0!important}
.gh-migrated .web-form-template.orange-button-form input#gform_submit_button_1 {background:#ff681f!important;border-color:#ff681f;box-shadow:0 0 10px 0 rgb(0 0 0 / .6);color:#fff;font-size:22px;width:100%}
.gh-migrated input#input_1_1 {margin-bottom:-15px}
.gh-migrated .gform-body.gform_body input {border:1px #8f949a solid;height:35px;padding:0 10px}
.gh-migrated .txt-shadow {text-shadow:2px 2px 4px rgb(0 0 0 / 60%)!important}
.gh-migrated .j-border {background:#fff;border:1px solid;border-radius:10px;box-shadow:0 0 6px rgb(0 0 0 / 50%);padding:5px}
.gh-migrated .j-border-vid iframe {background:#fff;border:1px solid;border-radius:45px;box-shadow:0 0 6px rgb(0 0 0 / 50%);padding:5px}
.gh-migrated .j-border-inset {box-shadow:0 0 10px 3px rgb(0 0 0 / .3) inset}
.gh-migrated .Jbord-img img {border:5px solid #ffffff!important;border-radius:10px!important;box-shadow:0 0 6px rgb(0 0 0 / 50%)!important}
.gh-migrated .gfield input::placeholder {color:#000;padding-left:10px}
.gh-migrated .Jshadowinset form {box-shadow:0 0 10px 3px rgb(0 0 0 / .3) inset;padding:30px 40px!important}
.gh-migrated .orange-form .gform_button {background:#ff681f!important;border-color:#ff681f!important;display:block!important;font-size:22px!important;margin:auto!important;padding:15px!important}
.gh-migrated .form-full-width-button .gform_button {display:block!important;width:100%!important}
.gh-migrated .gfield_label {font-size:22px!important;font-weight:600!important}
.gh-migrated .orange-links a {color:#1967d2!important}
.gh-migrated .orange-links a:hover {text-decoration:underline}
.gh-migrated .orange-internal-links a {color:#e44700!important}
.gh-migrated .orange-internal-links a:hover {text-decoration:underline}
.gh-migrated .list-icon-top-align.fl-module-list .fl-list-item-content .fl-list-item-content-icon {display:table-cell;vertical-align:top!important}
.gh-migrated .start-here-top {bottom:180px;max-width:280px;position:absolute;right:-220px}
.gh-migrated .pos-rel {position:relative}
.gh-migrated .start-here-bottom {max-width:280px;position:absolute;right:-20px;top:60px}
.gh-migrated .ztop {position:relative;z-index:9!important}
.gh-migrated .light-links-blue a:hover {text-decoration:underline}
.gh-migrated .video-review-row .fl-node-wku392gj1otc>.fl-col-content, .gh-migrated .video-review-row .fl-node-wku392gj1otc> .wp-block-group__inner-container > .fl-col-content {padding-bottom:0}
.gh-migrated .filtr-drp-shdw {filter:drop-shadow(2px 4px 6px black)!important}
.gh-migrated .form-drop-shadow {filter:drop-shadow(2px 2px 10px rgb(0 0 0 / 40%))}
.gh-migrated a.wp-login-lost-password, .gh-migrated .wp-adminify-login-customizer #login #nav a {color:#fff!important}
.gh-migrated .in-copy-link a {color:#1967d2!important}
.gh-migrated .in-copy-link a:hover {text-decoration:underline!important}
.gh-migrated .concave-top-section .fl-shape-content {filter:drop-shadow(2px 2px 4px rgb(0 0 0 / .5))!important}
.gh-migrated .concave-top-section .fl-builder-layer .fl-shape {stroke:#fff!important;stroke-width:3px!important}
.gh-migrated .web-form-template-3.orange-button-form {background:#fff;border-style:solid;border-width:3px 3px 3px 3px;border-color:#FFF;border-radius:10px;box-shadow:0 0 10px 8px rgb(0 0 0 / .3) inset;padding:10px 20px 20px}
.gh-migrated .gradient-text {background:linear-gradient(90deg,#724c1d,#eddab9,#724c1d);-webkit-background-clip:text;-webkit-text-fill-color:#fff0}
.gh-migrated .overlay-back {position:relative;z-index:1}
.gh-migrated .overlay-front {position:relative;z-index:3}
.gh-migrated .how-it-works-model-col {bottom:-316px;position:absolute;right:-130px}
.gh-migrated div#popmake-814 {border:3px solid #757575;border-radius:10px!important;padding:0px!important}
.gh-migrated .button-z {position:relative!important;z-index:99!important}
.gh-migrated .step-number {background:#5b6c73;border:3px #fff solid;border-radius:50%;color:#fff!important;filter:drop-shadow(2px 4px 6px rgb(0 0 0 / 30%));margin-right:20px;padding:5px 15px}
.gh-migrated .smaller-circles-section .step-number {padding:5px 12px}
.gh-migrated .img-max {max-width:1000px!important;width:640px!important}
.gh-migrated .timeline-circle {align-items:center;background:#275073;border:#fff solid;border-radius:50%;display:flex;filter:drop-shadow(2px 4px 6px rgb(0 0 0 / 30%));height:100px;justify-content:center;margin:0 auto;padding:0;width:100px}
.gh-migrated .tabbed-form .gform_button {padding:23px!important;text-transform:uppercase!important;width:100%!important}
.gh-migrated .tabbed-form .gform_legacy_markup_wrapper ul li.gfield {margin-top:0!important}
.gh-migrated .tabbed-form #input_1_1 {margin-top:-7px}
.gh-migrated .tabbed-form #gform_wrapper_1 {margin-bottom:0}
.gh-migrated .tabbed-form .fl-tabs-panel-content {height:270px;min-height:270px}
.gh-migrated .tabbed-form .fl-tabs-panel-content {box-shadow:#000 0 0 10px inset;border-radius:0 5px 5px 5px}
.gh-migrated .tabbed-form #gform_submit_button_1 {padding:20px!important}
.gh-migrated .fl-page {overflow:hidden!important}
.gh-migrated .skinny-form li#field_1_2, .gh-migrated .skinny-form li#field_1_3 {margin-top:0}
.gh-migrated .skinny-form div#gform_wrapper_1 {margin-bottom:0}
.gh-migrated .skinny-form #gform_submit_button_1 {background:#ff681f;text-transform:capitalize}
.gh-migrated .old-house {left:-40px;max-width:1000px;position:relative;top:-30px;width:560px!important}
.gh-migrated .arrow-overlay {filter:drop-shadow(2px 4px 6px rgb(0 0 0 / .6));left:-60px;max-width:120px;position:absolute}
.gh-migrated .section-with-left-circle .timeline-circle {margin:0 0 0 -30px}
.gh-migrated .orange-circle-number {background:#ff691e;border:3px solid;border-radius:50%;color:#fff!important;filter:drop-shadow(2px 4px 6px rgb(0 0 0 / 30%));font-size:30px!important;height:60px;padding:0;width:60px!important}
.gh-migrated .web-form-template-2.orange-button-form {background:#fff;border-style:solid;border-width:3px 3px 3px 3px;border-color:#FFF;border-radius:25px;box-shadow:0 0 10px 8px rgb(0 0 0 / .3) inset;padding:10px 20px 20px}
.gh-migrated .how-it-works-vid iframe {height:450px;width:800px}
.gh-migrated .video-review-featured iframe {height:360px!important;width:617px!important}
.gh-migrated .video-review-row iframe {height:165px}
.gh-migrated .borded-icon-section span.fl-icon {border:solid 1px #5b6c73;border-radius:50%}
.gh-migrated .web-form-template-2 .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) input.medium {left:-65px;position:relative;width:124%}
.gh-migrated .web-form-template-2 .ginput_container.ginput_container_text input#input_1_2 {width:73%}
.gh-migrated div#popmake-814 .web-form-template-2 .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) input.medium {left:-86px;position:relative;width:124%}
.gh-migrated #popmake-814 .fl-row-content-wrap {padding:15px!important;border-radius:20px}
.gh-migrated .form-header {font-size:32px!important;font-weight:800!important}
.gh-migrated .sell-your-house-button a {background:#ff681f;border-radius:5px;color:#fff!important;filter:drop-shadow(2px 4px 6px rgb(0 0 0 / 30%))}
.gh-migrated .investor-footer-sec .sell-your-house-button a {background:#ff681f;border-radius:5px;color:#fff!important;filter:drop-shadow(2px 4px 6px rgb(0 0 0 / 30%));padding:10px!important;text-align:center;width:170px}
.gh-migrated .better-together-footer .sell-your-house-button a {margin-top:-20px;padding:10px}
.gh-migrated input#input_1_4_1 {margin-bottom:-15px}
.gh-migrated .hide-better-together-seal .better-together-seal {display:none!important}
.gh-migrated .uabb-modal .uabb-content {border:solid 3px #fff;border-radius:25px;box-shadow:0 0 10px 8px rgb(0 0 0 / .3) inset}
.gh-migrated .pop-form-header {color:#000!important;font-size:32px!important;font-weight:800!important}
.gh-migrated .uabb-modal-iframe.uabb-video-player {border-radius:25px}
.gh-migrated .uabb-modal .play:before {font-size:80px;line-height:80px;color:#fff;filter:drop-shadow(2px 4px 6px black)}
.gh-migrated .fl-builder-block .fl-builder-block-title {text-transform:capitalize!important}
@media only screen and (max-width:780px) {
.gh-migrated .img-max {max-width:unset!important;width:unset!important}
.gh-migrated .button-z-mob {position:relative!important;z-index:99!important}
.gh-migrated .web-form-template-2 .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) input.medium {left:0;width:100%}
.gh-migrated .web-form-template-2 .ginput_container.ginput_container_text input#input_1_2 {width:100%}
.gh-migrated input#input_1_1 {margin-bottom:0}
.gh-migrated .fl-node-650nlckvwa1p .fl-builder-top-edge-layer>*, .gh-migrated .fl-node-pszj6fkl8yo3 .fl-builder-top-edge-layer>*, .gh-migrated .fl-builder-layer-align-top-center {transform:skewX(-60deg) skewY(1deg) scaleX(2) scaleY(0)!important}
.gh-migrated .web-form-template-2 .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) input.medium {left:0;width:100%}
.gh-migrated .pop-form-header {font-size:20px!important}
.gh-migrated .uamodal-pg8y1tqwfhen .uabb-modal-content-data {padding-bottom:0!important}

}
@media only screen and (min-width:2200px) {
.gh-migrated .fl-node-osdb18tkcaw7 .fl-builder-top-edge-layer>* {transform:skewX(-60deg) skewY(1deg) scaleX(3) scaleY(1)!important}

}
.gh-migrated .gform_wrapper.gf_reset_wrapper, .gh-migrated .gform_wrapper.gf_reset_wrapper button, .gh-migrated .gform_wrapper.gf_reset_wrapper caption, .gh-migrated .gform_wrapper.gf_reset_wrapper div, .gh-migrated .gform_wrapper.gf_reset_wrapper fieldset, .gh-migrated .gform_wrapper.gf_reset_wrapper form, .gh-migrated .gform_wrapper.gf_reset_wrapper h1, .gh-migrated .gform_wrapper.gf_reset_wrapper h2, .gh-migrated .gform_wrapper.gf_reset_wrapper h3, .gh-migrated .gform_wrapper.gf_reset_wrapper h4, .gh-migrated .gform_wrapper.gf_reset_wrapper h5, .gh-migrated .gform_wrapper.gf_reset_wrapper h6, .gh-migrated .gform_wrapper.gf_reset_wrapper iframe, .gh-migrated .gform_wrapper.gf_reset_wrapper img, .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=button], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=email], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=image], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=number], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=password], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=submit], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=tel], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=text], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=url], .gh-migrated .gform_wrapper.gf_reset_wrapper label, .gh-migrated .gform_wrapper.gf_reset_wrapper legend, .gh-migrated .gform_wrapper.gf_reset_wrapper li, .gh-migrated .gform_wrapper.gf_reset_wrapper ol, .gh-migrated .gform_wrapper.gf_reset_wrapper p, .gh-migrated .gform_wrapper.gf_reset_wrapper select, .gh-migrated .gform_wrapper.gf_reset_wrapper span, .gh-migrated .gform_wrapper.gf_reset_wrapper table, .gh-migrated .gform_wrapper.gf_reset_wrapper tbody, .gh-migrated .gform_wrapper.gf_reset_wrapper td, .gh-migrated .gform_wrapper.gf_reset_wrapper textarea, .gh-migrated .gform_wrapper.gf_reset_wrapper tfoot, .gh-migrated .gform_wrapper.gf_reset_wrapper th, .gh-migrated .gform_wrapper.gf_reset_wrapper thead, .gh-migrated .gform_wrapper.gf_reset_wrapper tr, .gh-migrated .gform_wrapper.gf_reset_wrapper ul {margin:0;padding:0;border:0;outline:0}
.gh-migrated .gform_wrapper.gf_reset_wrapper button, .gh-migrated .gform_wrapper.gf_reset_wrapper caption, .gh-migrated .gform_wrapper.gf_reset_wrapper div, .gh-migrated .gform_wrapper.gf_reset_wrapper fieldset, .gh-migrated .gform_wrapper.gf_reset_wrapper form, .gh-migrated .gform_wrapper.gf_reset_wrapper iframe, .gh-migrated .gform_wrapper.gf_reset_wrapper img, .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=button], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=email], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=image], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=number], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=password], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=submit], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=tel], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=text], .gh-migrated .gform_wrapper.gf_reset_wrapper input[type=url], .gh-migrated .gform_wrapper.gf_reset_wrapper label, .gh-migrated .gform_wrapper.gf_reset_wrapper legend, .gh-migrated .gform_wrapper.gf_reset_wrapper li, .gh-migrated .gform_wrapper.gf_reset_wrapper ol, .gh-migrated .gform_wrapper.gf_reset_wrapper p, .gh-migrated .gform_wrapper.gf_reset_wrapper select, .gh-migrated .gform_wrapper.gf_reset_wrapper span, .gh-migrated .gform_wrapper.gf_reset_wrapper table, .gh-migrated .gform_wrapper.gf_reset_wrapper tbody, .gh-migrated .gform_wrapper.gf_reset_wrapper td, .gh-migrated .gform_wrapper.gf_reset_wrapper textarea, .gh-migrated .gform_wrapper.gf_reset_wrapper tfoot, .gh-migrated .gform_wrapper.gf_reset_wrapper th, .gh-migrated .gform_wrapper.gf_reset_wrapper thead, .gh-migrated .gform_wrapper.gf_reset_wrapper tr, .gh-migrated .gform_wrapper.gf_reset_wrapper ul {font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;line-height:1;font-weight:400}
.gh-migrated .gform_wrapper.gf_reset_wrapper div, .gh-migrated .gform_wrapper.gf_reset_wrapper p, .gh-migrated .gform_wrapper.gf_reset_wrapper span {line-height:1.8}
.gh-migrated .gform_wrapper.gf_reset_wrapper fieldset, .gh-migrated .gform_wrapper.gf_reset_wrapper img {border:0}
.gh-migrated .gform_wrapper.gf_reset_wrapper li, .gh-migrated .gform_wrapper.gf_reset_wrapper ol, .gh-migrated .gform_wrapper.gf_reset_wrapper ul {list-style:none}
.gh-migrated .gform_wrapper.gf_reset_wrapper a img {border:none}
.gh-migrated .gform_wrapper.gf_reset_wrapper :focus {outline:0}
.gh-migrated .gform_legacy_markup_wrapper {margin-bottom:16px;margin-top:16px;max-width:100%}
.gh-migrated .gform_legacy_markup_wrapper form {margin:0 auto;max-width:100%;text-align:left}
.gh-migrated .gform_legacy_markup_wrapper *, .gh-migrated .gform_legacy_markup_wrapper ::after, .gh-migrated .gform_legacy_markup_wrapper ::before {box-sizing:border-box!important}
.gh-migrated .gform_legacy_markup_wrapper h1, .gh-migrated .gform_legacy_markup_wrapper h2, .gh-migrated .gform_legacy_markup_wrapper h3 {background:0 0;border:none;font-weight:400}
.gh-migrated .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {font-family:inherit;font-size:inherit;letter-spacing:normal;padding:5px 4px}
.gh-migrated .gform_legacy_markup_wrapper input[type=image] {border:none!important;padding:0!important;width:auto!important}
.gh-migrated .gform_legacy_markup_wrapper textarea {font-family:inherit;font-size:inherit;letter-spacing:normal;line-height:1.5;padding:6px 8px;resize:none}
.gh-migrated .gform_legacy_markup_wrapper select {line-height:1.5}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_multiselect select {-webkit-appearance:none;-moz-appearance:none;background-image:none!important;outline:0}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields {display:block;list-style-type:none;margin:0!important}
.gh-migrated .gform_legacy_markup_wrapper ul, .gh-migrated >body .entry ul {text-indent:0}
.gh-migrated .gform_legacy_markup_wrapper form li, .gh-migrated .gform_legacy_markup_wrapper li {list-style:none!important;list-style-image:none!important;list-style-type:none!important;margin-left:0!important;overflow:visible}
.gh-migrated .gform_legacy_markup_wrapper ul li.gfield {clear:both}
.gh-migrated .gform_legacy_markup_wrapper ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper ul.gfield_radio li {overflow:hidden}
.gh-migrated .gform_legacy_markup_wrapper form ul.gform_fields.left_label li.gfield, .gh-migrated .gform_legacy_markup_wrapper form ul.gform_fields.right_label li.gfield, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields.left_label li.gfield, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields.right_label li.gfield {margin-bottom:14px}
.gh-migrated .gform_legacy_markup_wrapper form ul.left_label li ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper form ul.left_label li ul.gfield_radio li, .gh-migrated .gform_legacy_markup_wrapper form ul.right_label li ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper form ul.right_label li ul.gfield_radio li, .gh-migrated .gform_legacy_markup_wrapper ul.left_label li ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper ul.left_label li ul.gfield_radio li, .gh-migrated .gform_legacy_markup_wrapper ul.right_label li ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper ul.right_label li ul.gfield_radio li {margin-bottom:10px}
.gh-migrated .gform_legacy_markup_wrapper ul li::after, .gh-migrated .gform_legacy_markup_wrapper ul li::before, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields {margin:0;overflow:visible;padding:0}
.gh-migrated .gform_legacy_markup_wrapper select {font-family:inherit;font-size:inherit;letter-spacing:normal}
.gh-migrated .gform_legacy_markup_wrapper select option {display:block;padding:2px}
.gh-migrated .gform_legacy_markup_wrapper .inline {display:inline!important}
.gh-migrated .gform_legacy_markup_wrapper .gform_heading {margin-bottom:18px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .clear-multi {display:flex}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_day, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_year {display:-moz-inline-stack;display:inline-block}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_day, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_month, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_year {flex-direction:row;width:33.333%}
@media only screen and (min-width:321px) {
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_day, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_month {max-width:40px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_year {max-width:calc(40px + 5px)}

}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_dropdown_day, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_dropdown_month, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_dropdown_year {flex-direction:row;vertical-align:top}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_dropdown_day, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_dropdown_month, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_dropdown_year {margin-right:5px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_day, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_month {margin-right:5px;width:40px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_day input[type=number], .gh-migrated .gform_legacy_markup_wrapper .gfield_date_month input[type=number] {width:calc(30px + 8px)!important}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_year input[type=number] {width:calc(40px + 8px)!important}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_year {width:50px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_day input, .gh-migrated .gform_legacy_markup_wrapper .gfield_date_month input {width:calc(30px + 8px)}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_year input {width:40px}
.gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container label {text-align:center;width:30px}
.gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above div.gfield_date_year.ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_below div.gfield_date_year.ginput_container label {width:40px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_ampm, .gh-migrated .gform_legacy_markup_wrapper .gfield_time_hour, .gh-migrated .gform_legacy_markup_wrapper .gfield_time_minute {flex-direction:row;font-size:15px;width:33.333%}
@media only screen and (min-width:321px) {
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_ampm, .gh-migrated .gform_legacy_markup_wrapper .gfield_time_hour, .gh-migrated .gform_legacy_markup_wrapper .gfield_time_minute {max-width:72px}

}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .ginput_container_time span {float:left}
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_hour {display:flex;margin-right:10px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_hour i {float:right;font-family:sans-serif!important;font-style:normal!important;margin-top:9%;text-align:center;width:4px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_minute {display:flex;margin-right:8px}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .gfield_time_hour input, .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .gfield_time_minute input {margin-left:0;width:85%!important}
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_hour input, .gh-migrated .gform_legacy_markup_wrapper .gfield_time_minute input {margin-right:6px;width:56px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_hour input[type=number], .gh-migrated .gform_legacy_markup_wrapper .gfield_time_minute input[type=number] {max-width:64px;min-width:64px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_ampm {display:-moz-inline-stack;display:inline-block;vertical-align:top}
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_ampm select {height:100%;margin-left:0!important;margin-top:0!important;min-width:77px;width:77px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_time_ampm_shim {display:block;font-size:13px;margin:9px 0 1px 1px}
.gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {text-align:center;width:48px}
.gh-migrated .gform_legacy_markup_wrapper .field_name_first, .gh-migrated .gform_legacy_markup_wrapper .field_name_last, .gh-migrated .gform_legacy_markup_wrapper .field_name_middle {display:-moz-inline-stack;display:inline-block;vertical-align:top;width:49.5%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex.ginput_container {overflow:visible;width:100%}
.gh-migrated .gform_legacy_markup_wrapper label.gfield_label, .gh-migrated .gform_legacy_markup_wrapper legend.gfield_label {font-size:inherit;font-weight:700}
.gh-migrated .gform_legacy_markup_wrapper .top_label .gfield_label, .gh-migrated .gform_legacy_markup_wrapper legend.gfield_label {clear:both;display:-moz-inline-stack;display:inline-block;line-height:1.3}
.gh-migrated .gform_legacy_markup_wrapper .top_label .gfield_hide_label {display:none}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_left input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]), .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_right input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]), .gh-migrated .gform_legacy_markup_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]) {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_right select, .gh-migrated .gform_legacy_markup_wrapper .ginput_complex select {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above .ginput_complex.ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_below .ginput_complex.ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {display:block;font-size:.813em;letter-spacing:.5pt;white-space:nowrap}
.gh-migrated .gform_legacy_markup_wrapper ul.gfield_checkbox li label, .gh-migrated .gform_legacy_markup_wrapper ul.gfield_radio li label {cursor:pointer;display:-moz-inline-stack;display:inline-block;letter-spacing:inherit;vertical-align:middle}
.gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above .ginput_complex.ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container label {margin:9px 0 1px 1px}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .field_sublabel_above .ginput_container.ginput_container_email label, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .field_sublabel_above .ginput_container.ginput_container_name label, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .field_sublabel_above .ginput_container.ginput_container_password label, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .field_sublabel_above .ginput_container.ginput_container_time label {margin-top:0}
.gh-migrated .gform_legacy_markup_wrapper .field_sublabel_below .ginput_complex.ginput_container label, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {margin:1px 0 9px 1px}
.gh-migrated .gform_legacy_markup_wrapper .top_label .field_sublabel_above label.gfield_label+.ginput_complex.ginput_container, .gh-migrated .gform_legacy_markup_wrapper .top_label .field_sublabel_above label.gfield_label+div[class*=gfield_time_].ginput_container {margin-top:0}
.gh-migrated .gform_legacy_markup_wrapper .top_label div.ginput_container {margin-top:8px}
.gh-migrated .gform_legacy_markup_wrapper div.clear-multi {display:-moz-inline-stack;display:inline-block}
.gh-migrated .gform_legacy_markup_wrapper ul li.field_description_below div.ginput_container_checkbox, .gh-migrated .gform_legacy_markup_wrapper ul li.field_description_below div.ginput_container_radio {margin-bottom:0;margin-top:16px}
.gh-migrated .gform_legacy_markup_wrapper .gfield--type-repeater.hidden_label>.gfield_repeater_wrapper>.gfield_repeater_container>.gfield_label, .gh-migrated .gform_legacy_markup_wrapper .hidden_label>.gfield_label {clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}
.gh-migrated .gform_legacy_markup_wrapper .gfield.left_label, .gh-migrated .gform_legacy_markup_wrapper .gfield.right_label {padding-top:10px}
.gh-migrated .gform_legacy_markup_wrapper li.hidden_label input {margin-top:12px}
.gh-migrated .gform_legacy_markup_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text], .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {margin-bottom:12px}
.gh-migrated .gform_legacy_markup_wrapper .screen-reader-text, .gh-migrated .gform_legacy_markup_wrapper label.hidden_sub_label {border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;overflow-wrap:normal!important;padding:0;position:absolute;width:1px}
.gh-migrated .gform_legacy_markup_wrapper input.large, .gh-migrated .gform_legacy_markup_wrapper input.medium, .gh-migrated .gform_legacy_markup_wrapper input.small, .gh-migrated .gform_legacy_markup_wrapper select.large, .gh-migrated .gform_legacy_markup_wrapper select.medium, .gh-migrated .gform_legacy_markup_wrapper select.small {width:100%}
.gh-migrated .gform_legacy_markup_wrapper input.datepicker_with_icon.large, .gh-migrated .gform_legacy_markup_wrapper input.datepicker_with_icon.medium, .gh-migrated .gform_legacy_markup_wrapper input.datepicker_with_icon.small {width:calc(100% - 24px)}
.gh-migrated .gform_legacy_markup_wrapper .gfield_error input.large, .gh-migrated .gform_legacy_markup_wrapper .gfield_error input.medium, .gh-migrated .gform_legacy_markup_wrapper .gfield_error input.small, .gh-migrated .gform_legacy_markup_wrapper .gfield_error select.large, .gh-migrated .gform_legacy_markup_wrapper .gfield_error select.medium, .gh-migrated .gform_legacy_markup_wrapper .gfield_error select.small {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_error input.datepicker_with_icon.large, .gh-migrated .gform_legacy_markup_wrapper .gfield_error input.datepicker_with_icon.medium, .gh-migrated .gform_legacy_markup_wrapper .gfield_error input.datepicker_with_icon.small {width:calc(100% - 32px)}
.gh-migrated .gform_legacy_markup_wrapper textarea.small {height:80px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper textarea.medium {height:120px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper textarea.large {height:160px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper h2.gsection_title {letter-spacing:normal!important;margin:0!important;padding:0!important}
.gh-migrated .gform_legacy_markup_wrapper .gsection .gfield_label, .gh-migrated .gform_legacy_markup_wrapper h2.gsection_title, .gh-migrated .gform_legacy_markup_wrapper h3.gform_title {font-size:1.25em;font-weight:700}
.gh-migrated .gform_legacy_markup_wrapper h3.gform_title {letter-spacing:normal!important;margin:10px 0 6px 0}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.field_description_below+li.gsection {margin-top:24px!important}
.gh-migrated .gform_legacy_markup_wrapper span.gform_description {display:block;font-weight:400;margin-bottom:16px;width:calc(100% - 16px)}
.gh-migrated .gform_legacy_markup_wrapper .gsection {border-bottom:1px solid #ccc;clear:both;margin:28px 0 28px 0;padding:0 16px 8px 0}
.gh-migrated .gform_legacy_markup_wrapper .gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper .gfield_radio li {position:relative}
.gh-migrated .gform_legacy_markup_wrapper ul.gfield_checkbox, .gh-migrated .gform_legacy_markup_wrapper ul.gfield_radio {margin:6px 0;padding:0}
.gh-migrated .gform_legacy_markup_wrapper .gfield_checkbox li label, .gh-migrated .gform_legacy_markup_wrapper .gfield_radio li label {display:-moz-inline-stack;display:inline-block;font-size:.875em;line-height:1.5;max-width:85%;padding:0;vertical-align:middle;white-space:normal;width:auto}
.gh-migrated .gform_legacy_markup_wrapper .gfield_checkbox li label {margin:0}
.gh-migrated .gform_legacy_markup_wrapper .gfield_radio li label {margin:2px 0 0 4px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_checkbox li input, .gh-migrated .gform_legacy_markup_wrapper .gfield_checkbox li input[type=checkbox], .gh-migrated .gform_legacy_markup_wrapper .gfield_radio li input[type=radio] {display:-moz-inline-stack;display:inline-block;margin-left:1px;vertical-align:middle}
.gh-migrated .gform_legacy_markup_wrapper .description, .gh-migrated .gform_legacy_markup_wrapper .gfield_description, .gh-migrated .gform_legacy_markup_wrapper .gsection_description, .gh-migrated .gform_legacy_markup_wrapper .instruction {clear:both;font-family:inherit;font-size:.813em;letter-spacing:normal;line-height:inherit}
.gh-migrated .gform_legacy_markup_wrapper .description, .gh-migrated .gform_legacy_markup_wrapper .gfield_description, .gh-migrated .gform_legacy_markup_wrapper .gsection_description {padding:0 16px 0 0}
.gh-migrated .gform_legacy_markup_wrapper .field_description_below .gfield_description {padding-top:16px}
.gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above .description, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above .gfield_description, .gh-migrated .gform_legacy_markup_wrapper .field_sublabel_above .gsection_description {margin-top:9px}
.gh-migrated .gform_legacy_markup_wrapper .top_label .gsection_description {margin-bottom:9px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_description {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .description_above .gfield_description {padding:0 0 10px 0}
.gh-migrated .gform_legacy_markup_wrapper .gfield_date_year+.gfield_description {padding:0}
.gh-migrated .gform_legacy_markup_wrapper .field_description_below .gfield_consent_description, .gh-migrated .gform_legacy_markup_wrapper .gfield_consent_description {border:1px solid #ddd;font-size:.688em;margin-top:12px;max-height:240px;overflow-y:scroll;padding:6px 8px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_required {color:#790000;margin-left:4px}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error, .gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {background-color:rgba(255,223,224,.25);border-bottom:1px solid #c89797;border-top:1px solid #c89797;box-sizing:border-box;margin-bottom:6px!important;padding-bottom:6px;padding-top:8px}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_creditcard_warning {background-color:rgba(255,223,224,.25);border-bottom:4px solid #790000;border-top:2px solid #790000;padding:16px 16px 14px 16px;width:calc(100% - 16px)}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_creditcard_warning {padding:16px 16px 14px 16px}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message {color:#790000;font-family:inherit;font-size:.875em;font-weight:700;max-width:100%;min-height:25px;position:relative}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message span {background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSItMTA2NyAyODY1IDI0IDMyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IC0xMDY3IDI4NjUgMjQgMzI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOiM3OTAwMDA7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMTA1MywyODY1Yy01LjUsMC0xMCw0LjUtMTAsMTBoNGMwLTMuMywyLjctNiw2LTZjMy4zLDAsNiwyLjcsNiw2djJoLTIwdjE0YzAsMy4zLDIuNyw2LDYsNmgxMg0KCWMzLjMsMCw2LTIuNyw2LTZ2LTE2Qy0xMDQzLDI4NjkuNS0xMDQ3LjUsMjg2NS0xMDUzLDI4NjV6IE0tMTA0OSwyODkzaC0xMmMtMS4xLDAtMi0wLjktMi0ydi0xMGgxNnYxMA0KCUMtMTA0NywyODkyLjEtMTA0Ny45LDI4OTMtMTA0OSwyODkzeiBNLTEwNTMsMjg4N2MwLDEuMS0wLjksMi0yLDJzLTItMC45LTItMmMwLTEuMSwwLjktMiwyLTJTLTEwNTMsMjg4NS45LTEwNTMsMjg4N3oiLz4NCjwvc3ZnPg0K);background-position:left center;background-repeat:no-repeat;background-size:1em auto;border-bottom:1px solid #790000;display:block;letter-spacing:.1pt;line-height:1.5;margin-bottom:16px;padding:0 0 14px 24px;text-transform:uppercase}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_creditcard_warning div.gfield_creditcard_warning_message {padding:16px 16px 14px 16px}
.gh-migrated .gform_legacy_markup_wrapper li.gfield+li.gfield.gfield_creditcard_warning {margin-top:16px!important}
.gh-migrated .gform_legacy_markup_wrapper .top_label .gfield_error {width:calc(100% - 2px)}
.gh-migrated .gform_legacy_markup_wrapper .top_label .gfield_error input.large, .gh-migrated .gform_legacy_markup_wrapper .top_label .gfield_error select.large, .gh-migrated .gform_legacy_markup_wrapper .top_label .gfield_error textarea.textarea {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .left_label .gfield_error input.large, .gh-migrated .gform_legacy_markup_wrapper .left_label .gfield_error select.large, .gh-migrated .gform_legacy_markup_wrapper .left_label .gfield_error textarea.textarea, .gh-migrated .gform_legacy_markup_wrapper .right_label .gfield_error input.large, .gh-migrated .gform_legacy_markup_wrapper .right_label .gfield_error select.large, .gh-migrated .gform_legacy_markup_wrapper .right_label .gfield_error textarea.textarea {width:70%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_error .gfield_label {color:#790000}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required {padding-right:0}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_time_ampm.ginput_container, .gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_time_minute.ginput_container {margin-left:0}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {max-width:100%;padding-right:16px}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {margin-top:12px}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label {position:relative;top:12px}
.gh-migrated .gform_legacy_markup_wrapper .gform_validation_errors {border:1px solid #790000;border-radius:5px;box-shadow:0 0 0 #ff6d6d;margin-bottom:5px;margin-top:5px;padding:10.625px 13.75px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gform_validation_errors>h2 {color:#790000;font-size:16px;font-weight:700;margin:0 0 9.375px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_validation_errors>h2.hide_summary {margin:0}
.gh-migrated .gform_legacy_markup_wrapper .gform_validation_errors>h2::before {background-color:transparent;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0iIzc5MDAwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExIDE5QzE1LjQxODMgMTkgMTkgMTUuNDE4MyAxOSAxMUMxOSA2LjU4MTcyIDE1LjQxODMgMyAxMSAzQzYuNTgxNzIgMyAzIDYuNTgxNzIgMyAxMUMzIDE1LjQxODMgNi41ODE3MiAxOSAxMSAxOVoiIHN0cm9rZT0iI0ZGRkZGRiIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTEyIDZIMTBWMTJIMTJWNloiIGZpbGw9IiNGRkZGRkYiLz4KPHBhdGggZD0iTTEyIDE0SDEwVjE2SDEyVjE0WiIgZmlsbD0iI0ZGRkZGRiIvPgo8L3N2Zz4=);background-position:center;background-repeat:no-repeat;content:'';display:inline-block;height:22px;margin:0 2px 0 -.5rem;vertical-align:sub;width:22px}
.gh-migrated .gform_legacy_markup_wrapper .gform_validation_errors>ol {list-style-type:none!important;margin:0;margin-block-start:0;padding-block-start:0;padding-inline-start:0}
.gh-migrated .gform_legacy_markup_wrapper .gform_validation_errors>ol a {color:#790000;font-size:10px}
.gh-migrated .gform_legacy_markup_wrapper .gform_validation_errors>ol li {font-size:10px;list-style-type:none!important;margin:0 0 9.375px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_validation_errors>ol li:last-of-type {margin-bottom:0}
.gh-migrated .gform_legacy_markup_wrapper div.validation_error {border-bottom:2px solid #790000;border-top:2px solid #790000;clear:both;color:#790000;font-size:1em;font-weight:700;margin-bottom:25px;padding:16px 0 16px 0;text-align:center;width:100%}
.gh-migrated .gform_legacy_markup_wrapper ol.validation_list {clear:both;color:#790000;margin-bottom:25px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper ol.validation_list li {list-style-type:decimal!important}
.gh-migrated .gform_legacy_markup_wrapper ol.validation_list li a {color:#790000}
.gh-migrated .gform_legacy_markup_wrapper ol.validation_list::after {content:""}
.gh-migrated .gform_legacy_markup_wrapper div#error {margin-bottom:25px}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tbody tr td.gfield_list_icons {vertical-align:middle!important}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr td.gfield_list_icons a {display:inline-block;line-height:0}
.gh-migrated .gform_legacy_markup_wrapper li.gfield fieldset {display:block;margin:0;padding:0;position:relative;width:100%}
.gh-migrated .gform_legacy_markup_wrapper li.gfield fieldset>* {width:auto}
.gh-migrated .gform_legacy_markup_wrapper li.gfield fieldset legend.gfield_label {line-height:32px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper div.gf_page_steps+div.validation_error {margin-top:16px}
.gh-migrated .gform_legacy_markup_wrapper div.gfield_description.validation_error {color:#790000;font-size:.875em;font-weight:700;line-height:1.2;margin-bottom:16px}
.gh-migrated .gform_legacy_markup_wrapper .validation_message {color:#790000;font-weight:700;letter-spacing:normal}
.gh-migrated .gform_legacy_markup_wrapper .validation_message--hidden-on-empty:empty {display:none}
.gh-migrated .gform_legacy_markup_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gh-migrated .gform_legacy_markup_wrapper li.gfield_error textarea {border:1px solid #790000}
.gh-migrated .gform_legacy_markup_wrapper li.gfield_error div.ginput_complex.ginput_container label, .gh-migrated .gform_legacy_markup_wrapper li.gfield_error ul.gfield_checkbox, .gh-migrated .gform_legacy_markup_wrapper li.gfield_error ul.gfield_radio {color:#790000}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer {clear:both;margin:16px 0 0 0;padding:16px 0 10px 0;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer input.button, .gh-migrated .gform_legacy_markup_wrapper .gform_footer input[type=submit], .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer input.button, .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer input[type=submit] {font-size:1em;margin:0 0 16px 0;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer a.gform_save_link, .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer a.gform_save_link {display:block;font-size:1em;text-align:center}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer input[type=image] {background:0 0!important;border:none!important;display:block;margin:0 auto 16px auto!important;max-width:100%;padding:0;width:auto!important}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_full, .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_left, .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_right {min-height:45px}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_full input[type=email], .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_full input[type=number], .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_full input[type=password], .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_full input[type=tel], .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_full input[type=text], .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_full input[type=url] {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_complex .ginput_full input[type=email], .gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_complex .ginput_full input[type=number], .gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_complex .ginput_full input[type=password], .gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_complex .ginput_full input[type=tel], .gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_complex .ginput_full input[type=text], .gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_complex .ginput_full input[type=url], .gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_complex .ginput_full select {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper .gfield_radio li {line-height:1.2;margin:0 0 16px 0}
.gh-migrated .gchoice_select_all, .gh-migrated .gform_legacy_markup_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label, .gh-migrated .gform_legacy_markup_wrapper ul.gfield_radio li input[type=radio]:checked+label {font-weight:700}
.gh-migrated .gform_legacy_markup_wrapper input.datepicker.datepicker_with_icon {display:-moz-inline-stack;display:inline-block;margin-right:4px!important}
.gh-migrated .gform_legacy_markup_wrapper .gf_hidden, .gh-migrated .gform_legacy_markup_wrapper .gform_hidden, .gh-migrated .gform_legacy_markup_wrapper input.gform_hidden, .gh-migrated .gform_legacy_markup_wrapper input[type=hidden] {display:none!important;max-height:1px!important;overflow:hidden}
.gh-migrated .gform_legacy_markup_wrapper .gf_invisible, .gh-migrated .gform_legacy_markup_wrapper .gfield_visibility_hidden {left:-9999px;position:absolute;visibility:hidden}
.gh-migrated .gform_legacy_markup_wrapper .ginput_full br, .gh-migrated .gform_legacy_markup_wrapper .ginput_left br, .gh-migrated .gform_legacy_markup_wrapper .ginput_right br {display:none!important}
.gh-migrated .gform_legacy_markup_wrapper ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper ul.gfield_radio li {padding:0!important}
.gh-migrated .gform_legacy_markup_wrapper ul.gfield_radio li input+input {margin-left:4px}
.gh-migrated .gform_legacy_markup_wrapper ul.gfield_radio li input[value=gf_other_choice] {margin-right:6px;margin-top:4px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_description+.gform_legacy_markup_wrapper .gfield_description.validation_message {margin-top:6px}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container.ginput_list+.gfield_description.validation_message {margin-top:0}
.gh-migrated .gform_legacy_markup_wrapper li.gfield_html {max-width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_html.gfield_no_follows_desc {margin-top:10px}
.gh-migrated .gform_legacy_markup_wrapper ul li.gfield.gfield_html img {max-width:100%!important}
.gh-migrated .gform_legacy_markup_wrapper .gform_ajax_spinner {padding-left:10px}
.gh-migrated .gform_legacy_markup_wrapper .gform_validation_container, .gh-migrated .gform_legacy_markup_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container, .gh-migrated .gform_legacy_markup_wrapper li.gform_validation_container, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields li.gfield.gform_validation_container {display:none!important;left:-9000px;position:absolute!important}
.gh-migrated .gform_legacy_markup_wrapper .gfield_captcha_input_container {padding-top:3px}
.gh-migrated .gform_legacy_markup_wrapper .simple_captcha_small input {width:64px}
.gh-migrated .gform_legacy_markup_wrapper .simple_captcha_medium input {width:96px}
.gh-migrated .gform_legacy_markup_wrapper .simple_captcha_large input {width:128px}
.gh-migrated .gform_legacy_markup_wrapper .gform_legacy_markup_wrapper .left_label .simple_captcha_small, .gh-migrated .gform_legacy_markup_wrapper .left_label .simple_captcha_large, .gh-migrated .gform_legacy_markup_wrapper .left_label .simple_captcha_medium, .gh-migrated .gform_legacy_markup_wrapper .right_label .simple_captcha_large, .gh-migrated .gform_legacy_markup_wrapper .right_label .simple_captcha_medium, .gh-migrated .gform_legacy_markup_wrapper .right_label .simple_captcha_small {margin-left:32%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_captcha_container img.gfield_captcha {background:0 0!important;border:none!important;float:none!important;margin:0!important;padding:0!important}
.gh-migrated .gform_legacy_markup_wrapper .math_small input {width:70px}
.gh-migrated .gform_legacy_markup_wrapper .math_medium input {width:510px}
.gh-migrated .gform_legacy_markup_wrapper .math_large input {width:612px}
.gh-migrated .gform_legacy_markup_wrapper .left_label .math_large, .gh-migrated .gform_legacy_markup_wrapper .left_label .math_medium, .gh-migrated .gform_legacy_markup_wrapper .left_label .math_small, .gh-migrated .gform_legacy_markup_wrapper .right_label .math_large, .gh-migrated .gform_legacy_markup_wrapper .right_label .math_medium, .gh-migrated .gform_legacy_markup_wrapper .right_label .math_small {margin-left:32%}
.gh-migrated .gform_legacy_markup_wrapper div.charleft {color:#767676;font-size:.688em;margin-top:4px;white-space:nowrap!important;width:92%!important}
.gh-migrated .gform_legacy_markup_wrapper div.charleft[style] {width:92%!important}
.gh-migrated .gform_legacy_markup_wrapper .left_label div.charleft, .gh-migrated .gform_legacy_markup_wrapper .right_label div.charleft {margin-left:32%}
.gh-migrated .gform_legacy_markup_wrapper div.charleft.ginput_counter_tinymce {border:1px solid #eee;border-width:1px 0 0;padding:4px 9px;width:100%!important}
.gh-migrated .gform_legacy_markup_wrapper div.charleft.warningTextareaInfo {color:#767676}
.gh-migrated .gform_legacy_markup_wrapper div.charleft.ginput_counter_error {color:red}
.gh-migrated .gform_legacy_markup_wrapper li.gf_hide_charleft div.charleft {display:none!important}
.gh-migrated .gf_submission_limit_message {color:#790000;font-size:1.375em}
.gh-migrated .gform_legacy_markup_wrapper .ginput_price {-moz-opacity:.7;-khtml-opacity:.7;opacity:.7}
.gh-migrated .gform_legacy_markup_wrapper span.ginput_total {color:#060;font-size:inherit}
.gh-migrated .gform_legacy_markup_wrapper .top_label span.ginput_total {margin:8px 0}
.gh-migrated .gform_legacy_markup_wrapper span.ginput_product_price_label {margin-right:2px}
.gh-migrated .gform_legacy_markup_wrapper input.ginput_product_price, .gh-migrated .gform_legacy_markup_wrapper span.ginput_product_price {background:0 0;border:none;color:#900;padding:0}
.gh-migrated .gform_legacy_markup_wrapper span.ginput_quantity_label {margin-left:10px;margin-right:2px}
.gh-migrated .gform_legacy_markup_wrapper input.ginput_quantity[type=text] {width:30px}
.gh-migrated .gform_legacy_markup_wrapper input.ginput_quantity[type=number] {width:40px}
.gh-migrated .gform_legacy_markup_wrapper .gform_page_footer {border-top:1px dotted #ccc;clear:both;margin:14px 0;padding:16px 0 0 0;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gform_page_footer.left_label, .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer.right_label {padding:16px 0 0 29%}
.gh-migrated .gform_legacy_markup_wrapper .gform_page_footer .button.gform_next_button, .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer .button.gform_previous_button {display:-moz-inline-stack;display:inline-block}
.gh-migrated .gform_legacy_markup_wrapper .gform_page_footer .button.gform_previous_button {margin-bottom:8px}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_wrapper {clear:both;margin:0 0 16px 0;padding:0 0 16px 0;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_wrapper .gf_progressbar_title {clear:both;color:#767676;font-size:13px;line-height:1!important;margin:0 0 8px 0!important;-moz-opacity:.6;-khtml-opacity:.6;opacity:.6;padding:0!important}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar {background:#e8e8e8;-moz-border-radius:10.5px;-webkit-border-radius:10.5px;border-radius:10.5px;position:relative;position:relative;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage {border-radius:10.5px;font-family:helvetica,arial,sans-serif;font-size:13px!important;height:21px;text-align:right;vertical-align:middle;z-index:999}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_100 {border-bottom-right-radius:10.5px;border-top-right-radius:10.5px}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage span {display:block;float:right;line-height:21px;margin-left:5px;margin-right:5px;width:auto}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_0 span {color:#959595;float:none!important;margin-left:12px;overflow-wrap:normal;text-shadow:none}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_blue {background:#d2d6dc}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_blue {background-color:#1e7ac4;color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_gray {background:#d2d6dc}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_gray {background-color:#6b7280;color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_green {background:#e8e8e8}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_green {background-color:#aac138;color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_orange {background:#e8eaec}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_orange {background-color:#ff5d38;color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_red {background:#e8eaec}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_red {background-color:#ec1e31;color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_spring {background:#d2d6dc}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_spring {background:linear-gradient(270deg,#9cd790 0,#76d7db 100%);color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_blues {background:#d2d6dc}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_blues {background:linear-gradient(270deg,#00c2ff 0,#7838e2 100%);color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_rainbow {background:#d2d6dc}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_rainbow {background:linear-gradient(270deg,#1dbeea 0,#cd6ad6 50%,#f35160 100%);color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .gf_page_steps {border-bottom:1px dotted #ccc;margin:0 0 8px 0;padding:0 0 4px 0;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gf_step {font-family:inherit;font-size:.875em;height:14px;line-height:1.25!important;margin:24px 24px 24px 0;-moz-opacity:.2;-khtml-opacity:.2;opacity:.2;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gf_step span.gf_step_number {font-family:arial,sans-serif;font-size:1.25em;margin-right:4px}
.gh-migrated .gform_legacy_markup_wrapper .gf_step span.gf_step_label, .gh-migrated .gform_legacy_markup_wrapper .gf_step span.gf_step_number {display:-moz-inline-stack;display:inline-block;vertical-align:middle}
.gh-migrated .gform_legacy_markup_wrapper .gf_step.gf_step_active {-moz-opacity:1.0;-khtml-opacity:1.0;opacity:1}
.gh-migrated .gform_legacy_markup_wrapper .gf_step.gf_step_hidden {display:none}
.gh-migrated .gform_legacy_markup_wrapper .gf_step_clear {clear:both;display:block;height:1px;overflow:hidden}
.gh-migrated .gform_legacy_markup_wrapper .gfield_password_strength {background-color:#eee;border:1px solid #ddd;border-bottom:3px solid #ddd;line-height:1.8;margin-bottom:18px;margin-top:18px;padding:10px 5px;text-align:center}
.gh-migrated .gform_legacy_markup_wrapper ul.top_label li.gfield.gfield_error.gfield_contains_required .gfield_password_strength {margin-right:16px}
.gh-migrated .gform_legacy_markup_wrapper ul.left_label li.gfield .gfield_password_strength, .gh-migrated .gform_legacy_markup_wrapper ul.right_label li.gfield .gfield_password_strength {margin-bottom:18px;margin-top:18px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_password_strength.bad {background-color:#ffb78c;border-bottom:3px solid #ff853c;border-color:#ff853c}
.gh-migrated .gform_legacy_markup_wrapper .gfield_password_strength.good {background-color:#ffec8b;border-bottom:3px solid #fc0;border-color:#fc0}
.gh-migrated .gform_legacy_markup_wrapper .gfield_password_strength.mismatch, .gh-migrated .gform_legacy_markup_wrapper .gfield_password_strength.short {background-color:#ffa0a0;border-bottom:3px solid #f04040;border-color:#f04040}
.gh-migrated .gform_legacy_markup_wrapper .gfield_password_strength.strong {background-color:#c3ff88;border-bottom:3px solid #8dff1c;border-color:#8dff1c}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_password, .gh-migrated .gform_legacy_markup_wrapper .ginput_container_password span {position:relative}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_password button {-webkit-appearance:none;appearance:none;background:0 0;border:none;padding:5px 0;position:absolute;right:1px;text-align:center;top:1px;width:40px}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_password span.ginput_left button {right:9px}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_password:not(.ginput_complex) span {display:inline-block;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_password:not(.ginput_complex) span input {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_password span.medium {width:calc(50% - 8px)}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_password span.small {width:25%}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list caption, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list tbody, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list td, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list tfoot, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list th, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list thead, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr {border:0;font:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list {border-collapse:collapse;border-spacing:0}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons {padding-top:15px}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list {table-layout:auto!important}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list thead th {font-weight:700;text-align:left}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list colgroup {display:block;width:100%}
.gh-migrated .gform_legacy_markup_wrapper li.gfield.gfield_error table.gfield_list thead th {color:#790000}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list thead, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr {margin:0;padding:0}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list td, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list th {padding:4px 0 4px 0}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) table.gfield_list th {padding:0 0 4px 0}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list td+td, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list th+th {padding:0 0 0 16px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_list {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_list td.gfield_list_cell input {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gfield_icon_disabled {cursor:default!important;-moz-opacity:.6;-khtml-opacity:.6;opacity:.6}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr td.gfield_list_icons {box-sizing:border-box;padding:0 0 0 4px!important;width:48px!important}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list td.gfield_list_icons img {display:-moz-inline-stack;display:inline-block;vertical-align:middle}
.gh-migrated .gform_legacy_markup_wrapper .gform_card_icon_container {display:flex;height:32px;margin:8px 0 6px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_card_icon_container div.gform_card_icon {background-image:url("/assets/uploads/migrated/235/gh_e139503bacd70f99156198df614e1389345bc060.svg");background-repeat:no-repeat;height:32px;margin-right:4px;text-indent:-9000px;width:40px}
.gh-migrated .gform_legacy_markup_wrapper .gform_card_icon_container div.gform_card_icon.gform_card_icon_amex {background-position:-167px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_card_icon_container div.gform_card_icon.gform_card_icon_discover {background-position:-221px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_card_icon_container div.gform_card_icon.gform_card_icon_mastercard {background-position:-275px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_legacy_markup_wrapper .gform_card_icon_container div.gform_card_icon.gform_card_icon_visa {background-position:-59px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_card_icon_container div.gform_card_icon.gform_card_icon_jcb {background-position:-329px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_card_icon_container div.gform_card_icon.gform_card_icon_maestro {background-position:-5px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_card_icon_container div.gform_card_icon.gform_card_icon_selected {position:relative}
.gh-migrated .gform_legacy_markup_wrapper .gform_card_icon_container div.gform_card_icon.gform_card_icon_selected::after {background:url("/assets/uploads/migrated/235/gh_b7084a6ef5668b2233087cc0daa26ceb2b2795ad.svg") center center no-repeat;bottom:4px;content:'';display:block;height:10px;position:absolute;right:-2px;width:13px}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_creditcard .ginput_card_security_code_icon {background-image:url("/assets/uploads/migrated/235/gh_e139503bacd70f99156198df614e1389345bc060.svg");background-position:-382px 0;background-repeat:no-repeat;display:inline-block;height:32px;position:relative;top:-3.5px;width:40px}
.gh-migrated .gform_legacy_markup_wrapper .gform_fileupload_multifile .gform_drop_area {background:rgba(0,0,0,.02);border:1px dashed #ccc;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#aaa;margin-bottom:16px;padding:24px;text-align:center}
.gh-migrated .gform_legacy_markup_wrapper span.gform_drop_instructions {display:block;margin-bottom:8px}
.gh-migrated .gform_legacy_markup_wrapper .gform_delete {cursor:pointer;vertical-align:middle}
.gh-migrated .gform_legacy_markup_wrapper .copy_values_option_container .copy_values_enabled {width:auto}
.gh-migrated .gform_legacy_markup_wrapper li.field_sublabel_above .ginput_complex input[type=text] {margin-bottom:1px}
.gh-migrated .gform_legacy_markup_wrapper .form_saved_message {background-color:#e3f3f3;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#31708f;font-size:1em;line-height:1.8;margin:1em auto;padding:3em 2em 3em;width:99%}
.gh-migrated .gform_legacy_markup_wrapper .form_saved_message p.resume_form_link_wrapper {background-color:#fff;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 3px 2px 0 rgba(66,103,126,.2);-moz-box-shadow:0 3px 2px 0 rgba(66,103,126,.2);box-shadow:0 3px 2px 0 rgba(66,103,126,.2);display:inline-block;max-width:98%!important;overflow:hidden;padding:1em}
.gh-migrated .gform_legacy_markup_wrapper .form_saved_message a.resume_form_link {color:#2f637e;overflow-wrap:break-word;text-decoration:none}
.gh-migrated .gform_legacy_markup_wrapper .form_saved_message .form_saved_message_emailform {margin:1em 0 0 0}
.gh-migrated .gform_legacy_markup_wrapper .form_saved_message label.form_saved_label {left:-9000px;position:absolute}
.gh-migrated .gform_legacy_markup_wrapper div.form_saved_message div.form_saved_message_emailform form input[type=text] {margin-bottom:.25em}
.gh-migrated .gform_legacy_markup_wrapper div.form_saved_message div.form_saved_message_emailform form label.gform_resume_email_label {display:block;font-size:1em}
.gh-migrated .gform_legacy_markup_wrapper div.form_saved_message div.form_saved_message_emailform form input {display:inline-block;margin:0 auto}
.gh-migrated .gform_legacy_markup_wrapper div.form_saved_message div.form_saved_message_emailform form input[type=email] {-webkit-appearance:none;-moz-appearance:none;background-color:#fff;border:1px solid #91afc7;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#424242;font-size:1em;max-width:98%!important;padding:calc(.75em - 1px)!important;width:24em}
.gh-migrated .gform_legacy_markup_wrapper div.form_saved_message div.form_saved_message_emailform form input[type=submit] {-webkit-appearance:none;-moz-appearance:none;background-color:#31708f;border:1px solid #31708f;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#fff;font-size:1em;line-height:1;padding:.75em 1em;text-transform:uppercase}
@media only screen and (max-width:640px) {
.gh-migrated .gform_legacy_markup_wrapper div.form_saved_message div.form_saved_message_emailform form input[type=email], .gh-migrated .gform_legacy_markup_wrapper div.form_saved_message div.form_saved_message_emailform form input[type=submit] {display:block;width:98%}

}
.gh-migrated .gform_legacy_markup_wrapper .form_saved_message .form_saved_message_emailform .validation_message {color:#790000;font-weight:700;padding:2em}
.gh-migrated .gform_legacy_markup_wrapper .form_saved_message_sent {background-color:#e9ffd9;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;box-sizing:border-box;color:#3c763d;font-size:1em;margin:1em auto;padding:3em 2em;text-align:center;width:99%}
.gh-migrated .gform_legacy_markup_wrapper .form_saved_message_sent .saved_message_email, .gh-migrated .gform_legacy_markup_wrapper .form_saved_message_sent .saved_message_success {display:block;font-weight:700;line-height:2}
.gh-migrated .gform_legacy_markup_wrapper .form_saved_message_sent .saved_message_email {overflow-wrap:break-word;text-decoration:underline}
.gh-migrated #content .entry-content .gform_legacy_markup_wrapper form .gform_body .gform_fields .gfield .ginput_container #recaptcha_widget_div #recaptcha_area .recaptchatable tbody tr td .recaptcha_input_area, .gh-migrated .gform_legacy_markup_wrapper form .gform_body .gform_fields .gfield .ginput_container #recaptcha_widget_div #recaptcha_area .recaptchatable tbody tr td .recaptcha_input_area {line-height:1!important}
.gh-migrated .gform_legacy_markup_wrapper img.gform-datepicker-toggle-icon {display:-moz-inline-stack;display:inline-block;height:16px!important;width:17px!important}
.gh-migrated .gform_legacy_markup_wrapper img.add_list_item, .gh-migrated .gform_legacy_markup_wrapper img.delete_list_item {display:-moz-inline-stack;display:inline-block;margin-top:-2px}
.gh-migrated .gform_legacy_markup_wrapper ul li.gfield.field_sublabel_above.field_description_below+li.gfield {margin-top:16px}
.gh-migrated .gform_legacy_markup_wrapper li.gfield ul.gfield_radio li input[type=radio]+input[type=text] {width:45.25%}
.gh-migrated .gform_legacy_markup_wrapper table.recaptchatable {table-layout:auto}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) div.ginput_container_captcha {margin-left:29%}
.gh-migrated .gform_legacy_markup_wrapper .gfield .wp-editor-container {border:1px solid #ddd}
.gh-migrated .gform_legacy_markup_wrapper .gfield .wp-switch-editor {border-color:#ddd}
.gh-migrated .gform_legacy_markup_wrapper .gfield .html-active .switch-html, .gh-migrated .gform_legacy_markup_wrapper .gfield .tmce-active .switch-tmce {border-bottom-color:#f5f5f5}
.gh-migrated .gform_legacy_markup_wrapper .gfield .mce-edit-area iframe {margin:0!important;width:99.9%!important}
.gh-migrated .gform_legacy_markup_wrapper ul li.gfield {margin-top:16px;padding-top:0}
.gh-migrated .gform_legacy_markup_wrapper ul.gfields li.gfield label.gfield_label {margin-bottom:0!important;padding-bottom:0!important}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html {line-height:inherit}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li, .gh-migrated .gform_legacy_markup_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li {list-style-type:disc!important;margin:0 0 8px 0;overflow:visible;padding-left:0}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul, .gh-migrated .gform_legacy_markup_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul {list-style-type:disc!important;margin:16px 0 16px 28px!important;padding-left:0}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li, .gh-migrated .gform_legacy_markup_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li {list-style-type:decimal!important;margin:0 0 8px 0;overflow:visible;padding-left:0}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol, .gh-migrated .gform_legacy_markup_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol {list-style-type:decimal!important;margin:16px 0 18px 32px;padding-left:0}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul, .gh-migrated .gform_legacy_markup_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul li {list-style-type:disc!important;padding-left:0}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul {margin:16px 0 16px 16px}
.gh-migrated .gform_legacy_markup_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul li {margin:0 0 8px}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html dl {margin:0 0 18px 0;padding-left:0}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html dl dt {font-weight:700}
.gh-migrated .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html dl dd {margin:0 0 16px 18px}
.gh-migrated .gform_legacy_markup_wrapper span.gf_clear_span {clear:both;display:block;float:none;height:1px;margin-top:-1px;overflow:hidden;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container {display:inline-block;font-size:13px;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container * {-webkit-box-sizing:border-box;box-sizing:border-box}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-drop {background:#fff;border:1px solid #aaa;border-top:0;-webkit-box-shadow:0 4px 5px rgba(0,0,0,.15);box-shadow:0 4px 5px rgba(0,0,0,.15);display:none;position:absolute;top:100%;width:100%;z-index:1010}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container.chosen-with-drop .chosen-drop {display:block}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container a {cursor:pointer}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-single .group-name, .gh-migrated .gform_legacy_markup_wrapper .chosen-container .search-choice .group-name {color:#999;font-weight:400;margin-right:4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-single .group-name::after, .gh-migrated .gform_legacy_markup_wrapper .chosen-container .search-choice .group-name::after {content:":";padding-left:2px;vertical-align:top}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single {background:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),to(#f4f4f4));background:linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;background-color:#fff;border:1px solid #aaa;border-radius:5px;-webkit-box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;display:block;height:25px;line-height:24px;overflow:hidden;padding:0 0 0 8px;position:relative;text-decoration:none;white-space:nowrap}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single input[type=text] {cursor:pointer;opacity:0;position:absolute;width:0}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-default {color:#999}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single span {display:block;margin-right:26px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single-with-deselect span {margin-right:38px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single abbr {background:url("https://webuyhomesinstlouis.com/wp-content/uploads/2026/09/chosen-sprite.png") -42px 1px no-repeat;display:block;font-size:1px;height:12px;position:absolute;right:26px;top:6px;width:12px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single abbr:hover {background-position:-42px -10px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single.chosen-disabled .chosen-single abbr:hover {background-position:-42px -10px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single div {display:block;height:100%;position:absolute;right:0;top:0;width:18px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single div b {background:url("https://webuyhomesinstlouis.com/wp-content/uploads/2026/09/chosen-sprite.png") no-repeat 0 2px;display:block;height:100%;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-search {margin:0;padding:3px 4px;position:relative;white-space:nowrap;z-index:1010}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-search input[type=text] {background:url("https://webuyhomesinstlouis.com/wp-content/uploads/2026/09/chosen-sprite.png") no-repeat 100% -20px;border:1px solid #aaa;border-radius:0;font-family:sans-serif;font-size:1em;height:auto;line-height:normal;margin:1px 0;outline:0;padding:4px 20px 4px 5px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-drop {background-clip:padding-box;border-radius:0 0 4px 4px;margin-top:-1px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single.chosen-container-single-nosearch .chosen-search {opacity:0;pointer-events:none;position:absolute}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results {color:#444;margin:0 4px 4px 0;max-height:240px;-webkit-overflow-scrolling:touch;overflow-x:hidden;overflow-y:auto;padding:0 0 0 4px;position:relative}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results li {display:none;line-height:15px;list-style:none;margin:0;overflow-wrap:break-word;padding:5px 6px;-webkit-touch-callout:none}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results li.active-result {cursor:pointer;display:list-item}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results li.disabled-result {color:#ccc;cursor:default;display:list-item}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results li.highlighted {background-color:#3875d7;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results li.no-results {background:#f4f4f4;color:#777;display:list-item}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results li.group-result {cursor:default;display:list-item;font-weight:700}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results li.group-option {padding-left:15px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results li em {font-style:normal;text-decoration:underline}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices {background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(1%,#eee),color-stop(15%,#fff));background-image:linear-gradient(#eee 1%,#fff 15%);border:1px solid #aaa;cursor:text;height:auto;margin:0;overflow:hidden;padding:0 5px;position:relative;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li {float:left;list-style:none}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-field {margin:0;padding:0;white-space:nowrap}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-field input[type=text] {background:0 0!important;border:0!important;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#999;font-family:sans-serif;font-size:100%;height:25px;line-height:normal;margin:1px 0;outline:0;padding:0;width:25px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-choice {background-clip:padding-box;background-color:#eee;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),to(#eee));background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-repeat:repeat-x;background-size:100% 19px;border:1px solid #aaa;border-radius:3px;-webkit-box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;cursor:default;line-height:13px;margin:3px 5px 3px 0;max-width:100%;padding:3px 20px 3px 5px;position:relative}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-choice span {overflow-wrap:break-word}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {background:url("https://webuyhomesinstlouis.com/wp-content/uploads/2026/09/chosen-sprite.png") -42px 1px no-repeat;display:block;font-size:1px;height:12px;position:absolute;right:3px;top:4px;width:12px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {background-position:-42px -10px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-choice-disabled {background-color:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),to(#eee));background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);border:1px solid #ccc;color:#666;padding-right:5px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-choice-focus {background:#d4d4d4}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {background-position:-42px -10px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-results {margin:0;padding:0}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-drop .result-selected {color:#ccc;cursor:default;display:list-item}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-active .chosen-single {border:1px solid #5897fb;-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3)}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-active.chosen-with-drop .chosen-single {background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#eee),color-stop(80%,#fff));background-image:linear-gradient(#eee 20%,#fff 80%);border:1px solid #aaa;border-bottom-left-radius:0;border-bottom-right-radius:0;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-active.chosen-with-drop .chosen-single div {background:0 0;border-left:none}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-active.chosen-with-drop .chosen-single div b {background-position:-18px 2px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-active .chosen-choices {border:1px solid #5897fb;-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3)}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-active .chosen-choices li.search-field input[type=text] {color:#222!important}
.gh-migrated .gform_legacy_markup_wrapper .chosen-disabled {cursor:default;opacity:.5!important}
.gh-migrated .gform_legacy_markup_wrapper .chosen-disabled .chosen-single {cursor:default}
.gh-migrated .gform_legacy_markup_wrapper .chosen-disabled .chosen-choices .search-choice .search-choice-close {cursor:default}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl {text-align:right}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-single {overflow:visible;padding:0 8px 0 0}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-single span {direction:rtl;margin-left:26px;margin-right:0}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-single-with-deselect span {margin-left:38px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-single div {left:3px;right:auto}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-single abbr {left:26px;right:auto}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-choices li {float:right}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-choices li.search-field input[type=text] {direction:rtl}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-choices li.search-choice {margin:3px 5px 3px 0;padding:3px 5px 3px 19px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-choices li.search-choice .search-choice-close {left:4px;right:auto}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl.chosen-container-single .chosen-results {margin:0 0 4px 4px;padding:0 4px 0 0}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-results li.group-option {padding-left:0;padding-right:15px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {border-right:none}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-search input[type=text] {background:url("https://webuyhomesinstlouis.com/wp-content/uploads/2026/09/chosen-sprite.png") no-repeat -30px -20px;direction:rtl;padding:4px 5px 4px 20px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl.chosen-container-single .chosen-single div b {background-position:6px 2px}
.gh-migrated .gform_legacy_markup_wrapper .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {background-position:-12px 2px}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi),only screen and (min-resolution:1.5dppx) {
.gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results-scroll-down span, .gh-migrated .gform_legacy_markup_wrapper .chosen-container .chosen-results-scroll-up span, .gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-search input[type=text], .gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single abbr, .gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single div b, .gh-migrated .gform_legacy_markup_wrapper .chosen-rtl .chosen-search input[type=text] {background-image:url("https://webuyhomesinstlouis.com/wp-content/uploads/2026/09/chosen-sprite2x-29.png")!important;background-repeat:no-repeat!important;background-size:52px 37px!important}

}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container a.chosen-single {border-radius:inherit}
.gh-migrated .gform_legacy_markup_wrapper ul.chosen-results li {line-height:inherit}
@media only screen and (max-width:641px) {
.gh-migrated .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {line-height:2;min-height:20px}
.gh-migrated .gform_legacy_markup_wrapper textarea {line-height:1.5}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container.chosen-container-single[style] {width:100%!important}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single {height:40px;line-height:2.8}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-single .chosen-single div b {position:relative;top:10px}
.gh-migrated .gform_legacy_markup_wrapper div.chosen-container.chosen-container-multi[style] {width:100%!important}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container.chosen-container-multi ul.chosen-choices li.search-choice, .gh-migrated .gform_legacy_markup_wrapper .chosen-container.chosen-container-multi ul.chosen-choices li.search-field {float:none;line-height:inherit;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container.chosen-container-multi ul.chosen-choices li.search-choice span {margin-bottom:0}
.gh-migrated .gform_legacy_markup_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {top:calc(50% - 6px)}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container span:not(.ginput_price) {display:block;margin-bottom:8px}
.gh-migrated .gform_legacy_markup_wrapper li.field_sublabel_below .ginput_complex {margin-top:12px!important}
.gh-migrated .gform_legacy_markup_wrapper ul.gfield_checkbox li label, .gh-migrated .gform_legacy_markup_wrapper ul.gfield_radio li label {cursor:pointer;width:85%}

}
@media only screen and (max-width:761px),(min-device-width:768px) and (max-device-width:1023px) {
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {margin-top:32px}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list {border:0}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list thead {left:-9999px;position:absolute;top:-9999px}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr {background:#fff;border:1px solid #ccc;border-bottom:4px solid #ccc;border-top:2px solid #ccc;display:block;margin-bottom:10px;position:relative}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list td {display:block;margin-left:8px;margin-right:8px}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list td.gfield_list_icons {border-bottom:0;margin:16px 0 0 0!important}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td::before, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields.form_sublabel_below table.gfield_list td::after {clear:both;content:attr(data-label);display:block;font-size:.875em;letter-spacing:.5pt;white-space:nowrap}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td::before {margin:8px 0 3px 8px}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields.form_sublabel_below table.gfield_list td::after {margin:3px 0 8px 8px}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list td+td, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list th+th {padding:4px 0 0 0}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr.gfield_list_row_even, .gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr.gfield_list_row_odd {margin:16px 0}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr.gfield_list_row_odd:first-child {padding-top:12px}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr {padding-top:12px}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr td.gfield_list_icons {background-color:#eee;padding:5px 4px 1px 4px!important;text-align:center;width:100%!important}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr td.gfield_list_icons img.add_list_item {margin:12px 0 0 16px!important}
.gh-migrated .gform_legacy_markup_wrapper table.gfield_list tr td.gfield_list_icons img.delete_list_item {margin:12px 0 0 8px!important}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer a.gform_save_link, .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer a.gform_save_link {margin-left:0}
.gh-migrated .gform_legacy_markup_wrapper .gfield_list td.gfield_list_cell input {margin-left:8px;margin-right:8px;width:calc(100% - 16px)}

}
@media only screen and (min-width:641px) {
.gh-migrated .gform_legacy_markup_wrapper .gform_body {width:100%}
.gh-migrated .gform_legacy_markup_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {max-width:calc(100% - 16px)!important}
.gh-migrated .gform_legacy_markup_wrapper .gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper .gfield_radio li {line-height:1.3;margin:0 0 8px 0}
.gh-migrated .gform_legacy_markup_wrapper .gsection {margin:28px 16px 28px 0}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .gfield_label {float:left;margin-bottom:16px;padding-right:16px;width:29%}
.gh-migrated .gform_legacy_markup_wrapper .right_label .gfield_label {text-align:right}
.gh-migrated .gform_legacy_markup_wrapper .left_label .gfield_description, .gh-migrated .gform_legacy_markup_wrapper .right_label .gfield_description {width:70%}
.gh-migrated .gform_legacy_markup_wrapper form ul.left_label li ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper form ul.left_label li ul.gfield_radio li, .gh-migrated .gform_legacy_markup_wrapper form ul.right_label li ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper form ul.right_label li ul.gfield_radio li, .gh-migrated .gform_legacy_markup_wrapper ul.left_label li ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper ul.left_label li ul.gfield_radio li, .gh-migrated .gform_legacy_markup_wrapper ul.right_label li ul.gfield_checkbox li, .gh-migrated .gform_legacy_markup_wrapper ul.right_label li ul.gfield_radio li {margin-bottom:10px}
.gh-migrated .gform_legacy_markup_wrapper .left_label .gfield_description, .gh-migrated .gform_legacy_markup_wrapper .left_label .instruction, .gh-migrated .gform_legacy_markup_wrapper .right_label .gfield_description, .gh-migrated .gform_legacy_markup_wrapper .right_label .instruction {margin-left:29%}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .gsection .gsection_description {line-height:1.5;margin-left:0;padding-left:0;padding-top:4px}
.gh-migrated .gform_legacy_markup_wrapper form ul.gform_fields:not(.top_label) li.gfield_html_formatted {margin-left:29%!important;width:70%}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) ul.gfield_checkbox, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) ul.gfield_radio {overflow:hidden}
.gh-migrated .gform_legacy_markup_wrapper .left_label div.ginput_complex, .gh-migrated .gform_legacy_markup_wrapper .right_label div.ginput_complex {margin-left:29%;width:70%}
.gh-migrated .gform_legacy_markup_wrapper .left_label input.small, .gh-migrated .gform_legacy_markup_wrapper .left_label select.small, .gh-migrated .gform_legacy_markup_wrapper .right_label input.small, .gh-migrated .gform_legacy_markup_wrapper .right_label select.small {width:15%}
.gh-migrated .gform_legacy_markup_wrapper .left_label input.medium, .gh-migrated .gform_legacy_markup_wrapper .left_label select.medium, .gh-migrated .gform_legacy_markup_wrapper .right_label input.medium, .gh-migrated .gform_legacy_markup_wrapper .right_label select.medium {width:calc(35% - 8px)}
.gh-migrated .gform_legacy_markup_wrapper .left_label input.large, .gh-migrated .gform_legacy_markup_wrapper .left_label select.large, .gh-migrated .gform_legacy_markup_wrapper .right_label input.large, .gh-migrated .gform_legacy_markup_wrapper .right_label select.large {width:70%}
.gh-migrated .gform_legacy_markup_wrapper .left_label textarea.large, .gh-migrated .gform_legacy_markup_wrapper .left_label textarea.medium, .gh-migrated .gform_legacy_markup_wrapper .left_label textarea.small, .gh-migrated .gform_legacy_markup_wrapper .right_label textarea.large, .gh-migrated .gform_legacy_markup_wrapper .right_label textarea.medium, .gh-migrated .gform_legacy_markup_wrapper .right_label textarea.small {width:70%}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .ginput_list {margin-left:29%!important;width:70%}
.gh-migrated .gform_legacy_markup_wrapper .top_label .gfield_list {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .left_label .gf_list_one_column, .gh-migrated .gform_legacy_markup_wrapper .right_label .gf_list_one_column {width:45%}
.gh-migrated .gform_legacy_markup_wrapper .top_label .gf_list_one_column {width:46%}
.gh-migrated .gform_legacy_markup_wrapper .left_label li.hidden_label input, .gh-migrated .gform_legacy_markup_wrapper .right_label li.hidden_label input {margin-left:3.7%}
.gh-migrated .gform_legacy_markup_wrapper .left_label li.gfield .gfield_password_strength, .gh-migrated .gform_legacy_markup_wrapper .right_label li.gfield .gfield_password_strength {margin-left:29%}
.gh-migrated .gform_legacy_markup_wrapper .top_label input.small, .gh-migrated .gform_legacy_markup_wrapper .top_label select.small {width:25%}
.gh-migrated .gform_legacy_markup_wrapper .top_label input.medium, .gh-migrated .gform_legacy_markup_wrapper .top_label select.medium {width:calc(50% - 8px)}
.gh-migrated .gform_legacy_markup_wrapper.gform_validation_error .top_label input.medium, .gh-migrated .gform_legacy_markup_wrapper.gform_validation_error .top_label select.medium {width:50%}
.gh-migrated .gform_legacy_markup_wrapper .hidden_label input.large, .gh-migrated .gform_legacy_markup_wrapper .hidden_label select.large, .gh-migrated .gform_legacy_markup_wrapper .top_label input.large, .gh-migrated .gform_legacy_markup_wrapper .top_label select.large {width:100%}
.gh-migrated .gform_legacy_markup_wrapper .top_label input.large.datepicker, .gh-migrated .gform_legacy_markup_wrapper .top_label input.medium.datepicker, .gh-migrated .gform_legacy_markup_wrapper .top_label input.small.datepicker {width:auto}
.gh-migrated .gform_legacy_markup_wrapper textarea.small {height:80px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper textarea.medium {height:160px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper textarea.large {height:320px;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_left, .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_right {display:-moz-inline-stack;display:inline-block;margin:0 -4px 0 0;vertical-align:top;width:50%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_password .ginput_right {padding-left:8px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_complex .ginput_left, .gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_complex .ginput_right {width:50%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_cardinfo_left, .gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_cardinfo_right {float:left;min-height:43px;position:relative}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_cardinfo_right input {display:inline-block;max-width:70px;width:30%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_cardinfo_left {width:50%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex select.ginput_card_expiration.ginput_card_expiration_month, .gh-migrated .gform_legacy_markup_wrapper .ginput_complex select.ginput_card_expiration.ginput_card_expiration_year {display:-moz-inline-stack;display:inline-block;width:47%!important}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month {margin-right:4px}
.gh-migrated .gform_legacy_markup_wrapper .gf_step {display:-moz-inline-stack;display:inline-block;margin:16px 32px 16px 0;width:auto}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer input.button, .gh-migrated .gform_legacy_markup_wrapper .gform_footer input[type=image], .gh-migrated .gform_legacy_markup_wrapper .gform_footer input[type=submit] {display:-moz-inline-stack;display:inline-block}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer input[type=image] {vertical-align:middle}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer a.gform_save_link, .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer a.gform_save_link {display:-moz-inline-stack;display:inline-block;font-size:1em;margin-left:16px}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer input.button, .gh-migrated .gform_legacy_markup_wrapper .gform_footer input[type=submit], .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer input.button, .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer input[type=submit] {font-size:1em;margin:0 16px 0 0;width:auto}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields li.gfield {padding-right:16px}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex .ginput_left {padding-right:8px}
.gh-migrated .gform_legacy_markup_wrapper .left_label .ginput_complex.ginput_container_address::after {content:"";display:block}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex.ginput_container_address .ginput_left {margin-right:8px}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex.ginput_container_address .ginput_right {margin-right:-8px;padding-right:8px}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex.ginput_container_address span.ginput_full+span.ginput_right {margin-right:8px;padding-right:8px!important}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex.ginput_container_address span.ginput_right+span.ginput_left {margin-right:-8px;padding-right:8px!important}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex.ginput_container_address span.ginput_right+span.ginput_left.address_zip {margin-right:8px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_error .ginput_container {padding-right:0}
.gh-migrated .gform_legacy_markup_wrapper ul.top_label li.gfield.gfield_error.gfield_contains_required .gfield_password_strength {margin:18px 0 18px 0}
.gh-migrated .gform_legacy_markup_wrapper .gform_footer:not(.top_label) {margin-left:29%;padding:16px 0 10px 0;width:70%}
.gh-migrated .gform_legacy_markup_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_1, .gh-migrated .gform_legacy_markup_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_2, .gh-migrated .gform_legacy_markup_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_3 {width:calc(100% + 15px)}
.gh-migrated .gform_legacy_markup_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_4 {width:calc(100% + 13px)}
.gh-migrated .gform_legacy_markup_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_5 {width:calc(100% + 14px)}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_1, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_2, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_3 {margin-left:29%;width:calc(70% + 15px)}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_1, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_2, .gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_3 {width:calc(70% + 24px)}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_4 {margin-left:29%;width:calc(70% + 13px)}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_5 {margin-left:29%;width:calc(70% + 14px)}
.gh-migrated .gform_legacy_markup_wrapper div.ginput_container_name span {display:-moz-inline-stack;display:inline-block;margin-right:-4px;padding-right:16px;vertical-align:top}
.gh-migrated .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_1 span {width:100%}
.gh-migrated .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_2 span {width:50%}
.gh-migrated .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_3 span {width:33.3%}
.gh-migrated .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_4 span {width:25%}
.gh-migrated .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_5 span {width:19.95%}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_1 span {width:99.75%!important}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_2 span {width:49.75%!important}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_3 span {width:33%!important}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_4 span {width:24.75%!important}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_5 span {width:19.75%!important}
.gh-migrated .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_2 span:first-child, .gh-migrated .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_3 span:first-child, .gh-migrated .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_4 span:first-child, .gh-migrated .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_5 span:first-child {margin-left:0!important}
.gh-migrated .gform_legacy_markup_wrapper .top_label .ginput_complex.ginput_container.ginput_container_email {width:calc(100% + 15px)}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.ginput_container_email {margin-left:29%;width:calc(70% + 16px)}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.ginput_container_email {width:calc(70% + 17px)}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error .ginput_complex.ginput_container.ginput_container_email {width:calc(70% + 8px)!important}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_left, .gh-migrated .gform_legacy_markup_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_right {padding-right:16px}
.gh-migrated .gform_legacy_markup_wrapper ul.left_label li.gfield .gfield_password_strength, .gh-migrated .gform_legacy_markup_wrapper ul.right_label li.gfield .gfield_password_strength {width:70%}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex span.ginput_left+input.gform_hidden+span.ginput_left {padding-right:0}
.gh-migrated .gform_legacy_markup_wrapper .ginput_complex span.ginput_left.address_country {margin-right:0}
.gh-migrated :not([dir=rtl]) .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .clear-multi, .gh-migrated :not([dir=rtl]) .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .gfield_description, .gh-migrated :not([dir=rtl]) .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .ginput_container:not(.ginput_container_time):not(.ginput_container_date) {margin-left:29%;width:70%}
.gh-migrated .gform_legacy_markup_wrapper .gf_progressbar {width:calc(100% - 16px)}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .gform_fileupload_multifile .gform_drop_area {margin-left:29%;width:70%}
.gh-migrated .gform_legacy_markup_wrapper span.ginput_left.address_city+input.gform_hidden+span.ginput_left.address_country {margin-right:0;width:calc(50% - 8px)}
.gh-migrated .gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .ginput_container.ginput_recaptcha {margin-left:29%!important}
.gh-migrated .gform_legacy_markup_wrapper .gform_page_footer .button.gform_previous_button {margin-bottom:0}
.gh-migrated .gform_legacy_markup_wrapper .gform_page_footer .button.gform_button, .gh-migrated .gform_legacy_markup_wrapper .gform_page_footer .button.gform_next_button {margin-right:10px}
.gh-migrated .gform_legacy_markup_wrapper select.medium.gfield_select+div.chosen-container-multi[style], .gh-migrated .gform_legacy_markup_wrapper select.medium.gfield_select+div.chosen-container-single[style] {width:calc(50% - 8px)!important}
.gh-migrated .gform_legacy_markup_wrapper select.large.gfield_select+div.chosen-container-multi[style], .gh-migrated .gform_legacy_markup_wrapper select.large.gfield_select+div.chosen-container-single[style] {width:100%!important}
.gh-migrated .gform_legacy_markup_wrapper select.small.gfield_select+div.chosen-container-multi[style], .gh-migrated .gform_legacy_markup_wrapper select.small.gfield_select+div.chosen-container-single[style] {width:25%!important}

}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_item>.gfield>.gfield_repeater_wrapper {background-color:rgba(1,1,1,.02);border-bottom:1px solid #eee;border-left:8px solid rgba(54,86,102,.1);border-radius:8px;padding:10px 20px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_wrapper input {border:1px solid #c5c6c5;border-radius:4px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_wrapper .gfield_repeater_wrapper {margin-top:10px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons .add_repeater_item_text, .gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons .remove_repeater_item_text {background:rgba(242,242,242,.5);border:1px solid rgba(117,117,117,.4);border-radius:20px;color:#757575;font-size:12px;font-weight:400;height:30px;margin-bottom:5px;margin-right:10px;min-width:100px;transition:all .3s cubic-bezier(.67, .17, .4, .83)}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons .add_repeater_item_plus, .gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons .remove_repeater_item_minus {background:rgba(242,242,242,.5);border:1px solid rgba(117,117,117,.4);border-radius:50%;color:#757575;font-size:16px;font-weight:700;height:22px;margin:10px 5px 0 5px;padding:0;padding-bottom:5px;transition:all .3s cubic-bezier(.67, .17, .4, .83);width:22px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons button.gfield_icon_disabled {cursor:default;-moz-opacity:.3;-khtml-opacity:.3;opacity:.3}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons button.gfield_icon_disabled:hover {background:rgba(242,242,242,.5);border:1px solid rgba(117,117,117,.4);color:#757575}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons button:hover {background:#fafafa;border:1px solid #757575;color:#374750}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater .gfield_repeater_items .gfield_repeater_item:not(:last-child) {border-bottom:2px solid #e0e0e6;padding-bottom:20px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_item>.gfield>.gfield_repeater_wrapper {border-left:8px solid #f1f1f1;box-shadow:0 1px 1px 0 rgba(0,0,0,.06),0 2px 1px -1px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.06)}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons .add_repeater_item_text:focus, .gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_buttons .remove_repeater_item_text:focus {outline:0}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_item>.gfield .gfield_required {color:#c32121}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_item>.gfield label {color:#9b9a9a;font-size:14px;font-weight:400;padding-top:8px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_value .gfield_repeater_value .gfield_repeater_item>.gfield {padding-bottom:20px;padding-top:0}
.gh-migrated .gform_legacy_markup_wrapper div .gfield_repeater_item>.gfield {margin-top:5px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater .gfield_repeater_items .gfield_repeater_item:not(:last-child) {border-bottom:2px solid #e0e0e6;margin-bottom:20px;margin-right:10px;padding-bottom:20px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_value>.gfield_repeater {background-color:rgba(1,1,1,.02);border-bottom:1px solid #eee;border-left:8px solid rgba(54,86,102,.1);border-radius:8px;margin:10px;padding:10px 20px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_item>.gfield .gfield_repeater_value:not(:first-child) {background-color:#f0f0f0;border:1px solid #c5c6c5;border-radius:4px;color:rgba(117,117,117,.7);margin-right:10px;padding-left:10px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater .gfield_repeater_items, .gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_items .gfield_repeater_item>.gfield:not(:first-child) {padding-top:5px}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater .gfield_label {color:#23282d;font-size:16px;font-weight:600}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_value .gfield_label {padding-bottom:0}
.gh-migrated .gform_legacy_markup_wrapper .gfield_repeater_value .gfield_repeater_value .gfield_repeater_item:first-child {padding-bottom:0}
.gh-migrated .gform_legacy_markup_wrapper button.gform-datepicker-toggle {background:0 0;background-position:center;background-repeat:no-repeat;background-size:1em 1em;border:none;color:#607382;cursor:pointer;font-size:10px;height:1.25em;line-height:1;padding:2.5px;width:1.25em}
.gh-migrated .gform_legacy_markup_wrapper button.gform-datepicker-toggle:has(.gform-calendar-icon) {background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggaWQ9IkNhbGVuZGFyIChpY29uKSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMy4wOTA5IDEuNjM2MzZWMS4yMzExNUMxMy4wOTA5IDAuNTUxMjA1IDEzLjYzNTcgMCAxNC4zMTgyIDBDMTQuOTk2IDAgMTUuNTQ1NSAwLjU0NjgwNCAxNS41NDU1IDEuMjMxMTVWMS42MzYzNkgxNi4zNzA5QzE3LjI3MDYgMS42MzYzNiAxOCAyLjM3MTI2IDE4IDMuMjY1MlYxNi4zNzEyQzE4IDE3LjI3MDcgMTcuMjcyMSAxOCAxNi4zNzA5IDE4SDEuNjI5MTNDMC43MjkzODUgMTggMCAxNy4yNjUxIDAgMTYuMzcxMlYzLjI2NTJDMCAyLjM2NTYyIDAuNzI3OTE1IDEuNjM2MzYgMS42MjkxMyAxLjYzNjM2SDIuNDU0NTVWMS4yMzExNUMyLjQ1NDU1IDAuNTUxMjA1IDIuOTk5MjkgMCAzLjY4MTgyIDBDNC4zNTk2MiAwIDQuOTA5MDkgMC41NDY4MDQgNC45MDkwOSAxLjIzMTE1VjEuNjM2MzZINy4zNjM2NFYxLjIzMTE1QzcuMzYzNjQgMC41NTEyMDUgNy45MDgzOCAwIDguNTkwOTEgMEM5LjI2ODcxIDAgOS44MTgxOCAwLjU0NjgwNCA5LjgxODE4IDEuMjMxMTVWMS42MzYzNkgxMy4wOTA5Wk0xLjYzNjM2IDcuMzYzNjRWMTYuMzYzNkgxNi4zNjM2VjcuMzYzNjRIMS42MzYzNloiIGZpbGw9IiMyMzI4MkQiLz4KPC9zdmc+Cg==)}
.gh-migrated .gform_legacy_markup_wrapper button.gform-datepicker-toggle:has(.gform-calendar-icon) .gform-datepicker-toggle-icon {display:none}
.gh-migrated .gform_legacy_markup_wrapper .ginput_container_date {position:relative}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar {background:#fff;border:0.625px solid #d0d1d3;border-radius:1.875px;box-shadow:0 0.625px 2.5px rgba(0,0,0,.11),0 0 2.5px rgba(18,25,97,.0405344);color:#607382;font-size:8.125px;font-weight:500;inset-block-start:22.5px;margin-top:3.125px;max-width:400px;padding:9.375px;position:absolute;width:auto;z-index:99}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar td, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar th {padding:3.125px}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar .nav.next, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar .nav.prev {align-items:center;color:#607382;cursor:pointer;font-size:10px;line-height:1;text-align:center;width:18.75px}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar .nav.next:focus, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar .nav.next:hover, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar .nav.prev:focus, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar .nav.prev:hover {color:#2f4054}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar .monthSelector .month span.current, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar .yearSelector .year span.current {display:none}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar select {box-shadow:none;color:#585e6a;cursor:pointer;display:inline-block;text-align:center;width:100%}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar th span {align-items:center;color:#2f4054;display:flex;font-size:8.125px;font-weight:500;height:25px;justify-content:center;width:25px}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar td {font-size:8.125px;height:31.25px}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar td span {align-items:center;background:0 0;border:0.625px solid transparent;border-radius:100%;box-shadow:none;color:#2f4054;display:flex;height:25px;justify-content:center;text-decoration:none;transition:color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;width:25px}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar td span:focus, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar td span:hover {background:0 0;border-color:#607382;outline:0}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar td span:active {background:#f2f3f5;border-color:#607382}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar .dayToday span {background:#607382;border-color:#607382;box-shadow:0 1.25px 1.25px rgba(58,58,87,.0596411);color:#fff}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar .dayToday span:focus, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar .dayToday span:hover {background:0 0;border-color:#607382;color:#2f4054;outline:0}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar .disabled {background:0 0}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar .disabled span {background:#f2f3f5;border:0.625px solid rgba(32,32,46,.079);box-shadow:0 1.25px 1.25px rgba(58,58,87,.0596411);color:#686e77;cursor:text}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar .empty span {background:0 0;border:none;color:#686e77}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar .monthMessage {text-align:center}
@media (max-width:600px) {
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar {max-width:235px}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar td, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar th {height:20px;padding:3px}
.gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar td span, .gh-migrated .gform_legacy_markup_wrapper .gform-datepicker-calendar table.calendar th span {height:20px;width:20px}

}
@media only screen and (min-width:641px) {
.gh-migrated .gform_wrapper .top_label li.gfield.gf_inline {vertical-align:top;width:auto!important;margin:0;padding-right:16px;float:none!important;display:-moz-inline-stack;display:inline-block}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=email].large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=email].medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=email].small, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=number].large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=number].medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=number].small, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=password].large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=password].medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=password].small, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=tel].large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=tel].medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=tel].small, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=text].large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=text].medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=text].small, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=url].large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=url].medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=url].small {width:100%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_inline input[type=text].datepicker.medium {width:96px!important}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_inline select {width:100%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_inline textarea {width:100%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_hour input[type=text], .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_minute input[type=text] {width:70%!important}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_inline div.gfield_date_day, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline div.gfield_date_month, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline div.gfield_date_year, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_hour, .gh-migrated .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_minute {width:50px}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_ampm {width:auto}
.gh-migrated .gform_wrapper li.gf_inline div.ginput_container {white-space:nowrap!important}
.gh-migrated .gform_wrapper li.gf_inline div.ginput_container.ginput_container_date label {display:block!important}
.gh-migrated .gform_wrapper li.gfield.gfield_error.gf_inline {margin-right:16px;padding-right:0}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half {display:-moz-inline-stack;display:inline-block;vertical-align:top;width:50%;padding-right:16px;float:none}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container), .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container) {width:100%!important;margin:8px 0 0 0;padding-left:0;padding-right:0}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half:before {content:"";display:block;clear:both}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half:after {content:"";display:table;clear:both}
.gh-migrated .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half, .gh-migrated .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half {max-width:calc(50% - 16px);padding-right:0}
.gh-migrated .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half {margin-right:16px}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half div:not(.ginput_container_date) input.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half div:not(.ginput_container_date) input.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half div:not(.ginput_container_date) select.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half div:not(.ginput_container_date) select.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) input.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) input.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) select.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) select.medium {width:100%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half textarea, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half textarea {width:98%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half input.small, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half input.small {width:35%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half+li.gsection, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half+li.gsection {padding:16px 0 8px 0}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half+li.gfield.gsection.gf_left_half, .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half+li.gfield.gsection.gf_right_half, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half+li.gfield.gsection.gf_left_half, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half+li.gfield.gsection.gf_right_half, .gh-migrated .gform_wrapper .top_label li.gfield.gsection.gf_left_half+li.gfield.gsection.gf_left_half, .gh-migrated .gform_wrapper .top_label li.gfield.gsection.gf_right_half+li.gfield.gsection.gf_left_half, .gh-migrated .gform_wrapper .top_label li.gfield.gsection.gf_right_half+li.gfield.gsection.gf_right_half {padding:16px 0 8px 0}
.gh-migrated .gform_wrapper .top_label li.gfield.gsection.gf_left_half+li.gfield.gsection.gf_right_half {padding:0 0 8px 0}
.gh-migrated .gform_wrapper .top_label li.gfield.gsection.gf_left_half+li.gfield.gsection.gf_right_half+li.gfield.gsection.gf_left_half+li.gfield.gsection.gf_right_half {padding:16px 0 8px 0}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half+.gform_footer, .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_half+li.gfield, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half+.gform_footer, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_half+li.gfield {clear:both}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third, .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third {display:-moz-inline-stack;display:inline-block;vertical-align:top;float:none}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm), .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm) {width:33.3%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm) {width:33.4%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third, .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third {margin-bottom:8px}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) input.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) input.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) select.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) select.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) input.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) input.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) select.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) select.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) input.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) input.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) select.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) select.medium {width:100%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) input:not([type=radio]):not([type=checkbox]):not(.ginput_quantity), .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) select, .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) input:not([type=radio]):not([type=checkbox]):not(.ginput_quantity):not(.ginput_container_time input), .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) select, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) input:not([type=radio]):not([type=checkbox]):not(.ginput_quantity), .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) select {width:100%!important}
.gh-migrated .gform_wrapper .top_label li.gfield.gfield_error.gf_left_third, .gh-migrated .gform_wrapper .top_label li.gfield.gfield_error.gf_middle_third {width:calc(33.3% - 24px)!important;margin-right:16px}
.gh-migrated .gform_wrapper .top_label li.gfield.gfield_error.gf_right_third {width:33.4%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third:after {content:"";display:table;clear:both}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third+li.gsection, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third+li.gsection {padding:16px 0 8px 0}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third+.gform_footer, .gh-migrated .gform_wrapper .top_label li.gfield.gf_left_third+li.gfield, .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third+.gform_footer, .gh-migrated .gform_wrapper .top_label li.gfield.gf_middle_third+li.gfield, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third+.gform_footer, .gh-migrated .gform_wrapper .top_label li.gfield.gf_right_third+li.gfield {clear:both}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm), .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm), .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm), .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm) {width:25%;display:-moz-inline-stack;display:inline-block;vertical-align:top;float:none}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter, .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter, .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter, .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter {margin-bottom:8px}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter div:not(.ginput_container_date) input:not([type=radio]):not([type=checkbox]), .gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter div:not(.ginput_container_date) select, .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter div:not(.ginput_container_date) input:not([type=radio]):not([type=checkbox]), .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter div:not(.ginput_container_date) select, .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter div:not(.ginput_container_date) input:not([type=radio]):not([type=checkbox]), .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter div:not(.ginput_container_date) select, .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter div:not(.ginput_container_date) input:not([type=radio]):not([type=checkbox]), .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter div:not(.ginput_container_date) select {width:100%!important}
.gh-migrated .gform_wrapper .top_label li.gfield.gfield_error.gf_first_quarter, .gh-migrated .gform_wrapper .top_label li.gfield.gfield_error.gf_fourth_quarter, .gh-migrated .gform_wrapper .top_label li.gfield.gfield_error.gf_second_quarter, .gh-migrated .gform_wrapper .top_label li.gfield.gfield_error.gf_third_quarter {width:24.5%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter:after {content:"";display:table;clear:both}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter input.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter input.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter select.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter select.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter input.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter input.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter select.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter select.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter input.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter input.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter select.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter select.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter input.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter input.medium, .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter select.large, .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter select.medium {width:97.5%}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter+li.gsection, .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter+li.gsection {padding:16px 0 8px 0}
.gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter+.gform_footer, .gh-migrated .gform_wrapper .top_label li.gfield.gf_first_quarter+li.gfield, .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter+.gform_footer, .gh-migrated .gform_wrapper .top_label li.gfield.gf_fourth_quarter+li.gfield, .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter+.gform_footer, .gh-migrated .gform_wrapper .top_label li.gfield.gf_second_quarter+li.gfield, .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter+.gform_footer, .gh-migrated .gform_wrapper .top_label li.gfield.gf_third_quarter+li.gfield {clear:both}
.gh-migrated .gform_wrapper .top_label li ul.gfield_checkbox, .gh-migrated .gform_wrapper .top_label li ul.gfield_radio {width:calc(100% + 16px)}
.gh-migrated .gform_wrapper ul.gform_fields:not(.top_label) li ul.gfield_checkbox, .gh-migrated .gform_wrapper ul.gform_fields:not(.top_label) li ul.gfield_radio {width:calc(70% + 16px)}
.gh-migrated .gform_wrapper li.gfield[class*=col][class*=gf_list_] ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gfield[class*=col][class*=gf_list_] ul.gfield_radio {font-size:0;display:block}
.gh-migrated .gform_wrapper li.gfield[class*=col][class*=gf_list_] ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield[class*=col][class*=gf_list_] ul.gfield_radio li {font-size:9px}
.gh-migrated .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li {width:50%;display:-moz-inline-stack;display:inline-block;margin:0;padding-right:16px;min-height:28px;vertical-align:top}
.gh-migrated .gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_3col ul.gfield_radio li {width:33.3%;display:-moz-inline-stack;display:inline-block;margin:0 0 2px 0;padding-right:16px;min-height:28px;vertical-align:top}
.gh-migrated .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li label, .gh-migrated .gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li label, .gh-migrated .gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox li label, .gh-migrated .gform_wrapper li.gfield.gf_list_3col ul.gfield_radio li label, .gh-migrated .gform_wrapper li.gfield.gf_list_4col ul.gfield_checkbox li label, .gh-migrated .gform_wrapper li.gfield.gf_list_4col ul.gfield_radio li label {max-width:75%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;vertical-align:middle}
.gh-migrated .gform_wrapper li.gfield.gf_list_4col ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_4col ul.gfield_radio li {width:25%;display:-moz-inline-stack;display:inline-block;margin:0;padding-right:16px;min-height:28px;vertical-align:top}
.gh-migrated .gform_wrapper li.gfield.gf_list_5col ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_5col ul.gfield_radio li {width:20%;display:-moz-inline-stack;display:inline-block;margin:0;padding-right:16px;min-height:28px;vertical-align:top}
.gh-migrated .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gfield.gf_list_2col ul.gfield_radio, .gh-migrated .gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gfield.gf_list_3col ul.gfield_radio, .gh-migrated .gform_wrapper li.gfield.gf_list_4col ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gfield.gf_list_4col ul.gfield_radio, .gh-migrated .gform_wrapper li.gfield.gf_list_5col ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gfield.gf_list_5col ul.gfield_radio {overflow:hidden}
.gh-migrated .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_2col label.gfield_label, .gh-migrated .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_3col label.gfield_label, .gh-migrated .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_4col label.gfield_label, .gh-migrated .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_5col label.gfield_label, .gh-migrated .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_inline label.gfield_label {margin:0 0 10px 0}
.gh-migrated .gform_wrapper li.gf_list_2col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gf_list_3col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gf_list_4col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gf_list_5col_vertical .ginput_container_checkbox ul.gfield_checkbox {-webkit-column-gap:16px;-moz-column-gap:16px;column-gap:16px}
.gh-migrated .gform_wrapper ul.gform_fields:not(.top_label) li.gf_list_2col_vertical label.gfield_label {margin:0 0 10px 0}
.gh-migrated .gform_wrapper li.gf_list_2col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gf_list_2col_vertical .ginput_container_radio ul.gfield_radio {width:calc(100% - 16px);-webkit-column-count:2;-moz-column-count:2;column-count:2}
.gh-migrated .gform_wrapper li.gf_list_3col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gf_list_3col_vertical .ginput_container_radio ul.gfield_radio {width:calc(100% - 8px);-webkit-column-count:3;-moz-column-count:3;column-count:3}
.gh-migrated .gform_wrapper li.gf_list_4col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gf_list_4col_vertical .ginput_container_radio ul.gfield_radio {width:calc(100% - 8px);-webkit-column-count:4;-moz-column-count:4;column-count:4}
.gh-migrated .gform_wrapper li.gf_list_5col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gh-migrated .gform_wrapper li.gf_list_5col_vertical .ginput_container_radio ul.gfield_radio {width:calc(100% - 8px);-webkit-column-count:5;-moz-column-count:5;column-count:5}
.gh-migrated .gform_wrapper li.gf_list_2col_vertical .ginput_container_checkbox ul.gfield_checkbox li label, .gh-migrated .gform_wrapper li.gf_list_2col_vertical .ginput_container_radio ul.gfield_radio li label, .gh-migrated .gform_wrapper li.gf_list_3col_vertical .ginput_container_checkbox ul.gfield_checkbox li label, .gh-migrated .gform_wrapper li.gf_list_3col_vertical .ginput_container_radio ul.gfield_radio li label, .gh-migrated .gform_wrapper li.gf_list_4col_vertical .ginput_container_checkbox ul.gfield_checkbox li label, .gh-migrated .gform_wrapper li.gf_list_4col_vertical .ginput_container_radio ul.gfield_radio li label, .gh-migrated .gform_wrapper li.gf_list_5col_vertical .ginput_container_checkbox ul.gfield_checkbox li label, .gh-migrated .gform_wrapper li.gf_list_5col_vertical .ginput_container_radio ul.gfield_radio li label {max-width:75%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.gh-migrated .gform_wrapper li.gfield.gf_list_height_25 ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_height_25 ul.gfield_radio li {height:25px}
.gh-migrated .gform_wrapper li.gfield.gf_list_height_50 ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_height_50 ul.gfield_radio li {height:50px}
.gh-migrated .gform_wrapper li.gfield.gf_list_height_75 ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_height_75 ul.gfield_radio li {height:75px}
.gh-migrated .gform_wrapper li.gfield.gf_list_height_100 ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_height_100 ul.gfield_radio li {height:100px}
.gh-migrated .gform_wrapper li.gfield.gf_list_height_125 ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_height_125 ul.gfield_radio li {height:125px}
.gh-migrated .gform_wrapper li.gfield.gf_list_height_150 ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gfield.gf_list_height_150 ul.gfield_radio li {height:150px}
.gh-migrated .gform_wrapper li.gf_list_inline ul.gfield_checkbox li, .gh-migrated .gform_wrapper li.gf_list_inline ul.gfield_radio li {width:auto!important;float:none!important;margin:0 8px 10px 0;display:-moz-inline-stack;display:inline-block}
.gh-migrated [dir=rtl] .gform_wrapper li.gf_list_inline ul.gfield_checkbox li, .gh-migrated [dir=rtl] .gform_wrapper li.gf_list_inline ul.gfield_radio li {padding-left:16px!important;padding-right:0!important}
.gh-migrated .gform_wrapper li.gf_hide_ampm div.gfield_time_ampm {display:none!important}
.gh-migrated .gform_wrapper li.gsection.gf_scroll_text {height:240px;width:calc(100% - 16px);padding:16px;background-color:#fff;overflow-y:scroll;overflow-x:hidden;border:1px solid #ccc;border-bottom:1px solid #ccc!important}
.gh-migrated .gform_wrapper .top_label li.gsection.gf_scroll_text h2.gsection_title {margin:10px 10px 0 8px!important}
.gh-migrated .gform_wrapper.gf_browser_chrome .top_label li.gsection.gf_scroll_text h2.gsection_title, .gh-migrated .gform_wrapper.gf_browser_gecko .top_label li.gsection.gf_scroll_text h2.gsection_title {margin:0 10px 0 8px!important}
.gh-migrated .gform_wrapper .top_label li.gsection.gf_scroll_text .gsection_description {margin:10px;font-size:12px}
.gh-migrated .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ul li, .gh-migrated .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ul li {list-style-type:disc!important;margin:0 0 8px;overflow:visible;padding-left:0}
.gh-migrated .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ul, .gh-migrated .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ul {list-style-type:disc!important;margin:16px 0 16px 18px;padding-left:0}
.gh-migrated .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li, .gh-migrated .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li {list-style-type:decimal!important;overflow:visible;margin:0 0 8px;padding-left:0}
.gh-migrated .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol, .gh-migrated .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol {list-style-type:decimal!important;margin:16px 0 18px 32px;padding-left:0}
.gh-migrated .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul, .gh-migrated .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul li {list-style-type:disc!important;padding-left:0}
.gh-migrated .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul {margin:16px 0 16px 18px}
.gh-migrated .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul li {margin:0 0 8px}
.gh-migrated .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description dl {margin:0 0 18px 0;padding-left:0}
.gh-migrated .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description dl dt {font-weight:700}
.gh-migrated .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description dl dd {margin:0 0 16px 18px}
.gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_blue, .gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_gray, .gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_green, .gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_red, .gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_yellow {-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin:20px 0!important;padding:20px!important}
.gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_green {border:1px solid #97b48a;background-color:#cbeca0;text-shadow:#dfb 1px 1px;color:#030}
.gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_red {border:1px solid #cfadb3;background-color:#faf2f5;text-shadow:#fff 1px 1px;color:#832525}
.gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_yellow {border:1px solid #e6db55;background-color:#fffbcc;text-shadow:#fcfaea 1px 1px;color:#222}
.gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_gray {border:1px solid #ccc;background-color:#eee;text-shadow:#fff 1px 1px;color:#424242}
.gh-migrated .gform_wrapper li.gfield.gfield_html.gf_alert_blue {border:1px solid #a7c2e7;background-color:#d1e4f3;text-shadow:#e0f1ff 1px 1px;color:#314475}
.gh-migrated div.gform_confirmation_wrapper.gf_confirmation_simple_yellow {margin:30px 0;max-width:99%;border-top:1px solid #e6db55;border-bottom:1px solid #e6db55;padding:32px;background-color:#fffbcc;color:#424242;font-size:25px}
.gh-migrated div.gform_confirmation_wrapper.gf_confirmation_simple_gray {margin:30px 0;max-width:99%;border-top:1px solid #ccc;border-bottom:1px solid #ccc;padding:32px;background-color:#eaeaea;color:#424242;font-size:25px}
.gh-migrated div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient {position:relative;background-color:#fffbd2;margin:30px 0;border:1px solid #e6db55;-webkit-box-shadow:0 0 5px rgba(221,215,131,.75);-moz-box-shadow:0 0 5px rgba(221,215,131,.75);box-shadow:0 0 5px rgba(221,215,131,.75)}
.gh-migrated div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient div.gform_confirmation_message {margin:0;padding:40px;max-width:99%;font-size:28px;border-top:2px solid #fff;border-bottom:1px solid #e6db55;background-color:#fffbcc;color:#424242;background:#fffce5;background:-moz-linear-gradient(top,#fffce5 0,#fff9bf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fffce5),color-stop(100%,#fff9bf));background:-webkit-linear-gradient(top,#fffce5 0,#fff9bf 100%);background:-o-linear-gradient(top,#fffce5 0,#fff9bf 100%);background:-ms-linear-gradient(top,#fffce5 0,#fff9bf 100%);background:linear-gradient(to bottom,#fffce5 0,#fff9bf 100%)}
.gh-migrated div.gform_confirmation_wrapper.gf_confirmation_green_gradient {position:relative;background-color:#f1fcdf;margin:30px 0;border:1px solid #a7c37c;-webkit-box-shadow:0 0 5px rgba(86,122,86,.4);-moz-box-shadow:0 0 5px rgba(86,122,86,.4);box-shadow:0 0 5px rgba(86,122,86,.4)}
.gh-migrated div.gform_confirmation_wrapper.gf_confirmation_green_gradient div.gforms_confirmation_message {margin:0;padding:40px;max-width:99%;font-size:28px;border-top:2px solid #effade;border-bottom:1px solid #a7c37c;background-color:#fffbcc;text-shadow:#dfb 1px 1px;color:#030;background:#dbf2b7;background:-moz-linear-gradient(top,#dbf2b7 0,#b4d088 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dbf2b7),color-stop(100%,#b4d088));background:-webkit-linear-gradient(top,#dbf2b7 0,#b4d088 100%);background:-o-linear-gradient(top,#dbf2b7 0,#b4d088 100%);background:-ms-linear-gradient(top,#dbf2b7 0,#b4d088 100%);background:linear-gradient(to bottom,#dbf2b7 0,#b4d088 100%)}
.gh-migrated div.gform_confirmation_wrapper.gf_confirmation_green_gradient:after, .gh-migrated div.gform_confirmation_wrapper.gf_confirmation_green_gradient:before, .gh-migrated div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient:after, .gh-migrated div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient:before {z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:40%;background:rgba(0,0,0,.2);-webkit-box-shadow:0 15px 10px rgba(0,0,0,.2);-moz-box-shadow:0 15px 10px rgba(0,0,0,.2);box-shadow:0 15px 10px rgba(0,0,0,.2);-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}
.gh-migrated div.gform_confirmation_wrapper.gf_confirmation_green_gradient:after, .gh-migrated div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient:after {-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}
.gh-migrated .gform_wrapper.gf_simple_horizontal_wrapper.centered_wrapper {width:auto;margin:0 auto;display:table}
.gh-migrated .gform_wrapper form.gf_simple_horizontal {width:calc(100% - 16px);margin:0 auto}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body, .gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label {display:table-cell;vertical-align:middle;margin:0;padding:0;position:relative}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body {width:auto;max-width:75%}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.ginput_container, .gh-migrated .gform_wrapper form.gf_simple_horizontal ul li.gfield {margin-top:0!important}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label {width:auto;max-width:25%;padding:0;margin:0}
.gh-migrated :not(rtl) .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label {text-align:left}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label {display:table;width:100%}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield {display:table-cell;padding-right:1em;height:auto}
.gh-migrated .gform_wrapper form.gf_simple_horizontal .gfield_description:not(.validation_message), .gh-migrated .gform_wrapper form.gf_simple_horizontal .ginput_complex label, .gh-migrated .gform_wrapper form.gf_simple_horizontal label.gfield_label {display:block;height:1px;width:1px;overflow:hidden;position:absolute;top:0;left:-9000px}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label.form_sublabel_below li.gfield {vertical-align:middle}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label.form_sublabel_above li.gfield {vertical-align:middle}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield input.large, .gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield input.medium, .gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield input.small {width:100%}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield select.large, .gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield select.medium, .gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield select.small {width:100%}
.gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label input[type=button], .gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label input[type=image], .gh-migrated .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label input[type=submit] {height:auto}
.gh-migrated .gform_wrapper form.gf_simple_horizontal .top_label .gfield_error {margin-bottom:0}
.gh-migrated .gform_wrapper form.gf_simple_horizontal ul li.gfield .ginput_container_checkbox ul li, .gh-migrated .gform_wrapper form.gf_simple_horizontal ul li.gfield .ginput_container_radio ul li {display:inline-block;margin-right:.5em}
.gh-migrated [dir=rtl] .gform_wrapper form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_2 span {width:48.5%}
.gh-migrated [dir=rtl] .gform_wrapper form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_3 span {width:33%}
.gh-migrated [dir=rtl] .gform_wrapper form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_4 span {width:24.5%}
.gh-migrated [dir=rtl] .gform_wrapper form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_5 span {width:19.5%}

}
.gh-migrated .gform_wrapper.gf_form_center_wrapper {padding:16px 0 16px 16px}
.gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_safari ul li:after, .gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_safari ul li:before, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari ul li:after, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari ul li:before {content:none}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari .gform_body ul.gform_fields li.gfield .ginput_container #recaptcha_widget_div #recaptcha_area {width:99%!important}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari .left_label #recaptcha_area #recaptcha_table, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari .right_label #recaptcha_area #recaptcha_table {margin-left:32%}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari .gfield_checkbox li input, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari .gfield_checkbox li input[type=checkbox], .gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari .gfield_radio li input[type=radio] {margin-top:4px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari select[multiple=multiple] {height:auto!important}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari input.button.gform_button_select_files {padding:6px 12px!important}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome select {padding:2px 0 2px 3px}
.gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_chrome ul li:after, .gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_chrome ul li:before, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome ul li:after, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome ul li:before {content:none}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gform_body ul.gform_fields li.gfield .ginput_container #recaptcha_widget_div #recaptcha_area {width:99%!important}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .left_label #recaptcha_area #recaptcha_table, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .right_label #recaptcha_area #recaptcha_table {margin-left:32%}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .ginput_complex .ginput_right select, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .ginput_complex select {text-indent:2px;line-height:1.5em;margin-bottom:5px;margin-top:2px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_checkbox li input, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {margin-top:6px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_left select, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_right select, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {margin-left:1px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield input[type=radio] {margin-left:1px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle {padding-top:2px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome select[multiple=multiple] {height:auto!important}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error .ginput_complex.ginput_container.has_first_name.has_middle_name.has_last_name span.name_last, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error .ginput_complex.ginput_container.has_first_name.has_middle_name.has_last_name span.name_middle {margin-left:1.1%}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error input[type=email], .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error input[type=number], .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error input[type=password], .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error input[type=tel], .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error input[type=text], .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error input[type=url], .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error select, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error textarea, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome li.gfield_error.field_sublabel_above .ginput_complex input[type=text] {margin-bottom:2px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome input.button.gform_button_select_files {padding:6px 12px!important}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome span.address_country {margin-top:-2px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_gecko select {padding:2px 12px 2px 2px}
.gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_gecko ul li:after, .gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_gecko ul li:before, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_gecko ul li:after, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_gecko ul li:before {content:none}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_gecko .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month {margin-right:1px}
.gh-migrated .gform_legacy_markup_wrappergf_browser_gecko .chosen-container-single .chosen-single {height:32px;line-height:2.4}
.gh-migrated .gform_legacy_markup_wrappergf_browser_gecko .chosen-container-single .chosen-single div b {position:relative;top:5px}
.gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_ie ul li:after, .gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_ie ul li:before, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie ul li:after, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie ul li:before {content:none}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .gfield_time_hour {width:80px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .gfield_time_minute {width:70px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .ginput_complex .ginput_left label, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .ginput_complex .ginput_right label {margin:3px 0 5px 0}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .gform_footer input.button {padding:3px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie ul.top_label .clear-multi {overflow:hidden;clear:both}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .gfield_radio li {line-height:20px!important}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .gfield_checkbox li input, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .gfield_checkbox li input[type=checkbox], .gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .gfield_radio li input[type=radio] {margin-top:0}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .ginput_complex .ginput_left select, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .ginput_complex .ginput_right select {padding:2px 0 2px 0}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .gform_body ul.gform_fields li.gfield .ginput_container #recaptcha_widget_div #recaptcha_area {width:99%!important}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .gform_body ul.gform_fields li.gfield .ginput_container #recaptcha_widget_div #recaptcha_area {width:99%!important}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .left_label #recaptcha_area #recaptcha_table, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .right_label #recaptcha_area #recaptcha_table {margin-left:32%}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon {position:relative;top:-1px;left:4px}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie img.add_list_item, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_ie img.delete_list_item {width:16px!important;height:16px!important;background-size:16px 16px!important}
.gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_iphone ul li:after, .gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_iphone ul li:before, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_iphone ul li:after, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_iphone ul li:before {content:none}
.gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_unknown ul li:after, .gh-migrated .entry .gform_legacy_markup_wrapper.gf_browser_unknown ul li:before, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_unknown ul li:after, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_unknown ul li:before {content:none}
@media only screen and (max-width:641px) {
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .chosen-container-single .chosen-single, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_gecko .chosen-container-single .chosen-single, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari .chosen-container-single .chosen-single {height:44px;line-height:3.2}
.gh-migrated .gform_legacy_markup_wrapper.gf_browser_chrome .chosen-container-single .chosen-single div b, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_gecko .chosen-container-single .chosen-single div b, .gh-migrated .gform_legacy_markup_wrapper.gf_browser_safari .chosen-container-single .chosen-single div b {position:relative;top:50%;transform:translateY(-25%)}

}
.gh-migrated img:is([sizes=auto i],[sizes^="auto," i]) {contain-intrinsic-size:3000px 1500px}
@font-face { 
	font-family: 'Affection';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	font-fallback: Serif;
	src: url('https://webuyhomesinstlouis.com/wp-content/uploads/2024/03/Affection.otf') format('OpenType');
 }
.gh-migrated :root {--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}
@media (min-resolution:192dpi) {
.gh-migrated :root {--wp-admin-border-width-focus:1.5px}

}
.gh-migrated .wp-element-button {cursor:pointer}
.gh-migrated :root .has-very-light-gray-background-color {background-color:#eee}
.gh-migrated :root .has-very-dark-gray-background-color {background-color:#313131}
.gh-migrated :root .has-very-light-gray-color {color:#eee}
.gh-migrated :root .has-very-dark-gray-color {color:#313131}
.gh-migrated :root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {background:linear-gradient(135deg,#00d084,#0693e3)}
.gh-migrated :root .has-purple-crush-gradient-background {background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}
.gh-migrated :root .has-hazy-dawn-gradient-background {background:linear-gradient(135deg,#faaca8,#dad0ec)}
.gh-migrated :root .has-subdued-olive-gradient-background {background:linear-gradient(135deg,#fafae1,#67a671)}
.gh-migrated :root .has-atomic-cream-gradient-background {background:linear-gradient(135deg,#fdd79a,#004a59)}
.gh-migrated :root .has-nightshade-gradient-background {background:linear-gradient(135deg,#330968,#31cdcf)}
.gh-migrated :root .has-midnight-gradient-background {background:linear-gradient(135deg,#020381,#2874fc)}
.gh-migrated :root {--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}
.gh-migrated .has-regular-font-size {font-size:1em}
.gh-migrated .has-larger-font-size {font-size:2.625em}
.gh-migrated .has-normal-font-size {font-size:var(--wp--preset--font-size--normal)}
.gh-migrated .has-huge-font-size {font-size:var(--wp--preset--font-size--huge)}
.gh-migrated :root .has-text-align-center {text-align:center}
.gh-migrated :root .has-text-align-left {text-align:left}
.gh-migrated :root .has-text-align-right {text-align:right}
.gh-migrated .has-fit-text {white-space:nowrap!important}
.gh-migrated #end-resizable-editor-section {display:none}
.gh-migrated .aligncenter {clear:both}
.gh-migrated .items-justified-left {justify-content:flex-start}
.gh-migrated .items-justified-center {justify-content:center}
.gh-migrated .items-justified-right {justify-content:flex-end}
.gh-migrated .items-justified-space-between {justify-content:space-between}
.gh-migrated .screen-reader-text {word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}
.gh-migrated .screen-reader-text:focus {background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.gh-migrated :where(.has-border-color) {border-style:solid}
.gh-migrated :where([style^=border-color],[style*=";border-color"],[style*="; border-color"]) {border-style:solid}
.gh-migrated :where([style^=border-top-color],[style*=";border-top-color"],[style*="; border-top-color"]) {border-top-style:solid}
.gh-migrated :where([style^=border-right-color],[style*=";border-right-color"],[style*="; border-right-color"]) {border-right-style:solid}
.gh-migrated :where([style^=border-bottom-color],[style*=";border-bottom-color"],[style*="; border-bottom-color"]) {border-bottom-style:solid}
.gh-migrated :where([style^=border-left-color],[style*=";border-left-color"],[style*="; border-left-color"]) {border-left-style:solid}
.gh-migrated :where([style^=border-width],[style*=";border-width"],[style*="; border-width"]) {border-style:solid}
.gh-migrated :where([style^=border-top-width],[style*=";border-top-width"],[style*="; border-top-width"]) {border-top-style:solid}
.gh-migrated :where([style^=border-right-width],[style*=";border-right-width"],[style*="; border-right-width"]) {border-right-style:solid}
.gh-migrated :where([style^=border-bottom-width],[style*=";border-bottom-width"],[style*="; border-bottom-width"]) {border-bottom-style:solid}
.gh-migrated :where([style^=border-left-width],[style*=";border-left-width"],[style*="; border-left-width"]) {border-left-style:solid}
.gh-migrated :where(img[class*=wp-image-]) {height:auto;max-width:100%}
.gh-migrated :where(figure) {margin:0 0 1em}
.gh-migrated :where(.is-position-sticky) {--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}
@media screen and (max-width:600px) {
.gh-migrated :where(.is-position-sticky) {--wp-admin--admin-bar--position-offset:0px}

}
.gh-migrated .wp-block-button__link {color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}
.gh-migrated .wp-block-file__button {background:#32373c;color:#fff;text-decoration:none}
.gh-migrated :root {--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--fl-heading-text: #176824;--wp--preset--color--fl-body-bg: #efefe9;--wp--preset--color--fl-body-text: #2c3e50;--wp--preset--color--fl-accent: #1e73be;--wp--preset--color--fl-accent-hover: #483182;--wp--preset--color--fl-topbar-bg: #ffffff;--wp--preset--color--fl-topbar-text: #757575;--wp--preset--color--fl-topbar-link: #483182;--wp--preset--color--fl-topbar-hover: #483182;--wp--preset--color--fl-header-bg: #ffffff;--wp--preset--color--fl-header-text: #757575;--wp--preset--color--fl-header-link: #757575;--wp--preset--color--fl-header-hover: #483182;--wp--preset--color--fl-nav-bg: #483182;--wp--preset--color--fl-nav-link: #c8c2da;--wp--preset--color--fl-nav-hover: #ffffff;--wp--preset--color--fl-content-bg: #ffffff;--wp--preset--color--fl-footer-widgets-bg: #ffffff;--wp--preset--color--fl-footer-widgets-text: #757575;--wp--preset--color--fl-footer-widgets-link: #483182;--wp--preset--color--fl-footer-widgets-hover: #483182;--wp--preset--color--fl-footer-bg: #ffffff;--wp--preset--color--fl-footer-text: #757575;--wp--preset--color--fl-footer-link: #483182;--wp--preset--color--fl-footer-hover: #483182;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 4.4px;--wp--preset--spacing--30: 6.7px;--wp--preset--spacing--40: 10px;--wp--preset--spacing--50: 15px;--wp--preset--spacing--60: 22.5px;--wp--preset--spacing--70: 33.8px;--wp--preset--spacing--80: 50.6px;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}
.gh-migrated .wp-block-button {--wp--preset--dimension--25: 25%;--wp--preset--dimension--50: 50%;--wp--preset--dimension--75: 75%;--wp--preset--dimension--100: 100%;}
.gh-migrated :where(body) { margin: 0; }
.gh-migrated :where(.is-layout-flex) {gap: 0.5em;}
.gh-migrated :where(.is-layout-grid) {gap: 0.5em;}
.gh-migrated .is-layout-flex {display: flex;}
.gh-migrated .is-layout-flex {flex-wrap: wrap;align-items: center;}
.gh-migrated .is-layout-flex > :is(*, div) {margin: 0;}
.gh-migrated .is-layout-grid {display: grid;}
.gh-migrated .is-layout-grid > :is(*, div) {margin: 0;}
.gh-migrated {padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}
.gh-migrated :root :where(.wp-element-button, .wp-block-button__link) {background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}
.gh-migrated .has-black-color {color: var(--wp--preset--color--black) !important;}
.gh-migrated .has-cyan-bluish-gray-color {color: var(--wp--preset--color--cyan-bluish-gray) !important;}
.gh-migrated .has-white-color {color: var(--wp--preset--color--white) !important;}
.gh-migrated .has-pale-pink-color {color: var(--wp--preset--color--pale-pink) !important;}
.gh-migrated .has-vivid-red-color {color: var(--wp--preset--color--vivid-red) !important;}
.gh-migrated .has-luminous-vivid-orange-color {color: var(--wp--preset--color--luminous-vivid-orange) !important;}
.gh-migrated .has-luminous-vivid-amber-color {color: var(--wp--preset--color--luminous-vivid-amber) !important;}
.gh-migrated .has-light-green-cyan-color {color: var(--wp--preset--color--light-green-cyan) !important;}
.gh-migrated .has-vivid-green-cyan-color {color: var(--wp--preset--color--vivid-green-cyan) !important;}
.gh-migrated .has-pale-cyan-blue-color {color: var(--wp--preset--color--pale-cyan-blue) !important;}
.gh-migrated .has-vivid-cyan-blue-color {color: var(--wp--preset--color--vivid-cyan-blue) !important;}
.gh-migrated .has-vivid-purple-color {color: var(--wp--preset--color--vivid-purple) !important;}
.gh-migrated .has-fl-heading-text-color {color: var(--wp--preset--color--fl-heading-text) !important;}
.gh-migrated .has-fl-body-bg-color {color: var(--wp--preset--color--fl-body-bg) !important;}
.gh-migrated .has-fl-body-text-color {color: var(--wp--preset--color--fl-body-text) !important;}
.gh-migrated .has-fl-accent-color {color: var(--wp--preset--color--fl-accent) !important;}
.gh-migrated .has-fl-accent-hover-color {color: var(--wp--preset--color--fl-accent-hover) !important;}
.gh-migrated .has-fl-topbar-bg-color {color: var(--wp--preset--color--fl-topbar-bg) !important;}
.gh-migrated .has-fl-topbar-text-color {color: var(--wp--preset--color--fl-topbar-text) !important;}
.gh-migrated .has-fl-topbar-link-color {color: var(--wp--preset--color--fl-topbar-link) !important;}
.gh-migrated .has-fl-topbar-hover-color {color: var(--wp--preset--color--fl-topbar-hover) !important;}
.gh-migrated .has-fl-header-bg-color {color: var(--wp--preset--color--fl-header-bg) !important;}
.gh-migrated .has-fl-header-text-color {color: var(--wp--preset--color--fl-header-text) !important;}
.gh-migrated .has-fl-header-link-color {color: var(--wp--preset--color--fl-header-link) !important;}
.gh-migrated .has-fl-header-hover-color {color: var(--wp--preset--color--fl-header-hover) !important;}
.gh-migrated .has-fl-nav-bg-color {color: var(--wp--preset--color--fl-nav-bg) !important;}
.gh-migrated .has-fl-nav-link-color {color: var(--wp--preset--color--fl-nav-link) !important;}
.gh-migrated .has-fl-nav-hover-color {color: var(--wp--preset--color--fl-nav-hover) !important;}
.gh-migrated .has-fl-content-bg-color {color: var(--wp--preset--color--fl-content-bg) !important;}
.gh-migrated .has-fl-footer-widgets-bg-color {color: var(--wp--preset--color--fl-footer-widgets-bg) !important;}
.gh-migrated .has-fl-footer-widgets-text-color {color: var(--wp--preset--color--fl-footer-widgets-text) !important;}
.gh-migrated .has-fl-footer-widgets-link-color {color: var(--wp--preset--color--fl-footer-widgets-link) !important;}
.gh-migrated .has-fl-footer-widgets-hover-color {color: var(--wp--preset--color--fl-footer-widgets-hover) !important;}
.gh-migrated .has-fl-footer-bg-color {color: var(--wp--preset--color--fl-footer-bg) !important;}
.gh-migrated .has-fl-footer-text-color {color: var(--wp--preset--color--fl-footer-text) !important;}
.gh-migrated .has-fl-footer-link-color {color: var(--wp--preset--color--fl-footer-link) !important;}
.gh-migrated .has-fl-footer-hover-color {color: var(--wp--preset--color--fl-footer-hover) !important;}
.gh-migrated .has-black-background-color {background-color: var(--wp--preset--color--black) !important;}
.gh-migrated .has-cyan-bluish-gray-background-color {background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}
.gh-migrated .has-white-background-color {background-color: var(--wp--preset--color--white) !important;}
.gh-migrated .has-pale-pink-background-color {background-color: var(--wp--preset--color--pale-pink) !important;}
.gh-migrated .has-vivid-red-background-color {background-color: var(--wp--preset--color--vivid-red) !important;}
.gh-migrated .has-luminous-vivid-orange-background-color {background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}
.gh-migrated .has-luminous-vivid-amber-background-color {background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}
.gh-migrated .has-light-green-cyan-background-color {background-color: var(--wp--preset--color--light-green-cyan) !important;}
.gh-migrated .has-vivid-green-cyan-background-color {background-color: var(--wp--preset--color--vivid-green-cyan) !important;}
.gh-migrated .has-pale-cyan-blue-background-color {background-color: var(--wp--preset--color--pale-cyan-blue) !important;}
.gh-migrated .has-vivid-cyan-blue-background-color {background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}
.gh-migrated .has-vivid-purple-background-color {background-color: var(--wp--preset--color--vivid-purple) !important;}
.gh-migrated .has-fl-heading-text-background-color {background-color: var(--wp--preset--color--fl-heading-text) !important;}
.gh-migrated .has-fl-body-bg-background-color {background-color: var(--wp--preset--color--fl-body-bg) !important;}
.gh-migrated .has-fl-body-text-background-color {background-color: var(--wp--preset--color--fl-body-text) !important;}
.gh-migrated .has-fl-accent-background-color {background-color: var(--wp--preset--color--fl-accent) !important;}
.gh-migrated .has-fl-accent-hover-background-color {background-color: var(--wp--preset--color--fl-accent-hover) !important;}
.gh-migrated .has-fl-topbar-bg-background-color {background-color: var(--wp--preset--color--fl-topbar-bg) !important;}
.gh-migrated .has-fl-topbar-text-background-color {background-color: var(--wp--preset--color--fl-topbar-text) !important;}
.gh-migrated .has-fl-topbar-link-background-color {background-color: var(--wp--preset--color--fl-topbar-link) !important;}
.gh-migrated .has-fl-topbar-hover-background-color {background-color: var(--wp--preset--color--fl-topbar-hover) !important;}
.gh-migrated .has-fl-header-bg-background-color {background-color: var(--wp--preset--color--fl-header-bg) !important;}
.gh-migrated .has-fl-header-text-background-color {background-color: var(--wp--preset--color--fl-header-text) !important;}
.gh-migrated .has-fl-header-link-background-color {background-color: var(--wp--preset--color--fl-header-link) !important;}
.gh-migrated .has-fl-header-hover-background-color {background-color: var(--wp--preset--color--fl-header-hover) !important;}
.gh-migrated .has-fl-nav-bg-background-color {background-color: var(--wp--preset--color--fl-nav-bg) !important;}
.gh-migrated .has-fl-nav-link-background-color {background-color: var(--wp--preset--color--fl-nav-link) !important;}
.gh-migrated .has-fl-nav-hover-background-color {background-color: var(--wp--preset--color--fl-nav-hover) !important;}
.gh-migrated .has-fl-content-bg-background-color {background-color: var(--wp--preset--color--fl-content-bg) !important;}
.gh-migrated .has-fl-footer-widgets-bg-background-color {background-color: var(--wp--preset--color--fl-footer-widgets-bg) !important;}
.gh-migrated .has-fl-footer-widgets-text-background-color {background-color: var(--wp--preset--color--fl-footer-widgets-text) !important;}
.gh-migrated .has-fl-footer-widgets-link-background-color {background-color: var(--wp--preset--color--fl-footer-widgets-link) !important;}
.gh-migrated .has-fl-footer-widgets-hover-background-color {background-color: var(--wp--preset--color--fl-footer-widgets-hover) !important;}
.gh-migrated .has-fl-footer-bg-background-color {background-color: var(--wp--preset--color--fl-footer-bg) !important;}
.gh-migrated .has-fl-footer-text-background-color {background-color: var(--wp--preset--color--fl-footer-text) !important;}
.gh-migrated .has-fl-footer-link-background-color {background-color: var(--wp--preset--color--fl-footer-link) !important;}
.gh-migrated .has-fl-footer-hover-background-color {background-color: var(--wp--preset--color--fl-footer-hover) !important;}
.gh-migrated .has-black-border-color {border-color: var(--wp--preset--color--black) !important;}
.gh-migrated .has-cyan-bluish-gray-border-color {border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}
.gh-migrated .has-white-border-color {border-color: var(--wp--preset--color--white) !important;}
.gh-migrated .has-pale-pink-border-color {border-color: var(--wp--preset--color--pale-pink) !important;}
.gh-migrated .has-vivid-red-border-color {border-color: var(--wp--preset--color--vivid-red) !important;}
.gh-migrated .has-luminous-vivid-orange-border-color {border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}
.gh-migrated .has-luminous-vivid-amber-border-color {border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}
.gh-migrated .has-light-green-cyan-border-color {border-color: var(--wp--preset--color--light-green-cyan) !important;}
.gh-migrated .has-vivid-green-cyan-border-color {border-color: var(--wp--preset--color--vivid-green-cyan) !important;}
.gh-migrated .has-pale-cyan-blue-border-color {border-color: var(--wp--preset--color--pale-cyan-blue) !important;}
.gh-migrated .has-vivid-cyan-blue-border-color {border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}
.gh-migrated .has-vivid-purple-border-color {border-color: var(--wp--preset--color--vivid-purple) !important;}
.gh-migrated .has-fl-heading-text-border-color {border-color: var(--wp--preset--color--fl-heading-text) !important;}
.gh-migrated .has-fl-body-bg-border-color {border-color: var(--wp--preset--color--fl-body-bg) !important;}
.gh-migrated .has-fl-body-text-border-color {border-color: var(--wp--preset--color--fl-body-text) !important;}
.gh-migrated .has-fl-accent-border-color {border-color: var(--wp--preset--color--fl-accent) !important;}
.gh-migrated .has-fl-accent-hover-border-color {border-color: var(--wp--preset--color--fl-accent-hover) !important;}
.gh-migrated .has-fl-topbar-bg-border-color {border-color: var(--wp--preset--color--fl-topbar-bg) !important;}
.gh-migrated .has-fl-topbar-text-border-color {border-color: var(--wp--preset--color--fl-topbar-text) !important;}
.gh-migrated .has-fl-topbar-link-border-color {border-color: var(--wp--preset--color--fl-topbar-link) !important;}
.gh-migrated .has-fl-topbar-hover-border-color {border-color: var(--wp--preset--color--fl-topbar-hover) !important;}
.gh-migrated .has-fl-header-bg-border-color {border-color: var(--wp--preset--color--fl-header-bg) !important;}
.gh-migrated .has-fl-header-text-border-color {border-color: var(--wp--preset--color--fl-header-text) !important;}
.gh-migrated .has-fl-header-link-border-color {border-color: var(--wp--preset--color--fl-header-link) !important;}
.gh-migrated .has-fl-header-hover-border-color {border-color: var(--wp--preset--color--fl-header-hover) !important;}
.gh-migrated .has-fl-nav-bg-border-color {border-color: var(--wp--preset--color--fl-nav-bg) !important;}
.gh-migrated .has-fl-nav-link-border-color {border-color: var(--wp--preset--color--fl-nav-link) !important;}
.gh-migrated .has-fl-nav-hover-border-color {border-color: var(--wp--preset--color--fl-nav-hover) !important;}
.gh-migrated .has-fl-content-bg-border-color {border-color: var(--wp--preset--color--fl-content-bg) !important;}
.gh-migrated .has-fl-footer-widgets-bg-border-color {border-color: var(--wp--preset--color--fl-footer-widgets-bg) !important;}
.gh-migrated .has-fl-footer-widgets-text-border-color {border-color: var(--wp--preset--color--fl-footer-widgets-text) !important;}
.gh-migrated .has-fl-footer-widgets-link-border-color {border-color: var(--wp--preset--color--fl-footer-widgets-link) !important;}
.gh-migrated .has-fl-footer-widgets-hover-border-color {border-color: var(--wp--preset--color--fl-footer-widgets-hover) !important;}
.gh-migrated .has-fl-footer-bg-border-color {border-color: var(--wp--preset--color--fl-footer-bg) !important;}
.gh-migrated .has-fl-footer-text-border-color {border-color: var(--wp--preset--color--fl-footer-text) !important;}
.gh-migrated .has-fl-footer-link-border-color {border-color: var(--wp--preset--color--fl-footer-link) !important;}
.gh-migrated .has-fl-footer-hover-border-color {border-color: var(--wp--preset--color--fl-footer-hover) !important;}
.gh-migrated .has-vivid-cyan-blue-to-vivid-purple-gradient-background {background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}
.gh-migrated .has-light-green-cyan-to-vivid-green-cyan-gradient-background {background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}
.gh-migrated .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}
.gh-migrated .has-luminous-vivid-orange-to-vivid-red-gradient-background {background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}
.gh-migrated .has-very-light-gray-to-cyan-bluish-gray-gradient-background {background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}
.gh-migrated .has-cool-to-warm-spectrum-gradient-background {background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}
.gh-migrated .has-blush-light-purple-gradient-background {background: var(--wp--preset--gradient--blush-light-purple) !important;}
.gh-migrated .has-blush-bordeaux-gradient-background {background: var(--wp--preset--gradient--blush-bordeaux) !important;}
.gh-migrated .has-luminous-dusk-gradient-background {background: var(--wp--preset--gradient--luminous-dusk) !important;}
.gh-migrated .has-pale-ocean-gradient-background {background: var(--wp--preset--gradient--pale-ocean) !important;}
.gh-migrated .has-electric-grass-gradient-background {background: var(--wp--preset--gradient--electric-grass) !important;}
.gh-migrated .has-midnight-gradient-background {background: var(--wp--preset--gradient--midnight) !important;}
.gh-migrated .has-small-font-size {font-size: var(--wp--preset--font-size--small) !important;}
.gh-migrated .has-medium-font-size {font-size: var(--wp--preset--font-size--medium) !important;}
.gh-migrated .has-large-font-size {font-size: var(--wp--preset--font-size--large) !important;}
.gh-migrated .has-x-large-font-size {font-size: var(--wp--preset--font-size--x-large) !important;}
.gh-migrated .get-offer-button a.fl-button, .gh-migrated .sell-your-house-button a, .gh-migrated a.uabb-button, .gh-migrated .popmake input#gform_submit_button_1 {
	background: #ff691e !important;
	border-color: #ff691e;
	color: #fff;
}
.gh-migrated input#gform_submit_button_1, .gh-migrated input#gform_submit_button_3, .gh-migrated input#gform_submit_button_2, .gh-migrated input#gform_submit_button_4, .gh-migrated input#gform_submit_button_5 {
    background: #FF5400!important;
    border-color: #FF5400 !important;
    color: #fff;
}
.gh-migrated .entry-content a, .gh-migrated .fl-post-content a, .gh-migrated .uabb-text-editor a {
    color: #0066cc;
    text-decoration: underline;
}
.gh-migrated .gform_wrapper ::placeholder, .gh-migrated .gform_wrapper ::-webkit-input-placeholder, .gh-migrated .gform_wrapper input[placeholder] {
    color: #000000;
    font-family: roboto;
    font-size: 20px !important;
    font-weight: 400 !important;
    height: 50px;
    margin-top: 20px !important;
   
}
.gh-migrated input#input_1_2 {
    width: 95%;
}
.gh-migrated .audio-center {
    display: flex;
    justify-content: center;
}
@media (max-width: 600px) {
.gh-migrated input#input_1_2 {
        width: 100%;
			margin-bottom: 0px !important;
			margin-top: 40px !important;
    }

}
@media (max-width:768px) {
.gh-migrated div#col-logo {
        order: 1;
    }
.gh-migrated ul#menu-header-dfy {
        background: white;
        width: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        margin-top: 30px;
    }

}
.gh-migrated .lb-code {
display: inline-block;
}
.gh-migrated .gfield_consent_label {
	display: inline;
}
.gh-migrated .ginput_container_consent input {
	height: unset!important;
}
.gh-migrated .form-links-container {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	padding:0 10px;
}
.gh-migrated .form-links-container [href] {
	text-decoration-line: underline;
}
.gh-migrated .sw-wide body {padding-inline-start:440px}
.gh-migrated #gform_wrapper_1[data-form-index="0"].gform-theme {--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'/%3E%3C/svg%3E");--gf-icon-ctrl-select: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'/%3E%3C/svg%3E");--gf-icon-ctrl-search: url("data:image/svg+xml,%3Csvg width='640' height='640' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'/%3E%3C/svg%3E");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-btn-bg-color-hover-tertiary: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}
