.ast-no-sidebar .entry-content .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
}
.ast-no-sidebar .entry-content .alignwide {
  margin-left: calc(-41vw + 50%);
  margin-right: calc(-41vw + 50%);
  max-width: unset;
  width: unset;
}
.ast-no-sidebar .entry-content .alignfull .alignfull,
.ast-no-sidebar .entry-content .alignfull .alignwide,
.ast-no-sidebar .entry-content .alignwide .alignfull,
.ast-no-sidebar .entry-content .alignwide .alignwide,
.ast-no-sidebar .entry-content .wp-block-column .alignfull,
.ast-no-sidebar .entry-content .wp-block-column .alignwide {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-gallery,
.blocks-gallery-grid {
  margin: 0;
}
.wp-block-separator {
  max-width: 100px;
}
.wp-block-separator.is-style-wide,
.wp-block-separator.is-style-dots {
  max-width: none;
}
.entry-content .has-2-columns .wp-block-column:first-child {
  padding-right: 10px;
}
.entry-content .has-2-columns .wp-block-column:last-child {
  padding-left: 10px;
}
@media (max-width: 782px) {
  .entry-content .wp-block-columns .wp-block-column {
    flex-basis: 100%;
  }
  .entry-content .has-2-columns .wp-block-column:first-child {
    padding-right: 0;
  }
  .entry-content .has-2-columns .wp-block-column:last-child {
    padding-left: 0;
  }
}

/* ---------------------------
   CATEGORY SECTION
---------------------------- */

#sparklestore_cat_widget_area-1 {
  padding: 40px 0;
  background: #fafafa;
}

.categoryarea .blocktitle h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 8px;
  color: #222;
}

.categoryarea .blocktitle p {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 25px;
  font-size: 13px;
  color: #666;
}
.categoryimage {
  width: 300px !important;
  border-radius: 5px !important;
  height: 300px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
/* ----------- GRID (VERY SMALL) ----------- */

.storeproductlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 5 columns */
  gap: 15px;
  padding: 0 10px;
  list-style: none;
}

/* ----------- CARD ----------- */

.storeproductlist .product {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: 0.25s ease-in-out;
  text-align: center; /* center content */
}

.storeproductlist .product:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

/* ----------- SUPER SMALL IMAGES ----------- */

.products-cat-image img {
  width: 100%;
  height: 80px; /* VERY SMALL */
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

/* ----------- TITLE & COUNT ----------- */

.products-cat-info {
  padding: 6px 3px;
  text-align: center;
}

.woocommerce-loop-category__title {
  display: block;
  font-size: 12px; /* smaller text */
  font-weight: 600;
  margin: 5px 0 0 0;
  color: #222;
  line-height: 1.2;
}

.woocommerce-loop-category__title .count {
  display: block; /* put count in block below title */
  font-size: 10px; /* smaller */
  color: #777;
  margin-top: 2px;
}

/* ---------------------------
   TABLET
---------------------------- */
@media screen and (max-width: 992px) {
  .storeproductlist {
    grid-template-columns: repeat(4, 1fr);
  }
  .products-cat-image img {
    height: 70px;
  }
}

/* ---------------------------
   MOBILE (CENTERED SINGLE COLUMN)
---------------------------- */
@media screen and (max-width: 600px) {
  /* Make grid container a flex container */
  .storeproductlist {
    display: flex;
    flex-direction: column;
    align-items: center; /* center content inside the column */
    justify-content: center; /* vertical centering if height allows */
    gap: 15px;
    padding: 0;
    width: 100%;
    margin: 0 auto; /* centers the container horizontally */
  }

  .storeproductlist .product {
    width: 100% !important; /* take full width of container */
    padding: 12px;
    box-sizing: border-box;
  }

  .products-cat-image img {
    height: 100px; /* slightly bigger for mobile */
  }

  .woocommerce-loop-category__title {
    font-size: 12px;
  }

  .woocommerce-loop-category__title .count {
    font-size: 9px;
  }
}

/* ===== Product Section Styling ===== */
.product-section {
  padding: 60px 20px;
  background-color: #fff;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
}

.product-text {
  flex: 1 1 500px; /* text column */
  border-left: 5px solid #f7941d; /* vertical line like screenshot */
  padding-left: 20px;
  font-family: Arial, sans-serif;
  color: #1b3a2d;
  line-height: 1.6;
}

.product-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.product-text h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.product-text p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.product-text b {
  font-weight: 600;
}

.product-image {
  flex: 0 0 300px; /* fixed width for image column */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%; /* circular image */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
    gap: 30px;
  }

  .product-text {
    border-left: none;
    padding-left: 0;
  }

  .product-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px; /* softer corners on mobile */
  }
}

body .entry-content .wp-block-latest-posts {
  margin-left: 0;
}
body .entry-content .wp-block-latest-posts li {
  list-style: none;
}
.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts {
  margin-left: 0;
}
.ast-header-break-point .entry-content .alignwide {
  margin-left: auto;
  margin-right: auto;
}
.entry-content .blocks-gallery-item img {
  margin-bottom: auto;
}
.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
}
:root {
  --ast-post-nav-space: 0;
  --ast-container-default-xlg-padding: 6.67em;
  --ast-container-default-lg-padding: 5.67em;
  --ast-container-default-slg-padding: 4.34em;
  --ast-container-default-md-padding: 3.34em;
  --ast-container-default-sm-padding: 6.67em;
  --ast-container-default-xs-padding: 2.4em;
  --ast-container-default-xxs-padding: 1.4em;
  --ast-code-block-background: #eeeeee;
  --ast-comment-inputs-background: #fafafa;
  --ast-normal-container-width: 1200px;
  --ast-narrow-container-width: 750px;
  --ast-blog-title-font-weight: normal;
  --ast-blog-meta-weight: inherit;
  --ast-global-color-primary: var(--ast-global-color-5);
  --ast-global-color-secondary: var(--ast-global-color-4);
  --ast-global-color-alternate-background: var(--ast-global-color-7);
  --ast-global-color-subtle-background: var(--ast-global-color-6);
  --ast-bg-style-guide: #f8fafc;
  --ast-shadow-style-guide: 0px 0px 4px 0 #00000057;
  --ast-global-dark-bg-style: #fff;
  --ast-global-dark-lfs: #fbfbfb;
  --ast-widget-bg-color: #fafafa;
  --ast-wc-container-head-bg-color: #fbfbfb;
  --ast-title-layout-bg: #eeeeee;
  --ast-search-border-color: #e7e7e7;
  --ast-lifter-hover-bg: #e6e6e6;
  --ast-gallery-block-color: #000;
  --srfm-color-input-label: var(--ast-global-color-2);
}
html {
  font-size: 112.5%;
}
a,
.page-title {
  color: #4b994c;
}
a:hover,
a:focus {
  color: #f89b54;
}
body,
button,
input,
select,
textarea,
.ast-button,
.ast-custom-button {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 1rem;
  line-height: var(--ast-body-line-height, 1.65em);
}
blockquote {
  color: var(--ast-global-color-3);
}
.ast-site-identity .site-title a {
  color: var(--ast-global-color-2);
}
.site-title {
  font-size: 35px;
  font-size: 1.9444444444444rem;
  display: none;
}
header .custom-logo-link img {
  max-width: 230px;
  width: 230px;
}
.astra-logo-svg {
  width: 230px;
}
.site-header .site-description {
  font-size: 15px;
  font-size: 0.83333333333333rem;
  display: none;
}
.entry-title {
  font-size: 30px;
  font-size: 1.6666666666667rem;
}
.archive .ast-article-post .ast-article-inner,
.blog .ast-article-post .ast-article-inner,
.archive .ast-article-post .ast-article-inner:hover,
.blog .ast-article-post .ast-article-inner:hover {
  overflow: hidden;
}
h1,
.entry-content h1,
.entry-content h1 a {
  font-size: 66px;
  font-size: 3.6666666666667rem;
  font-weight: 700;
  font-family: "Oxygen", sans-serif;
  line-height: 1.4em;
}
h2,
.entry-content h2,
.entry-content h2 a {
  font-size: 65px;
  font-size: 3.6111111111111rem;
  font-weight: 700;
  font-family: "Oxygen", sans-serif;
  line-height: 1.3em;
}
h3,
.entry-content h3,
.entry-content h3 a {
  font-size: 42px;
  font-size: 2.3333333333333rem;
  font-weight: 400;
  font-family: "Merriweather", serif;
  line-height: 1.3em;
}
h4,
.entry-content h4,
.entry-content h4 a {
  font-size: 30px;
  font-size: 1.6666666666667rem;
  line-height: 1.2em;
  font-weight: 700;
  font-family: "Oxygen", sans-serif;
}
h5,
.entry-content h5,
.entry-content h5 a {
  font-size: 24px;
  font-size: 1.3333333333333rem;
  line-height: 1.2em;
  font-weight: 400;
  font-family: "Oxygen", sans-serif;
}
h6,
.entry-content h6,
.entry-content h6 a {
  font-size: 16px;
  font-size: 0.88888888888889rem;
  line-height: 1.25em;
  font-weight: 400;
  font-family: "Oxygen", sans-serif;
}
::selection {
  background-color: #57aa6e;
  color: #000000;
}
body,
h1,
.entry-title a,
.entry-content h1,
.entry-content h1 a,
h2,
.entry-content h2,
.entry-content h2 a,
h3,
.entry-content h3,
.entry-content h3 a,
h4,
.entry-content h4,
.entry-content h4 a,
h5,
.entry-content h5,
.entry-content h5 a,
h6,
.entry-content h6,
.entry-content h6 a {
  color: var(--ast-global-color-3);
}
.tagcloud a:hover,
.tagcloud a:focus,
.tagcloud a.current-item {
  color: #ffffff;
  border-color: #4b994c;
  background-color: #4b994c;
}
input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="reset"]:focus,
input[type="search"]:focus,
textarea:focus {
  border-color: #4b994c;
}
input[type="radio"]:checked,
input[type="reset"],
input[type="checkbox"]:checked,
input[type="checkbox"]:hover:checked,
input[type="checkbox"]:focus:checked,
input[type="range"]::-webkit-slider-thumb {
  border-color: #4b994c;
  background-color: #4b994c;
  box-shadow: none;
}
.site-footer a:hover + .post-count,
.site-footer a:focus + .post-count {
  background: #4b994c;
  border-color: #4b994c;
}
.single .nav-links .nav-previous,
.single .nav-links .nav-next {
  color: #4b994c;
}
.entry-meta,
.entry-meta * {
  line-height: 1.45;
  color: #4b994c;
}
.entry-meta a:not(.ast-button):hover,
.entry-meta a:not(.ast-button):hover *,
.entry-meta a:not(.ast-button):focus,
.entry-meta a:not(.ast-button):focus *,
.page-links > .page-link,
.page-links .page-link:hover,
.post-navigation a:hover {
  color: #f89b54;
}
#cat option,
.secondary .calendar_wrap thead a,
.secondary .calendar_wrap thead a:visited {
  color: #4b994c;
}
.secondary .calendar_wrap #today,
.ast-progress-val span {
  background: #4b994c;
}
.secondary a:hover + .post-count,
.secondary a:focus + .post-count {
  background: #4b994c;
  border-color: #4b994c;
}
.calendar_wrap #today > a {
  color: #ffffff;
}
.page-links .page-link,
.single .post-navigation a {
  color: #4b994c;
}
.ast-search-menu-icon .search-form button.search-submit {
  padding: 0 4px;
}
.ast-search-menu-icon form.search-form {
  padding-right: 0;
}
.ast-header-search .ast-search-menu-icon.ast-dropdown-active .search-form,
.ast-header-search
  .ast-search-menu-icon.ast-dropdown-active
  .search-field:focus {
  transition: all 0.2s;
}
.search-form input.search-field:focus {
  outline: none;
}
.widget-title,
.widget .wp-block-heading {
  font-size: 25px;
  font-size: 1.3888888888889rem;
  color: var(--ast-global-color-3);
}
.single .ast-author-details .author-title {
  color: #f89b54;
}
.ast-search-menu-icon.slide-search a:focus-visible:focus-visible,
.astra-search-icon:focus-visible,
#close:focus-visible,
a:focus-visible,
.ast-menu-toggle:focus-visible,
.site .skip-link:focus-visible,
.wp-block-loginout input:focus-visible,
.wp-block-search.wp-block-search__button-inside
  .wp-block-search__inside-wrapper,
.ast-header-navigation-arrow:focus-visible,
.woocommerce .wc-proceed-to-checkout > .checkout-button:focus-visible,
.woocommerce .woocommerce-MyAccount-navigation ul li a:focus-visible,
.ast-orders-table__row .ast-orders-table__cell:focus-visible,
.woocommerce .woocommerce-order-details .order-again > .button:focus-visible,
.woocommerce .woocommerce-message a.button.wc-forward:focus-visible,
.woocommerce #minus_qty:focus-visible,
.woocommerce #plus_qty:focus-visible,
a#ast-apply-coupon:focus-visible,
.woocommerce .woocommerce-info a:focus-visible,
.woocommerce .astra-shop-summary-wrap a:focus-visible,
.woocommerce a.wc-forward:focus-visible,
#ast-apply-coupon:focus-visible,
.woocommerce-js .woocommerce-mini-cart-item a.remove:focus-visible,
#close:focus-visible,
.button.search-submit:focus-visible,
#search_submit:focus,
.normal-search:focus-visible,
.ast-header-account-wrap:focus-visible,
.woocommerce .ast-on-card-button.ast-quick-view-trigger:focus {
  outline-style: dotted;
  outline-color: inherit;
  outline-width: thin;
}
input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="reset"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
textarea:focus,
.wp-block-search__input:focus,
[data-section="section-header-mobile-trigger"]
  .ast-button-wrap
  .ast-mobile-menu-trigger-minimal:focus,
.ast-mobile-popup-drawer.active .menu-toggle-close:focus,
.woocommerce-ordering select.orderby:focus,
#ast-scroll-top:focus,
#coupon_code:focus,
.woocommerce-page #comment:focus,
.woocommerce #reviews #respond input#submit:focus,
.woocommerce a.add_to_cart_button:focus,
.woocommerce .button.single_add_to_cart_button:focus,
.woocommerce .woocommerce-cart-form button:focus,
.woocommerce .woocommerce-cart-form__cart-item .quantity .qty:focus,
.woocommerce
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .woocommerce-input-wrapper
  > .input-text:focus,
.woocommerce #order_comments:focus,
.woocommerce #place_order:focus,
.woocommerce
  .woocommerce-address-fields
  .woocommerce-address-fields__field-wrapper
  .woocommerce-input-wrapper
  > .input-text:focus,
.woocommerce .woocommerce-MyAccount-content form button:focus,
.woocommerce
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  .woocommerce-form-row
  .woocommerce-Input.input-text:focus,
.woocommerce
  .ast-woocommerce-container
  .woocommerce-pagination
  ul.page-numbers
  li
  a:focus,
body
  #content
  .woocommerce
  form
  .form-row
  .select2-container--default
  .select2-selection--single:focus,
#ast-coupon-code:focus,
.woocommerce.woocommerce-js .quantity input[type="number"]:focus,
.woocommerce-js
  .woocommerce-mini-cart-item
  .quantity
  input[type="number"]:focus,
.woocommerce p#ast-coupon-trigger:focus {
  border-style: dotted;
  border-color: inherit;
  border-width: thin;
}
input {
  outline: none;
}
.main-header-menu .menu-link,
.ast-header-custom-item a {
  color: var(--ast-global-color-3);
}
.main-header-menu .menu-item:hover > .menu-link,
.main-header-menu .menu-item:hover > .ast-menu-toggle,
.main-header-menu .ast-masthead-custom-menu-items a:hover,
.main-header-menu .menu-item.focus > .menu-link,
.main-header-menu .menu-item.focus > .ast-menu-toggle,
.main-header-menu .current-menu-item > .menu-link,
.main-header-menu .current-menu-ancestor > .menu-link,
.main-header-menu .current-menu-item > .ast-menu-toggle,
.main-header-menu .current-menu-ancestor > .ast-menu-toggle {
  color: #4b994c;
}
.header-main-layout-3 .ast-main-header-bar-alignment {
  margin-right: auto;
}
.header-main-layout-2 .site-header-section-left .ast-site-identity {
  text-align: left;
}
.site-logo-img img {
  transition: all 0.2s linear;
}
body .ast-oembed-container * {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
}
body .wp-block-embed-pocket-casts .ast-oembed-container * {
  position: unset;
}
.ast-header-break-point .ast-mobile-menu-buttons-minimal.menu-toggle {
  background: transparent;
  color: #4b984c;
}
.ast-header-break-point .ast-mobile-menu-buttons-outline.menu-toggle {
  background: transparent;
  border: 1px solid #4b984c;
  color: #4b984c;
}
.ast-header-break-point .ast-mobile-menu-buttons-fill.menu-toggle {
  background: #4b984c;
  color: #ffffff;
}
.ast-single-post-featured-section + article {
  margin-top: 2em;
}
.site-content .ast-single-post-featured-section img {
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}
.ast-separate-container
  .site-content
  .ast-single-post-featured-section
  + article {
  margin-top: -80px;
  z-index: 9;
  position: relative;
  border-radius: 4px;
}
@media (min-width: 769px) {
  .ast-no-sidebar .site-content .ast-article-image-container--wide {
    margin-left: -120px;
    margin-right: -120px;
    max-width: unset;
    width: unset;
  }
  .ast-left-sidebar .site-content .ast-article-image-container--wide,
  .ast-right-sidebar .site-content .ast-article-image-container--wide {
    margin-left: -10px;
    margin-right: -10px;
  }
  .site-content .ast-article-image-container--full {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
  }
  .ast-left-sidebar .site-content .ast-article-image-container--full,
  .ast-right-sidebar .site-content .ast-article-image-container--full {
    margin-left: -10px;
    margin-right: -10px;
    max-width: inherit;
    width: auto;
  }
}
.site > .ast-single-related-posts-container {
  margin-top: 0;
}
@media (min-width: 769px) {
  .ast-desktop .ast-container--narrow {
    max-width: var(--ast-narrow-container-width);
    margin: 0 auto;
  }
}
.ast-page-builder-template .hentry {
  margin: 0;
}
.ast-page-builder-template .site-content > .ast-container {
  max-width: 100%;
  padding: 0;
}
.ast-page-builder-template .site .site-content #primary {
  padding: 0;
  margin: 0;
}
.ast-page-builder-template .no-results {
  text-align: center;
  margin: 4em auto;
}
.ast-page-builder-template .ast-pagination {
  padding: 2em;
}
.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail {
  margin-top: 0;
}
.ast-page-builder-template .entry-header.ast-header-without-markup {
  margin-top: 0;
  margin-bottom: 0;
}
.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta {
  margin-bottom: 0;
}
.ast-page-builder-template.single .post-navigation {
  padding-bottom: 2em;
}
.ast-page-builder-template.single-post .site-content > .ast-container {
  max-width: 100%;
}
.ast-page-builder-template .entry-header {
  margin-top: 4em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.single.ast-page-builder-template .entry-header {
  padding-left: 20px;
  padding-right: 20px;
}
.ast-page-builder-template .ast-archive-description {
  margin: 4em auto 0;
  padding-left: 20px;
  padding-right: 20px;
}
.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide {
  margin-left: 0;
  margin-right: 0;
}
.ast-small-footer {
  color: #d9dee0;
}
.ast-small-footer > .ast-footer-overlay {
  background-color: #000000;
}
.footer-adv .footer-adv-overlay {
  border-top-style: solid;
  border-top-color: #7a7a7a;
}
.wp-block-buttons.aligncenter {
  justify-content: center;
}
@media (max-width: 782px) {
  .entry-content .wp-block-columns .wp-block-column {
    margin-left: 0px;
  }
}
.wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-table.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-buttons
  .wp-block-button.is-style-outline
  .wp-block-button__link.wp-element-button,
.ast-outline-button,
.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  font-family: inherit;
  font-weight: inherit;
  line-height: 1em;
}
.wp-block-button
  .wp-block-button__link.wp-element-button.is-style-outline:not(
    .has-background
  ),
.wp-block-button.is-style-outline
  > .wp-block-button__link.wp-element-button:not(.has-background),
.ast-outline-button {
  background-color: transparent;
}
.entry-content[data-ast-blocks-layout] > figure {
  margin-bottom: 1em;
}
.elementor-widget-container
  .elementor-loop-container
  .e-loop-item[data-elementor-type="loop-item"] {
  width: 100%;
}
@media (max-width: 768px) {
  .ast-separate-container #primary,
  .ast-separate-container #secondary {
    padding: 1.5em 0;
  }
  #primary,
  #secondary {
    padding: 1.5em 0;
    margin: 0;
  }
  .ast-left-sidebar #content > .ast-container {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }
  .ast-separate-container .ast-article-post,
  .ast-separate-container .ast-article-single {
    padding: 1.5em 2.14em;
  }
  .ast-author-box img.avatar {
    margin: 20px 0 0 0;
  }
}
@media (min-width: 769px) {
  .ast-separate-container.ast-right-sidebar #primary,
  .ast-separate-container.ast-left-sidebar #primary {
    border: 0;
  }
  .search-no-results.ast-separate-container #primary {
    margin-bottom: 4em;
  }
}
.menu-toggle,
button,
.ast-button,
.ast-custom-button,
.button,
input#submit,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  color: #ffffff;
  border-color: #57aa6e;
  background-color: #57aa6e;
  padding-top: 10px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 40px;
  font-family: inherit;
  font-weight: inherit;
}
button:focus,
.menu-toggle:hover,
button:hover,
.ast-button:hover,
.ast-custom-button:hover .button:hover,
.ast-custom-button:hover,
input[type="reset"]:hover,
input[type="reset"]:focus,
input#submit:hover,
input#submit:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: #000000;
  background-color: #f89b54;
  border-color: #f89b54;
}
@media (max-width: 768px) {
  .ast-mobile-header-stack .main-header-bar .ast-search-menu-icon {
    display: inline-block;
  }
  .ast-header-break-point.ast-header-custom-item-outside
    .ast-mobile-header-stack
    .main-header-bar
    .ast-search-icon {
    margin: 0;
  }
  .ast-comment-avatar-wrap img {
    max-width: 2.5em;
  }
  .ast-comment-meta {
    padding: 0 1.8888em 1.3333em;
  }
  .ast-separate-container .ast-comment-list li.depth-1 {
    padding: 1.5em 2.14em;
  }
  .ast-separate-container .comment-respond {
    padding: 2em 2.14em;
  }
}
@media (min-width: 544px) {
  .ast-container {
    max-width: 100%;
  }
}
@media (max-width: 544px) {
  .ast-separate-container .ast-article-post,
  .ast-separate-container .ast-article-single,
  .ast-separate-container .comments-title,
  .ast-separate-container .ast-archive-description {
    padding: 1.5em 1em;
  }
  .ast-separate-container #content .ast-container {
    padding-left: 0.54em;
    padding-right: 0.54em;
  }
  .ast-separate-container .ast-comment-list .bypostauthor {
    padding: 0.5em;
  }
  .ast-search-menu-icon.ast-dropdown-active .search-field {
    width: 170px;
  }
  .site-branding img,
  .site-header .site-logo-img .custom-logo-link img {
    max-width: 100%;
  }
}
#ast-mobile-header .ast-site-header-cart-li a {
  pointer-events: none;
}
body,
.ast-separate-container {
  background-color: var(--ast-global-color-5);
  background-image: none;
}
.ast-no-sidebar.ast-separate-container .entry-content .alignfull {
  margin-left: -6.67em;
  margin-right: -6.67em;
  width: auto;
}
@media (max-width: 1200px) {
  .ast-no-sidebar.ast-separate-container .entry-content .alignfull {
    margin-left: -2.4em;
    margin-right: -2.4em;
  }
}
@media (max-width: 768px) {
  .ast-no-sidebar.ast-separate-container .entry-content .alignfull {
    margin-left: -2.14em;
    margin-right: -2.14em;
  }
}
@media (max-width: 544px) {
  .ast-no-sidebar.ast-separate-container .entry-content .alignfull {
    margin-left: -1em;
    margin-right: -1em;
  }
}
.ast-no-sidebar.ast-separate-container .entry-content .alignwide {
  margin-left: -20px;
  margin-right: -20px;
}
.ast-no-sidebar.ast-separate-container
  .entry-content
  .wp-block-column
  .alignfull,
.ast-no-sidebar.ast-separate-container
  .entry-content
  .wp-block-column
  .alignwide {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (max-width: 768px) {
  .site-title {
    display: none;
  }
  .site-header .site-description {
    display: none;
  }
  h1,
  .entry-content h1,
  .entry-content h1 a {
    font-size: 70px;
  }
  h2,
  .entry-content h2,
  .entry-content h2 a {
    font-size: 55px;
  }
  h3,
  .entry-content h3,
  .entry-content h3 a {
    font-size: 20px;
  }
  .astra-logo-svg {
    width: 105px;
  }
  header .custom-logo-link img,
  .ast-header-break-point .site-logo-img .custom-mobile-logo-link img {
    max-width: 105px;
    width: 105px;
  }
}
@media (max-width: 544px) {
  .site-title {
    display: none;
  }
  .site-header .site-description {
    display: none;
  }
  h1,
  .entry-content h1,
  .entry-content h1 a {
    font-size: 44px;
  }
  h2,
  .entry-content h2,
  .entry-content h2 a {
    font-size: 38px;
  }
  h3,
  .entry-content h3,
  .entry-content h3 a {
    font-size: 20px;
  }
  h5,
  .entry-content h5,
  .entry-content h5 a {
    font-size: 24px;
    font-size: 1.3333333333333rem;
  }
  header .custom-logo-link img,
  .ast-header-break-point .site-branding img,
  .ast-header-break-point .custom-logo-link img {
    max-width: 230px;
    width: 230px;
  }
  .astra-logo-svg {
    width: 230px;
  }
  .ast-header-break-point .site-logo-img .custom-mobile-logo-link img {
    max-width: 230px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 102.6%;
  }
}
@media (max-width: 544px) {
  html {
    font-size: 102.6%;
  }
}
@media (min-width: 769px) {
  .ast-container {
    max-width: 1240px;
  }
}
@font-face {
  font-family: "Astra";
  src: url(https://www.blifesrl.it/wp-content/themes/astra/assets/fonts/astra.woff)
      format("woff"),
    url(https://www.blifesrl.it/wp-content/themes/astra/assets/fonts/astra.ttf)
      format("truetype"),
    url(https://www.blifesrl.it/wp-content/themes/astra/assets/fonts/astra.svg#astra)
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@media (max-width: 768px) {
  .main-header-bar .main-header-bar-navigation {
    display: none;
  }
}
.ast-desktop .main-header-menu.submenu-with-border .sub-menu,
.ast-desktop
  .main-header-menu.submenu-with-border
  .astra-full-megamenu-wrapper {
  border-color: #57aa6e;
}
.ast-desktop .main-header-menu.submenu-with-border .sub-menu {
  border-style: solid;
}
.ast-desktop .main-header-menu.submenu-with-border .sub-menu .sub-menu {
  top: -0px;
}
.ast-desktop .main-header-menu.submenu-with-border .sub-menu .menu-link,
.ast-desktop .main-header-menu.submenu-with-border .children .menu-link {
  border-bottom-width: 0px;
  border-style: solid;
  border-color: #eaeaea;
}
@media (min-width: 769px) {
  .main-header-menu
    .sub-menu
    .menu-item.ast-left-align-sub-menu:hover
    > .sub-menu,
  .main-header-menu
    .sub-menu
    .menu-item.ast-left-align-sub-menu.focus
    > .sub-menu {
    margin-left: -0px;
  }
}
.ast-small-footer {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #7a7a7a;
}
.ast-small-footer-wrap {
  text-align: center;
}
.site .comments-area {
  padding-bottom: 3em;
}
.ast-header-break-point.ast-header-custom-item-inside
  .main-header-bar
  .main-header-bar-navigation
  .ast-search-icon {
  display: none;
}
.ast-header-break-point.ast-header-custom-item-inside
  .main-header-bar
  .ast-search-menu-icon
  .search-form {
  padding: 0;
  display: block;
  overflow: hidden;
}
.ast-header-break-point .ast-header-custom-item .widget:last-child {
  margin-bottom: 1em;
}
.ast-header-custom-item .widget {
  margin: 0.5em;
  display: inline-block;
  vertical-align: middle;
}
.ast-header-custom-item .widget p {
  margin-bottom: 0;
}
.ast-header-custom-item .widget li {
  width: auto;
}
.ast-header-custom-item-inside .button-custom-menu-item .menu-link {
  display: none;
}
.ast-header-custom-item-inside.ast-header-break-point
  .button-custom-menu-item
  .ast-custom-button-link {
  display: none;
}
.ast-header-custom-item-inside.ast-header-break-point
  .button-custom-menu-item
  .menu-link {
  display: block;
}
.ast-header-break-point.ast-header-custom-item-outside
  .main-header-bar
  .ast-search-icon {
  margin-right: 1em;
}
.ast-header-break-point.ast-header-custom-item-inside
  .main-header-bar
  .ast-search-menu-icon
  .search-field,
.ast-header-break-point.ast-header-custom-item-inside
  .main-header-bar
  .ast-search-menu-icon.ast-inline-search
  .search-field {
  width: 100%;
  padding-right: 5.5em;
}
.ast-header-break-point.ast-header-custom-item-inside
  .main-header-bar
  .ast-search-menu-icon
  .search-submit {
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding: 0 1em;
  border-radius: 0;
}
.ast-header-break-point
  .ast-header-custom-item
  .ast-masthead-custom-menu-items {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 1em;
  margin-top: 1em;
}
.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.astra-icon-down_arrow::after {
  content: "\e900";
  font-family: Astra;
}
.astra-icon-close::after {
  content: "\e5cd";
  font-family: Astra;
}
.astra-icon-drag_handle::after {
  content: "\e25d";
  font-family: Astra;
}
.astra-icon-format_align_justify::after {
  content: "\e235";
  font-family: Astra;
}
.astra-icon-menu::after {
  content: "\e5d2";
  font-family: Astra;
}
.astra-icon-reorder::after {
  content: "\e8fe";
  font-family: Astra;
}
.astra-icon-search::after {
  content: "\e8b6";
  font-family: Astra;
}
.astra-icon-zoom_in::after {
  content: "\e56b";
  font-family: Astra;
}
.astra-icon-check-circle::after {
  content: "\e901";
  font-family: Astra;
}
.astra-icon-shopping-cart::after {
  content: "\f07a";
  font-family: Astra;
}
.astra-icon-shopping-bag::after {
  content: "\f290";
  font-family: Astra;
}
.astra-icon-shopping-basket::after {
  content: "\f291";
  font-family: Astra;
}
.astra-icon-circle-o::after {
  content: "\e903";
  font-family: Astra;
}
.astra-icon-certificate::after {
  content: "\e902";
  font-family: Astra;
}
blockquote {
  padding: 1.2em;
}
:root .has-ast-global-color-0-color {
  color: var(--ast-global-color-0);
}
:root .has-ast-global-color-0-background-color {
  background-color: var(--ast-global-color-0);
}
:root .wp-block-button .has-ast-global-color-0-color {
  color: var(--ast-global-color-0);
}
:root .wp-block-button .has-ast-global-color-0-background-color {
  background-color: var(--ast-global-color-0);
}
:root .has-ast-global-color-1-color {
  color: var(--ast-global-color-1);
}
:root .has-ast-global-color-1-background-color {
  background-color: var(--ast-global-color-1);
}
:root .wp-block-button .has-ast-global-color-1-color {
  color: var(--ast-global-color-1);
}
:root .wp-block-button .has-ast-global-color-1-background-color {
  background-color: var(--ast-global-color-1);
}
:root .has-ast-global-color-2-color {
  color: var(--ast-global-color-2);
}
:root .has-ast-global-color-2-background-color {
  background-color: var(--ast-global-color-2);
}
:root .wp-block-button .has-ast-global-color-2-color {
  color: var(--ast-global-color-2);
}
:root .wp-block-button .has-ast-global-color-2-background-color {
  background-color: var(--ast-global-color-2);
}
:root .has-ast-global-color-3-color {
  color: var(--ast-global-color-3);
}
:root .has-ast-global-color-3-background-color {
  background-color: var(--ast-global-color-3);
}
:root .wp-block-button .has-ast-global-color-3-color {
  color: var(--ast-global-color-3);
}
:root .wp-block-button .has-ast-global-color-3-background-color {
  background-color: var(--ast-global-color-3);
}
:root .has-ast-global-color-4-color {
  color: var(--ast-global-color-4);
}
:root .has-ast-global-color-4-background-color {
  background-color: var(--ast-global-color-4);
}
:root .wp-block-button .has-ast-global-color-4-color {
  color: var(--ast-global-color-4);
}
:root .wp-block-button .has-ast-global-color-4-background-color {
  background-color: var(--ast-global-color-4);
}
:root .has-ast-global-color-5-color {
  color: var(--ast-global-color-5);
}
:root .has-ast-global-color-5-background-color {
  background-color: var(--ast-global-color-5);
}
:root .wp-block-button .has-ast-global-color-5-color {
  color: var(--ast-global-color-5);
}
:root .wp-block-button .has-ast-global-color-5-background-color {
  background-color: var(--ast-global-color-5);
}
:root .has-ast-global-color-6-color {
  color: var(--ast-global-color-6);
}
:root .has-ast-global-color-6-background-color {
  background-color: var(--ast-global-color-6);
}
:root .wp-block-button .has-ast-global-color-6-color {
  color: var(--ast-global-color-6);
}
:root .wp-block-button .has-ast-global-color-6-background-color {
  background-color: var(--ast-global-color-6);
}
:root .has-ast-global-color-7-color {
  color: var(--ast-global-color-7);
}
:root .has-ast-global-color-7-background-color {
  background-color: var(--ast-global-color-7);
}
:root .wp-block-button .has-ast-global-color-7-color {
  color: var(--ast-global-color-7);
}
:root .wp-block-button .has-ast-global-color-7-background-color {
  background-color: var(--ast-global-color-7);
}
:root .has-ast-global-color-8-color {
  color: var(--ast-global-color-8);
}
:root .has-ast-global-color-8-background-color {
  background-color: var(--ast-global-color-8);
}
:root .wp-block-button .has-ast-global-color-8-color {
  color: var(--ast-global-color-8);
}
:root .wp-block-button .has-ast-global-color-8-background-color {
  background-color: var(--ast-global-color-8);
}
:root {
  --ast-global-color-0: #0170b9;
  --ast-global-color-1: #3a3a3a;
  --ast-global-color-2: #3a3a3a;
  --ast-global-color-3: #4b4f58;
  --ast-global-color-4: #f5f5f5;
  --ast-global-color-5: #ffffff;
  --ast-global-color-6: #e5e5e5;
  --ast-global-color-7: #424242;
  --ast-global-color-8: #000000;
}
:root {
  --ast-border-color: #dddddd;
}
.ast-single-entry-banner {
  -js-display: flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--ast-title-layout-bg);
}
.ast-single-entry-banner[data-banner-layout="layout-1"] {
  max-width: 1200px;
  background: inherit;
  padding: 20px 0;
}
.ast-single-entry-banner[data-banner-width-type="custom"] {
  margin: 0 auto;
  width: 100%;
}
.ast-single-entry-banner + .site-content .entry-header {
  margin-bottom: 0;
}
.site .ast-author-avatar {
  --ast-author-avatar-size: ;
}
a.ast-underline-text {
  text-decoration: underline;
}
.ast-container > .ast-terms-link {
  position: relative;
  display: block;
}
a.ast-button.ast-badge-tax {
  padding: 4px 8px;
  border-radius: 3px;
  font-size: inherit;
}
header.entry-header > *:not(:last-child) {
  margin-bottom: 10px;
}
header.entry-header .post-thumb img,
.ast-single-post-featured-section.post-thumb img {
  aspect-ratio: 16/9;
}
.ast-archive-entry-banner {
  -js-display: flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--ast-title-layout-bg);
}
.ast-archive-entry-banner[data-banner-width-type="custom"] {
  margin: 0 auto;
  width: 100%;
}
.ast-archive-entry-banner[data-banner-layout="layout-1"] {
  background: inherit;
  padding: 20px 0;
  text-align: left;
}
body.archive .ast-archive-description {
  max-width: 1200px;
  width: 100%;
  text-align: left;
  padding-top: 3em;
  padding-right: 3em;
  padding-bottom: 3em;
  padding-left: 3em;
}
body.archive .ast-archive-description .ast-archive-title,
body.archive .ast-archive-description .ast-archive-title * {
  font-size: 40px;
  font-size: 2.2222222222222rem;
  text-transform: capitalize;
}
body.archive .ast-archive-description > *:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  body.archive .ast-archive-description {
    text-align: left;
  }
}
@media (max-width: 544px) {
  body.archive .ast-archive-description {
    text-align: left;
  }
}
.ast-breadcrumbs .trail-browse,
.ast-breadcrumbs .trail-items,
.ast-breadcrumbs .trail-items li {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  background: inherit;
  text-indent: 0;
  text-decoration: none;
}
.ast-breadcrumbs .trail-browse {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
}
.ast-breadcrumbs .trail-items {
  list-style: none;
}
.trail-items li::after {
  padding: 0 0.3em;
  content: "\00bb";
}
.trail-items li:last-of-type::after {
  display: none;
}
h1,
.entry-content h1,
h2,
.entry-content h2,
h3,
.entry-content h3,
h4,
.entry-content h4,
h5,
.entry-content h5,
h6,
.entry-content h6 {
  color: var(--ast-global-color-2);
}
.elementor-widget-heading .elementor-heading-title {
  margin: 0;
}
.elementor-page .ast-menu-toggle {
  color: unset !important;
  background: unset !important;
}
.elementor-post.elementor-grid-item.hentry {
  margin-bottom: 0;
}
.woocommerce
  div.product
  .elementor-element.elementor-products-grid
  .related.products
  ul.products
  li.product,
.elementor-element
  .elementor-wc-products
  .woocommerce[class*="columns-"]
  ul.products
  li.product {
  width: auto;
  margin: 0;
  float: none;
}
body .elementor hr {
  background-color: #ccc;
  margin: 0;
}
.ast-left-sidebar .elementor-section.elementor-section-stretched,
.ast-right-sidebar .elementor-section.elementor-section-stretched {
  max-width: 100%;
  left: 0 !important;
}
.elementor-posts-container [CLASS*="ast-width-"] {
  width: 100%;
}
.elementor-template-full-width .ast-container {
  display: block;
}
.elementor-screen-only,
.screen-reader-text,
.screen-reader-text span,
.ui-helper-hidden-accessible {
  top: 0 !important;
}
@media (max-width: 544px) {
  .elementor-element
    .elementor-wc-products
    .woocommerce[class*="columns-"]
    ul.products
    li.product {
    width: auto;
    margin: 0;
  }
  .elementor-element .woocommerce .woocommerce-result-count {
    float: none;
  }
}
.ast-header-break-point .main-header-bar {
  border-bottom-width: 1px;
}
@media (min-width: 769px) {
  .main-header-bar {
    border-bottom-width: 1px;
  }
}
.ast-flex {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-header-bar {
  padding: 1em 0;
}
.ast-site-identity {
  padding: 0;
}
.header-main-layout-1 .ast-flex.main-header-container,
.header-main-layout-3 .ast-flex.main-header-container {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-main-layout-1 .ast-flex.main-header-container,
.header-main-layout-3 .ast-flex.main-header-container {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-header-menu
  .sub-menu
  .menu-item.menu-item-has-children
  > .menu-link:after {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translate(0, -50%) rotate(270deg);
}
.ast-header-break-point
  .main-header-bar
  .main-header-bar-navigation
  .page_item_has_children
  > .ast-menu-toggle::before,
.ast-header-break-point
  .main-header-bar
  .main-header-bar-navigation
  .menu-item-has-children
  > .ast-menu-toggle::before,
.ast-mobile-popup-drawer
  .main-header-bar-navigation
  .menu-item-has-children
  > .ast-menu-toggle::before,
.ast-header-break-point
  .ast-mobile-header-wrap
  .main-header-bar-navigation
  .menu-item-has-children
  > .ast-menu-toggle::before {
  font-weight: bold;
  content: "\e900";
  font-family: Astra;
  text-decoration: inherit;
  display: inline-block;
}
.ast-header-break-point
  .main-navigation
  ul.sub-menu
  .menu-item
  .menu-link:before {
  content: "\e900";
  font-family: Astra;
  font-size: 0.65em;
  text-decoration: inherit;
  display: inline-block;
  transform: translate(0, -2px) rotateZ(270deg);
  margin-right: 5px;
}
.widget_search .search-form:after {
  font-family: Astra;
  font-size: 1.2em;
  font-weight: normal;
  content: "\e8b6";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
}
.astra-search-icon::before {
  content: "\e8b6";
  font-family: Astra;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 3;
}
.main-header-bar .main-header-bar-navigation .page_item_has_children > a:after,
.main-header-bar .main-header-bar-navigation .menu-item-has-children > a:after,
.menu-item-has-children .ast-header-navigation-arrow:after {
  content: "\e900";
  display: inline-block;
  font-family: Astra;
  font-size: 0.6rem;
  font-weight: bold;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
  line-height: normal;
}
.menu-item-has-children .sub-menu .ast-header-navigation-arrow:after {
  margin-left: 0;
}
.ast-mobile-popup-drawer
  .main-header-bar-navigation
  .ast-submenu-expanded
  > .ast-menu-toggle::before {
  transform: rotateX(180deg);
}
.ast-header-break-point
  .main-header-bar-navigation
  .menu-item-has-children
  > .menu-link:after {
  display: none;
}
@media (min-width: 769px) {
  .ast-builder-menu .main-navigation > ul > li:last-child a {
    margin-right: 0;
  }
}
.ast-separate-container .ast-article-inner {
  background-color: transparent;
  background-image: none;
}
.ast-separate-container .ast-article-post {
  background-color: #f4f5f7;
  background-image: none;
}
.ast-separate-container .ast-article-single:not(.ast-related-post),
.woocommerce.ast-separate-container .ast-woocommerce-container,
.ast-separate-container .error-404,
.ast-separate-container .no-results,
.single.ast-separate-container.ast-author-meta,
.ast-separate-container .related-posts-title-wrapper,
.ast-separate-container .comments-count-wrapper,
.ast-box-layout.ast-plain-container .site-content,
.ast-padded-layout.ast-plain-container .site-content,
.ast-separate-container .ast-archive-description,
.ast-separate-container .comments-area .comment-respond,
.ast-separate-container .comments-area .ast-comment-list li,
.ast-separate-container .comments-area .comments-title {
  background-color: #f4f5f7;
  background-image: none;
}
.ast-separate-container.ast-two-container #secondary .widget {
  background-color: #f4f5f7;
  background-image: none;
}
#ast-scroll-top {
  display: none;
  position: fixed;
  text-align: center;
  cursor: pointer;
  z-index: 99;
  width: 2.1em;
  height: 2.1em;
  line-height: 2.1;
  color: #ffffff;
  border-radius: 2px;
  content: "";
  outline: inherit;
}
@media (min-width: 769px) {
  #ast-scroll-top {
    content: "769";
  }
}
#ast-scroll-top .ast-icon.icon-arrow svg {
  margin-left: 0px;
  vertical-align: middle;
  transform: translate(0, -20%) rotate(180deg);
  width: 1.6em;
}
.ast-scroll-to-top-right {
  right: 30px;
  bottom: 30px;
}
.ast-scroll-to-top-left {
  left: 30px;
  bottom: 30px;
}
#ast-scroll-top {
  background-color: #61ce70;
  font-size: 15px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 80px;
}
.ast-scroll-top-icon::before {
  content: "\e900";
  font-family: Astra;
  text-decoration: inherit;
}
.ast-scroll-top-icon {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  #ast-scroll-top .ast-icon.icon-arrow svg {
    width: 1em;
  }
}
:root {
  --e-global-color-astglobalcolor0: #0170b9;
  --e-global-color-astglobalcolor1: #3a3a3a;
  --e-global-color-astglobalcolor2: #3a3a3a;
  --e-global-color-astglobalcolor3: #4b4f58;
  --e-global-color-astglobalcolor4: #f5f5f5;
  --e-global-color-astglobalcolor5: #ffffff;
  --e-global-color-astglobalcolor6: #e5e5e5;
  --e-global-color-astglobalcolor7: #424242;
  --e-global-color-astglobalcolor8: #000000;
}
.ast-desktop
  .astra-menu-animation-slide-up
  > .menu-item
  > .astra-full-megamenu-wrapper,
.ast-desktop .astra-menu-animation-slide-up > .menu-item > .sub-menu,
.ast-desktop .astra-menu-animation-slide-up > .menu-item > .sub-menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5em);
  transition: visibility 0.2s ease, transform 0.2s ease;
}
.ast-desktop
  .astra-menu-animation-slide-up
  > .menu-item
  .menu-item.focus
  > .sub-menu,
.ast-desktop
  .astra-menu-animation-slide-up
  > .menu-item
  .menu-item:hover
  > .sub-menu,
.ast-desktop
  .astra-menu-animation-slide-up
  > .menu-item.focus
  > .astra-full-megamenu-wrapper,
.ast-desktop .astra-menu-animation-slide-up > .menu-item.focus > .sub-menu,
.ast-desktop
  .astra-menu-animation-slide-up
  > .menu-item:hover
  > .astra-full-megamenu-wrapper,
.ast-desktop .astra-menu-animation-slide-up > .menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.ast-desktop
  .astra-menu-animation-slide-up
  > .full-width-mega.menu-item.focus
  > .astra-full-megamenu-wrapper,
.ast-desktop
  .astra-menu-animation-slide-up
  > .full-width-mega.menu-item:hover
  > .astra-full-megamenu-wrapper {
  -js-display: flex;
  display: flex;
}
.ast-desktop
  .astra-menu-animation-slide-down
  > .menu-item
  > .astra-full-megamenu-wrapper,
.ast-desktop .astra-menu-animation-slide-down > .menu-item > .sub-menu,
.ast-desktop
  .astra-menu-animation-slide-down
  > .menu-item
  > .sub-menu
  .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5em);
  transition: visibility 0.2s ease, transform 0.2s ease;
}
.ast-desktop
  .astra-menu-animation-slide-down
  > .menu-item
  .menu-item.focus
  > .sub-menu,
.ast-desktop
  .astra-menu-animation-slide-down
  > .menu-item
  .menu-item:hover
  > .sub-menu,
.ast-desktop
  .astra-menu-animation-slide-down
  > .menu-item.focus
  > .astra-full-megamenu-wrapper,
.ast-desktop .astra-menu-animation-slide-down > .menu-item.focus > .sub-menu,
.ast-desktop
  .astra-menu-animation-slide-down
  > .menu-item:hover
  > .astra-full-megamenu-wrapper,
.ast-desktop .astra-menu-animation-slide-down > .menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.ast-desktop
  .astra-menu-animation-slide-down
  > .full-width-mega.menu-item.focus
  > .astra-full-megamenu-wrapper,
.ast-desktop
  .astra-menu-animation-slide-down
  > .full-width-mega.menu-item:hover
  > .astra-full-megamenu-wrapper {
  -js-display: flex;
  display: flex;
}
.ast-desktop
  .astra-menu-animation-fade
  > .menu-item
  > .astra-full-megamenu-wrapper,
.ast-desktop .astra-menu-animation-fade > .menu-item > .sub-menu,
.ast-desktop .astra-menu-animation-fade > .menu-item > .sub-menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.3s;
}
.ast-desktop
  .astra-menu-animation-fade
  > .menu-item
  .menu-item.focus
  > .sub-menu,
.ast-desktop
  .astra-menu-animation-fade
  > .menu-item
  .menu-item:hover
  > .sub-menu,
.ast-desktop
  .astra-menu-animation-fade
  > .menu-item.focus
  > .astra-full-megamenu-wrapper,
.ast-desktop .astra-menu-animation-fade > .menu-item.focus > .sub-menu,
.ast-desktop
  .astra-menu-animation-fade
  > .menu-item:hover
  > .astra-full-megamenu-wrapper,
.ast-desktop .astra-menu-animation-fade > .menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity ease-in-out 0.3s;
}
.ast-desktop
  .astra-menu-animation-fade
  > .full-width-mega.menu-item.focus
  > .astra-full-megamenu-wrapper,
.ast-desktop
  .astra-menu-animation-fade
  > .full-width-mega.menu-item:hover
  > .astra-full-megamenu-wrapper {
  -js-display: flex;
  display: flex;
}
.ast-desktop .menu-item.ast-menu-hover > .sub-menu.toggled-on {
  opacity: 1;
  visibility: visible;
}
