/**
Theme Name:   cumale
Theme URI:    https://lsitlabs.net
Description:  cumale.com theme
Author:       LS
Author URI:   https://lsitlabs.net
Template:     generatepress
Version:      3.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  cumale
Template:     generatepress
**/


/*========================================================================
  TABLE OF CONTENTS:
==========================================================================

  1. BASE STYLES
     1.1 RESET
     1.2 DEFAULTS
     1.3 COLORS
     1.4 TYPOGRAPHY

  2. HELPERS
     2.1 DISPLAY
     2.2 SPACING
     2.3 ALIGNMENT
     2.4 CONSTRAINTS
     2.5 ACCESSIBILITY
     2.6 MISC UTILITIES

  3. VISUAL ELEMENTS
     3.1 ICONS
     3.2 ANIMATIONS
     3.3 EFFECTS

  4. HEADER
     4.1 PAGE HEADER
     4.2 MAIN NAVIGATION
     4.3 MOBILE NAVIGATION

  5. FOOTER
     5.1 FOOTER MENU
     5.2 BACK TO TOP

  6. COMPONENTS
     6.1 BUTTONS
     6.2 CARDS
     6.3 MODALS

  7. CONTENT
     7.1 PAGES
     7.2 POSTS
     7.3 COMMENTS
     7.4 SIDEBARS
     7.5 BLOCKS

  8. WOOCOMMERCE
     8.1 SHOP
     8.2 PRODUCT PAGES
     8.3 CART & CHECKOUT
     8.4 MY ACCOUNT

  9. VENDORS
     9.1 SWIPER-JS

 10. PLUGINS
     10.1 GRAVITY FORMS
     10.2 WPML
     10.3 IUBENDA

 11. LEGACY (CLASSIC EDITOR)

========================================================================*/


/**************************************************************************************************
 *  #   1.   BASE STYLES
 *************************************************************************************************/

/*************************************************************************
 *  ##  1.1  BASE STYLES -> RESET
 ************************************************************************/

/*************************************************************************
 *  ##  1.2  BASE STYLES -> DEFAULTS
 ************************************************************************/
:root {
    /* Borders */
    --border-radius-xs: 4px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --border-radius-2xl: 24px;
    --border-radius-3xl: 28px;
    /* shadows */
    --shadow-sm: 0 2px 2px -2px rgba(0, 0, 0, .2);
    --shadow-md: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    --shadow-lg: rgba(65, 155, 249, 0.1) 0 0 0 1px, rgba(65, 155, 249, 0) 0 0 0 0, rgba(65, 155, 249, 0.08) 0 12px 50px 0, rgba(159, 159, 164, 0.25) 0 2px 10px 0;
    --shadow-xl: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    /* Fixed spacing */
    --space-2xs: 4px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 40px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    /* Responsive spacing */
    --space-xs-fluid: clamp(0.5rem, 1vw, 1rem); /*  8px - 16px */
    --space-sm-fluid: clamp(1rem, 2vw, 1.5rem); /* 16px - 24px */
    --space-md-fluid: clamp(1.5rem, 3vw, 2rem); /* 24px - 32px */
    --space-lg-fluid: clamp(2rem, 4vw, 2.5rem); /* 32px - 40px */
    --space-xl-fluid: clamp(2.5rem, 5vw, 3rem); /* 40px - 48px */
    --space-2xl-fluid: clamp(3rem, 6vw, 4rem); /*  48px - 64px */
    --space-3xl-fluid: clamp(4rem, 8vw, 5rem); /*  64px - 80px */
    /* Container widths */
    --width-2xs: 320px;
    --width-xs: 420px;
    --width-sm: 680px;
    --width-md: 880px;
    --width-lg: 1280px;
    --width-xl: 1920px;
}

body:not(.wp-admin) {
    overflow-x: hidden; /* fix for group block alignfull overflowing horizontally issue */
}

body:not(.wp-admin) {
    /* letter-spacing: 1px; */
}


/*************************************************************************
 *  ##  1.3  BASE STYLES -> COLORS
 ************************************************************************/
/*noinspection CssUnresolvedCustomProperty*/
body {
    --color-base-000: var(--base-000);
    --color-base-100: var(--base-100);
    --color-base-200: var(--base-200);
    --color-base-300: var(--base-300);
    --color-base-400: var(--base-400);
    --color-base-500: var(--base-500);
    --color-base-600: var(--base-600);
    --color-base-700: var(--base-700);
    --color-base-800: var(--base-800);
    --color-base-900: var(--base-900);
    --color-base-950: var(--base-950);
    --color-black: var(--black);
    --color-white: var(--white);
    --color-background: var(--background);
    --color-delicate-olive: var(--delicate-olive);
    --color-full-jade: var(--full-jade);
    --color-subtle-marble: var(--subtle-marble);
    /*--color-brand-primary: var(--brand-primary);*/
    /*--color-brand-secondary: var(--brand-secondary);*/
    /*--color-accent-primary: var(--accent-primary);*/
    /*--color-accent-primary-active: var(--accent-primary-active);*/
    /*--color-accent-secondary: var(--accent-secondary);*/
    /*--color-accent-secondary-active: var(--accent-secondary-active);*/
    /*--color-gradient-start: var(--gradient-start);*/
    /*--color-gradient-end: var(--gradient-end);*/
}


/*************************************************************************
 *  ##  1.4  BASE STYLES -> TYPOGRAPHY
 ************************************************************************/
/*noinspection DuplicatedCode*/
:root {
    /*** --- NOTE: The font family variables HAVE TO match what is in the Customizer > Typography.  --- ***/
    /*** ---       Set font-heading as 'All Headings', set font-body as HTML                        --- ***/
    --font-heading: 'Cormorant';
    --font-body: 'Cormorant';
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;

    /*** --- SAFARI FIX for fluid typography --- ***/
    /*noinspection CssRedundantUnit*/
    min-height: 0vw;

    /*** --- Font size clamp calculations                                          --- ***/
    /*** --- @see https://websemantics.uk/tools/responsive-font-calculator/        --- ***/
    /*** ---      https://theadminbar.com/simple-responsive-font-size-calculator/  --- ***/
    --fs-body-xs: 0.695rem;
    --fs-body-sm: 0.8rem;
    --fs-body-md: 1rem; /* Set PX value in Customizer or browser defaults to 16px */
    --fs-body-lg: clamp(1.25rem, 1rem + 1.25vw, 1.5rem); /*           20px to 24px */
    --fs-body-xl: clamp(1.5rem, 1.125rem + 1.875vw, 1.875rem); /*     24px to 30px */
    --fs-heading-xs: clamp(1.125rem, 0.875rem + 1.25vw, 1.375rem); /* 18px to 22px */
    --fs-heading-sm: clamp(1.375rem, 1.125rem + 1.25vw, 1.5rem); /*   22px to 24px */
    --fs-heading-md: clamp(1.5rem, 1.125rem + 1.875vw, 1.875rem); /*  24px to 30px */
    --fs-heading-lg: clamp(1.75rem, 1.25rem + 2.5vw, 2.25rem); /*     28px to 36px */
    --fs-heading-xl: clamp(2rem, 1.5rem + 3.75vw, 3.5rem); /*         32px to 56px */
}

/*** --- Default "body" text settings --- ***/
p, .text-xl, .text-lg, .text-md, .text-sm, .text-xs {
    font-family: var(--font-body), serif;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    margin-bottom: 1.25em;
}

p, blockquote, li {
    text-wrap: pretty;
}

p:last-child:last-of-type {
    margin-bottom: 0;
}

strong {
    font-weight: var(--font-weight-bold);
}


/*** --- Default "heading" text settings --- ***/
h1, h2, h3, h4, h5, h6,
.heading-xl, .heading-lg, .heading-md, .heading-sm, .heading-xs {
    font-family: var(--font-heading), sans-serif;
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.heading-xl, .heading-lg, .heading-md, .heading-sm, .heading-xs {
    font-family: var(--font-heading), sans-serif !important;
}

:is(h1, h2, h3, h4, h5, h6) {
    text-wrap: balance;
}

/*** --- Font Size declarations - No need to edit unless you need to override --- ***/
.heading-xl {
    font-size: var(--fs-heading-xl);
}

h1, .heading-lg {
    font-size: var(--fs-heading-lg);
}

h2, .heading-md {
    font-size: var(--fs-heading-md);
}

h3, h4, .heading-sm {
    font-size: var(--fs-heading-sm);
}

h5, h6, .heading-xs {
    font-size: var(--fs-heading-xs);
}

.text-xs {
    font-size: var(--fs-body-xs);
}

.text-sm {
    font-size: var(--fs-body-sm);
}

p, .text-md {
    font-size: var(--fs-body-md);
}

.text-lg {
    font-size: var(--fs-body-lg);
}

.text-xl {
    font-size: var(--fs-body-xl);
}


/**************************************************************************************************
 *  #   2.   HELPERS
 *************************************************************************************************/
/**************************************************************************************************
 * HELPER CLASSES
 * - DISPLAY:           .no-underline
 *                      .no-wrap
 *                      .text-wrap-balance, .text-wrap-pretty
 *                      .visually-hidden
 * - SPACING:
 * - ALIGNMENT:         .margin-auto
 *                      .no-margin, .no-margin-left, .no-margin-right, .no-margin-top, .no-margin-bottom
 * - CONSTRAINTS:       .ar-16-9, .ar-9-16, .ar-4-3, .ar-3-4, .ar-3-2, .ar-2-3, .ar-1-1
 *                      .line-limit-4 .line-limit-3, .line-limit-2
 *                      .stretch-link
 *                      .max-width-md, .max-width-sm, .max-width-xs, .max-width-2xs
 *                      .full-width, .full-width-right
 * - ACCESSIBILITY:
 * - MISC UTILITIES:
 *************************************************************************************************/

/*************************************************************************
 *  ##  2.1  HELPERS -> DISPLAY
 ************************************************************************/
.display-inline {
    display: inline !important;
}

.display-inline-block {
    display: inline-block !important;
}

.display-block {
    display: block !important;
}

/*** --- Text Behavior --- ***/
.no-underline, .no-underline * {
    text-decoration: none !important;
}

.no-wrap {
    flex-wrap: nowrap !important;
}

.text-wrap-balance {
    text-wrap: balance !important;
}

.text-wrap-pretty {
    text-wrap: pretty !important;
}

/*** --- Visibility --- ***/
body:not(.wp-admin) .visually-hidden:not(:focus):not(:active) {
    /*display: none !important;*/
    /*visibility: hidden !important;*/
    /* using the below method is compatible with screen readers */
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

body.block-editor-page .visually-hidden,
body.block-editor-iframe__body .visually-hidden,
body.wp-admin .visually-hidden {
    opacity: 0.2;
    pointer-events: none;
}

body.block-editor-page .visually-hidden *,
body.block-editor-iframe__body .visually-hidden *,
body.wp-admin .visually-hidden * {
    pointer-events: none;
}


/*************************************************************************
 *  ##  2.2  HELPERS -> SPACING
 ************************************************************************/


/*************************************************************************
 *  ##  2.3  HELPERS -> ALIGNMENT
 ************************************************************************/
.margin-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

/*************************************************************************
 *  ##  2.4  HELPERS -> CONSTRAINTS
 ************************************************************************/
/*** --- Aspect Ratios --- ***/
.ar-16-9, .ar-9-16, .ar-4-3, .ar-3-4, .ar-3-2, .ar-2-3, .ar-1-1 {
    object-fit: cover;
}

.ar-16-9 {
    aspect-ratio: 16/9;
}

.ar-9-16 {
    aspect-ratio: 9/16;
}

.ar-4-3 {
    aspect-ratio: 4/3;
}

.ar-3-4 {
    aspect-ratio: 3/4;
}

.ar-3-2 {
    aspect-ratio: 3/2;
}

.ar-2-3 {
    aspect-ratio: 2/3;
}

.ar-1-1 {
    aspect-ratio: 1/1;
}

/*** --- Line Limits --- ***/
.line-limit-1, .line-limit-2, .line-limit-3, .line-limit-4, .line-limit-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-limit-1 {
    -webkit-line-clamp: 2;
}

.line-limit-2 {
    -webkit-line-clamp: 2;
}

.line-limit-3 {
    -webkit-line-clamp: 3;
}

.line-limit-4 {
    -webkit-line-clamp: 4;
}

.line-limit-5 {
    -webkit-line-clamp: 5;
}

/*** --- Stretch link --- ***/
/* Borrowed from Bootstrap            */
/* Make sure you only have ONE link   */
/* your card or this will not work    */
.stretch-link {
    position: relative;
}

.stretch-link a::after {
    content: '';
    position: absolute;
    inset: 0;
}

.stretch-link a:is(:focus-visible)::after {
    outline: 2px solid;
}

.stretch-link a:is(:hover, :focus) {
    outline: none;
}

/*** --- Full Widths --- ***/
.full-width {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: auto;
}

.full-width-right {
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: auto;
}

/*** --- Max Widths --- ***/
.max-width-2xs {
    max-width: var(--width-2xs, 320px);
}

.max-width-xs {
    max-width: var(--width-xs, 480px);
}

.max-width-sm {
    max-width: var(--width-sm, 768px);
}

.max-width-md {
    max-width: var(--width-md, 1024px);
}

.max-width-lg {
    max-width: var(--width-lg, 1280px);
}

.max-width-xl {
    max-width: var(--width-xl, 1920px);
}


/*************************************************************************
 *  ##  2.5  HELPERS -> ACCESSIBILITY
 ************************************************************************/


/*************************************************************************
 *  ##  2.6  HELPERS -> MISC UTILITIES
 ************************************************************************/


/**************************************************************************************************
 *  #   3.   VISUAL ELEMENTS
 *************************************************************************************************/


/*************************************************************************
 *  ##  3.1  VISUAL ELEMENTS -> ICONS
 ************************************************************************/
:root {
    --icon-svg-ui-globe: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDQ4MGMxNi43IDAgNDAuNC0xNC40IDYxLjktNTcuM2M5LjktMTkuOCAxOC4yLTQzLjcgMjQuMS03MC43bC0xNzIgMGM1LjkgMjcgMTQuMiA1MC45IDI0LjEgNzAuN0MyMTUuNiA0NjUuNiAyMzkuMyA0ODAgMjU2IDQ4MHpNMTY0LjMgMzIwbDE4My40IDBjMi44LTIwLjIgNC4zLTQxLjcgNC4zLTY0cy0xLjUtNDMuOC00LjMtNjRsLTE4My40IDBjLTIuOCAyMC4yLTQuMyA0MS43LTQuMyA2NHMxLjUgNDMuOCA0LjMgNjR6TTE3MCAxNjBsMTcyIDBjLTUuOS0yNy0xNC4yLTUwLjktMjQuMS03MC43QzI5Ni40IDQ2LjQgMjcyLjcgMzIgMjU2IDMycy00MC40IDE0LjQtNjEuOSA1Ny4zQzE4NC4yIDEwOS4xIDE3NS45IDEzMyAxNzAgMTYwem0yMTAgMzJjMi42IDIwLjUgNCA0MS45IDQgNjRzLTEuNCA0My41LTQgNjRsOTAuOCAwYzYtMjAuMyA5LjMtNDEuOCA5LjMtNjRzLTMuMi00My43LTkuMy02NEwzODAgMTkyem03OC41LTMyYy0yNS45LTU0LjUtNzMuMS05Ni45LTEzMC45LTExNi4zYzIxIDI4LjMgMzcuNiA2OC44IDQ3LjIgMTE2LjNsODMuOCAwem0tMzIxLjEgMGM5LjYtNDcuNiAyNi4yLTg4IDQ3LjItMTE2LjNDMTI2LjcgNjMuMSA3OS40IDEwNS41IDUzLjYgMTYwbDgzLjcgMHptLTk2IDMyYy02IDIwLjMtOS4zIDQxLjgtOS4zIDY0czMuMiA0My43IDkuMyA2NGw5MC44IDBjLTIuNi0yMC41LTQtNDEuOS00LTY0czEuNC00My41IDQtNjRsLTkwLjggMHpNMzI3LjUgNDY4LjNjNTcuOC0xOS41IDEwNS02MS44IDEzMC45LTExNi4zbC04My44IDBjLTkuNiA0Ny42LTI2LjIgODgtNDcuMiAxMTYuM3ptLTE0MyAwYy0yMS0yOC4zLTM3LjUtNjguOC00Ny4yLTExNi4zbC04My43IDBjMjUuOSA1NC41IDczLjEgOTYuOSAxMzAuOSAxMTYuM3pNMjU2IDUxMkEyNTYgMjU2IDAgMSAxIDI1NiAwYTI1NiAyNTYgMCAxIDEgMCA1MTJ6Ii8+PC9zdmc+');
    --icon-svg-nav-arrow-left-light: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA3OCA3OCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNzggNzg7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7c3Ryb2tlOiNGRkZGRkY7c3Ryb2tlLXdpZHRoOjI7fQ0KCS5zdDF7ZmlsbDojRkZGRkZGO30NCjwvc3R5bGU+DQo8Y2lyY2xlIGNsYXNzPSJzdDAiIGN4PSIzOSIgY3k9IjM5IiByPSIzOCIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTIwLjcsNDguMWMwLjQsMC40LDEsMC40LDEuNCwwYzAuNC0wLjQsMC40LTEsMC0xLjRMMTYuNCw0MWw1LjctNS43YzAuNC0wLjQsMC40LTEsMC0xLjRjLTAuNC0wLjQtMS0wLjQtMS40LDANCglsLTYuNCw2LjRjLTAuNCwwLjQtMC40LDEsMCwxLjRMMjAuNyw0OC4xeiBNNjEsNDBIMTV2Mmg0NlY0MHoiLz4NCjwvc3ZnPg0K');
    --icon-svg-nav-arrow-right-light: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA3OCA3OCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNzggNzg7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7c3Ryb2tlOiNGRkZGRkY7c3Ryb2tlLXdpZHRoOjI7fQ0KCS5zdDF7ZmlsbDojRkZGRkZGO30NCjwvc3R5bGU+DQo8Y2lyY2xlIGlkPSJjaXJjbGUiIGNsYXNzPSJzdDAiIGN4PSIzOSIgY3k9IjM5IiByPSIzOCIvPg0KPHBhdGggaWQ9ImFycm93X3JpZ2h0IiBjbGFzcz0ic3QxIiBkPSJNNjMuNyw0MS43YzAuNC0wLjQsMC40LTEsMC0xLjRsLTYuNC02LjRjLTAuNC0wLjQtMS0wLjQtMS40LDBjLTAuNCwwLjQtMC40LDEsMCwxLjRsNS43LDUuNw0KCWwtNS43LDUuN2MtMC40LDAuNC0wLjQsMSwwLDEuNGMwLjQsMC40LDEsMC40LDEuNCwwTDYzLjcsNDEuN3ogTTE3LDQyaDQ2di0ySDE3VjQyeiIvPg0KPC9zdmc+DQo=');
    --icon-svg-nav-arrow-left-blackwhite: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNzggNzgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDc4IDc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0ZGRkZGRjtzdHJva2U6IzAwMDAwMDtzdHJva2Utd2lkdGg6Mjt9Cjwvc3R5bGU+CjxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjM5IiBjeT0iMzkiIHI9IjM4Ii8+CjxwYXRoIGQ9Ik0yMC43LDQ4LjFjMC40LDAuNCwxLDAuNCwxLjQsMHMwLjQtMSwwLTEuNEwxNi40LDQxbDUuNy01LjdjMC40LTAuNCwwLjQtMSwwLTEuNHMtMS0wLjQtMS40LDBsLTYuNCw2LjQKCWMtMC40LDAuNC0wLjQsMSwwLDEuNEwyMC43LDQ4LjF6IE02MSw0MEgxNXYyaDQ2VjQweiIvPgo8L3N2Zz4=');
    --icon-svg-nav-arrow-right-blackwhite: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNzggNzgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDc4IDc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0ZGRkZGRjtzdHJva2U6IzAwMDAwMDtzdHJva2Utd2lkdGg6Mjt9Cjwvc3R5bGU+CjxjaXJjbGUgaWQ9ImNpcmNsZSIgY2xhc3M9InN0MCIgY3g9IjM5IiBjeT0iMzkiIHI9IjM4Ii8+CjxwYXRoIGlkPSJhcnJvd19yaWdodCIgZD0iTTYzLjcsNDEuN2MwLjQtMC40LDAuNC0xLDAtMS40bC02LjQtNi40Yy0wLjQtMC40LTEtMC40LTEuNCwwcy0wLjQsMSwwLDEuNGw1LjcsNS43bC01LjcsNS43CgljLTAuNCwwLjQtMC40LDEsMCwxLjRzMSwwLjQsMS40LDBMNjMuNyw0MS43eiBNMTcsNDJoNDZ2LTJIMTdWNDJ6Ii8+Cjwvc3ZnPg==');
    --icon-svg-ext-link-dark: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiMyRTdCQjQiIHZpZXdCb3g9IjAgMCA2NDAgNjQwIj48cGF0aCBkPSJNMzg0IDY0QzM2Ni4zIDY0IDM1MiA3OC4zIDM1MiA5NkMzNTIgMTEzLjcgMzY2LjMgMTI4IDM4NCAxMjhMNDY2LjcgMTI4TDI2NS4zIDMyOS40QzI1Mi44IDM0MS45IDI1Mi44IDM2Mi4yIDI2NS4zIDM3NC43QzI3Ny44IDM4Ny4yIDI5OC4xIDM4Ny4yIDMxMC42IDM3NC43TDUxMiAxNzMuM0w1MTIgMjU2QzUxMiAyNzMuNyA1MjYuMyAyODggNTQ0IDI4OEM1NjEuNyAyODggNTc2IDI3My43IDU3NiAyNTZMNTc2IDk2QzU3NiA3OC4zIDU2MS43IDY0IDU0NCA2NEwzODQgNjR6TTE0NCAxNjBDOTkuOCAxNjAgNjQgMTk1LjggNjQgMjQwTDY0IDQ5NkM2NCA1NDAuMiA5OS44IDU3NiAxNDQgNTc2TDQwMCA1NzZDNDQ0LjIgNTc2IDQ4MCA1NDAuMiA0ODAgNDk2TDQ4MCA0MTZDNDgwIDM5OC4zIDQ2NS43IDM4NCA0NDggMzg0QzQzMC4zIDM4NCA0MTYgMzk4LjMgNDE2IDQxNkw0MTYgNDk2QzQxNiA1MDQuOCA0MDguOCA1MTIgNDAwIDUxMkwxNDQgNTEyQzEzNS4yIDUxMiAxMjggNTA0LjggMTI4IDQ5NkwxMjggMjQwQzEyOCAyMzEuMiAxMzUuMiAyMjQgMTQ0IDIyNEwyMjQgMjI0QzI0MS43IDIyNCAyNTYgMjA5LjcgMjU2IDE5MkMyNTYgMTc0LjMgMjQxLjcgMTYwIDIyNCAxNjBMMTQ0IDE2MHoiLz48L3N2Zz4=');
    --icon-svg-ext-link-white: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZmYiIHZpZXdCb3g9IjAgMCA2NDAgNjQwIj48cGF0aCBkPSJNMzg0IDY0QzM2Ni4zIDY0IDM1MiA3OC4zIDM1MiA5NkMzNTIgMTEzLjcgMzY2LjMgMTI4IDM4NCAxMjhMNDY2LjcgMTI4TDI2NS4zIDMyOS40QzI1Mi44IDM0MS45IDI1Mi44IDM2Mi4yIDI2NS4zIDM3NC43QzI3Ny44IDM4Ny4yIDI5OC4xIDM4Ny4yIDMxMC42IDM3NC43TDUxMiAxNzMuM0w1MTIgMjU2QzUxMiAyNzMuNyA1MjYuMyAyODggNTQ0IDI4OEM1NjEuNyAyODggNTc2IDI3My43IDU3NiAyNTZMNTc2IDk2QzU3NiA3OC4zIDU2MS43IDY0IDU0NCA2NEwzODQgNjR6TTE0NCAxNjBDOTkuOCAxNjAgNjQgMTk1LjggNjQgMjQwTDY0IDQ5NkM2NCA1NDAuMiA5OS44IDU3NiAxNDQgNTc2TDQwMCA1NzZDNDQ0LjIgNTc2IDQ4MCA1NDAuMiA0ODAgNDk2TDQ4MCA0MTZDNDgwIDM5OC4zIDQ2NS43IDM4NCA0NDggMzg0QzQzMC4zIDM4NCA0MTYgMzk4LjMgNDE2IDQxNkw0MTYgNDk2QzQxNiA1MDQuOCA0MDguOCA1MTIgNDAwIDUxMkwxNDQgNTEyQzEzNS4yIDUxMiAxMjggNTA0LjggMTI4IDQ5NkwxMjggMjQwQzEyOCAyMzEuMiAxMzUuMiAyMjQgMTQ0IDIyNEwyMjQgMjI0QzI0MS43IDIyNCAyNTYgMjA5LjcgMjU2IDE5MkMyNTYgMTc0LjMgMjQxLjcgMTYwIDIyNCAxNjBMMTQ0IDE2MHoiLz48L3N2Zz4=');
}


/*************************************************************************
 *  ##  3.2  VISUAL ELEMENTS -> ANIMATIONS
 ************************************************************************/
body.block-editor-page .gsap-hide,
body.block-editor-iframe__body .gsap-hide {
    opacity: 1;
}

.gsap-hide {
    opacity: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
}


/*************************************************************************
 *  ##  3.3  VISUAL ELEMENTS -> EFFECTS
 ************************************************************************/
@keyframes animate-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes animate-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes animate-slide-down {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.animation--bounce {
    animation: animate-bounce 2s infinite ease-in-out;
}

.animation--pulse {
    animation: animate-pulse 1.5s infinite;
}

.animation--pulse-once {
    animation: animate-pulse 1.5s once;
}

.animation--slide-down {
    animation: animate-slide-down 2s infinite;
}


/**************************************************************************************************
 *  #   4.   HEADER
 *************************************************************************************************/
.site-header {
    box-shadow: var(--shadow-sm);
}

.header-wrap .site-header {
    display: flex;
    justify-content: center;
    box-shadow: none;
}

.inside-header {
    width: 100%;
    padding-left: var(--space-sm-fluid);
    padding-right: var(--space-sm-fluid);
}

/*************************************************************************
 *  ##  4.1  HEADER -> PAGE HEADER
 ************************************************************************/

/*************************************************************************
 *  ##  4.2  HEADER -> MAIN NAVIGATION
 ************************************************************************/
/*** --- Default navigation --- ***/
.main-navigation:not(.is_stuck) li {
    float: none;
    display: inline-block;
}

.main-navigation #primary-menu {
    margin-left: auto;
}

/*** --- Submenu --- ***/
.main-navigation #primary-menu ul.sub-menu {
}

/*** --- Sticky navigation --- ***/
.main-navigation.is_stuck {
    background-color: rgba(255, 255, 254, 0.9);
}

.main-navigation.is_stuck .inside-navigation {
    padding-left: var(--space-sm-fluid);
    padding-right: var(--space-sm-fluid);
}

.main-navigation.is_stuck .navigation-logo {
    margin-left: 0;
}

body.sticky-menu-logo #masthead .main-navigation.is_stuck .navigation-logo.page-hero-navigation-logo {
    display: none !important;
    visibility: hidden;
}

.main-navigation.is_stuck .navigation-logo img {
    width: 180px;
    padding: 2px 4px 2px 0;
}

/*** --- Merged Header navigation --- ***/
.header-wrap .main-navigation {
}

/*** --- GeneratePress Menu Accessibility tweak --- ***/
#primary-menu ul.sub-menu {
    display: block;
}

#primary-menu li:hover .gp-icon svg {
    transform: rotate(180deg);
}

#primary-menu li:hover .sub-menu {
    visibility: visible;
}


/*************************************************************************
 *  ##  4.3  HEADER -> MOBILE NAVIGATION
 ************************************************************************/
@media (max-width: 940px) {
    :root {
        --gp-slideout-width: 440px;
    }

    .site-logo.mobile-header-logo img {
        height: 52px;
    }

    .main-navigation.is_stuck {
        padding-left: 0;
        padding-right: 0;
    }

    .main-navigation .menu-bar-items {
        display: none;
        visibility: hidden;
    }

    #mobile-header.main-navigation .wpml-language-switcher-block .wp-block-navigation-submenu__toggle {
        padding-left: 0.5em !important;
        padding-right: 0.5em !important;
    }

    #mobile-header.main-navigation .wpml-language-switcher-block ul.wp-block-navigation__submenu-container {
        left: 0;
        background-color: var(--color-base-200) !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 0.5em !important;
        padding-right: 0.5em !important;
    }

    #mobile-header.is_stuck.main-navigation .wpml-language-switcher-block ul.wp-block-navigation__submenu-container {
        background-color: rgba(255, 255, 254, 0.9) !important;
    }


    .main-navigation .menu-toggle {
        font-size: 24px !important;
    }

    #generate-slideout-menu.main-navigation .inside-navigation {
        justify-content: center;
        flex-direction: column;
    }

    #generate-slideout-menu.main-navigation .wpml-language-switcher-block {
        margin: 0;
    }

    #generate-slideout-menu.main-navigation .wpml-language-switcher-block .wp-block-navigation__container {
        display: flex;
    }

    #generate-slideout-menu.main-navigation .wpml-language-switcher-block .wp-block-navigation__container .wp-block-navigation__submenu-container {
        display: unset;
    }

    #generate-slideout-menu.main-navigation .wpml-language-switcher-block .wp-block-navigation__container .wp-block-navigation-item__label {
        text-transform: none;
    }

    #generate-slideout-menu.main-navigation .wp-block-search__label {
        display: none;
    }

    #generate-slideout-menu.main-navigation .wp-block-search__button {
        margin-left: 0;
        margin-top: var(--space-sm);
    }

    #generate-slideout-menu.main-navigation .wp-block-search__inside-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 440px) {
    :root {
        --gp-slideout-width: 100%;
    }
}


/**************************************************************************************************
 *  #   5.   FOOTER
 *************************************************************************************************/

/*************************************************************************
 *  ##  5.1  FOOTER -> FOOTER MENU
 ************************************************************************/


/*************************************************************************
 *  ##  5.2  FOOTER -> BACK TO TOP
 ************************************************************************/
.generate-back-to-top {
    right: 12px;
    border-radius: var(--border-radius-sm);
}


/**************************************************************************************************
 *  #   6.   COMPONENTS
 *************************************************************************************************/

/*************************************************************************
 *  ##  6.1  COMPONENTS -> BUTTONS
 ************************************************************************/
.wp-element-button,
.wp-element-button:visited,
.button,
.button:visited {
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-primary);
    color: var(--color-white);
    display: inline-flex;
    font-family: inherit;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out 0s;
    white-space: nowrap;
    flex-wrap: nowrap;
    border-radius: var(--border-radius-md);
    padding: 1rem 2rem;
}

.wp-element-button:is(:hover,:focus),
.button:is(:hover,:focus) {
    color: var(--color-white);
    background-color: var(--color-accent-primary-active);
    text-decoration: none;
}

/*************************************************************************
 *  ##  6.2  COMPONENTS -> CARDS
 ************************************************************************/


/*************************************************************************
 *  ##  6.3  COMPONENTS -> MODALS
 ************************************************************************/
.gp-search-modal .search-modal-form {
    border-radius: var(--border-radius-md);
}

/**************************************************************************************************
 *  #   7.   CONTENT
 *************************************************************************************************/
body.page h1.entry-title {
    text-align: center;
}

.entry-content :not(.wp-block-image) a:not(.gb-text):not(.button):not(.gb-button),
.entry-content :not(.wp-block-image) a:not(.gb-text):not(.button):not(.gb-button):link,
.entry-content :not(.wp-block-image) a:not(.gb-text):not(.button):not(.gb-button):visited,
.entry-content :not(.wp-block-image) a:not(.gb-text):not(.button):not(.gb-button):active {
    background-color: transparent;
    text-decoration: none;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.entry-content :not(.wp-block-image) a:not(.gb-text):not(.button):not(.gb-button):hover,
.entry-content :not(.wp-block-image) a:not(.gb-text):not(.button):not(.gb-button):focus {
    background-color: var(--color-base-800);
    color: var(--color-white);
    text-decoration: none;
}

.entry-content :not(.wp-block-image) a:not(.gb-text):not(.button):not(.gb-button):active { /* click effect */
    position: relative;
    top: 1px;
    left: 1px;
}

.wp-block-list > li::marker {
    color: var(--color-brand-primary);
}

.wp-block-list .wp-block-list { /* nested block list */
    list-style-type: disc;
}

/*************************************************************************
 *  ##  7.1  CONTENT -> PAGES
 ************************************************************************/
.content__inner-container {
    --gb-container-width: 1100px;
}


/*************************************************************************
 *  ##  7.2  CONTENT -> POSTS
 ************************************************************************/
/*** --- Common rules --- ***/
body.blog .site-content,
body.archive.category .site-content,
body.archive.tag .site-content,
body.single-post .site-content {
    padding: var(--space-lg-fluid) var(--space-sm-fluid) var(--space-lg-fluid) var(--space-sm-fluid);
}

/*** --- Archive pages --- ***/
body.blog article.post,
body.archive.category article.post,
body.archive.tag article.post {
}

body.blog article.post .inside-article,
body.archive.category article.post .inside-article,
body.archive.tag article.post .inside-article {
}

body.blog .entry-title a,
body.archive.category .entry-title a,
body.archive.tag .entry-title a {
    text-wrap: pretty;
    display: inline-block;
}

body.blog .entry-meta,
body.archive.category .entry-meta,
body.archive.tag .entry-meta {
}

body.blog article:not(.featured-column) .inside-article,
body.archive.category article:not(.featured-column) .inside-article,
body.archive.tag article:not(.featured-column) .inside-article {
    border-radius: var(--border-radius-md);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

body.blog .entry-summary p:not(.read-more-container),
body.archive.category .entry-summary p:not(.read-more-container),
body.archive.tag .entry-summary p:not(.read-more-container) {
    display: none !important;
    visibility: hidden !important;
}

body.blog .entry-summary .read-more-container > a,
body.archive.category .entry-summary .read-more-container > a,
body.archive.tag .entry-summary .read-more-container > a {
    color: var(--color-base-900);
    background-color: transparent;
    font-size: var(--fs-body-md);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 6px;
    padding: 0;
    text-transform: none;
}

body.blog article .post-image,
body.archive.category article .post-image,
body.archive.tag article .post-image {
    margin-bottom: 0 !important;
}

body.blog article .post-image img,
body.archive.category article .post-image img,
body.archive.tag article .post-image img {
    border-radius: var(--border-radius-sm);
    display: block;
    width: 100%;
}

body.blog article .entry-wrapper,
body.archive.category article .entry-wrapper,
body.archive.tag article .entry-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

body.blog article:not(.featured-column) .entry-wrapper,
body.archive.category article:not(.featured-column) .entry-wrapper,
body.archive.tag article:not(.featured-column) .entry-wrapper {
    height: 100%;
    min-height: 0;
}

body.blog article:not(.featured-column) .entry-title,
body.archive.category article:not(.featured-column) .entry-title,
body.archive.tag article:not(.featured-column) .entry-title {
    font-size: var(--fs-heading-xs);
    line-height: 1.2;
    padding-top: var(--space-xs-fluid);
}

body.blog article:not(.featured-column) div.entry-meta,
body.archive.category article:not(.featured-column) div.entry-meta,
body.archive.tag article:not(.featured-column) div.entry-meta {
    order: 1;
    margin: -24px 0 0 8px;
}

body.blog article:not(.featured-column) div.entry-meta > .posted-on,
body.archive.category article:not(.featured-column) div.entry-meta > .posted-on,
body.archive.tag article:not(.featured-column) div.entry-meta > .posted-on {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius-md);
    color: var(--color-base-700);
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    font-size: var(--fs-body-sm);
    font-weight: var(--font-weight-normal);
    line-height: 1em;
    margin-bottom: 4px;
}

body.blog article:not(.featured-column) footer.entry-meta,
body.archive.category article:not(.featured-column) footer.entry-meta,
body.archive.tag article:not(.featured-column) footer.entry-meta {
    display: none;
    visibility: hidden;
    /*order: 2;*/
    /*margin: 24px 0 16px 0;*/
}

body.blog article:not(.featured-column) .entry-header,
body.archive.category article:not(.featured-column) .entry-header,
body.archive.tag article:not(.featured-column) .entry-header {
    order: 3;
    margin-bottom: 20px;
}

body.blog article:not(.featured-column) .entry-summary,
body.archive.category article:not(.featured-column) .entry-summary,
body.archive.tag article:not(.featured-column) .entry-summary {
    order: 4;
    margin-top: auto;
}

/*** --- Featured article --- ***/
body.blog article.featured-column,
body.archive.category article.featured-column,
body.archive.tag article.featured-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 var(--space-2xl-fluid) 0;
}

body.blog article.featured-column::after,
body.archive.category article.featured-column::after,
body.archive.tag article.featured-column::after {
    /*content: 'Gli ultimi articoli';*/
    /*display: block;*/
    /*padding: 64px 0 152px 0;*/
    /*font-size: 32px;*/
    /*font-weight: 500;*/
    /*line-height: 40px;*/
}

body.blog.terms-list-loaded article.featured-column::after,
body.archive.category.terms-list-loaded article.featured-column::after,
body.archive.tag.terms-list-loaded article.featured-column::after {
    padding-bottom: 64px;
}

body.blog article.featured-column .post-image img,
body.archive.category article.featured-column .post-image img,
body.archive.tag article.featured-column .post-image img {
    height: auto;
    width: 100%;
    object-fit: cover;
    max-height: 540px;
    min-height: 440px;
    aspect-ratio: auto !important;
    border-radius: 10px;
}

body.blog article.featured-column .entry-wrapper,
body.archive.category article.featured-column .entry-wrapper,
body.archive.tag article.featured-column .entry-wrapper {
    border-radius: var(--border-radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    margin-left: 96px;
    margin-top: -240px;
    background-color: #FFFFFF;
    max-width: 560px;
}

body.blog article.featured-column .entry-title,
body.archive.category article.featured-column .entry-title,
body.archive.tag article.featured-column .entry-title {
    font-size: var(--fs-heading-xs);
    line-height: 1.5;
}

body.blog article.featured-column footer.entry-meta,
body.archive.category article.featured-column footer.entry-meta,
body.archive.tag article.featured-column footer.entry-meta {
    display: none;
    visibility: hidden;
    /*order: 1;*/
    /*margin: 0 0 16px 0;*/
}

body.blog article.featured-column .entry-header,
body.archive.category article.featured-column .entry-header,
body.archive.tag article.featured-column .entry-header {
    order: 2;
    margin-bottom: 24px;
}

body.blog article.featured-column div.entry-meta,
body.archive.category article.featured-column div.entry-meta,
body.archive.tag article.featured-column div.entry-meta {
    order: 3;
    color: var(--color-base-700);
}

body.blog article.featured-column .entry-summary,
body.archive.category article.featured-column .entry-summary,
body.archive.tag article.featured-column .entry-summary {
    order: 4;
    margin-top: 24px;
}

@media (max-width: 1024px) and (min-width: 768px) {
    body.blog article.featured-column::after,
    body.archive.category article.featured-column::after,
    body.archive.tag article.featured-column::after {
        padding-bottom: 48px;
    }

    body.blog article.featured-column .entry-wrapper,
    body.archive.category article.featured-column .entry-wrapper,
    body.archive.tag article.featured-column .entry-wrapper {
        padding: 40px;
        margin-left: 64px;
        margin-top: -240px;
        max-width: 528px;
    }
}

@media (max-width: 767px) {
    body.blog article.featured-column::after,
    body.archive.category article.featured-column::after,
    body.archive.tag article.featured-column::after {
        padding-bottom: 24px;
    }

    body.blog article.featured-column .entry-wrapper,
    body.archive.category article.featured-column .entry-wrapper,
    body.archive.tag article.featured-column .entry-wrapper {
        margin-top: -210px;
        margin-left: 40px;
        max-width: 400px;
        padding: 24px 16px;
    }

    body.blog article.featured-column .entry-title,
    body.archive.category article.featured-column .entry-title,
    body.archive.tag article.featured-column .entry-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 540px) {
    body.blog article.featured-column .entry-wrapper,
    body.archive.category article.featured-column .entry-wrapper,
    body.archive.tag article.featured-column .entry-wrapper {
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 24px);
    }
}

/*** --- Archive pagination --- ***/
body.blog .nav-links,
body.archive.category .nav-links,
body.archive.tag .nav-links {
    font-size: var(--fs-body-md);
    margin-top: var(--space-sm-fluid);
    margin-bottom: var(--space-sm-fluid);
    text-align: center;
}

.paging-navigation .nav-links > * {
    padding: 4px 8px;
    margin: 0 4px;
}

body.blog .nav-links .page-numbers,
body.archive.category .nav-links .page-numbers,
body.archive.tag .nav-links .page-numbers {
}

body.blog .nav-links .page-numbers.current,
body.archive.category .nav-links .page-numbers.current,
body.archive.tag .nav-links .page-numbers.current {
    background: var(--color-brand-primary);
    color: var(--color-white);
    border-radius: var(--border-radius-sm);
}

body.blog .nav-links .page-numbers.dots,
body.archive.category .nav-links .page-numbers.dots,
body.archive.tag .nav-links .page-numbers.dots {
}

body.blog .nav-links .page-numbers.next,
body.archive.category .nav-links .page-numbers.next,
body.archive.tag .nav-links .page-numbers.next {
}

body.blog .nav-links .page-numbers.prev,
body.archive.category .nav-links .page-numbers.prev,
body.archive.tag .nav-links .page-numbers.prev {
}

/*** --- Single post --- ***/
body.single-post h1,
body.single-post h2,
body.single-post h3,
body.single-post h4,
body.single-post h5,
body.single-post h6 {
    text-wrap: pretty;
    line-height: 1.3;
}

body.single-post h1 {
    font-size: var(--fs-heading-md);
}

body.single-post h2 {
    font-size: calc(var(--fs-heading-sm) * 0.9);
    font-weight: 700;
    padding-top: 12px;
}

body.single-post h3 {
    font-size: var(--fs-heading-xs);
}

body.single-post .entry-title {
}

body.single-post .reading-time-block {
    display: inline-block !important;
}

body.single-post .reading-time-block .reading-label {
    font-weight: var(--font-weight-bold);
}

body.single-post .entry-content a[target="_blank"] {
    position: relative;
    /*margin-right: calc(var(--fs-body-sm) + 2px);*/
}

body.single-post .entry-content a[target="_blank"]::after {
    content: '';
    background: var(--icon-svg-ext-link-dark);
    /*display: inline-block;*/
    /*position: absolute;*/
    width: var(--fs-body-sm);
    height: var(--fs-body-sm);
    line-height: var(--fs-body-sm);
    text-decoration: none;
    margin: 4px 0 0 2px;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

body.single-post .entry-content a[target="_blank"]:hover::after,
body.single-post .entry-content a[target="_blank"]:focus::after,
body.single-post .entry-content a[target="_blank"]:active::after {
    background: var(--icon-svg-ext-link-white);
    display: inline-block;
    opacity: 1;
}

body.single-post .wp-block-image {
    margin-bottom: var(--space-xl);
}

body.single-post .wp-block-image img {
    border-radius: var(--border-radius-md);
}

body.single-post .inside-article iframe {
    display: block;
    margin: 0 auto;
    max-height: 315px;
    max-width: 90%;
}

body.single-post .wp-block-post-navigation-link__arrow-previous,
body.single-post .wp-block-post-navigation-link__arrow-next {
    font-size: var(--fs-body-lg);
}

body.single-post .wp-block-post-navigation-link {
    display: flex;
}

body.single-post .wp-block-post-navigation-link .post-navigation-link__label {
    display: block;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
}


/*************************************************************************
 *  ##  7.3  CONTENT -> COMMENTS
 ************************************************************************/

/*************************************************************************
 *  ##  7.4  CONTENT -> SIDEBARS
 ************************************************************************/

/*************************************************************************
 *  ##  7.5  CONTENT -> BLOCKS
 ************************************************************************/

/**************************************************************************************************
 *  #   8.   WOOCOMMERCE
 *************************************************************************************************/

/*************************************************************************
 *  ##  8.1  WOOCOMMERCE -> SHOP
 ************************************************************************/

/*************************************************************************
 *  ##  8.2  WOOCOMMERCE -> PRODUCT PAGES
 ************************************************************************/

/*************************************************************************
 *  ##  8.3  WOOCOMMERCE -> CART & CHECKOUT
 ************************************************************************/

/*************************************************************************
 *  ##  8.4  WOOCOMMERCE -> MY ACCOUNT
 ************************************************************************/

/**************************************************************************************************
 *  #   9.   VENDORS
 *************************************************************************************************/

/*************************************************************************
 *  ##  9.1  VENDORS -> SWIPER-JS
 ************************************************************************/
/*** --- Swiper "block-editor" common styles --- ***/
body.block-editor-page .swiper,
body.block-editor-iframe__body .swiper {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    opacity: 1 !important;
}

body.block-editor-page .swiper-wrapper,
body.block-editor-iframe__body .swiper-wrapper {
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: auto;
    overflow-x: auto;
    display: grid;
    grid-auto-flow: column; /* Forces horizontal layout */
    grid-auto-columns: 225px;
    gap: 8px !important;
}

body.block-editor-page .swiper *,
body.block-editor-iframe__body .swiper * {
    font-size: var(--fs-body-md) !important;
}

/*** --- Swiper "frontend" common styles --- ***/
.swiper {
    --swiper-navigation-color: var(--swiper-theme-color);
    --swiper-navigation-sides-offset: 12px;
    --swiper-navigation-size: 22px;
    --swiper-navigation-top-offset: 50%;
    --swiper-pagination-bullet-horizontal-gap: var(--space-xs);
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-inactive-color: var(--color-black);
    --swiper-pagination-bullet-inactive-opacity: 0.2;
    --swiper-theme-color: var(--color-brand-primary);
}

.swiper-pagination-bullet-active {
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-border-radius: 8px;
}

.swiper {
    opacity: 0 !important;
    transition: opacity 0.2s linear;
}

.swiper.swiper-initialized {
    opacity: 1 !important;
}

.swiper {
    width: 100%;
}

.swiper-wrapper {
    align-items: stretch; /* This makes all slides the same height */
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    height: auto;
    padding: 15px 20px;
    margin-top: calc(-30px - (var(--swiper-navigation-size) / 2));
    background-color: var(--color-gradient-start);
    color: var(--color-white);
    border-radius: var(--border-radius-sm);
    font-weight: 700;
}

.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
    background: var(--color-gradient-end);
}

.swiper .wp-block-post-template.is-layout-flow > * {
    margin-block-start: 0; /* Override default WordPress margins/padding that might interfere */
    margin-block-end: 0;
}

.swiper .wp-block-post-template {
    gap: 0 !important; /* Override default WordPress styles */
}

/*** --- "Questions Swiper" styles --- ***/
.questions-slider {
    --swiper-pagination-bullet-horizontal-gap: var(--space-xs);
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-inactive-color: var(--color-white);
    --swiper-pagination-bullet-inactive-opacity: 0.4;
    --swiper-theme-color: var(--color-white);
}

.questions-slider__inner-container {
    --gb-container-width: 1100px;
}


/*** --- "Posts Swiper" styles --- ***/
body.block-editor-page .posts-slider.swiper img,
body.block-editor-iframe__body .posts-slider.swiper img {
    aspect-ratio: 3 / 2;
    width: 225px;
    height: auto;
}

.posts-slider.swiper {
    padding: 20px 0;
}

.posts-slider.swiper .swiper-slide {
    display: flex !important;
    flex-direction: column;
    width: 300px !important; /* Fixed width for all cards */
    min-width: 300px !important;
    max-width: 300px !important;
    min-height: auto;
    height: auto !important; /* Ensure swiper slides maintain proper height */
    /*background: #fff;*/
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 24px; /* Space between cards */
    padding: 0;
    list-style: none;
}

.posts-slider.swiper .swiper-slide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.posts-slider.swiper .swiper-slide .wp-block-post-featured-image {
    margin: 0;
    height: 200px;
    overflow: hidden;
}

.posts-slider.swiper .swiper-slide .wp-block-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.posts-slider.swiper .swiper-slide .wp-block-post-featured-image a {
    display: block;
    height: 100%;
}

.posts-slider.swiper .swiper-slide > *:not(.wp-block-post-featured-image) {
    padding: 0 16px; /* Content area - flexible to fill remaining space */
}

.posts-slider.swiper .swiper-slide .wp-block-post-date {
    font-size: var(--fs-body-sm);
    color: var(--color-base-900);
    margin: 12px 0 8px 0;
    font-weight: var(--font-weight-light);
}

.posts-slider.swiper .swiper-slide time {
    font-size: inherit;
    color: inherit;
}

.posts-slider.swiper .swiper-slide .wp-block-post-title {
    font-size: var(--fs-body-md);
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    color: var(--color-base-950);
    margin: 0 0 16px 0;
    flex-grow: 1; /* This makes the title area flexible */
    height: calc(1.4em * 6); /* Ensure consistent height */
    display: -webkit-box; /* line truncation */
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.posts-slider.swiper .swiper-slide .wp-block-post-title a {
    color: var(--color-brand-primary);
    border: 0 !important; /* solves conflict with .entry-content a links bottom border */
    text-decoration: none;
    display: block;
    display: -webkit-box; /* Apply truncation to the link as well */
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.posts-slider.swiper .swiper-slide .wp-block-post-title a:hover {
    color: var(--color-base-700);
}

@media (max-width: 768px) {
    .posts-slider.swiper .swiper-slide {
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
    }
}

@media (max-width: 440px) {
    .posts-slider.swiper .swiper-slide {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .posts-slider.swiper .swiper-slide .wp-block-post-title {
        /*font-size: 16px;*/
    }
}


/**************************************************************************************************
 *  #   10.  PLUGINS
 *************************************************************************************************/

/*************************************************************************
 *  ##  10.1 PLUGINS -> GRAVITY FORMS
 ************************************************************************/
/*** --- GF common styles --- ***/
.gform-theme--framework.gform-theme .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-search input[type=text]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework.gform-theme {
    --gf-ctrl-label-color-req: var(--color-accent-primary, red);
    --gf-ctrl-label-font-size-primary: var(--fs-body-sm);
    --gf-ctrl-label-font-size-req: var(--fs-body-sm);
    --gf-ctrl-label-font-weight-req: var(--font-weight-bold);
    --gf-ctrl-label-line-height-primary: 1;
    --gf-label-req-gap: 4px;
    --gf-local-border-width: 1px;
    --gf-local-border-style: solid;
    --gf-local-border-color: var(--color-base-300);
    --gf-local-border-radius: var(--border-radius-sm);
    --gf-local-padding: 12px;
    --gf-local-margin: 0;
    --gf-local-font-size: var(--fs-body-md);
    --gf-local-font-weight: var(--font-weight-normal);
    --gf-local-line-height: 1.5;
    --gf-local-text-color: var(--color-base-900);
    --gf-local-text-color-req: var(--color-accent-primary, red);
}

.gform_wrapper .gfield_checkbox li input,
.gform_wrapper .gfield_checkbox li input[type=checkbox],
.gform_wrapper .gfield_radio li input[type=radio] {
}

.gform_wrapper label {
}

body img.gform_ajax_spinner {
    display: block;
    border: 0 none;
    margin: 5px auto;
}

.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_footer input[type="submit"]:visited {
}

.gform_wrapper .gform_footer input[type="submit"]:hover {
}

.gforms_confirmation_message {
}

/*** --- Contact Form --- ***/
.form_contact .name_first,
.form_contact .name_last,
.form_contact .company {
    /*min-height: 45px;*/
}

.form_contact .name_first label,
.form_contact .name_last label,
.form_contact .ginput_container_email label {
    /*display: none !important;*/
    /*visibility: hidden;*/
}

.form_contact div.validation_error {
    /*background-color: #D60000;*/
    /*border-bottom: 2px solid #D60000;*/
    /*border-top: 2px solid #D60000;*/
    /*border-left: 4px solid #D60000;*/
    /*border-right: 4px solid #D60000;*/
    /*color: #FFFFFF;*/
    /*display: block;*/
    /*font-family: "Montserrat", arial, sans-serif;*/
    /*font-size: 100%;*/
    /*line-height: 1.2em;*/
    /*margin: 0 auto 1.5em;*/
    /*text-align: center;*/
}

.form_contact .gfield_error .validation_message {
    /*font-family: "Montserrat", arial, sans-serif;*/
    /*color: #D60000;*/
}

/*** --- Newsletter Subscription Form --- ***/
.gform_wrapper.form_newsletter_wrapper {
    --gf-local-line-height: 28px;
    --gf-form-gap-x: 12px;
    --gf-form-gap-y: 12px;
}

.gform_wrapper.form_newsletter_wrapper .gform_required_legend {
    display: none;
    visibility: hidden;
}

.gform_wrapper .form_newsletter .gform_footer input.button,
.gform_wrapper .form_newsletter .gform_footer input[type="submit"] {
}

.gform_wrapper .form_newsletter .gform_footer input[type="submit"],
.gform_wrapper .form_newsletter .gform_footer input[type="submit"]:visited {
}

.gform_wrapper .form_newsletter .gform_footer input[type="submit"]:hover {
}

.form_newsletter .gform_footer {
    padding: 0 !important;
}

.form_newsletter .gfield { /* Base Field Container Styling (gfield) */
    position: relative !important; /* needed for absolute children */
    margin-bottom: 8px !important;
    padding-top: 0 !important; /* Space for the floated label */
}

.form_newsletter .gfield .gfield_label { /* Initial Label Styling (The "fake placeholder" position) */
    position: absolute !important;
    top: calc(6px + 8px) !important; /* input padding-top + gfield padding-top */
    left: 12px !important; /* Input left padding */
    transform: translateY(-50%) !important;
    pointer-events: none !important; /* Allows clicks to pass through to the input */
    transition: all 0.3s ease-out !important;
    background-color: transparent !important;
    padding: 0 3px !important; /* Small padding for background when floated */
    z-index: 1 !important; /* Ensure label is above input initially */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: calc(100% - 24px) !important; /* Prevents spilling */
    font-size: var(--fs-body-xs) !important;
    line-height: var(--fs-body-xs) !important;
}

.form_newsletter .gfield input[type="text"],
.form_newsletter .gfield input[type="email"],
.form_newsletter .gfield select,
.form_newsletter .gfield textarea { /* Base Input/Textarea/Select Styling */
    width: 100% !important;
    padding: 7px 12px !important; /* Consistent with label positioning */
    font-size: var(--fs-body-xs) !important;
    height: 28px !important;
    line-height: var(--fs-body-xs) !important;
    background-color: var(--color-white) !important; /* Ensure white background */
    transition: all 0.3s ease !important;
}

.form_newsletter .gfield input[type="text"]:focus,
.form_newsletter .gfield input[type="email"]:focus,
.form_newsletter .gfield select:focus,
.form_newsletter .gfield textarea:focus { /* Focus State for Input/Textarea/Select */
    border-color: var(--color-brand-primary) !important;
    box-shadow: none !important;
}

.form_newsletter .gfield.has-value .gfield_label,
.form_newsletter .gfield.has-focus .gfield_label { /* 5. Floating Logic (triggered by .has-value or .has-focus class on .gfield) */
    /* Floated position */
    top: 0 !important; /* Moves to the top of the .gfield padding-top area */
    font-size: var(--fs-body-xs) !important; /* Smaller font size when floated */
    color: var(--color-brand-primary) !important; /* Highlight color when floated/focused */
    transform: translateY(-16px) translateX(-2px) !important; /* Adjust position slightly */
    background-color: var(--color-base-400) !important; /* White background to "cut out" the border */
    z-index: 2 !important; /* Ensure it's above the input border */
    max-width: calc(100% - 20px) !important; /* Adjust max-width for floated state if needed */
}

.form_newsletter .gfield.has-value .gfield_label .gfield_required,
.form_newsletter .gfield.has-focus .gfield_label .gfield_required {
    font-size: var(--fs-body-xs) !important;
}

/* Critical: Hide the actual placeholder text provided by Gravity Forms */
.form_newsletter .gfield input::placeholder {
    color: transparent !important;
}

.form_newsletter .gfield textarea::placeholder {
    color: transparent !important;
}

/* For the select dropdown's placeholder option */
.form_newsletter .ginput_container_select select .gf_placeholder {
    color: transparent !important;
}

/* Style the required asterisk */
.form_newsletter .gfield_required {
    color: #e44d26 !important;
}

.form_newsletter #field_2_7 { /* Hide honeypot field entirely */
    /*display: none !important;*/
}

.form_newsletter .gform_button {
}

.form_newsletter .gform_button:hover {
}

.form_newsletter .gform_confirmation_message {
}

.form_newsletter .validation_error,
.form_newsletter li.gfield.gfield_error .validation_message {
}

.gform_wrapper .form_newsletter li.gfield.gfield_error,
.gform_wrapper .form_newsletter li.gfield.gfield_error div.ginput_container {
}

.gform_wrapper.gform_validation_error .form_newsletter .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
}

.form_newsletter li.gfield_error input,
.form_newsletter li.gfield_error select {
}


/*************************************************************************
 *  ##  10.2 PLUGINS -> WPML
 ************************************************************************/
/*** --- WPML Language Switcher Block --- ***/
.site-header .main-navigation .wpml-language-switcher-block {
    margin: 0 0 0 16px;
}

.site-header .main-navigation .wpml-language-switcher-block * {
    font-size: 1em !important;
    line-height: 1em !important;
}

/* 4. Keep the consistent width for the language labels themselves */
.site-header .main-navigation .wpml-language-switcher-block .wp-block-navigation-item__label {
    display: inline-block; /* Necessary to set width properties */
    min-width: 3ch; /* Set a minimum width based on the '0' character of current font */
    text-align: center; /* Centers the text horizontally within the defined width */
}

.site-header .main-navigation .wpml-language-switcher-block > .wp-block-navigation-item {
    border: 3px solid var(--color-base-700);
    background-color: var(--color-base-800);
    border-radius: var(--border-radius-md);
    color: var(--color-white);
}

.site-header .main-navigation .wpml-language-switcher-block .wp-block-navigation-item .wp-block-navigation-submenu__toggle {
    display: flex; /* Layout children (icon space, text, arrow) in a row */
    align-items: center; /* Vertically align children */
    white-space: nowrap; /* Prevent content from wrapping */
    margin: 0;
    padding: 0.4em 0.8em;
}

.site-header .main-navigation .wpml-language-switcher-block .wp-block-navigation-item .wp-block-navigation-submenu__toggle .current-language-item {
    min-height: 1em;
}

.site-header .main-navigation .wpml-language-switcher-block .wp-block-navigation-item .wp-block-navigation-submenu__toggle[aria-expanded=false] ~ .wp-block-navigation__submenu-container {
}

.site-header .main-navigation .wpml-language-switcher-block .wp-block-navigation-item .wp-block-navigation-submenu__toggle[aria-expanded=true] ~ .wp-block-navigation__submenu-container {
}

.site-header .main-navigation .wpml-language-switcher-block .wp-block-navigation__submenu-icon {
    width: 0.8em;
    height: 0.8em;
    font-size: 0.8em;
}

.site-header .main-navigation .wpml-language-switcher-block .wp-block-navigation__submenu-container {
    border: 3px solid var(--color-base-700) !important;
    background-color: var(--color-base-900) !important;
    border-radius: var(--border-radius-md);
    color: var(--color-white);
    left: -3px !important;
    box-shadow: none !important;
    padding-left: 0.8em !important;
    padding-right: 0.8em !important;
    margin-top: 16px !important;
    pointer-events: all !important;
}

.site-header .main-navigation .wpml-language-switcher-block ul.wp-block-navigation__submenu-container .wp-block-navigation-item {
    margin-top: 0 !important;
}

/* 3. Style the content wrapper for OTHER language items (like "EN" in the submenu) */
.site-header .main-navigation .wpml-language-switcher-block .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    display: flex; /* Ensure consistent layout for all language items */
    align-items: center;
    white-space: nowrap;
    padding: 0.4em calc(0.8em + 0.25em) 0.4em 0;
}

/*************************************************************************
 *  ##  10.2 PLUGINS -> IUBENDA
 ************************************************************************/
.iubenda-tp-btn {
    /*display: none !important;*/
    /*visibility: hidden !important;*/
}

/* Privacy policy */
#iub-legalDoc {
    border-top: none !important;
    margin-bottom: 48px;
}

#iub-legalDoc .main-header h1 {
    display: none !important;
    visibility: hidden !important;
}

#iub-legalDoc footer {
    display: none !important;
    visibility: hidden !important;
}

/* iubenda badges */
#purposes-container .iub-iframe-brand-button,
#iubenda-iframe .iubenda-iframe-badge-container,
#iubenda-cs-banner.iubenda-cs-default.iubenda-cs-bottom .iubenda-cs-brand-badge-outer,
#iubenda-cs-banner .iubenda-cs-brand-badge-outer {
    display: none !important;
    visibility: hidden !important;
}

/**************************************************************************************************
 *  #   11.  LEGACY (CLASSIC EDITOR)
 *************************************************************************************************/
