@charset "utf-8";

/* +++++++++++++++++++++++++
ON OFF CSS
+++++++++++++++++++++++++ */

.wpcf7-response-output {
    color: white;
}

/* lenis */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* SCELTA DEL FONT USATO */

/* paragrafo regular */
@font-face {
    font-family: 'testo1';
    src: url('fonts/Roboto-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

/* paragrafo medium */
@font-face {
    font-family: 'testo2';
    src: url('fonts/Roboto-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

/* paragrafo extra bold */
@font-face {
    font-family: 'testo3';
    src: url('fonts/Roboto-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}

/* titolo regular */
@font-face {
    font-family: 'titolo1';
    src: url('fonts/BebasNeue-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}


html {
    background-color: #f2f2f2;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

@media screen and (max-width:990px) {
    html {
        overflow-x: hidden;
    }
}

/* impostazioni standard
@audit settings standard 
 */

* {
    box-sizing: border-box;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: gray;
    font-family: testo1;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    -ms-font-smoothing: antialiased !important;
    text-rendering: optimizelegibility !important;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    background-color: black;
    font-size: clamp(15px, 1vw, 18px);
}

body :is(h1, h2, h3, h4, span, a, strong) {
    color: white;
}

.main_container {
    -webkit-transition: background-color 0.65s ease;
    transition: background-color 0.65s ease;
    /* animation: main_container 1.2s; */
}

.label_sezione {
    font-size: 1.75em;
    font-family: titolo1;
}

.label_sezione::before {
    content: "[ ";
}

.label_sezione::after {
    content: " ]";
}

.container {}

@keyframes main_container {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.show--mobile {
    display: none;
}

@media(max-width:600px) {
    .show--desktop {
        display: none;
    }

    .show--mobile {
        display: block;
    }
}

img {
    display: block;
}

.body-fixed {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: normal;
}

body p bold {
    font-weight: 700;
}

.mt-nav {
    height: 76px;
}

.mt-nav--categoria {
    margin-top: calc(70px + 15vh);
}

p a {
    text-decoration: underline;
}

/* gsap anim */

.timeline_stagger_anim,
.opacity0 {
    opacity: 0;
}

h1,
h2,
h3,
h4 {
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 97%;
    letter-spacing: -1px;
    font-family: titolo1;
}

h1,
h2,
h3 {
    margin-bottom: 30px;
}

.uppercase {
    text-transform: uppercase;
}

h1,
.titolo1 {
    font-size: clamp(48px, 6em, 96px);
    font-family: titolo1;
    line-height: 100%;
}

h2,
.titolo2 {
    font-size: 3.5em;
    font-family: titolo1;
    line-height: 95%;
}

h3,
.titolo3 {
    font-size: 2.7em;
    font-family: titolo1;
    line-height: 97%;
}

h4,
.titolo4 {
    font-size: 2em;
    font-family: titolo1;
    line-height: 101%;
}

.no-mb {
    margin-bottom: 0;
}

a {
    text-decoration: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: inherit;
    color: inherit;
}

p {
    font-family: testo1;
    margin: 0;
    margin-bottom: 15px;
    line-height: 120%;
    font-size: 1em;
}

p strong {
    font-family: testo3;
}

p a {
    text-decoration: underline;
}

p,
li {
    color: #aaa;
}


.container-100 {
    width: calc(100% - 40px);
    margin: 0 auto;
}

.container-100--text {
    max-width: 900px;
}

.container-100.no_max_width {
    max-width: inherit;
}


.grid {
    display: grid;
}

.grid__col__vertical {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.border {
    border-top: 1px solid gray;
}

.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid--5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid__col {
    position: relative;
}

.grid__col.grid__col--cat a {
    display: flex;
    gap: 5px;
}

.p-20 {
    padding: 20px;
}

.grid__col--hover {}

.grid__col.grid__col--quadrato {
    aspect-ratio: 1 / 1;
}

.pt {
    padding-top: 5vh;
}

.pb {
    padding-bottom: 5vh;
}

.pt--super {
    padding-top: 12vh;
}

.pb--super {
    padding-bottom: 12vh;
}

.pr {
    padding-right: 15%;
}

.grid__col.grid__col--rettangolo {
    aspect-ratio: 2/1.1;
}

.grid--border .grid__col {
    border-right: 1px solid gray;
}

.grid--border .grid__col:last-child {
    border-right: none;
}

.grid__col__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-transform: uppercase;
}

.grid--gap {
    gap: 5%;
}

.grid--2 {
    grid-template-columns: 1fr 1fr;
}

.grid--6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid--1-2 {
    grid-template-columns: 1fr 2fr;
}

.grid--1-3 {
    grid-template-columns: 1fr 3fr;
}

.grid--3-1 {
    grid-template-columns: 3fr 1fr;
}

.grid--2-1 {
    grid-template-columns: 2fr 1fr;
}

.grid--1-2-1 {
    grid-template-columns: 1fr 2fr 1fr;
}

.grid__col p {
    max-width: 800px;
}

.vertical_line {
    border-right: 1px solid var(--maincolor);
}

.flex_between {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.align_end {
    align-items: flex-end;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

section {
    position: relative;
    z-index: 5;
}

#breadcrumbs {
    font-size: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0.5;
}

#breadcrumbs a {
    text-decoration: underline;
}



@media(max-width:1500px) {

    h1,
    .titolo1 {
        font-size: clamp(48px, 5em, 80px);
    }

    h2,
    .titolo2 {
        font-size: 3.5em;
    }

    h3,
    .titolo3 {
        font-size: 2.3em;
    }

    h4,
    .titolo4 {
        font-size: 1.25em;
    }

    .pr {
        padding-right: 12%;
    }
}


@media(max-width:1250px) {

    h1,
    .titolo1 {
        font-size: 4em;
    }

    h2,
    .titolo2 {
        font-size: 3em;
    }

    h3,
    .titolo3 {
        font-size: 2.1em;
    }

    h4,
    .titolo4 {
        font-size: 1.2em;
    }

    .pr {
        padding-right: 10%;
    }
}

@media(max-width:1250px) {
    .grid--5 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}


@media(max-width:990px) {
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }

    .grid--5 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .container-100 {
        width: calc(100% -30px);
        margin: 0 auto;
    }

    .pb {
        padding-bottom: 30px;
    }

    .pt {
        padding-top: 30px;
    }

    .pb--super {
        padding-bottom: 50px;
    }

    .pt--super {
        padding-top: 50px;
    }

    h1,
    h2,
    h3 {
        margin-bottom: 30px;
    }

    h1,
    .titolo1 {
        font-size: 3.2em;
    }

    h2,
    .titolo2 {
        font-size: 2.6em;
    }

    h3,
    .titolo3 {
        font-size: 1.7em;
    }

    h4,
    .titolo4 {
        font-size: 1.1em;
    }

    .p-20 {
        padding: 15px;
    }

    body {
        font-size: 16px;
    }

    .main_container,
    html {
        width: 100%;
        overflow-x: hidden;
    }
}

@media(max-width:550px) {
    body {
        font-size: 15px;
    }

    .container-100 {
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    p {
        font-size: 1em;
    }

}


/*
@audit colori
*/
:root {
    --secondcolor: #ECECEC;
    --antracite: #1e1e1e;
}

.colore {
    color: var(--maincolor);
}

.testo_bianco {
    color: white !important;
}

.sfondo-bianco {
    background-color: white;
}

.sfondo-grigio {
    background-color: #ECECEC;
}

.sfondo-grigio-2 {
    background-color: #F2F3F6;
}




.sfondo-nero {
    background-color: black;
}

.bianco {
    color: white;
}

.nero {
    color: black;
}

.grid__col {
    height: auto;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.margin-top--vh {
    margin-top: 18vh;
}

.padding--vh {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.padding-small--vh {
    padding: 5vh 0;
}

.padding-top-small--vh {
    padding-top: 5vh;
}

.padding-top--vh {
    padding-top: 10vh;
}

.padding-bottom--vh {
    padding-bottom: 10vh;
}

.spacer-50 {
    height: 50px;
}

.spacer-30 {
    height: 30px;
}

.padding-top-super--vh {
    padding-top: 15vh;
}

.padding-medium--vh {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.padding-bottom--vh {
    padding-bottom: 18vh;
}


/* pulsanti  */

.go_back {
    display: flex;
    font-size: 15px;
    gap: 6px;
    align-items: center;
}

.go_back img {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    height: 15px;
}

.go_back:hover img {
    transform: translateX(-7px);
}

.btn {
    font-family: testo1;
    text-transform: uppercase;
    font-size: 15px;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    display: inline-block;
    padding: 10px 30px;
    position: relative;
    background-color: var(--maincolor);
    color: white;
    overflow: hidden;
}

.btn:before {
    content: "";
    display: block;
    height: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.btn span {
    position: relative;
    z-index: 10;
}

.btn:hover {
    cursor: pointer;
}

.btn:hover:before {
    height: 100%;
}

.btn--richiedi_info {
    position: fixed;
    z-index: 100000;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.btn--richiedi_info.show {
    opacity: 1;
    visibility: visible;
}

.btn--shop {
    background-color: #ffb300;
    color: black;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    left: 20px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    opacity: 0;
    visibility: hidden;
}

.btn--shop.show {
    opacity: 1 !important;
    visibility: visible !important;
}


@media(max-width:1500px) {}

@media(max-width:1250px) {}

@media(max-width:990px) {
    .btn {
        font-size: 14px;
        padding: 7px 11px;
    }
}

@media(max-width:768px) {

    .btn--shop {
        width: calc(100% - 20px) !important;
        text-align: center;
        bottom: 45px;
        left: 10px;
        font-size: 14px;
    }

    .loop_categorie_generico .prodotto_item:nth-child(even) {
        border-right: none;
    }

    .label_sezione {
        font-size: 1.4em;
        text-align: center;
    }

    .navigazione__menu li:last-child {
        border-bottom: none;
    }

    .menu-item-has-children>a {
        justify-content: space-between;
    }

    .pr {
        padding-right: inherit;
    }

    .p-20.pr {
        padding-right: 20px;
    }

    h2,
    .titolo2 {
        font-size: 2.1em;
    }


    .grid--tecnologie .grid__col.grid__col--rettangolo {
        aspect-ratio: inherit;
        padding: 20px 0;
    }

    .grid--tecnologie .grid__col.grid__col--rettangolo img {
        position: relative;
        transform: none;
    }

    .grid--tecnologie .grid__col.grid__col--rettangolo img {
        height: 30px;
        max-width: inherit;
        max-height: inherit;
        width: auto;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
    }

    .grid--border .grid__col {
        border-right: none;
        border-bottom: 1px solid;
    }

    .grid--border .grid__col:last-child {
        border-right: none;
        border-bottom: none;
    }

    .grid--border.grid--slider .grid__col {
        border-right: 1px solid;
        border-bottom: none;
    }

    .grid--slider {
        display: flex;
        width: 100vw;
        overflow-x: scroll;
    }

    .grid--slider .grid__col {
        width: 75vw;
        min-width: 75vw;
    }

    .container-100--mobile-full {
        width: 100%;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .loop_categorie_generico.grid.grid--4,
    .loop_categorie_generico.grid.grid--5 {
        grid-template-columns: 1fr 1fr !important;
    }

    .padding--vh {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .padding-small--vh {
        padding: 30px 0;
    }

    .padding-top--vh {
        padding-top: 50px;
    }

    .padding-bottom--vh {
        padding-bottom: 50px;
    }


}

@media(max-width:550px) {

    h2,
    .titolo2 {
        font-size: 2em;
    }
}

/* container e grid  */

/*============================
MENU DI NAVIGAZIONE
@audit navigazione
============================= */

.navigazione {
    width: 100%;
    position: fixed;
    z-index: 100000000;
    top: 0;
    left: 0;
    color: white;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 0 20px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.navigazione--hide {
    transform: translateY(-100%);
}

.navigazione__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 75px;
    align-items: center;
    gap: 25px;
}

.navigazione__menu {
    width: 100%;
}

.navigazione__menu__dx {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navigazione__menu li {
    display: inline-block;
    font-size: 15px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    font-family: testo2;
}


.navigazione__menu li.current-menu-item a {
    position: relative;
}

.navigazione__menu li.current-menu-item a:before {
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-color: black;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.navigazione__menu__content li {
    margin-right: 1px;
    padding: 4px 7px;
}

.navigazione__menu__content__links li {
    margin-right: 12px;
}

.navigazione__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navigazione__logo img {
    height: 28px;
    width: auto;
}

.navigazione__menu__content {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.navigazione__menu__content li:last-child {
    margin-right: 0;
}


.navigazione__lingue ul {
    position: relative;
    display: flex;
    gap: 7px;
}

.navigazione__lingue ul li a {
    padding: 2px 6px;
}


.magellan {
    position: fixed;
    z-index: 1000;
    top: 75px;
    left: 0;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    width: 100%;
    opacity: 0;
}

.magellan--move {
    top: 0 !important;
}

.magellan__container {
    display: flex;
    justify-content: center;
}

.magellan a {
    font-family: testo1;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    text-align: center;
    /* border-right: 1px solid #aaa; */
    padding: 8px 20px;
    position: relative;
}

.magellan a:before {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    /* background-color: var(--maincolor); */
    background-color: white;
    transform: translateX(100%);
}

.magellan a.active:before {
    transform: translateX(0);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.magellan.magellan--move a:before {
    transform: translateX(-100%);
}

.magellan.magellan--move a.active:before {
    transform: translateX(0);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.magellan a span {
    color: #aaa;
    position: relative;
    z-index: 10;
}

.magellan a:last-child {
    border: none;
}

.magellan a.active span {
    font-family: testo2;
    color: white;
}

.magellan--scroll {
    background-color: #2d2d2d;
    opacity: 1;
}

.burger:hover {
    cursor: pointer;
    opacity: 0.7;
}

.burger {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.magellan--scroll a {}

.burger__icon__line {
    width: 35px;
    height: 2px;
    background-color: white;
    margin-bottom: 6px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.burger:hover .burger__icon__line:nth-child(2) {
    width: 60%;
}

.burger:hover .burger__icon__line:nth-child(3) {
    width: 30%;
}

.burger__icon__line:last-child {
    margin-bottom: 0;
}

.burger__container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
}

@media(max-width:1250px) {
    .navigazione__logo img {
        height: 25px;
    }
}

@media(max-width:990px) {
    .navigazione__logo img {
        height: 21px;
    }
}

@media(min-width:768px) {
    .pr-10-desktop {
        padding-right: 10%;
    }

    .magellan a {
        flex: 1;
        overflow: hidden;
    }
}

.sub-menu li {
    padding-left: 0;
}

/* menu laterale */

.darker {
    z-index: 300000000000000000000000000;
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    opacity: 0;
    visibility: hidden;
}

.darker.active {
    opacity: 1;
    visibility: visible;
}

.tendina_laterale {
    position: fixed;
    z-index: 500000000000000000000000000;
    background-color: var(--maincolor);
    height: 100%;
    top: 0;
    right: 0;
    width: 600px;
    transform: translateX(100%);
    transition: all .45s cubic-bezier(.43, .195, .02, 1);
    -webkit-transition: all .45s cubic-bezier(.43, .195, .02, 1);
    border-left: 1px solid black;
}

.tendina_laterale__catalogo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 50vh;
    background-color: var(--maincolor);
    z-index: -2;
    border-right: 1px solid black;
    transition: all .35s cubic-bezier(.43, .195, .02, 1);
    -webkit-transition: all .35s cubic-bezier(.43, .195, .02, 1);
    border-left: 1px solid dimgray;
    border-top: 1px solid dimgray;
}

.tendina_laterale__catalogo.active {
    transform: translateX(-100%);
}

.tendina_laterale__catalogo img {
    height: 50vh;
    width: 100%;
    object-fit: cover;
    display: block;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.tendina_laterale.active {
    transform: translateX(0);
}

.tendina_laterale__close {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    background-color: var(--maincolor);
}

.tendina_laterale__close:hover {
    cursor: pointer;
    background-color: black;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.tendina_laterale__close:hover .tendina_laterale__close__inner div {
    background-color: white;
}

.tendina_laterale__close__inner {
    transform: rotate(45deg);
}

.tendina_laterale__close__inner div {
    height: 2px;
    width: 36px;
    background-color: black;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.tendina_laterale__close__inner div:nth-child(2) {
    transform-origin: center;
    transform: rotate(90deg);
    margin-top: -2px;
}

.tendina_laterale__container {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    overflow-y: scroll;
    background-color: var(--maincolor);
}

.tendina_laterale__container.tendina_laterale__container--page {
    height: auto;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    overflow-y: visible;
    background-color: transparent;
}

.tendina_laterale__container__col {
    padding: 20px;
}

.tendina_laterale__container__col .voci_menu a:hover {
    opacity: 1;
}

.tendina_laterale__label span {
    font-family: titolo1;
    font-size: 1.5em;
    color: black;
    transform: translateY(100%);
    display: block;
    opacity: 0.5;
}

.tendina_laterale__label {
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    display: block;
}

.tendina_laterale__label img {
    display: none;
}

@media(min-width: 768px) {
    .tendina_laterale__label img {
        display: none;
    }
}

.form_newsletter input[type="email"] {
    border: 1px solid white;
    color: white;
    margin-top: 8px;
    padding-left: 10px;
}

.form_newsletter label {
    margin-bottom: 10px;
    font-size: 15px;
    color: #909090 !important;
}

.form_newsletter p,
.form_newsletter a {
    font-size: 13px !important;
}

.form_newsletter input[type="submit"] {
    padding: 7px 15px;
    font-size: 18px;
}

.tendina_laterale__label span:before {
    content: "[ ";
}

.tendina_laterale__label span:after {
    content: " ]";
}

.tendina_laterale--form .tendina_laterale__container {
    padding: 20px;
    padding-top: calc(100px + 5vh);
}

.tendina_laterale--form.tendina_laterale--form--page .tendina_laterale__container {
    padding: 0;
    padding-top: 0;
}

.tendina_laterale--form.tendina_laterale--form--page form {
    display: block;
    height: auto;
    color: w;
}

.tendina_laterale--form.tendina_laterale--form--page :is(input, textarea, label, p) {
    border-color: white;
    color: white;
}

.tendina_laterale--form.tendina_laterale--form--page .privacy_form p {
    color: gray;
}

.tendina_laterale--form.tendina_laterale--form--page .privacy_form label input {
    border: 1px solid white;
}

.tendina_laterale--form.tendina_laterale--form--page .privacy_form label input:checked {
    background-color: white;
}

.tendina_laterale--form.tendina_laterale--form--page .wpcf7-submit {
    background-color: white;
    color: black;
}

.tendina_laterale--form.tendina_laterale--form--page .privacy_form label span {
    color: white !important;
}

.tendina_laterale--form {}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.8em;
    font-weight: normal;
    display: block;
    margin-top: 2px;
}

.tendina_laterale--form .privacy_form label {
    display: flex;
    font-family: testo1;
    gap: 7px;
}

.tendina_laterale--form .privacy_form label span {
    color: black !important;
    font-size: 14px;
}

.tendina_laterale--form .privacy_form label input {
    height: 21px;
    max-height: 21px;
    width: 21px;
    border: 1px solid black;
    display: block;
    min-width: 21px !important;
    border-radius: 50%;
    -webkit-appearance: none;
    margin-left: 0;
    padding: 0;
}

.wpcf7-list-item-label {}

.wpcf7-list-item {
    display: inline-block;
    margin: 0;
}

.tendina_laterale--form .privacy_form label input:checked {
    background-color: black;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: initial;
    /* o qualsiasi altro stile di default */
}

.tendina_laterale--form input {
    display: block;
    border-radius: 0;
    width: 100%;
    color: black;
    border: none;
    border-bottom: 1px solid black;
    padding: 12px 0;
    background-color: transparent;
    font-size: 16px;
}

.tendina_laterale--form label {
    font-size: 1.5em;
    font-family: titolo1;
    color: black;
    display: block;
    margin-bottom: 20px;
}

.tendina_laterale--form textarea {
    height: 140px;
    width: 100%;
    color: black;
    border: 1px solid black;
    padding: 15px;
    background-color: transparent;
    margin-top: 10px;
    font-family: testo1;
}

.tendina_laterale--form .wpcf7-submit {
    display: block;
    border-radius: 0;
    width: 100%;
    color: black;
    border: none;
    border-bottom: 1px solid black;
    background-color: black;
    padding: 12px 0;
    font-size: 24px;
    color: white;
    font-family: titolo1;
    -webkit-appearance: none;
}

.tendina_laterale--form form p:last-child {
    margin-bottom: 0 !important;
}

@media (min-width:768px) and (min-height:800px) {
    .tendina_laterale__container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .tendina_laterale--form form {
        display: flex;
        height: calc(95vh - 140px);
        flex-direction: column;
        justify-content: space-between;
    }

    .tendina_laterale__container__col {
        height: 50%;
    }

    .tendina_laterale__container__bottom {
        border-top: 1px solid black;
    }

}


.tendina_laterale__container a {
    font-family: titolo1;
    font-size: 3em;
    color: black;
    line-height: 100%;
    margin-bottom: 0;
    display: block;
    transform: translateY(100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tendina_laterale__container li {
    height: 3em;
    display: block;
    overflow: hidden;
    margin-bottom: 3px;
}

.tendina_laterale--menu.active .tendina_laterale__container a {
    transform: translateY(0);
    /* transition-delay: 0.2s; */
}

.tendina_laterale__container__bottom a {
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.tendina_laterale__container__bottom a sup {
    font-size: 0.4em;
    line-height: 100%;
    display: inline-block;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(1) a {
    transition-delay: 0s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(2) a {
    transition-delay: 0.05s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(3) a {
    transition-delay: 0.1s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(4) a {
    transition-delay: 0.15s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(5) a {
    transition-delay: 0.2s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(6) a {
    transition-delay: 0.25s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(7) a {
    transition-delay: 0.3s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(8) a {
    transition-delay: 0.35s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(9) a {
    transition-delay: 0.4s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(10) a {
    transition-delay: 0.45s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(11) a {
    transition-delay: 0.5s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(12) a {
    transition-delay: 0.55s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(13) a {
    transition-delay: 0.6s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(14) a {
    transition-delay: 0.65s;
}

.tendina_laterale--menu.active .tendina_laterale__container li:nth-child(15) a {
    transition-delay: 0.7s;
}

/*  =============== menu mobile ============= */
.loop_categorie_generico--menu a img {
    display: none;
}

.loop_categorie_generico--menu a span {
    color: black;
    display: flex;
    gap: 4px;
}

@media (min-width:768px) and (max-height:900px) {
    .tendina_laterale__container a {
        font-size: 2.5em;
    }

    .tendina_laterale__container li {
        height: 2.5em;
    }

    .tendina_laterale__label {
        padding-bottom: 35px;
    }
}

@media (min-width:768px) and (max-height:700px) {
    .tendina_laterale__container a {
        font-size: 2.1em;
    }

    .tendina_laterale__container li {
        height: 2.1em;
    }

    .tendina_laterale__label {
        display: none;
    }

    .tendina_laterale__catalogo {
        width: 250px;
    }

    .tendina_laterale__close {
        top: 20px;
        right: 20px;
        height: 50px;
        width: 50px;
    }
}

@media(max-width:990px) {
    .tendina_laterale__catalogo {
        display: none;
    }
}


@media(max-width:768px) {

    .loop_categorie_generico--menu a img {
        display: block;
        max-width: 100%;
        height: auto;
        margin-bottom: 5px;
    }

    .tendina_laterale__container__col {
        padding: 15px;
    }

    .tendina_laterale__container__bottom {}

    .tendina_laterale__container__bottom a sup {
        font-size: 0.6em;
    }

    .loop_categorie_generico--menu a {
        display: block;
        padding: 15px;
        border-right: 1px solid black;
        border-bottom: 1px solid black;
    }

    .loop_categorie_generico--menu li:nth-child(even) a {
        border-right: none;
    }

    .loop_categorie_generico--menu a span {
        font-size: 0.65em;
        line-height: 100%;
    }

    .loop_categorie_generico--menu li {
        height: auto;
        overflow: visible;
        margin: 0;
    }

    .tendina_laterale__container a {
        font-size: 2.5em;
    }

    .tendina_laterale__container__top .voci_menu li {
        height: 2.5em;
        margin-bottom: 2px;
    }

    .loop_categorie_generico--menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        box-sizing: border-box;
        width: 100vw;
        transform: translateX(-15px);
        border-top: 1px solid black;
    }

    .tendina_laterale__label span {
        margin-bottom: 15px;
        font-size: 1.2em;
        display: block;
    }

    .tendina_laterale__catalogo {
        display: none;
    }

    .tendina_laterale__label {
        padding-bottom: 15px;
    }

    .navigazione__container {
        height: 50px;
        gap: 15px;
    }

    .magellan {
        top: 50px;
    }

    .magellan a {
        border-right: 1px solid gray;
        font-size: 12px;
    }

    .magellan a:before,
    .magellan a:after {
        display: none;
    }

    .magellan__container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        width: 100%;
        justify-content: flex-start;
    }

    .magellan.magellan--move {
        top: 0;
    }


    .navigazione__logo img {
        height: 18px;
        width: auto;
    }

    .navigazione {
        padding: 0 20px;
    }

    .navigazione__lingue {
        display: none;
    }

    .navigazione__logo {
        position: relative;
        left: auto;
        transform: translateX(0);
    }

    .burger span {
        display: none;
    }

    .tendina_laterale {
        width: 100%;
        border-left: none;
    }

    .tendina_laterale__close {
        position: absolute;
        top: 15px;
        right: 15px;
        height: 50px;
        width: 50px;
    }

    .tendina_laterale__close__inner div {
        width: 25px;
    }
}


@media(max-width:550px) {
    .btn {
        width: 100%;
        text-align: center;
        font-size: 13px;
    }

    .btn div {
        height: auto;
    }

    .magellan {
        top: 50px;
    }

    .magellan__container {}

}


/*============================
HOME front-page.php
@audit home
============================= */

/* hero */

body {
    border-color: dimgray;
}

.hero {
    position: relative;
    height: 100vh;
    /* padding-top: calc(100px + 5vh); */
    background-color: black;
}

.hero__text {
    height: auto;
    overflow: hidden;
    height: 10vw;
}

.hero__text .hero__text__inner {
    display: block;
    animation: hero__text 0.6s ease-out;
    line-height: 100%;
    margin: 0;
    padding: 0;
    font-size: 10vw;
}

@keyframes hero__text {
    0% {
        transform: translateY(100%);
    }

    20% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}


.hero__text,
.hero__text p {
    z-index: 10;
    font-size: 5vw;
    text-transform: uppercase;
    line-height: 96%;
    font-family: testo2;
    width: 100%;
}

.hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    height: auto;
    width: 100%;
    z-index: 10;
    text-align: center;
}

.hero__content .hero__text {
    font-family: titolo1;
    color: white;
    line-height: 100%;
    padding: 0;
    margin: 0;
}

.hero__video {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 5;
}

.hero__video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@keyframes hero__img {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.loop_categorie_generico .prodotto_item__img img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.prodotto_item.prodotto_item--home h3 sup {
    margin-left: 4px;
    font-size: 0.7em;
}

.loop_categorie_generico .prodotto_item {
    border-color: gray;
}

.swiper-container {
    width: 100%;
    padding-right: 15%;
}

.swiper_controls .swiper-pagination {
    text-align: left;
    position: relative;
    display: inline-block;
    max-width: calc(100% - 100px);
}

.swiper_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.swiper-arrows {
    display: flex;
    align-items: center;
    gap: 20px;
}

.swiper-container {
    width: 100%;
    overflow-x: hidden;
}

.swiper-arrows img {
    height: 23px;
    width: auto;
    filter: invert(100);
}

.swiper-arrows:hover {
    cursor: pointer;
}

.swiper_prev:hover {
    transform: translateX(-10px);
}

.swiper_next:hover {
    transform: translateX(10px);
}

@media (min-width:1250px) {
    .swiper-container.no-pr {
        padding-right: 0;
    }
}

.swiper-arrows-item {
    padding: 15px 0;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    margin: 0 4px !important;
    border-radius: 100px !important;
    border: 1px solid gray;
    background-color: transparent;
    opacity: 1;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.swiper-pagination-bullet-active {
    background-color: white;
    border: 1px solid white;
}

.swiper_next img {}

.loop_card .swiper-slide {
    border-right: 1px solid;
}

a .card:hover .card__img img {
    transform: scale(1.1);
}

a .card__img img {
    -webkit-transition: all 0.75s ease;
    transition: all 0.75s ease;
}

.card__img {
    height: auto;
    overflow: hidden;
}

.card .card__title {
    margin-top: 15px;
    color: #aaa;
}

@media(max-width:768px) {

    .grid__col--text {
        padding: 0;
    }

    .grid__col--text--single {
        padding: 30px 15px 50px 15px;
    }

    .hero {
        height: auto;
        padding-top: 60px;
    }

    .hero.hero--home {
        padding-top: 0;
    }

    .hero .btn {
        display: none;
    }

    .hero__img {
        height: auto;
        display: block;
    }
}

@media(max-width:550px) {
    .swiper-arrows {
        display: none;
    }

    .swiper-pagination-bullet {
        height: 10px;
        width: 10px;
        margin: 0 4px !important;
    }

    .swiper-pagination-bullet span:first-child {
        margin-left: 0;
    }
}


/*============================
PAGINA page.php
@audit pagina
============================= */

.hero_pagina {
    height: 70vh;
    position: relative;
}

.hero_pagina:after {
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    content: "";
    display: block;
}

.hero_pagina img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.hero_pagina__title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

/*============================
CATALOGO archive-catalogo.php
@audit catalogo
============================= */

.catalogo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.catalogo__text {
    background-color: var(--antracite);
}

.catalogo__text__inner {
    position: sticky;
    position: -webkit-sticky;
    top: 55px;
    padding: 20px;
    max-width: 70%;
    animation: catalogo__text__inner 1s ease;
}

@keyframes catalogo__text__inner {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 55px;
}

.catalogo__text__inner p {
    font-size: 1.5em;
    font-family: titolo1;
    color: #aaa;
}

.nome_categoria h1 sup {
    font-size: 0.4em;
}

.nome_categoria p {
    line-height: 105%;
}

.catalogo__products {
    border-left: 1px solid;
}

.catalogo__products {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.prodotto_item {
    border-bottom: 1px solid gray;
    border-right: 1px solid gray;
    display: block;
}

.prodotto_item:nth-child(even) {}

.prodotto_item__img {
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.prodotto_item__img img {
    -webkit-transition: all 0.85s ease;
    transition: all 0.85s ease;
}

.prodotto_item:hover .prodotto_item__img img {
    /* transform: scale(0.95); */
}

.prodotto_item__text {
    padding: 20px;
    border-top: 1px solid gray;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
}

.prodotto_item__text h3 {
    position: relative;
    z-index: 3;
    display: inline-flex;
}

.grigio h2 {
    color: gray;
}

@media(min-width:768px) {

    .voci_menu a {
        position: relative;
        line-height: 100%;

    }

    .prodotto_item__text h3:before,
    .voci_menu a:before {
        content: "";
        width: 0;
        position: absolute;
        bottom: -2px;
        left: 0;
        z-index: 1;
        background-color: white;
        height: 2px;
        transition: all .3s cubic-bezier(.43, .195, .02, 1);
        -webkit-transition: all .3s cubic-bezier(.43, .195, .02, 1);
    }

    .voci_menu a:before {
        bottom: 4px;
        height: 3px;
        background-color: black;
    }

    .prodotto_item__text h3:after,
    .voci_menu a:after {
        content: "";
        width: 0;
        position: absolute;
        bottom: -2px;
        right: 0;
        z-index: 1;
        background-color: white;
        height: 2px;
        transition: all .3s cubic-bezier(.43, .195, .02, 1);
        -webkit-transition: all .3s cubic-bezier(.43, .195, .02, 1);
    }

    .voci_menu a {
        display: inline-flex;
    }

    .voci_menu a:after {
        bottom: 4px;
        height: 3px;
        background-color: black;
    }

    .prodotto_item:hover .prodotto_item__text h3:before,
    .voci_menu a:hover:before {
        width: 100%;
    }

    .prodotto_item:hover .prodotto_item__text h3:after,
    .voci_menu a:hover:after {
        width: 100%;
        transition-delay: 0.3s;
    }

    .prodotto_item__text h3:not(:hover):after {
        transition-delay: 0.3s;
        width: 0;
    }

    .voci_menu a:not(:hover):after {
        transition-delay: 0.3s;
        width: 0;
    }

}



.special_edition {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: white;
    padding: 4px 12px;
    font-family: titolo1;
    font-size: 1em;
    color: black;
    animation: special_edition linear 3s infinite;
}

.special_edition.special_edition--page {
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: 10px;
    display: inline-block;
}

@keyframes special_edition {
    0% {
        background-color: yellow;
    }

    25% {
        background-color: magenta;
    }

    75% {
        background-color: cyan;
    }

    100% {
        background-color: yellow;
    }
}

.prodotto_item h3 {
    margin: 0;
    font-size: 1.75em;
}


@media(max-width:1250px) {
    .catalogo__grid {
        grid-template-columns: 1.5fr 2fr;
    }
}


@media(max-width:990px) {
    .catalogo__grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .prodotto_item h3 {
        font-size: 1.5em;
    }

    .prodotto_item__text {
        padding: 15px;
    }

    .catalogo__grid {
        grid-template-columns: 1fr;
    }

    .catalogo__products {
        border-top: 1px solid gray;
    }

    .special_edition {
        right: 5px;
        top: 5px;
        padding: 2px 7px;
        font-size: 0.8em;
    }

    .catalogo__text__inner {
        padding: 15px;
        max-width: 100%;
    }

    .prodotto_item__img {
        padding: 10px;
    }

    #breadcrumbs {
        display: none;
    }

    .catalogo__products {
        border-left: none !important;
    }

    .catalogo__products .prodotto_item:nth-child(odd) {
        border-left: none !important;
    }

    .catalogo__products .prodotto_item:nth-child(even) {
        border-right: none !important;
    }

}

/*
========================================
PRODOTTO single-catalogo.php
@audit prodotto 
========================================
*/

.copertina_prodotto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: black;
    height: calc(100vh - 76px);
}

.copertina_prodotto__img img {
    max-height: calc(100vh - 75px);
}

.copertina_prodotto__img {}

.swiper-container:hover {
    cursor: grab;
}

.copertina_prodotto__text {
    align-self: center;
    max-width: 90%;
    animation: catalogo__text__inner 1s ease;
}

.prezzo_prodotto {
    margin-top: 15px;
    font-size: clamp(16px, 1.3rem, 20px);
    border-radius: 1px;
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid rgb(255, 179, 0);
    font-family: titolo1;
    color: rgb(255, 179, 0);
}

.prodotto_item__img .prezzo_prodotto {
    position: absolute;
    z-index: 10;
    top: 15px;
    left: 25px;
    padding: 0;
    border: none;
    color: white;
}

@media(min-width:768px) {
    .copertina_prodotto__text {
        padding-left: 20px;
    }

    .copertina_prodotto {
        border-top: 1px solid;
    }

    .copertina_prodotto__img {
        height: 100%;
        width: 100%;
        overflow: hidden;
        border-right: 1px solid;
    }

    .copertina_prodotto__img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .prodotto_item__img .prezzo_prodotto {
        top: 10px;
        left: 10px;
    }

}

.prodotto_item__img .prezzo_prodotto {
    margin-top: 0;
    font-size: 13px;
}


.copertina_prodotto__text h1:before {
    content: "[ ";
}

.copertina_prodotto__text h1:after {
    content: " ]";
}

.copertina_prodotto__text__claim {
    color: #aaa;
}

.prodotto_content,
.sfondo_antracite {
    background-color: var(--antracite);
}

.descrizione_prodotto {
    background-color: black;
}

.descrizione_prodotto__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10%;
}

.descrizione_prodotto__inner p {
    color: #bbb;
}

.descrizione_prodotto__inner p strong {
    color: white;
}

.performance_item__value {
    display: flex;
    gap: 3px;
}

.performance_item__value span {
    width: 30px;
    height: 5px;
    background-color: white;
    opacity: 0.3;
}

.performance_item__value--1 span:nth-child(1) {
    opacity: 1;
}

.performance_item__value--2 span:nth-child(1),
.performance_item__value--2 span:nth-child(2) {
    opacity: 1;
}

.performance_item__value--3 span:nth-child(1),
.performance_item__value--3 span:nth-child(2),
.performance_item__value--3 span:nth-child(3) {
    opacity: 1;
}

.performance_item__value--4 span:nth-child(1),
.performance_item__value--4 span:nth-child(2),
.performance_item__value--4 span:nth-child(3),
.performance_item__value--4 span:nth-child(4) {
    opacity: 1;
}

.performance_grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 20px;
}

.performance_item {
    width: calc(33.33% - 20px);
}

.performance_item__name {
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    color: #ccc;
}

/* accordion */

.accordion {
    border-top: 1px solid;
}

.grid--tecnologia:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.grid--tecnologia .accordion:last-child {
    border-bottom: 1px solid;
}

.accordion__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 18px;
    color: white;
}

.accordion__head img {
    height: 20px;
    width: auto;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    filter: invert(100);
}

.accordion__head.active img {
    transform: rotate(45deg);
}

.accordion__head:hover {
    cursor: pointer;
}

.grid--tecnologia .accordion:first-child {
    margin-top: 20px;
}

.accordion__content {
    display: none;
    padding: 15px 0;
    padding-top: 0;
}

.accordion__content p:last-child {
    margin-bottom: 0;
}

.accordion__content li strong {
    font-family: testo2;
}

@media(max-width:768px) {
    .copertina_prodotto {
        grid-template-columns: 1fr;
        height: auto;
    }

    .copertina_prodotto__text {
        padding: 15px;
        border-top: 1px solid gray;
        max-width: 100%;
    }

    .copertina_prodotto__text h1 {
        margin-bottom: 15px;
    }
}

/* varianti prodotto */

.varianti_prodotto__head__item {
    color: white;
    font-family: titolo1;
    font-size: 1.4em;
    padding-bottom: 1px;
    position: relative;
}


.varianti_prodotto__head__item.active:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
}

.varianti_prodotto__head {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.varianti_prodotto__head__item {
    opacity: 0.4;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.varianti_prodotto__head__item.active {
    opacity: 1;
}


@media(min-width:768px) {
    .varianti_prodotto__head__item:hover {
        cursor: pointer;
        opacity: 0.6;
    }
}


.varianti_prodotto__tab__item__codice {
    padding: 20px;
    text-transform: uppercase;
    font-size: 0.9em;
}

.varianti_prodotto__tab {}

.varianti_prodotto__tab__item {
    display: none;
    margin: 0 auto;
    animation: varianti_prodotto__tab__item 1s ease;
}

@keyframes varianti_prodotto__tab__item {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.varianti_prodotto__tab__item.active {
    display: block;
    width: auto;
    margin: 0 auto;
}

.varianti_prodotto__tab__item__img {
    display: flex;
    justify-content: center;
}

.varianti_prodotto__tab__item__img__item {}

.varianti_prodotto__tab__item__img__item:nth-child(2) {
    border-left: 1px solid;
}

.varianti_prodotto__tab__item__img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.varianti_prodotto__tab__item__img img:nth-child(1) {
    animation: img_tab 1s ease;
}

.varianti_prodotto__tab__item__img img:nth-child(2) {
    animation: img_tab2 1.2s ease;
}

.varianti_prodotto__tab__item__wrapper {
    width: 70%;
    margin: 0 auto;
}

.varianti_prodotto__tab__item__codice {
    text-align: center;
    color: white;
    border-top: 1px solid dimgray;
    border-bottom: 1px solid dimgray;
}

@media(max-width:1250px) {
    .varianti_prodotto__tab__item__wrapper {
        width: 80%;
    }
}

@media(max-width:990px) {
    .varianti_prodotto__head {
        gap: 20px;
        padding: 18px 0;
    }

    .varianti_prodotto__tab__item__wrapper {
        width: 90%;
    }
}

@media(max-width:768px) {
    .varianti_prodotto__head {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 5px;
        padding: 5px;
    }

    .varianti_prodotto__head__item.active:after {
        display: none;
    }

    .varianti_prodotto__head__item.active {
        background-color: white;
        color: black;
    }

    .varianti_prodotto__head__item {
        text-align: center;
        background-color: dimgray;
        color: white;
        font-size: 1.2em;
        padding: 5px;
        opacity: 0.7;
    }

    .descrizione_prodotto__inner {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .varianti_prodotto__tab__item__codice {
        padding: 15px;
        font-size: 0.8em;
    }

    .varianti_prodotto__tab__item__wrapper {
        width: 100%;
    }

}

@media(max-width:600px) {
    .varianti_prodotto__tab__item__img {
        width: 100vw;
        overflow-x: scroll;
        justify-content: flex-start;
    }

    .varianti_prodotto__tab__item__img .varianti_prodotto__tab__item__img__item img {
        width: 70vw !important;
        min-width: 70vw !important;
        height: auto;
    }
}

/* hotspot */

/* ======== hotspot - template-parts/focus.php ======== */


.hotspot_container_flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.hotspot_image__container {
    display: flex;
    justify-content: center;
}

.hotspot_image {
    height: 100%;
    position: relative;
    width: auto;
    display: inline-block;
}

.hotspot_image__container {
    border-right: 1px solid;
}

.hotspot_image img {
    max-height: 65vh;
    width: auto;
}

.hotspot_item {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
}

.hotspot_item:hover {
    cursor: pointer;
}

.hotspot_item__circle {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    flex-wrap: wrap;
    background-color: var(--maincolor);
    transition: all 0.15s;
    -webkit-transition: all 0.15s;
    color: white;
    border-radius: 100px;
}

.hotspot_item:hover .hotspot_item__circle {
    background-color: rgba(255, 255, 255, 0.6);
}

.hotspot_item:hover {
    cursor: pointer;
}

.hotspot_item--active .hotspot_item__circle {
    background-color: white;
    color: black;
    transform: scale(1.4);
    animation: hotspost_active 2s ease infinite;
}

@keyframes hotspost_active {
    0% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1.2);
    }
}

.hotspot_item__title {
    display: inline-block;
    color: black;
    font-family: b-2;
    font-size: 13px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px;
}


.hotspot_tab {
    display: none;
    transition: all 0.5s;
    width: 80%;
    max-width: 550px;
}

@media (min-width:990px) {
    .hotspot_tab_container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hotspot_tab p {
    color: #bbb;
}

.hotspot_tab h3 {
    font-family: titolo1;
    margin-bottom: 20px;
    color: white !important;
}

.hotspot_tab h3::first-letter {
    text-transform: uppercase;
}

.hotspot_tab--active {
    display: block;
    animation: hotspot_tab--show 1s ease;
}

@keyframes hotspot_tab--show {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media(max-width:1250px) {
    #focus .container-70 {
        width: 90%;
    }

}


@media (max-width:768px) {
    .hotspot_image__container {
        width: 100%;
    }

    .hotspot_item__line {
        display: none;
    }

    .hotspot_item__title {
        display: none;
    }

    .hotspot_image {
        display: block;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 0;
    }

    .hotspot_tab__inner {
        max-width: 600px;
        margin: 0 auto;
    }

    .hotspot_container_flex {
        display: block;
    }

    .hotspot_container_flex .pt {
        padding-top: 15px;
    }

    .hotspot_container_flex .pb {
        padding-bottom: 15px;
    }

    .hotspot_tab_container {
        width: 100%;
        padding: 15px;
        text-align: center;
        text-align: left;
        border-top: 1px solid gray;
    }

    .hotspot_tab h3 {
        margin-bottom: 15px;
    }

    .hotspot_item__circle {
        height: 30px;
        width: 30px;
    }

    .hotspot_item__circle {
        margin: 0;
        animation: hotspot_item__circle 2s infinite;
    }

    .hotspot_image img {
        height: auto;
        width: 100%;
        max-height: 100vh;
    }

    @keyframes hotspot_item__circle {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.2);
        }

        100% {
            transform: scale(1);
        }
    }

}


/* banner */

.banner img {
    display: block;
    height: 70vh;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.banner {
    height: auto;
    position: relative;
}

.banner__darker {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.banner__text {
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    padding-right: 15%;
    font-size: 2em;
}

@media(max-width:768px) {
    .banner__text {
        left: 5%;
        padding-right: 5%;
        font-size: 1.8em;
    }

    .banner__darker {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
        background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }
}

/* post correlati */

.post_correlati .grid__col__inner {
    display: flex;
    justify-content: center;
}

.card__img img {
    width: 100%;
    height: auto;
}

.grid--tecnologia .accordion:last-child {
    border-bottom: none;
}

@media(max-width:1500px) {}




.vp-center {
    display: block !important;
}

@media(max-width:990px) {
    .performance_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
    }

    .accordion__content li {
        flex-direction: column;
    }
}

@media(min-width:768px) and (max-width:1250px) {
    .grid--tecnologia {
        grid-template-columns: 1fr 1fr;
    }

    .grid--tecnologia .grid__col:nth-child(1) {
        border-bottom: 1px solid;
    }

    .grid--tecnologia .grid__col:nth-child(2) {
        border-bottom: 1px solid;
    }

    .grid--tecnologia .grid__col:nth-child(3) {
        grid-column: 1/3;
    }
}

@media(max-width:768px) {
    .performance_item__value span {
        width: 15px;
        height: 4px;
    }

    .performance_grid {
        margin-bottom: 30px;
    }

    .performance_item {
        width: 100%;
    }
}

@media(max-width:550px) {
    .performance_grid {
        margin-top: 5px;
    }

    .accordion__head {
        padding: 15px 0;
        font-size: 14px;
    }

    .grid--tecnologia .grid__col:nth-child(1) {
        padding-top: 30px !important;
        padding-bottom: 0 !important;
    }

    .accordion__head img {
        height: 17px;
    }

    .grid--tecnologia:nth-child(even) {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .accordion__content li {
        padding: 12px 15px;
        display: flex;
        flex-direction: column;
    }

    .accordion__content li strong {
        font-family: testo2;
        display: block;
        text-transform: uppercase;
        margin-bottom: 3px;
    }
}

/*
========================================
ABBIGLIAMENTO single-abbigliamento.php
@audit abbigliamento 
========================================
*/

.container-center {
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
}

/*
========================================
MAGAZINE ARCHIVIO template-magazine.php
@audit magazine 
========================================
*/

.news_item__text__date {
    display: block;
    font-size: 18px;
    color: dimgray;
    margin-bottom: 10px;
    margin-top: 20px;
    font-family: titolo1;
}

.news_item:hover h4 {
    text-decoration: underline;
}

.news_item_img {
    aspect-ratio: 1.5/2;
}

.news_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.75s ease;
    transition: all 0.75s ease;
}

.news_item:hover .news_item_img img {
    transform: scale(1.1);
}


.news_item_img {
    overflow: hidden;
    height: auto;
}

.magazine_evidenza .cta {
    margin-top: 50px;
}

.archivio_post .grid__col {
    border-bottom: 1px solid gray;
}

.archivio_post .grid__col:last-child {
    border-right: 1px solid;
}


.latest_news .grid__col {}

.loop_categorie a {
    display: flex;
    gap: 3px;
    opacity: 0.5;
    text-transform: uppercase;
    font-family: titolo1;
    font-size: 1.4em;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    flex: 1;
    text-align: center;
    border-right: 1px solid gray;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.loop_categorie a sup {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.loop_categorie a:hover {
    opacity: 1;
    color: #aaa;
}

.loop_categorie a:hover sup {
    color: #aaa;
}

.loop_categorie a.active {
    opacity: 1;
}

.align_self_center {
    align-self: center;
}

.loop_categorie a .count {
    color: white;
}

.loop_categorie {
    display: flex;
    align-items: center;
    /* gap: 35px; */
    justify-content: space-between;
    /* padding: 15px 20px; */
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.grid__col--hover {
    position: relative;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}


.grid__col--hover:hover {
    /* background-color: rgba(0, 0, 0, 0.07); */
}

.paginazione_post {
    display: none;
    padding-bottom: 50px;
}

.paginazione_post .page-numbers {
    margin-right: 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
}

.paginazione_post .page-numbers.current {
    color: white;
    font-family: testo2;
    border-color: var(--rosso);
    background-color: var(--rosso);
}

@media(max-width:990px) {
    .archivio_post .grid.grid--3 {
        grid-template-columns: 1fr 1fr;
    }

    .archivio_post .intestazione_griglia_croci {
        display: none;
    }
}

@media(max-width:768px) {

    .grid__col--news {
        margin-bottom: 30px !important;
    }

    .loop_categorie a {
        font-size: 1.1em;
        padding: 7px 16px;
    }

    .loop_categorie {
        justify-content: flex-start;
    }

    .nome_categoria h1 {
        margin-bottom: 15px;
    }

    .loop_categorie a.active {
        background-color: white;
        color: black;
    }

    .btn--richiedi_info {
        position: fixed;
        z-index: 100000;
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        font-size: 14px;
        text-align: center;
    }

    .loop_categorie a.active sup {
        color: black;
    }

    .archivio_post .grid__col {
        border-right: 1px solid;
    }

    .archivio_post .flex_between {
        display: block !important;
    }

    .copertina_articolo__testo h1 {
        font-size: 1.6em;
        max-width: 100%;
    }

    .container-center {
        max-width: 100%;
        margin: 0 auto;
        text-align: left;
    }

    .swiper-arrows img {
        height: 20px;
        width: auto;
    }
}

@media(max-width:550px) {

    .loop_card {
        padding-top: 0;
    }

    .archivio_post .grid.grid--3 {
        grid-template-columns: 1fr;
    }

    .archivio_post .grid__col {
        border-bottom: 1px solid gray;
        border-right: none;
    }

    .archivio_post .flex_between {
        display: block !important;
    }

    .copertina_articolo__testo h1 {
        font-size: 1.6em;
        max-width: 100%;
    }

    .loop_categorie {
        justify-content: flex-start;
        font-size: 14px;
        width: 100%;
        overflow-x: scroll;
    }

    h1,
    .titolo1 {
        font-size: 2.5em;
    }
}

/*
========================================
PAGINA ARTICOLO single.php
@audit articolo magazine
========================================
*/

article :is(h1, h2, h3, h4) {
    margin-bottom: 20px;
    padding-top: 15px;
}

article h2 {
    font-size: 2.6em;
}

article h3 {
    font-size: 2em;
}

article a {
    text-decoration: underline;
    color: var(--rosso);
}

article a:hover {
    color: var(--rosso);
    text-decoration: underline;
}

.container-article {
    max-width: 1100px;
}


.single_news p strong {
    font-family: testo3;
}

.single_news__head__cat span:after {
    content: ", ";
}

.single_news__head__cat span:last-child:after {
    content: "";
}

.single_news h1 {
    font-size: 50px;
    margin-bottom: 50px;
}

article ul {
    margin-left: 10px;
}

article li {
    list-style: disc;
    margin-left: 10px;
    margin-bottom: 5px;
    font-size: 1em;
}

article a {
    text-decoration: underline;
}

article strong {
    font-family: testo3;
}

.news_info {
    color: dimgray;
    margin-bottom: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-transform: uppercase;
}

.news_info :is(span, p, a) {
    color: gray;
}

.next__controls .btn {
    /* display: block; */
}

.news_item__text__down h4 {
    font-size: 1.7em;
    text-transform: uppercase;
}

.bold {
    font-family: testo2;
}

@media(max-width:768px) {
    .grid--single_news .grid__col:nth-child(1) {
        border-bottom: none;
    }

    .grid--single_news .news_info {
        margin-bottom: 0;
    }
}

@media(max-width:550px) {
    .navigazione {
        padding: 0 15px;
    }

    .navigazione__lingue {
        padding-left: 15px;
        bottom: 15px;
    }

    .navigazione__lingue ul {
        width: calc(100vw - 30px);
    }

    .navigazione__menu {
        padding: 30px 15px 15px 15px;
    }

    article h2 {
        font-size: 1.8em;
    }

    article h3 {
        font-size: 1.6em;
    }

    .grid--single_news .grid__col:nth-child(3) {
        padding-top: 0;
    }
}

/*
========================================
PAGINA CONTATTI template-contatti.php
@audit contatti
========================================
*/

/*
========================================
FOOTER footer.php
@audit footer
========================================
*/

/* popup newsletter */

.custom_scroll_popup__wrapper {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 100000;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
     opacity: 0;
    visibility: hidden;
}

.custom_scroll_popup__wrapper.custom_scroll_popup__wrapper--show {
    opacity: 1 !important; 
    visibility: visible !important; 
} 

.custom_scroll_popup__wrapper__title {
    font-size: 2em;
    font-family: titolo1;
    color: white;
    display: block;
    margin-bottom: 15px;
}

.custom_scroll_popup__wrapper p {
    margin-bottom: 0;
}

.custom_scroll_popup__wrapper .tendina_laterale__close { 
    position: absolute;
    top: 0 !important;
    right: 0 !important; 
}


.custom_scroll_popup__wrapper .wpcf7-spinner {
    display: none;
}

.custom_scroll_popup__wrapper {
    width: 400px;
    padding: 20px;
    background-color: var(--antracite);
}


@media(max-width:600px) {
    .custom_scroll_popup__wrapper {
    width: calc(100% - 20px);
    padding: 15px;
}
} 


.footer_super_logo {
    margin-top: 5px;
    opacity: 0.2;
}


footer a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.footer_super_logo img {
    width: 100%;
    height: auto;
}

footer {
    background-color: #2d2d2d;
    position: relative;
    color: white;
    font-size: 17px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.footer_intro {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: titolo1;
    font-size: 25px;
}

.footer__bottom,
.footer__bottom a,
.footer__bottom li,
.footer__bottom p {
    font-size: 14px;
}

footer,
footer a,
footer li,
footer p {
    font-size: 15px;
}

.current-lang a {
    border: 1px solid white;
}

@media(max-width:1500px) {}

@media(max-width:1250px) {}

@media(max-width:990px) {
    footer .grid.grid--4 {
        grid-template-columns: 1fr 1fr;
    }

    footer .grid.grid--4 .grid__col:nth-child(1),
    footer .grid.grid--4 .grid__col:nth-child(2) {
        border-bottom: 1px solid gray;
    }
}

@media(max-width:768px) {

    .footer__bottom,
    .footer__bottom li,
    .footer__bottom p,
    .footer__bottom a {
        font-size: 13px;
    }

    .mt-nav {
        height: 51px;
    }

    .footer ul li {
        margin-bottom: 10px;
    }

    footer .grid.grid--4 {
        grid-template-columns: 1fr;
    }

    footer .grid.grid--4 .grid__col {
        border-bottom: 1px solid gray;
    }

    footer .grid.grid--4 .grid__col:last-child {
        border-bottom: none;
    }

    .footer ul li:last-child {
        margin-bottom: 0;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .footer_newsletter button[type="submit"] {
        width: 100%;
    }

    .container-100--mobile-full {
        width: 100%;
    }

    .footer__bottom__copyright {
        padding-bottom: 20px;
    }
}


/* complianz banner cookie */

#gestione_cookies:hover {
    cursor: pointer;
}

#cmplz-manage-consent .cmplz-manage-consent {
    display: none;
}