/* CSS Document */
@charset "UTF-8";

:root {
    --white: #fff;
    --black: #000;
    --green: #198754;
    --lime: #bace42;
    --blue-sky: #87d5f2;
    --blue-sky-rgb: 135, 213, 242;
    --blue-gray: #dbdfec;
    --blue-light: #1ebbf1;
    --blue-medium: #0fa2d9;
    --blue-bright: #2fbbee;
    --blue: #184a9a;

    --ice-grey: #F1F5F8;
    --ice-grey-rgb: 241, 245, 248;

    --pink: #e27ecf;
    --purple-soft: #a24190;
    --purple-soft-rgb: 162, 65, 144;
    --purple-dark: #742077;
    --magenta: #bc1a76;

    --baby-blue: #dbf1f7;
    --violet: #dacce0;

    --turquoise: #1aaca7;
    --turquoise-muted: #61b6b5;
    --lavander: #7e76f4;
    --gray-steel: #7d9ab6;

    --olive: #8e8966;

    --red-brick: #990001;
    --red-coral: #f23350;
    --red-orange: #e6442e;

    --orange-light: #f29433;

    --yellow-warm: #f0be10;

    --gray-light: #f1f5f8;
    --gray-medium: #7a8795;
    --gray-dark: #3b4957;
    --gray-charcoal: #2b3a4a;

    --contatti: var(--lime);
    --rete-vendita: var(--turquoise);
    --opportunita: var(--blue-medium);
    --ordini: var(--purple-soft);
    --progetti: var(--orange-light);
    --interventi: var(--yellow-warm);
    --fatturazione: var(--red-orange);
    --prima-nota: var(--lavander);
    --acquisti: var(--olive);
    /*--prodotti: var(--blue-medium);*/ /* stesso valore hex */
    --prodotti: var(--blue-bright);
    --documenti: var(--red-brick);
    --attivita: var(--gray-steel);
    --campagne: var(--turquoise-muted);
    --booking: #1ebbf2;
    --calendario: #A36C93;

    --theme-color: var(--purple-soft);
    --theme-color-rgb: var(--purple-soft-rgb);
}

html {
    overflow-x: hidden !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    color: var(--gray-charcoal);
    font-size: 17px;
    background-color: var(--gray-light);
}

.site-wrap {
    max-width: 100%;
    width: 1920px;
    margin: 0 auto;
    background-color: var(--white);
}
/*per modale*/
html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.focus-0:focus,
.focus-0:active {
    outline: none !important;
    box-shadow: none !important;
}

::selection {
    color: var(--white);
    background-color: #a241908b;
}

img {
    border: none;
}

a {
    color: inherit;
}
a:not(.hvr-underline-reset) {
    text-decoration: none !important;
}

a:hover {
    color: inherit;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
.text-white .breadcrumb {
    --bs-breadcrumb-divider-color: #fff;
    --bs-breadcrumb-item-active-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-weight: inherit !important;
    font-size: inherit;
    margin-bottom: 0;
}

.p-mb p:not(:last-child),
.li-mb li {
    margin-bottom: 1rem;
}
.p-mb p:last-child {
    margin-bottom: 0;
}
.p-mb-0 p {
    margin-bottom: 0 !important;
}

.cursor-pointer {
    cursor: pointer;
}
.dropdown-header small,
.small,
.small p {
    font-size: 0.875em;
}

.x-small,
.x-small p {
    font-size: 0.775em;
}
.h-fst-italic :is(h1, h2, h3, h4, h5, h6) {
    font-style: italic !important;
}

.h-fw-lighter :is(h1, h2, h3, h4, h5, h6) {
    font-weight: lighter !important;
}

.h-fw-light :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 300 !important;
}

.h-fw-normal :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 400 !important;
}

.h-fw-medium :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 500 !important;
}

.h-fw-semibold :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 600 !important;
}

.h-fw-bold :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 700 !important;
}

.h-fw-bolder :is(h1, h2, h3, h4, h5, h6) {
    font-weight: bolder !important;
}
.h-uppercase :is(h1, h2, h3, h4, h5, h6) {
    text-transform: uppercase !important;
}
:is(.h-my-0, .h-mt-0) :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 0 !important;
}
:is(.h-my-0, .h-mb-0) :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 0 !important;
}
:is(.h-my-3, .h-mt-3) :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 1rem !important;
}
:is(.h-my-3, .h-mb-3) :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 1rem !important;
}
:is(.h-my-4, .h-mt-4) :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 1.5rem !important;
}
:is(.h-my-4, .h-mb-4) :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 1.5rem !important;
}
:is(.h-my-5, .h-mt-5) :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 3rem !important;
}
:is(.h-my-5, .h-mb-5) :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 3rem !important;
}
.h-display-1 :is(h1, h2, h3) {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2;
}
.h-display-2 :is(h1, h2, h3) {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2;
}
.h-display-3 :is(h1, h2, h3) {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2;
}
.h-display-4 :is(h1, h2, h3) {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2;
}
.h-display-5 :is(h1, h2, h3) {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2;
}
.h-display-6 :is(h1, h2, h3) {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2;
}
.h-fs-1 :is(h1, h2, h3),
.text-fs-1 :is(p, li) {
    font-size: calc(1.375rem + 1.5vw) !important;
}

.h-fs-2 :is(h1, h2, h3),
.text-fs-2 :is(p, li),
.big-fs-2 big {
    font-size: calc(1.325rem + 0.9vw) !important;
}

.h-fs-3 :is(h1, h2, h3),
.text-fs-3 :is(p, li) {
    font-size: calc(1.3rem + 0.6vw) !important;
}

.h-fs-4 :is(h1, h2, h3),
.text-fs-4 :is(p, li) {
    font-size: calc(1.275rem + 0.3vw) !important;
}

.h-fs-5 :is(h1, h2, h3),
.text-fs-5 :is(p, li) {
    font-size: 1.25rem !important;
}

.h-fs-6 :is(h1, h2, h3),
.text-fs-6 :is(p, li) {
    font-size: 1rem !important;
}
@media (min-width: 1200px) {
    .h-display-1 :is(h1, h2, h3) {
        font-size: 5rem;
    }
    .h-display-2 :is(h1, h2, h3) {
        font-size: 4.5rem;
    }
    .h-display-3 :is(h1, h2, h3) {
        font-size: 4rem;
    }
    .h-display-4 :is(h1, h2, h3) {
        font-size: 3.5rem;
    }
    .h-display-5 :is(h1, h2, h3) {
        font-size: 3rem;
    }
    .h-display-6 :is(h1, h2, h3) {
        font-size: 2.5rem;
    }
    .h-fs-1 :is(h1, h2, h3),
    .text-fs-1 :is(p, li) {
        font-size: 2.5rem !important;
    }
    .h-fs-2 :is(h1, h2, h3),
    .text-fs-2 :is(p, li),
    .big-fs-2 big {
        font-size: 2rem !important;
    }
    .h-fs-3 :is(h1, h2, h3),
    .text-fs-3 :is(p, li) {
        font-size: 1.75rem !important;
    }
    .h-fs-4 :is(h1, h2, h3),
    .text-fs-4 :is(p, li) {
        font-size: 1.5rem !important;
    }
}

.after-none::after {
    display: none !important;
}

.aspect-ratio-1 {
    aspect-ratio: 1 !important;
}

.ratio-10x11 {
    --bs-aspect-ratio: calc(1.1 * 100%);
}
.ratio-3x2 {
    --bs-aspect-ratio: calc(2 / 3 * 100%);
}

.w-33 {
    width: 33.333% !important;
}

.h-33 {
    height: 33.333% !important;
}

.shadow-theme {
    /*box-shadow: 0 0 6px var(--theme-color);*/
}

.shadow-angle {
    /*box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);*/
}

.bg-opacity-90 {
    --bs-bg-opacity: 0.9;
}

.p-2-half {
    padding: 0.75rem;
}

.pb-2-half {
    padding-bottom: 0.75rem;
}

.ps-2-half {
    padding-left: 0.75rem;
}

/* BUTTONS */
.btn {
    position: relative;
    padding: 0.5rem 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}
.btn-arrow {
    border: 0 !important;
    background-color: transparent !important;
    padding-left: 0;
}
.btn-arrow:before {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translate(3px, -50%);
}
.hvr-card:hover .btn-arrow:after,
.btn-arrow:hover:after {
    transform: translate(6px, -50%);
}

.btn-solid-lin-purple {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--purple-soft) !important;
    color: var(--white) !important;
    /* background: linear-gradient(120deg, var(--purple-dark), var(--magenta)); */
    background: linear-gradient(150deg, var(--purple-dark), var(--magenta) 40%);
    background-size: 200% 200%;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.btn-solid-lin-purple::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.2)
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 2;
}
.btn-solid-lin-purple:hover {
    background-position: 100% 0;
    box-shadow: 0 4px 20px rgba(152, 71, 255, 0.4);
    transform: translateY(-2px);
}
.btn-solid-lin-purple:hover::before {
    transform: translateX(100%);
}

.btn-solid-theme {
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
    color: var(--white);
}
.btn-solid-theme[style="--theme-color: var(--white);"] {
    color: var(--gray-charcoal);
}
.btn-solid-theme::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.5)
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
    pointer-events: none;
}
.btn-solid-theme:hover {
    /* background-color: transparent;
  color: var(--theme-color); */
    background-color: var(--theme-color);
    color: var(--white);
    border: 1px solid var(--theme-color);
    box-shadow: 0 4px 20px
        color-mix(in srgb, var(--theme-color) 30%, transparent);
    transform: translateY(-2px);
}
.btn-solid-theme[style="--theme-color: var(--white);"]:hover {
    background-color: var(--white);
    color: var(--gray-charcoal);
}
.btn-solid-theme:hover::before {
    transform: translateX(100%);
}
.btn-solid-theme:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px
        color-mix(in srgb, var(--theme-color) 20%, transparent);
}
.btn-solid-theme:focus,
.btn-solid-theme:focus-visible,
.btn-solid-theme:focus-within {
    outline: 2px solid var(--theme-color);
    outline-offset: 2px;
}
/* Base Comune */
.btn-outline-lin-purple,
/* .btn-outline-white, */
.btn-outline-theme {
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}
.btn-outline-lin-purple::before,
/* .btn-outline-white::before, */
.btn-outline-theme::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 110%;
    z-index: -1;
    transition: all 0.45s ease;
    transform: skewX(-15deg);
}
/* LIN-PURPLE VERSION */
.btn-outline-lin-purple {
    border: 1px solid var(--purple-soft);
    color: var(--purple-soft);
}
.btn-outline-lin-purple::before {
    background: linear-gradient(120deg, var(--purple-dark), var(--magenta));
}
.btn-outline-lin-purple:hover,
.btn-outline-lin-purple:focus,
.btn-outline-lin-purple:focus-visible,
.btn-outline-lin-purple:focus-within {
    color: var(--white);
    border: 1px solid var(--purple-soft);
    box-shadow:
        0 0 8px rgba(173, 108, 255, 0.4),
        0 0 16px rgba(255, 90, 190, 0.3),
        0 0 24px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.btn-outline-lin-purple:hover::before,
.btn-outline-lin-purple:focus::before,
.btn-outline-lin-purple:focus-visible::before,
.btn-outline-lin-purple:focus-within::before {
    left: 0;
    transform: skewX(0);
}
/* THEME VERSION */
.btn-outline-theme {
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}
.btn-outline-theme::before {
    background: var(--theme-color);
}
.btn-outline-theme:hover,
.btn-outline-theme:focus,
.btn-outline-theme:focus-visible,
.btn-outline-theme:focus-within {
    border: 1px solid var(--theme-color);
    box-shadow: 0 0 12px color-mix(in srgb, var(--theme-color) 40%, transparent);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-theme[style="--theme-color: var(--white);"]:hover,
.btn-outline-theme[style="--theme-color: var(--white);"]:focus,
.btn-outline-theme[style="--theme-color: var(--white);"]:focus-visible,
.btn-outline-theme[style="--theme-color: var(--white);"]:focus-within {
    color: var(--gray-charcoal);
}
.btn-outline-theme:hover::before,
.btn-outline-theme:focus::before,
.btn-outline-theme:focus-visible::before,
.btn-outline-theme:focus-within::before {
    left: 0;
    transform: skewX(0);
}
.btn-outline-white:active,
.btn-outline-theme:active {
    transform: translateY(0);
    box-shadow: none;
}

#goToHeaderBtn {
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 20px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#goToHeaderBtn.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* END BUTTONS */
/*  */
/*  */
/*  */
/* BOXES */
.box-purple-magenta {
    background: linear-gradient(120deg, var(--magenta), var(--purple-dark));
    border: 1px solid var(--purple-soft);
}
.box-solid-theme {
    background-color: var(--theme-color) !important;
    border: 1px solid color-mix(in srgb, var(--theme-color) 50%, #fff 40%);
}
/* END BOXES */
/*  */
/*  */
/*  */
/* BACKGROUNDS */
.bg-theme {
    background-color: var(--theme-color) !important;
}
.bg-lin-violet {
    background: linear-gradient(
        136deg,
        var(--baby-blue),
        var(--violet)
    ) !important;
}
.bg-lin-light {
    background: linear-gradient(to bottom, var(--bs-light), white);
}
.bg-baby-blue {
    background-color: var(--baby-blue) !important;
}
/* END BACKGROUNDS */
/*  */
/*  */
/*  */
/* BORDERS */
.border-theme {
    --bs-border-opacity: 1;
    border-color: rgba(var(--theme-color-rgb), var(--bs-border-opacity)) !important;
}
.border-blue-sky {
    --bs-border-opacity: 1;
    border-color: rgba(var(--blue-sky-rgb), var(--bs-border-opacity)) !important;
}
.border-lin-purple {
    border: 5px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(to bottom, var(--magenta), var(--purple-dark))
            border-box;
}
.border-transparent {
    border-color: transparent !important;
}
.border-dashed {
    border-style: dashed !important;
}
.border-ice-grey {
    --bs-border-opacity: 1;
    border-color: rgba(var(--ice-grey-rgb), var(--bs-border-opacity)) !important;
}
/* END BORDERS */
/*  */
/*  */
/*  */
/* COLORS */
.text-ice-grey {
    --bs-text-opacity: 1;
    color: rgba(var(--ice-grey-rgb), var(--bs-text-opacity)) !important;
}
.bg-ice-grey {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--ice-grey-rgb), var(--bs-bg-opacity)) !important;
}
.text-blue-sky {
    color: var(--blue-sky) !important;
}
.text-purple-soft,
span[style*="color:#ee82ee;"],
span[style*="color: #ee82ee;"] {
    color: var(--purple-soft) !important;
}
span[style*="color:#00ff00;"],
span[style*="color: #00ff00;"] {
    color: var(--green) !important;
}
span[style*="color:#ff0000;"],
span[style*="color: #ff0000;"] {
    color: var(--red-orange) !important;
}
.text-gray-charcoal {
    color: var(--gray-charcoal);
}
.text-theme,
.text-theme-span span {
    color: var(--theme-color) !important;
}
/*pagination*/
.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--purple-soft);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--purple-soft);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: var(--magenta);
    --bs-pagination-hover-border-color: var(--purple-soft);
    --bs-pagination-focus-color: var(--purple-soft);
    --bs-pagination-focus-bg: var(--violet);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(162, 65, 144, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--purple-soft);
    --bs-pagination-active-border-color: var(--purple-soft);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--purple-soft);
    display: flex;
    padding-left: 0;
    list-style: none;
}
/* END COLORS */
/*  */
/*  */
/*  */
/* LISTE */
.list-custom ul,
.list-custom ol {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.list-circle-purple ol {
    counter-reset: circle-purple;
}
.list-circle-purple ol li {
    counter-increment: circle-purple;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.5rem;
}
.list-circle-purple ol li::before {
    content: counter(circle-purple);
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--bs-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-soft);
}
.list-check-theme-circle ul li,
.list-arrow-circle-lin-purple ul li,
.list-arrow-circle-theme ul li {
    position: relative;
    padding-left: 30px;
    /* margin-bottom: 0.5rem; */
    margin-bottom: 1rem;
}
.list-check-theme-circle ul li::before,
.list-arrow-circle-lin-purple ul li::before,
.list-arrow-circle-theme ul li::before {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-size: 8px;
    font-weight: 500;
    position: absolute;
    top: 2px;
    left: 0;
    /* width: 18px;
  height: 18px; */
    width: 22px;
    height: 22px;
    background: linear-gradient(120deg, var(--magenta), var(--purple-dark));
    border: 1px solid var(--purple-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.list-arrow-circle-theme ul li::before {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
}
.list-check-theme-circle ul li::before {
    content: "\f00c";
    background: var(--bs-gray-100);
    border: none;
    color: var(--theme-color);
    font-size: 0.75rem;
    font-weight: 900;
}
.bg-white .list-check-theme-circle ul li::before {
    background: var(--bs-gray-300);
}
.list-check-theme ul li {
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}
.list-check-theme ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--theme-color);
    margin-right: 0.5rem;
    position: absolute;
    top: 3px;
    left: 0;
}
.list-table ul li {
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--bs-light);
}
.list-table > ul > li:last-child {
    border-bottom: 0;
}
.list-custom.focus-item-1 ul > li:first-child {
    color: var(--theme-color);
    font-weight: bold;
}
/* END LISTE */
/*  */
/*  */
/*  */
/* HOVERS */
.hvr-card .bg-custom {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.75), #00000000);
}
.hvr-right .right-target,
.hvr-shadow .shadow-target,
.hvr-zoom .zoom-target,
.hvr-up,
.hvr-bg-gray,
.hvr-show-link .link,
.hvr-underline {
    transition: all 0.3s ease-in-out;
}
.hvr-bg-gray:hover {
    background-color: var(--bs-gray-200) !important;
}
.hvr-underline:hover {
    text-decoration: underline !important;
}
.hvr-right:hover .right-target {
    transform: translateX(3px);
}
.hvr-line-bottom::before,
.hvr-line-bottom::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--theme-color);
    transition: all 0.5s;
}
.hvr-line-bottom::before {
    bottom: 0;
    left: 50%;
    transform-origin: left;
}
.hvr-line-bottom::after {
    bottom: 0;
    right: 50%;
    transform-origin: right;
}
.hvr-line-bottom:hover::before,
.hvr-line-bottom:hover::after {
    width: 40%;
    transition: width 0.25s ease-in-out;
}
/* .hvr-show-link .link {
  opacity: 0;
  transform: translateY(30px);
}
.hvr-show-link:hover .link {
  opacity: 1;
  transform: translateY(0);
} */
/* stile con mouse o trackpad */
@media (pointer: fine) {
    .hvr-card .bg-custom {
        padding-bottom: 74px !important;
        transform: translateY(50px);
        transition: all 0.3s ease-in-out;
    }
    .hvr-card:hover .bg-custom {
        transform: translateY(0);
    }
    .hvr-zoom:hover .zoom-target {
        transform: scale(var(--zoom, 1.08));
    }
    /* .hvr-shadow.shadow-target:hover , */
    .hvr-shadow:hover .shadow-target {
        /*box-shadow: 3px 3px 6px #0000004d;*/
    }
    .hvr-up:hover {
        transform: translateY(-5px);
    }
}
/* stile per touchscreen */
@media (pointer: coarse) {
}
/* END HOVERS */
/*  */
/*  */
/*  */
/* HEADER */
.bar-menu {
    display: block;
    height: 3px;
    width: 28px;
    background-color: var(--purple-dark);
    margin: 4px 0 4px auto;
    border-radius: 12px;
}
.bar-menu:nth-of-type(2) {
    width: 87.5%;
    background-color: var(--purple-soft);
}
.bar-menu:last-of-type {
    background-color: var(--magenta);
    width: 75%;
}
.icon-lin-purple {
    background: linear-gradient(to bottom, var(--purple-dark), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.scrollbar-custom {
    overflow-y: auto;
}
.scrollbar-custom::-webkit-scrollbar {
    width: 6px;
    background: transparent;
}
.scrollbar-custom::-webkit-scrollbar-track {
    background: #f3f5f6;
    border-radius: 10px;
}
.scrollbar-custom::-webkit-scrollbar-thumb {
    background: #ccd2d6;
    border-radius: 10px;
}
.scrollbar-custom::-webkit-scrollbar-thumb:hover {
    background: #bfc5c9;
}
.scrollbar-custom::-webkit-scrollbar-button {
    display: none;
}
.scrollbar-custom {
    scrollbar-width: thin;
    scrollbar-color: #ccd2d6 #f3f5f6;
}
header .dropdown-item.active,
header .dropdown-item:active {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg);
}
/* END HEADER */
/*  */
/*  */
/*  */
/* FORM */
form label {
    font-size: 14px;
    color: var(--bs-secondary-color) !important;
}
.form-control,
.form-select,
.choices {
    background-color: var(--bs-light) !important;
    font-size: 14px;
    padding: 1rem 1.5rem;
    color: var(--bs-secondary-color) !important;
}
.form-control:focus,
.form-select:focus,
.choices:focus {
    background-color: transparent;
    box-shadow: none;
}
.form-check-input {
    cursor: pointer;
}
.form-check-label a {
    text-decoration: underline !important;
}
.form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.form-select:focus,
.choices:focus,
.form-check-input:focus,
.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--theme-color) 50%, transparent);
}
.form-search-article .form-control {
    background-color: white !important;
    border-right: 0;
    border-bottom-left-radius: 0.5rem !important;
    border-top-left-radius: 0.5rem !important;
}
.form-search-article .form-control:focus {
    border-color: var(--baby-blue);
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--baby-blue) 75%, transparent);
}
.form-search-article #cerca {
    background-color: white;
    border: 1px solid var(--bs-border-color);
    border-left: 0;
    border-bottom-right-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}
.form-search-article .input-group-text {
    background: none;
    border: none;
}
/* END FORM */
/*  */
/*  */
/*  */
/* SWIPER */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gray-charcoal);
    height: 1.5rem;
    width: auto;
    top: auto;
    bottom: 0;
    transform: translateY(-50%);
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: white;
    border: 2px solid transparent;
    border-radius: 50%;
    background-image:
        linear-gradient(white, white),
        linear-gradient(110deg, var(--magenta), var(--purple-dark));
    background-origin: border-box;
    background-clip: content-box, border-box;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    border: 0;
    background-image: linear-gradient(
        110deg,
        var(--magenta),
        var(--purple-dark)
    );
}
/* Scope: SOLO dentro lo slider .swiperArea */
.swiperSettori .swiper-pagination-bullet,
.swiperArea .swiper-pagination-bullet{
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--violet); /* inattiva */
  opacity: 1;
  border: 0;
}

.swiperSettori .swiper-pagination-bullet-active,
.swiperArea .swiper-pagination-bullet-active {
  background: linear-gradient(
    110deg,
    var(--magenta),
    var(--purple-dark)
  );
}

/* Fade “forzato” lato CSS: tutte trasparenti tranne l’attiva */
.swiperSettori .swiper-slide {
  opacity: 0 !important;
}

/* attiva (e nel loop anche le duplicate attive) */
.swiperSettori .swiper-slide-visible.swiper-slide-active{
  opacity: 1 !important;
}

/* opzionale: evita click su slide invisibili */
.swiperSettori .swiper-slide {
  pointer-events: none;
}
.swiperSettori .swiper-slide-active,
.swiperSettori .swiper-slide-duplicate-active {
  pointer-events: auto;
}

.swiperMarchi-button {
    color: var(--gray-charcoal) !important;
    height: 0.5rem !important;
    width: auto !important;
    top: 69% !important;
    bottom: auto !important;
    transform: translateY(-50%);
}
.swiperFasiTour .swiper-slide.is-current > div > div:first-child {
    background-color: rgba(255, 255, 255, 75%);
    border-color: var(--theme-color) !important;
    color: var(--gray-charcoal) !important;
}
.swiperFasiTour .swiper-slide.is-current > div > div:first-child .number {
    background-color: rgba(var(--bs-secondary-rgb), 10%) !important;
    color: var(--theme-color) !important;
}
.swiperMarchi .swiper-slide .wrap-img,
.swiperMarchi .swiper-slide .wrap-img img{
  filter: grayscale(100%) contrast(0.95) brightness(1.05);
}
.swiperMarchi .swiper-slide .wrap-img {
    transform: scale(.8);
}
/* END SWIPER */
/*  */
/*  */
/* Sezione Strumenti */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.box-float-0,
.box-float-1,
.box-float-2 {
    animation: float 2s ease-in-out infinite;
}
.box-float-1 {
    animation-delay: 0.25s;
}
.box-float-2 {
    animation-delay: 0.5s;
}
.box-strumenti .shadow-target,
.shadow-theme-angle {
    /*box-shadow: 3px 3px 6px var(--theme-color);*/
}
.box-strumenti.focus .shadow-target,
.hvr-shadow:hover .shadow-theme-angle.shadow-target {
    /*box-shadow: 6px 6px 12px var(--theme-color);*/
}
.box-strumenti.focus .zoom-target {
    transform: scale(1.08);
}
.box-strumenti .didascalia {
    width: calc(100% + 2rem);
    opacity: 0;
    transform: translate(-50%, 100%) scale(0);
    transition: all 0.5s ease-out;
    transform-origin: bottom;
}
.box-strumenti.focus .didascalia {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}
@media (pointer: fine) {
    .box-strumenti:hover .didascalia {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
    .box-strumenti:hover .zoom-target {
        /*box-shadow: 6px 6px 12px var(--theme-color);*/
    }
    .shine {
        position: relative;
        overflow: hidden;
        border: none !important;
    }
    .shine:before {
        content: "";
        width: 500%;
        height: 500%;
        background-image: linear-gradient(
            150deg,
            transparent,
            white,
            transparent
        );
        position: absolute;
        transform: translate(-80%, -80%);
        top: 0;
        left: 0;
        z-index: 5;
    }
    .shine.animate:before {
        animation: shine 2s forwards 0.5s;
    }
    @keyframes shine {
        0% {
            transform: translate(-80%, -80%);
        }
        100% {
            transform: translate(0%, 0%);
        }
    }
}
@keyframes cloudFloatBig {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(25px) translateY(-10px) scale(1.03);
        opacity: 0.97;
    }
    45% {
        transform: translateX(-35px) translateY(15px) scale(0.98);
        opacity: 0.93;
    }
    70% {
        transform: translateX(30px) translateY(-20px) scale(1.04);
        opacity: 0.95;
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
}
@keyframes cloudFloatMedium {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(15px) translateY(-20px) scale(1.02);
        opacity: 0.96;
    }
    50% {
        transform: translateX(-25px) translateY(10px) scale(1);
        opacity: 0.94;
    }
    75% {
        transform: translateX(10px) translateY(-15px) scale(1.01);
        opacity: 0.98;
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
}
@keyframes cloudFloatSmall {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateX(10px) translateY(-12px) scale(1.03);
        opacity: 0.95;
    }
    55% {
        transform: translateX(-15px) translateY(8px) scale(0.99);
        opacity: 0.93;
    }
    80% {
        transform: translateX(12px) translateY(-10px) scale(1.02);
        opacity: 0.96;
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
}
.cloud-big {
    animation: cloudFloatBig 22s ease-in-out infinite;
    animation-delay: 0s;
}
.cloud-medium {
    animation: cloudFloatMedium 17s ease-in-out infinite;
    animation-delay: 2s;
}
.cloud-small {
    animation: cloudFloatSmall 13s ease-in-out infinite;
    animation-delay: 4s;
}
.cloud-big:nth-child(odd),
.cloud-medium:nth-child(odd),
.cloud-small:nth-child(odd) {
    animation-direction: alternate-reverse;
    animation-delay: calc(var(--i, 1) * 1.5s);
}

/* TODO */
.cloud-img {
    mask-image: url("../img/img-testata.png");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("../img/img-testata.png");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
.cloud-border {
    position: relative;
    display: inline-block;
}
.cloud-border::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 1;
    -webkit-mask-image: url("../img/img-testata.png");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("../img/img-testata.png");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transform: scale(1.025);
}
.cloud-img {
    position: relative;
    z-index: 2;
    -webkit-mask-image: url("../img/img-testata.png");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("../img/img-testata.png");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.wrap-img {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.wrap-img img,
.wrap-img picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.path-nuvola-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-clip-path: url("#nuvola1");
    clip-path: url("#nuvola1");
}
.nuvola-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: scale(1.01);
}
.nuvola-border path {
    fill: none;
    stroke: var(--gray-light);
    stroke-width: 15;
    vector-effect: non-scaling-stroke;
    stroke-linejoin: round;
    stroke-linecap: round;
}
/* TODO */
/*  */
/*  */
.box-modulo {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
}
.box-modulo-testata {
    border: 1px solid transparent;
}
.box-modulo-testata,
.box-modulo-testata > div {
    transition: all 0.3s ease-in-out;
}
.box-modulo-testata.active {
    font-weight: bold;
}
.box-modulo-testata.active,
.box-modulo-testata:hover {
    --theme-color: var(--purple-soft);
    /* background-image: radial-gradient(
    color-mix(in srgb, var(--theme-color), white 75%) 0%,
    transparent 80%); */
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--theme-color);
    font-weight: bold;
}
.box-modulo-testata.active > div,
.box-modulo-testata:hover > div {
    color: var(--theme-color);
}
.img-testata {
    transform: translate(4rem, 0);
}
.bg-shadow-custom {
    background-image: linear-gradient(to top, var(--white), var(--bs-light));
}

.animatedCircle circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
    stroke-dasharray: var(--len);
    stroke-dashoffset: var(--len);
}
.animatedCircle.draw circle {
    animation: drawCircle 1.2s ease forwards;
    animation-delay: var(--delay, 0.4s);
}
@keyframes drawCircle {
    from {
        stroke-dashoffset: var(--len);
    }
    to {
        stroke-dashoffset: 0;
    }
}
#accordionPrezzi .accordion-button::after {
    display: flex;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
    margin-top: 2.5rem;
    margin-right: auto;
}
#accordionPrezzi .accordion-button:not(.collapsed) {
    box-shadow: none;
}
#accordionPrezzi .accordion-button:not(.collapsed)::after {
    transform: translateX(-50%) rotate(180deg);
}
.startup-circle {
    left: -88px;
    bottom: -100px;
    width: 340px;
}
.filters-group > .active,
.filters-group > .btn:hover {
    background-color: var(--bs-gray-200) !important;
    border-radius: 0.5rem !important;
}
.filters-group > .active .count {
    background: linear-gradient(130deg, var(--magenta), var(--purple-dark));
    color: white;
}
.filters-group button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.filters-group button.is-disabled .count {
  opacity: 1; /* lascia leggibile il numero */
}
.barra {
    height: 6px;
}
.icon-lin-purple {
    background: linear-gradient(to bottom, var(--magenta), var(--purple-dark));
}
.text-responsive {
    white-space: nowrap;
    color: white;
    -webkit-text-stroke: 1px var(--theme-color);
    font-weight: bold;
}
.drop {
    width: 80px;
    transform: translateY(-0.5rem);
}
.accordion-button,
.accordion-button:not(.collapsed) {
    color: var(--gray-charcoal);
}
#macroFaqGroup .border {
    --bs-border-color: var(--gray-light);
}
#macroFaqGroup .accordion-button {
    --bs-accordion-active-bg: var(--gray-light);
    --bs-accordion-border-color: var(--gray-light);
}
.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}
#accordionCategoriaFaq .accordion-button:not(.collapsed) {
    background-color: var(--bs-gray-200) !important;
}
.pulse {
    width: 15px;
    height: 15px;
    background-color: #28a745;
    border-radius: 50%;
    animation: pulse-animation 2s ease-in-out infinite;
    position: relative;
    top: -1px;
}
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.categorie-faq {
    font-weight: 400;
    transition: background-color 0.25s ease;
}
.categorie-faq.active {
    background-color: white;
    font-weight: 600;
}
.categorie-upgrade .active {
    background: linear-gradient(to right, var(--baby-blue), var(--violet));
    font-weight: 600;
}

.follow-link {
    position: relative;
}
.dropdown-trigger {
    width: 20px;
    height: 20px;
    cursor: pointer;
    /* eventuale stile tipo freccia */
}

.table-sfide table {
    table-layout: fixed;
    width: 100%;
    --bs-border-width: 2px;
}
.table-sfide table > :not(caption) > * {
    border-width: var(--bs-border-width) 0;
}
.table-sfide table > :not(caption) > * > * {
    border-width: 0 var(--bs-border-width);
}
.table-sfide table tr td {
    width: 50%;
    padding: 1rem;
    vertical-align: top;
}
.table-sfide table tr td span {
    display: block !important;
}
/* PRIMA colonna - span */
.table-sfide table tr td:first-child span {
    color: var(--bs-danger);
    font-size: 0.875em;
}

/* DOPO colonna - span */
.table-sfide table tr td:last-child span {
    color: var(--bs-success);
    font-size: 0.875em;
}

/* DOPO colonna - testo (span escluso) */
.table-sfide table tr td:last-child {
    font-weight: 600 !important;
    background: #f8fff5;
}

/* Evita che il font-weight del td sovrascriva il peso dello span */
.table-sfide table tr td:last-child span {
    font-weight: 400;
}

.table-casi table {
    table-layout: fixed;
    width: 100%;
    --bs-border-width: 2px;
    --bs-table-border-color: var(--gray-light);
}
.table-casi table > :not(caption) > * {
    border-width: var(--bs-border-width) 0;
}
.table-casi table > :not(caption) > * > * {
    border-width: 0 var(--bs-border-width);
}
.table-casi table tr td {
    padding: 1rem;
    vertical-align: top;
    line-height: 1.3;
}
.table-casi table tr td:first-child {
    background-color: var(--gray-light);
    font-weight: 600 !important;
    font-size: 18px;
    vertical-align: middle;
    position: relative;
    padding-left: 3.5rem; /* spazio per l’icona */
}
.table-casi table tr td:first-child::before {
    content: "";
    position: absolute;
    left: 1.31rem;
    top: 49%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
}
.table-casi table tr td:first-child::after {
    content: "\f00c"; /* fa-check */
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--purple-soft);
    font-size: 0.75rem; /* equivalente a x-small */
}
.table-casi table tr:not(:last-child) td:first-child {
    --bs-table-border-color: #fff;
    border-bottom: var(--bs-border-width) solid var(--bs-table-border-color);
}
.table-casi table tr td span {
    display: block !important;
}
/* PRIMA colonna - span */
.table-casi table tr td span {
    color: var(--bs-danger);
    font-size: 0.875em;
    margin-bottom: -15px;
}

/* DOPO colonna - span */
.table-casi table tr td:last-child span {
    color: var(--green);
    font-size: 0.875em;
}

/* DOPO colonna - testo (span escluso) */
.table-casi table tr td:last-child {
    font-weight: 600 !important;
    background: color-mix(in srgb, var(--green) 10%, transparent);
}

/* Evita che il font-weight del td sovrascriva il peso dello span */
.table-casi table tr td span {
    font-weight: 400;
}

.side-arrow {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 50vh; /* metà viewport */
    transform: translateY(-50%);
    width: 51px;
    height: 51px;
    margin-left: -4rem;
}
.side-arrow-2 {
    margin-left: auto !important;
    margin-top: -51px !important;
    margin-right: -4rem;
}
.side-arrow {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--purple-soft) !important;
    color: var(--white) !important;
    /* background: linear-gradient(120deg, var(--purple-dark), var(--magenta)); */
    background: linear-gradient(150deg, var(--purple-dark), var(--magenta) 40%);
    background-size: 200% 200%;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.side-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.2)
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 2;
}
.side-arrow:hover {
    background-position: 100% 0;
    box-shadow: 0 4px 20px rgba(152, 71, 255, 0.4);
}

.custom-popover {
    --bs-popover-max-width: 200px;
    --bs-popover-border-color: var(--purple-soft);
    --bs-popover-header-bg: var(--purple-soft);
    --bs-popover-header-color: var(--bs-white);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: 0.5rem;
}

/* 20/01/2026 Elena */

.form-demo .choices__inner,
.form-demo .choices {
    background-color: var(--bs-light) !important;
    padding: 0;
    height: 100%;
}

.form-demo .choices__list--single {
    padding: 1rem 1.5rem !important;
    font-size: 14px;
}

.form-demo .choices__list--single,
.form-demo .choices__inner {
    height: 100%;
}

.form-demo .choices__inner {
    padding: 0 !important;
}
.form-demo .choices__item {
    height: 100%;
    display: flex;
    align-items: center;
}
.js-hide-when-stuck{
  overflow: hidden;
  transition: opacity .28s ease, transform .28s ease, height .28s ease;
  will-change: opacity, transform, height;
}
.js-sticky-pricing.is-stuck .js-hide-when-stuck{
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}