/*
	Theme Name: Agrotrade
	Theme URI: https://agrotrade.it/
	Description: Materiale agricolo e da giardinaggio
	Version: 1.4.3
	Tags: HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing: antialiased;
	text-rendering:optimizeLegibility;
	margin: 0;
	padding: 0;
}

/* ========== AGROTRADE LOADER ========== */
body:not(.page-loaded) {
    overflow: hidden;
}
loader {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 8.8s cubic-bezier(0.94, 0.11, 0.18, 1.02);
}
body.loading loader {
    background: rgba(0, 0, 0, 0.26);
}
body.page-loaded loader {
    display: none;
}
loader img {
    width: 100px;
    animation: img_load_animation alternate 2.0s infinite;
}
@keyframes img_load_animation {
  0% {
    opacity: 0;
    scale: 1.0;
  }
  25% {
    opacity: 1.0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
    scale: 1.1;
  }
}

/* ========== Scrollbar styling (rosso Agrotrade) ========== */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #d30605 #f4f4f4;
  scrollbar-color: #d30605 transparent;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f4f4f4; 
  background: transparent; 
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #d30605; /* rosso Agrotrade */
  border-radius: 6px;
  border: 3px solid #f4f4f4;
  transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a30403; /* più scuro on hover */
}

/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:400 16px/1.8 "Kanit", sans-serif;
	color:#000;
	overflow: auto;
}
body.open {
	overflow-y: hidden;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    zoom: 1;
}
.grecaptcha-badge {
	display: none;
}
img {
	max-width:100%;
	width: 100%;
	height: auto;
}
a {
	color:#000;
	text-decoration:none;
    cursor: pointer;
}
a:hover {
	color:#000;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
}
ul {
	list-style-type: none;
}
i {
	font-style: italic;
}
h1,h2,h3,h4,h5,h6,p {
	padding: 0;
	margin: 0;
	font-weight: normal;
}
h1, h2 {
	color: #d30605;
	font-size: 26px;
	font-weight: 600;
}
h3 {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
}
.pulsante {
	background-color: transparent;
	color: #000;
	text-decoration: none;
	padding: 5px 20px;
	border: 1px solid #000;
	display: inline-block;
	font-weight: 500;
	border-radius: 10px;
}
.pulsante:hover {
	background-color: #000;
	color: #fff;
	border: 1px solid #000;
}
.blocco {
	position: relative;
	overflow: hidden;
	display: grid;
}
.text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.zoomContainer,
.zoomContainer .zoomWindowContainer,
.zoomContainer .zoomWindowContainer > div {
    z-index: 0!important;
}
.zoom {
	transition-duration: 2s;
	-webkit-transition-duration: 2s;
	-o-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
}
.zoom:hover {
	transition-duration: 4s;
	-webkit-transition-duration: 4s;
	-o-transition-duration: 4s;
	-moz-transition-duration: 4s;
	-ms-transition-duration: 4s;
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
}
.whatsapp {
	position: fixed;
	max-width: 50px !important;
	bottom: 2%;
	right: 2%;
	opacity: 0;
	animation-name: lampeggio;
	-webkit-animation: lampeggio;
	-ms-animation-name: lampeggio;
	-moz-animation-name: lampeggio;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 3s;
	-webkit-animation-duration: 3s;
	-ms-animation-duration: 3s;
	-moz-animation-duration: 3s;
}

@keyframes lampeggio {
	0% {opacity:0;}
	25% {opacity:0.5;}
	50% {opacity:1;}
	75% {opacity:0.5;}
	100% {opacity:0;}
}

.pulsazione {
	animation-name: pulsazione;
	-webkit-animation: pulsazione;
	-ms-animation-name: pulsazione;
	-moz-animation-name: pulsazione;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 5s;
	-webkit-animation-duration: 5s;
	-ms-animation-duration: 5s;
	-moz-animation-duration: 5s;
}
@keyframes pulsazione {
	0% {transform: scale(0.5,0.5);}
	25% {transform: scale(0.65,0.65);}
	50% {transform: scale(0.75,0.75);}
	75% {transform: scale(0.65,0.65);}
	100% {transform: scale(0.5,0.5);}
}
.rotation {
	transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8;
	-o-transition-duration: 0.8s;
}
.rotation:hover {
	transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-webkit-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8;
	-o-transition-duration: 0.8s;
}
/* SLIDE */
.slick-dots {
	position: absolute;
    right: 0;
    bottom: 5%;
    z-index: 1;
    width: 100%;
    text-align: center;
}
.slick-dots .slick-active {
    background-color: #d30605;
}
.slick-dots li {
    display: inline-block;
    width: 8px;
    height: 8px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 50%;
    margin: 20px 5px 0;
    border: 1px solid #d30605;
}
.slick-dots button {
	color: transparent;
	background-color: transparent;
	display: contents;
}
.slide2 .slick-prev,
.carosello-prodotti .slick-prev,
.related ul.products .slick-prev {
	background-image: url(img/header/left.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	left: 5%;
	z-index: 1;
	outline: none;
}
.slide-accessori .slick-prev {
	background-image: url(img/header/left.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: -10%;
	left: 1%;
	z-index: 1;
	outline: none;
	width: 20px;
}
.slide-accessori .slick-next {
	background-image: url(img/header/right.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: -10%;
	right: 1%;
	z-index: 1;
	outline: none;
	width: 20px;
}
.slide2 .slick-next,
.carosello-prodotti .slick-next,
.related ul.products .slick-next {
	background-image: url(img/header/right.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	right: 0;
	z-index: 1;
	outline: none;
}
.slide .slick-prev {
	background-image: url(img/header/left-white.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	left: 2%;
	z-index: 100;
	outline: none;
}
.slide .slick-next {
	background-image: url(img/header/right-white.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	right: 0;
	z-index: 100;
	outline: none;
}
.carosello-prodotti .slick-prev {
	background-image: url(img/header/left.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	left: 3%;
	z-index: 1;
	outline: none;
	width: 20px;
}
.carosello-prodotti .slick-next {
	background-image: url(img/header/right.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	right: 3%;
	z-index: 1;
	outline: none;
	width: 20px;
}
.slick-slide div:first-child {
	display: grid;
}
/* FORM */
.wpcf7-form {
	background-color: #000;
	padding: 20px;
	margin-bottom: 30px;
}
.wpcf7-form h2 {
	padding-bottom: 20px;
}
.wpcf7-form label {
	display: block;
    margin-bottom: -15px;
    text-align: left;
    color: #fff;
}
input,
textarea {
	outline: none;
	padding: 5px;
	margin-bottom: 30px;
	border: none;
	width: 100%;
}
input {
	height: 40px;
}
.wpcf7-form .privacy a {
	letter-spacing: normal;
	text-decoration: underline;
	color: #fff;
}
.wpcf7-form #privacy {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #fff;
	background-color: transparent;
	padding: 6px;
	margin-bottom: 0;
	max-width: 6px;
}
.wpcf7-form #privacy:checked {
	background-color: #fff;
}
span.wpcf7-list-item {
	margin: 0;
}
.wpcf7-acceptance label a {
	color: #fff;
}
.wpcf7-submit {
    height: 40px;
    display: block;
    margin: 30px auto 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 1px solid #fff;
	color: #fff;
}
.wpcf7-submit:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
}
div.wpcf7-mail-sent-ok,
div.wpcf7-validation-errors, 
div.wpcf7-acceptance-missing {
	border: none;
}
div.wpcf7-response-output {
	padding: 0;
}

.wpcf7 form .wpcf7-response-output {
	border: none;
	color: #fff;
}
select {
	outline: none;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:100%;
	width:100%;
	margin:0 auto;
	position:relative;
}
.content {
	max-width:1800px;
	width: 90%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {
	position: absolute;
	width: 90%;
	height: 65px;
	line-height: 70px;
	z-index: 1;
	background-color: rgba(28, 28, 28, 0.90);
	backdrop-filter: blur(14px);
	left: 5%;
	border-radius: 20px;
	top: 50px;
}
.scrolled_over .header {
	position: fixed;
	top: 10px;
}
.open .header {
	left: 0;
}
.preheader {
    background-color: rgb(0, 0, 0);
	color: #FFF;
	text-align: center;
	text-transform: uppercase;
	top: 0;
	z-index: 100;
    overflow: hidden;
    white-space: nowrap;
    padding: 5px 0;
}
.preheader p {
	color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
	width: 100%;
	animation-name: preheaderSlider;
	animation-duration: 15s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes preheaderSlider {
	0% {transform: translateX(200%);}
	100% {transform: translateX(-200%);}
}

/* logo */
.logo {
	position: absolute;
	top: 0;
	left: 5%;
	z-index: 200;
	margin-top: 12px;
	width: 50%;
}
.logo img {
	max-width: 180px;
}
/* nav */
.nav {
	display: none;
	color: #fff;
	width: 100%;
	height: 100vh;
	position: fixed;
    overflow: hidden;
	top: 0;
	left: -100%;
    transition: left 1s ease;
	z-index: 10;
	justify-content: center;
	align-items: center;
	background-color: rgba(28, 28, 28, 0.90);
	backdrop-filter: blur(14px);
	border-radius: 0 20px 20px 0;
}
.nav a {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 4px;
}
.nav .current_page_item a {
	color: #d30605;
	font-weight: bold;
}
.single-post .nav #menu-item-5565 a {
	color: #d30605;
	font-weight: bold;
}
.nav ul {
	list-style-type: none;
	text-align: center;
	width: 100%;
	padding-left: 5%;
}
.nav ul li {
	padding: 15px 0;
	line-height: 1;
}
.nav .desktop {
	display: none;
}
.openclose {
	position: absolute;
	top: 0;
	right: 5%;
	z-index: 100;
    cursor: pointer;
	width: 20px;
}
.openclose img {
	max-width: 20px;
}
nav .cart-contents {
    display: none;
}

header .carrello-mobile {
    display: flex;
    float: right;
    padding-right: 60px;
    align-items: center;
}
header .cart-contents img,
.nav .account {
	width: 25px;
	display: flex;
}
.nav .account {
	max-width: 20px;
}
header .carrello-mobile .cart-contents img {
    display: inline-flex;
    margin-right: 5px;
}

ul li a span.freccia-shop {
    display: inline-block;
    width: auto;
    text-align: right;
	max-width: 8px;
}

.nav > div.mobile {
    display: none;
    width: 200%;
    height: 100%;
    align-items: center;
    align-content: center;
}

.nav > div.mobile > ul {
    display: flex;
    align-items: start;
    width: 50%;
    height: 60%;
    position: relative;
    flex-direction: column;
    justify-content: center;
    float: left;
    left: 0;
}
ul.mini-menu {
    width: 100px;
    display: inline-flex;
}
.cart-contents {
	color: #fff;
}
.nav .mobile .carrello {
	position: absolute;
	bottom: 20%;
	left: 5%;
	z-index: 20;
	width: 100%;
	display: flex;
}
.nav .mobile .carrello a {
	text-transform: capitalize;
	display: flex;
	align-items: center;
	margin-right: 20px;
}
.nav .mobile .carrello img {
	max-width: 20px;
	max-height: 20px;
	margin-right: 10px;
}
/* footer */
.footer {
	background-color: #000;
	padding: 30px 5% ;
	font-size: 12px;
	color: #fff;
    position: relative;
    z-index: 1;
}
.footer a {
	letter-spacing: normal;
	color: #fff;
}
.footer h3 {
	margin-bottom: 10px;
}
.footer .colonne div {
	border-top: 1px solid;
	padding: 15px 0;
}
.footer .credits {
	padding-top: 30px;
}
.footer .social {
	text-align: center;
	padding-bottom: 30px;
}
.footer .social img {
	max-width: 30px;
	margin: 0 10px;
}
/*------------------------------------*\
    SOTTOMENU AGROTRADE
\*------------------------------------*/
.subheader-agrotrade .logo,
.subheader-agrotrade .icone {
	display: none;
}
.subheader-agrotrade nav.subnav {
    display:  none;
}
.shop-sub_menu {
    position: fixed;
    top: 50px;
    left: 5%;
    width: 90%;
    display: none;
    padding-top: 50px;
    z-index: 2;
    height: 100%;
    max-height: calc(100% - 70px);
    overflow-y: auto;
    pointer-events: none;
}

header.header,
.nav,
.nav ul,
.nav ul a {
    z-index: 100;
}

li.menu-item.rosso:hover .shop-sub_menu {
    display: block;
}
.nav .mobile .shop-sub_menu {
    display: block;
    position: relative;
    width: 50%;
    float: left;
    left: 0%;
    height: calc(100% - 60px);
    padding-top: 0;
    top: 10px;
}

.scrolled_over .mini-menu .shop-sub-menu {
    display: none;
    position: absolute;
    top: 20px;
    left: 0px;
    padding-top: 70px;
}
.scrolled_over .mini-menu .rosso:hover .shop-sub-menu {
    display: block;
}

.scrolled_over .mini-menu li .shop-sub-menu {
    width: 100vw;
    height: 100vh;
    max-height: calc(100vh - 140px);
}

.scrolled_over .mini-menu li .shop-sub-menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.scrolled_over .mini-menu .rosso .shop-sub-menu ul a {
    padding: 0px!important;
    background-color: transparent;
}

.menu_card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creiamo 4 colonne di uguale larghezza */
    gap: 10px; /* Aggiungiamo un margine tra gli elementi (facoltativo) */
    padding: 20px;
    height: 100%;
    padding-bottom: 30px;
    pointer-events: initial;
	border-radius: 20px;
}

.nav .mobile .menu_card-wrapper {
    grid: none;
    max-height: calc(100% - 50px);
    overflow: hidden;
    overflow-y: auto;
}

#indietro-shop-btn {
	background-color: #000;
	color: #fff;
	height: 30px;
	font-weight: bold;
	border: none;
    width: calc(100% - 40px);
    position: fixed;
    left: 20px;
    bottom: 60px;
	border-radius: 10px;
}

nav .desktop > ul > li.rosso > a {
    position: relative;
    z-index: 150;
} 

.menu_card {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.menu_card .menu_card-head {
    background: #d30605;
    margin-bottom: 10px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 10px;
}

.menu_card .menu_card-head h2 {
    color: white;
    text-align: center;
    font-size: 18px;
}

.menu_card ul {
    display: block;
    background: transparent;
	padding-left: 0;
}

.nav ul li .menu_card > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.nav ul li .menu_card ul a {
    all: initial;
    padding: 0!important;
    margin: 0;
    font-family: "Kanit", sans-serif;
}

.menu_card-wrapper .menu_card li {
    display: flex;
    width: 100%;
    color: initial;
    cursor: pointer;
    margin: 0;
    align-items: center;
    flex-direction: row;
    margin-bottom: 5px;
    justify-content: start;
    text-transform: uppercase;
	color: #fff;
}
.menu_card li:hover {
    background-color: rgba(216, 41, 40, 0.80);
    color: #fff;
    border-radius: 5px;
}

.menu_card > h3 {
    border-bottom: 1px solid black;
    margin-bottom: 10px;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/


/*--------------HOME------------------*/
#home h1 {
	color: #d30605;
	font-size: 40px;
}
#home .fascia-1 {
	position: relative;
}
#home .fascia-1 h2 {
	color: #fff;
	font-size: 20px;
	margin-bottom: 20px;
}
#home .fascia-1 .text {
	color: #fff;
	background-color: rgba(0, 0, 0, 0.30);
	text-align: center;
	justify-content: center;
	align-items: center;
	padding: 0 5%;
}
#home .fascia-1 .text h2 {
	background-color: #d30605;
	padding:0 10px;
	font-size: 35px;
	line-height: normal;
	border-radius: 20px;
}
#home .fascia-1 .text p {
	margin-bottom: 20px;
	font-size: 25px;
}
#home .fascia-1 .text .pulsante {
	color: #fff;
	border: 1px solid #fff;
	border-radius: 10px;
	font-size: 25px;
	width: 200px;
	text-align: center;
}
#home .fascia-1 .text .pulsante:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
}
#home .fascia-2 {
	text-align: center;
	padding: 30px 0;
}
#home .fascia-2 p {
	padding: 0px 0 30px;
}
#home .fascia-3 {
	text-align: center;
	padding: 60px 0;
}
#home .fascia-3 .colonne {
	padding-top: 30px;
}
#home .fascia-3 .colonne p {
	padding: 0 5% 10px;
	line-height: 1.2;
}
#home .fascia-3 .collezione {
	position: relative;
}
#home .fascia-3 .text {
	background-color: rgba(0, 0, 0, 0.70);
	color: #fff;
	display: none;
}
#home .fascia-3 .text h3 {
	font-size: 15px;
	color: #fff;
	text-decoration: underline;
}
#home .fascia-3 .collezione h2 {
	color: #fff;
	background-color: rgba(0, 0, 0, 0.40);
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	z-index: 2;
	padding: 0 5%;
}
#home .fascia-3 a:hover h2 {
	display: none;
}
#home .fascia-3 a:hover .text {
	display: flex;
}
#home .fascia-4 {
	text-align: center;
	padding: 30px 0;
}
#home .fascia-4 h2 {
	padding-bottom: 30px;
}
#home .fascia-4 h3 {
	color: #fff;
	background-color: #d30605;
	font-weight: bold;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
#home .fascia-4 h3 span {
	display: none;
	border: 1px solid #fff;
	padding:0 10px;
	margin-top: 10px;
	text-transform: capitalize;
}
#home .fascia-4 a {
	position: relative;
}
#home .fascia-4 a:hover h3 {
	animation-name: tendina;
	-webkit-animation: tendina;
	-ms-animation-name: tendina;
	-moz-animation-name: tendina;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-duration: 0.5s;
	-webkit-animation-duration: 0.5s;
	-ms-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	background-color: rgba(216, 41, 40, 0.80);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 25px;
}
@keyframes tendina {
	0% {height: 0;}
	25% {height: 25%;}
	50% {height: 50%;}
	75% {height: 75%;}
	100% {height: 100%;}
}
#home .fascia-4 a:hover h3 span {
	display: block;
	font-size: 18px;
}
#home .fascia-4 li {
	padding: 20px;
	margin: 20px auto;
	box-shadow: 0 0.2rem 2.8rem rgb(36 36 36 / 10%);
}
#home .fascia-4 li img {
	width: 100%;
	border-bottom: 1px solid;
}
#home .fascia-4 li .product-title {
	color: #d30605;
	font-size: 20px;
	padding-top:20px;
	padding-bottom: 10px;
	display: inline-block;
	font-weight: normal;
}
#home .fascia-4 li .woocommerce-Price-amount {
	font-size: 18px;
}
#home .parallax {
	background-image: url(img/home/parallax.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	height: 400px;
}
#home .fascia-5 {
	text-align: center;
	padding: 30px 0;
}
#home .fascia-5 p {
	padding: 0 5%;
}
#home .fascia-6 {
	background-color: #f2efed;
	text-align: center;
	padding: 30px 5%;
}
#home .fascia-6 h2 {
	color: #000;
}
#home .fascia-8 h2 {
	text-align: center;
}
.call-to-action {
	background-color: #d30605;
	color: #fff;
	padding: 30px 5%;
	text-align: center;
}
.call-to-action .pulsante {
	color: #fff;
	border: 1px solid #fff;
	margin-top: 20px;
}
.call-to-action .pulsante:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
}
.carosello-prodotti .slick-slide {
	padding: 20px;
}
#home .fascia-8 .slick-slide {
	box-shadow: 0 0.2rem 2.8rem rgb(36 36 36 / 10%);
	padding: 20px;
	margin: 40px;
	height: 460px;
	background-color: #fff;
	border-radius: 10px;
}
#home .fascia-8 .slick-slide a {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 10px;
	display: block;
}
#home .fascia-8 .controlsWrap div {
	background-color: #d30605 !important;
}
.carosello-prodotti img {
	margin: 0 auto;
}
#home .fascia-8 .row-carosello {
	background-color: #fff;
	padding: 30px 0;
}
#home .fascia-8 .row-carosello:nth-child(odd) {
	background-color: #f2efed;
	padding: 30px 0;
}
#home .fascia-8 .row-carosello:nth-child(odd) .wcps-container {
	background-color: #f2efed;
}
#home .carosello-prodotti .price {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}
#home .carosello-prodotti h2 {
	padding-bottom: 0;
}
#home .fascia-4 .carosello-prodotti .slick-next {
	right: -3%;
}
#home .fascia-4 .carosello-prodotti .slick-prev {
	left: -3%;
}

/*--------------AZIENDA------------------*/
#azienda h1 {
	text-align: center;
}
#azienda h1, 
#azienda h2 {
	padding-bottom: 30px;
	text-align: center;
}
#azienda .fascia-1 {
	padding: 30px 0;
	text-align: center;
}
#azienda .fascia-2 {
	padding: 0 0 60px;
}
#azienda .fascia-2 p {
	text-align: center;
}
#azienda .fascia-2 img {
	margin-top: 30px;
}
#azienda .fascia-3 {
	padding: 0 0 30px;
}
/*--------------MARCHI------------------*/
#marchi .fascia-1 {
	text-align: center;
	padding: 150px 0 30px
}
#marchi .fascia-1 .loghi {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
#marchi .fascia-1 .loghi a {
	width: 50%;
	padding: 2%;
	margin: 20px 0;
	transform: scale(0.9,0.9);
	transition-duration: 2s;
}
#marchi .fascia-1 .loghi a:hover {
	transform: scale(1,1);
	transition-duration: 2s;
}
/*--------------CATEGORIE------------------*/
#categorie {
	padding-top: 150px;
}
#categorie .fascia-4 {
	text-align: center;
	padding: 30px 0;
}
#categorie .fascia-4 h2 {
	padding-bottom: 30px;
}
#categorie .fascia-4 h3 {
	color: #fff;
	background-color: #d30605;
	font-weight: bold;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}
#categorie .fascia-4 h3 span {
	display: none;
	border: 1px solid #fff;
	padding:0 10px;
	margin-top: 10px;
	text-transform: capitalize;
}
#categorie .fascia-4 a {
	position: relative;
	display: flex;
	margin-bottom: 30px;
}
#categorie .fascia-4 a:hover h3 {
	animation-name: tendina;
	-webkit-animation: tendina;
	-ms-animation-name: tendina;
	-moz-animation-name: tendina;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-duration: 0.5s;
	-webkit-animation-duration: 0.5s;
	-ms-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	background-color: rgba(216, 41, 40, 0.80);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 25px;
}
@keyframes tendina {
	0% {height: 0;}
	25% {height: 25%;}
	50% {height: 50%;}
	75% {height: 75%;}
	100% {height: 100%;}
}
#categorie .fascia-4 a:hover h3 span {
	display: block;
	font-size: 18px;
}
/*--------------CONTACT------------------*/
#contact .fascia-1 {
	padding-top: 150px;
}
#contact .fascia-1,
#contact .fascia-2 {
	text-align: center;
}
#contact .argomento {
    display: block;
}
#contact .argomento select {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
    height: 40px;
}
#contact h1,
#contact h2 {
	padding-bottom: 30px;
}
.wpcf7 {
	padding: 30px 0;
	text-align: left;
}
iframe {
	margin-bottom: -10px;
}
/*--------------BLOG------------------*/
#blog {
	padding-top: 100px;
}
#blog h1 {
	text-align: center;
	padding-bottom: 30px;
	text-transform: uppercase;
	font-weight: bold;
}
#blog h2 {
	line-height: 36px;
}
#blog a {
	display: block;
	margin-bottom: 30px;
	box-shadow: 0 0.2rem 2.8rem rgb(36 36 36 / 10%);
}
#blog a:hover p {
	background-color: #d30605;
	color: #fff;
}
#blog a .testo {
	padding: 10px;
}
#blog a .image {
	display: grid;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: auto;
	aspect-ratio: 9 / 11;
}
#blog .fascia-1 {
	padding: 30px 0;
}
.blog #servizio-montaggio {
	display: none;
}
#blog p {
	border: 1px solid #d30605;
	border-radius: 10px;
	padding: 5px 20px;
	display: inline-block;
	margin-top: 20px;
	color: #d30605;
}
#blog .altro-button {
	border: 1px solid #d30605;
	border-radius: 10px;
	padding: 5px 20px;
	display: inline-block;
	color: #fff;
	background-color: #d30605;
	margin: 30px auto;
	display: block;
}
#blog .altro-button:hover {
	opacity: 0.8;
}
/*--------------BLOG SINGLE------------------*/
.single-post section {
	padding-top: 100px;
}
.single-post h1 {
	line-height: 40px;
	font-size: 30px;
	padding-bottom: 30px;
}
.single-post h2 {
	padding-top: 30px;
	line-height: 36px;
}
.single-post article {
	padding: 30px 5%;
}
.single-post article .date {
	font-style: italic;
	font-weight: bold;
	margin-bottom: 30px;
	display: block;
}
.single-post article img {
	margin: 30px 0;
}
.single-post #servizio-montaggio {
	display: none;
}
/*-----------------NEGOZIO-------------------*/
.shop {
	padding: 0 5%;
}
.negozio section {
	padding-top: 150px;
}
.orderby {
	display: none;
}
.woocommerce section .hentry {
	padding: 0 5%;
}
.woocommerce section h1 {
	text-align: center;
	color: #d30605;
	padding-bottom: 30px;
}
.woocommerce-result-count {
	display: none;
}
.woocommerce .woocommerce-ordering {
	width: 100%;
    text-align: center;
}
.woocommerce .woocommerce-ordering select {
	outline: none;
    padding: 10px 20px;
    background-color: #d30605;
    color: #fff;
    margin: 30px 0;
    border: none;
}
.woocommerce ul.products[class*=columns-] li.product, 
.woocommerce-page ul.products[class*=columns-] li.product {
	box-shadow: 0 0.2rem 2.8rem rgb(36 36 36 / 10%);
	padding: 20px;
	width: 100%;
	border-radius: 20px;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, 
.woocommerce ul.products li.product .woocommerce-loop-product__title, 
.woocommerce ul.products li.product h3 {
	font-size: 20px;
	text-align: center;
}
.woocommerce ul.products li.product .price {
	color: #000;
	text-align: center;
	font-size: 18px;
}
.woocommerce ul.products li.product a img {
	border-bottom: 1px solid;
	margin: 0;
}
.woocommerce .sidebar-widget {
    margin: 0 auto;
    margin-top: 30px;
}
.garanzie div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
}
.garanzie img {
	max-width: 30px;
	margin-right: 20px;
}
.negozio .assistenza {
	text-align: center;
	padding: 30px 0;
	margin: 0 auto;
	max-width: 750px;
}
.negozio .assistenza a {
	text-decoration: underline;
}
.woocommerce-loop-product__title {
	display: none;
}
.titolo {
	text-align: center;
	font-size: 16px;
	padding: 30px 0 0;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.woocommerce ul.products[class*=columns-] li.product, 
.woocommerce-page ul.products[class*=columns-] li.product {
	width: 100%;
	margin: 2% 0;
}
.sidebar-widget .widget_product_categories {
	margin-bottom: 30px;
}
.sidebar-widget #woocommerce_product_categories-2 {
	
}
/*-----------------SINGOLO PRODOTTO-------------------*/
.sezione-video video {
    width: 100%;
}
.product h1 {
	color: #000;
	text-align: left !important;
	line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 10px;
}
.single-product article {
	padding: 200px 5% 30px;
}
.product ol {
	display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    background-color: #ededed;
}
.product li {
	width: 32% !important;
}
.quantity input {
	position: relative;
	height: auto;
	border: 1px solid #000;
}
.carrello .product-thumbnail,
.cart .product-thumbnail {
	display: none;
}
.carrello th,
.cart th {
	font-size: 14px;
	padding: 5% 8px;
}
.carrello .cart tr,
.cart .cart tr {
	height: 230px;
	font-size: 14px;
}
.carrello h1,
.cart h1,
.carrello h2,
.cart h2 {
	font-size: 25px;
	text-align: center;
}
.carrello h2,
.cart h2 {
	margin: 30px 0;
}
.woocommerce-info {
	border-top-color: #000;
}
.woocommerce-info::before {
	color: #000;
}
.return-to-shop {
	text-align: center;
}
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
	background-color: #000;
	color: #fff;
	border-radius: 5px;
}
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce input.button:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}
.woocommerce button.button:hover {
	background-color: #000;
	color: #fff;
}
.carrello section {
	padding-top: 150px;
}
.carrello article,
.cart article {
	padding: 0 3%;
}
.select2-container--default .select2-selection--single {
	outline: none;
}
.carrello .shipping-calculator-button,
.cart .shipping-calculator-button {
	color: #cd1719;
	font-weight: bold;
}
.carrello .shipping td,
.cart .shipping td {
	padding: 10px 0;
}
.carrello .shipping-calculator-form p,
.cart .shipping-calculator-form p {
	margin-bottom: 10px;
}
.carrello .shipping-calculator-form #calc_shipping_city_field,
.cart .shipping-calculator-form #calc_shipping_city_field,
.carrello .shipping-calculator-form #calc_shipping_postcode_field,
.cart .shipping-calculator-form #calc_shipping_postcode_field {
	background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}
.carrello .shipping-calculator-form p input,
.cart .shipping-calculator-form p input {
	text-align: center;
	height: 27px;
	line-height: 27px;
}
.carrello .wc-proceed-to-checkout,
.cart .wc-proceed-to-checkout {
	margin-top: 20px;
}
.woocommerce-order-details,
.woocommerce-customer-details,
.woocommerce-columns {
	padding-top: 0px !important;
}
.pagamento section {
	padding-top: 150px;
}
.checkout h1,
.pagamento h1 {
	text-align: center;
	margin-bottom: 20px;
}
.checkout h2,
.pagamento h2 {
	font-size: 25px;
	margin: 20px 0;
}
.checkout h3,
.pagamento h3 {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
	margin-top: 30px;
}
.checkout .form-row,
.pagamento .form-row {
	display: grid;
    position: relative;
}
.suggerimento_citta {
    width: calc(100% - 6px);
    max-height: 90px;
    overflow: hidden auto;
    position: absolute;
    left: 3px;
    background-color: #ebe9eb;
    z-index: 1;
}
.suggerimento_citta[aperto="false"] {
    display: none;
}
.suggerimento_citta li{
    padding: 5px 10px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}
.suggerimento_citta li:nth-child(odd) {
    background-color: #e5e5e8;
}
.suggerimento_citta li:hover {
    background: #f1f1f5;
}
.checkout .woocommerce-billing-fields__field-wrapper p input,
.pagamento .woocommerce-billing-fields__field-wrapper p input,
.checkout textarea,
.pagamento textarea {
	width: 96%;
    border: 1px solid #ddd;
    font-size: 12px;
    padding: 2%;
    margin: 5px 0 20px 0;
    outline: none;
}
.checkout #billing_country_field,
.pagamento #billing_country_field,
.checkout #billing_state_field,
.pagamento #billing_state_field {
	margin-bottom: 20px;
}
.checkout #ship-to-different-address,
.pagamento #ship-to-different-address {
	font-weight: 500;
	text-transform: none;
}
.checkout .payment_method_paypal img,
.pagamento .payment_method_paypal img {
	max-width: 40px;
}
th {
    padding: 5% 5% 5% 0;
    width: 40%;
    text-align: left;
}
td {
    padding: 5% 5% 5% 0;
}
tr {
    border-bottom: 1px solid #ccc;
}
.methods {
	padding: 20px 0;
}
.about_paypal {
	display: none;
}
.wc_payment_method payment_method_paypal {
	margin-top: 20px;
}
.woocommerce-notice {
	margin-bottom: 20px;
}
.woocommerce-order ul {
	padding: 20px 0;
}
.woocommerce-message .button {
	background-color: #fff;
	color: #cd1719;
	width: 100%;
}
.mio-account section {
	padding-top: 150px;
}
.mio-account h1,
.my-account h1 {
	text-align: center;
	font-size: 25px;
}
.mio-account h2,
.my-account h2 {
	font-size: 20px;
}
.mio-account section,
.my-account section {
	text-align: center;
	width: 90%;
	margin: 0 auto;
}
.mio-account .woocommerce-MyAccount-navigation ul,
.my-account .woocommerce-MyAccount-navigation ul {
	margin: 30px auto;
}
.mio-account .woocommerce-MyAccount-navigation ul li,
.my-account .woocommerce-MyAccount-navigation ul li {
	width: 100%;
}
.mio-account .woocommerce-MyAccount-navigation ul li a,
.my-account .woocommerce-MyAccount-navigation ul li a {
	box-shadow: 0 0.2rem 2.8rem rgb(36 36 36 / 10%);
	width: 100%;
	height: auto;
	margin-bottom: 30px;
	padding: 20px;
	border-radius: 10px;
	text-transform: uppercase;
	display: block;
}
.mio-account .woocommerce-MyAccount-navigation ul li a:hover,
.my-account .woocommerce-MyAccount-navigation ul li a:hover {
	text-decoration: underline;
}
.woocommerce-MyAccount-content a {
	font-weight: bold;
}
.woocommerce-info a {
	width: 100%;
	color: #fff;
}
.woocommerce-info a.showlogin {
    color: #000;
}
.woocommerce-Address {
	padding: 10px 0;
}
.woocommerce-MyAccount-content form {
	text-align: left;
}
.woocommerce-MyAccount-content form input {
	border: 1px solid #000;
	padding: 10px;
	margin: 10px 0;
	width: 100%;
}
.woocommerce-MyAccount-content form legend {
	text-align: center;
}
.woocommerce-MyAccount-content form .button {
	text-align: center;
	width: 100%;
	margin-top: 20px;
}
.u-columns .u-column1,
.u-columns .u-column2 {
	margin: 30px 0;
}
.u-columns input {
	width: 100%;
	border: 1px solid #000;
	padding: 10px;
}
.u-columns .button {
	width: 100%;
	margin-top: 20px;
}
.u-columns .woocommerce-form__input-checkbox {
	width: 5%;
	margin-bottom: 0;
}
.u-columns h2 {
	margin-bottom: 10px;
}
.u-columns p {
	margin-bottom: 20px;
	font-size: 12px;
} 
.woocommerce div.product .product_title {
	color: #000;
	letter-spacing: 1px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.woocommerce div.product p.price, 
.woocommerce div.product span.price {
	color: #000;
	margin: 20px 0;
	font-size: 22px;
}
.product_meta a {
	color: #333;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 0;
	color: #000;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 300;
	padding: 11px;
    width: 100%;
    outline: none;
}
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: none;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
	display: none;
}
.woocommerce div.product form.cart .variations {
	margin-bottom: 0;
}
.woocommerce button.checkout-now {
	border-radius: 0 5px 5px 0 !important;
}
.product .quantity .qty {
	height: 56px !important;
	width: 100% !important;
	margin-bottom: 0;
	border-radius: 5px;
}
.variations_form .quantity .qty {
	height: 40px !important;
}
.woocommerce div.product form.cart div.quantity {
	width: 25%;
    padding-right: 1%;
}
.related {
	padding-top: 60px;
}
.related h2 {
	color: #d30605;
	text-align: center;
	font-size: 26px;
	margin-bottom: 30px;
}
.related .titolo {
	margin-bottom: 0px;
	padding-top: 20px;
}
.related li {
	width: 100% !important;
	margin-bottom: 30px !important;
}
.related .price {
	margin: 0 !important;
}
.woocommerce ul.products li.product .button {
	display: none;
}
.woocommerce ul.products li.product a {
	position: relative;
	display: block;
}
.sfsi_shortcode_container {
	margin-top: 30px;
	float: none !important;
}
.sfsi_wicons {
	margin-right: 5px;
}
.sfsi_widget {
	min-height: inherit;
}
.woocommerce-message {
	border-top-color: #000;
}
.woocommerce-message::before {
	color: #000;
}
.carrello .quantity .qty,
.cart .quantity .qty {
	display: inline-table;
	height: auto;
    width: 60px;
}
.carrello .actions .button,
.cart .actions .button {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
	opacity: 1;
}
.carrello .coupon .button,
.cart .coupon .button,
.carrello .coupon #coupon_code,
.cart .coupon #coupon_code {
	width: 100% !important;
	margin: 10px 0;
}
.carrello .cart-collaterals, 
.cart .cart-collaterals, 
.woocommerce-page .cart-collaterals {
	margin-top: 60px;
}
.pagamento .woocommerce form .form-row input.input-text, 
.pagamento .woocommerce form .form-row textarea,
.checkout .woocommerce form .form-row input.input-text, 
.checkout .woocommerce form .form-row textarea {
	border: 1px solid #999;
}
#add_payment_method #payment ul.payment_methods li input, 
.woocommerce-cart #payment ul.payment_methods li input, 
.woocommerce-checkout #payment ul.payment_methods li input {
	height: auto;
	width: auto;
}
.woocommerce #payment #place_order, 
.woocommerce-page #payment #place_order {
	margin-top: 20px;
}
.showcoupon {
	color: #000 !important;
}
#add_payment_method #payment div.payment_box, 
.woocommerce-cart #payment div.payment_box, 
.woocommerce-checkout #payment div.payment_box {
	background-color: #fff;
}
#add_payment_method #payment div.payment_box::before, 
.woocommerce-cart #payment div.payment_box::before, 
.woocommerce-checkout #payment div.payment_box::before {
	display: none;
}
.woocommerce ul.order_details li {
	width: 100%;
    padding: 10px 0;
}
.woocommerce-account .addresses .title h3,
.woocommerce-account .addresses .title .edit {
	float: none;
}
.product .social {
	text-align: left !important;
	padding-top: 30px;
}
.product .social img {
	max-width: 30px;
	margin-right: 10px;
	margin-top: 10px;
}
.woocommerce div.product div.summary {
	margin-bottom: 0;
}
.product .exit {
	letter-spacing: 1px;
	font-size: 12px;
	margin: 30px 0 10px;
	display: inline-block;	
	width: 200px;
}
.product .exit img {
	max-width: 20px;
	margin-right: 10px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-ms-transition-duration: 1s;
	-moz-transition-duration: 1s;
}
.product .exit:hover img {
	transform: translateX(-10px);
	-webkit-transform: translateX(-10px);
	-o-transform: translateX(-10px);
	-moz-transform: translateX(-10px);
	-ms-transform: translateX(-10px);
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-ms-transition-duration: 1s;
	-moz-transition-duration: 1s;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-tabs .panel span {
	text-transform: uppercase;
	padding-top: 30px;
	display: block;
	font-size: 14px;
}
.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
	background-color: transparent;
	color: #000;
}
.woocommerce div.product form.cart .variations select {
	outline: none;
	padding: 10px;
	background-color: #000;
	color: #fff;
	font-weight: bold;
}
.variations tr {
	border-bottom: none;
}
.woocommerce div.product form.cart .variations td, 
.woocommerce div.product form.cart .variations th {
	vertical-align: baseline;
}
.single_variation_wrap .quantity {
	width: 15% !important;
}
.single_variation_wrap .alt {
	width: 83% !important;
}
.single_variation_wrap .checkout-now {
	width: 100%;
	margin-top: 20px !important;
}
.woocommerce div.product form.cart .reset_variations {
	display: none !important;
}
.variations td {
	padding: 1% 0;
}
.woocommerce div.product form.cart .variations label {
	text-transform: uppercase;
    font-size: 18px;
    color: red;
}
.woocommerce div.product div.images.woocommerce-product-gallery {
	box-shadow: 0 0.2rem 2.8rem rgb(36 36 36 / 10%);
}
.woocommerce div.product .stock {
	color: #d30605;
	margin-bottom: 10px;
}
.woocommerce div.product div.images {
	margin-bottom: 0;
}
.woocommerce .up-sells {
	text-align: center;
}
.woocommerce .up-sells h2 {
	margin-bottom: 30px;
}
.woocommerce .up-sells li {
	width: 46% !important;
	margin-bottom: 20px !important;
}
.woocommerce-MyAccount-content .button {
	width: 100% !important;
}
.carrello .cross-sells {
	display: none;
}
#ship-to-different-address {
	width: 100%;
}
#ship-to-different-address #ship-to-different-address-checkbox,
.validate-required #terms  {
	height: 15px;
	width: 15px;
	margin: 0 !important;
	margin-right: 10px !important;
}
#ship-to-different-address label {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
#ship-to-different-address label span {
	width: 100%;
	margin-top: -4px;
}
.pulsanti {
	display: flex;
	flex-direction: column;
}
.pulsanti a {
	width: 300px;
	text-align: center;
	padding: 5px 20px;
	text-transform: uppercase;
}
.pulsanti .scheda-tecnica {
	background-color: #d30605;
	color: #fff;
}
.pulsanti .scheda-tecnica:hover {
	opacity: 0.8;
}
.pulsanti .info {
	background-color: #000;
	color: #fff;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 10px;
	width: 100%;
	cursor: pointer;
	font-weight: bold;
	border-radius: 5px;
}

.pulsanti .info img {
	max-width: 20px;
	margin-left: 20px;
}
.woocommerce div.product p.stock {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
}
.single .assistenza {
	display: none;
}
.single ol li {
	margin: 1% !important;
}
.woocommerce form .form-row .input-checkbox {
	height: 15px;
    width: 15px;
    margin: 0 !important;
    margin-right: 10px !important;
}
.woocommerce div.product .google {
	display: flex;
	margin-bottom: 20px;
	border: none;
}
.checkout-now {
	padding: 20px !important;
	text-transform: uppercase;
}
.woocommerce div.product form.cart {
	display: flex;
	flex-direction: column;
}
.woocommerce div.product .variations_form {
	display: block !important;
}
.woocommerce .gratis,
.woocommerce  .testo-esaurito {
	border: none;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: bold;
    background-color: transparent;
    color: red;
    font-size: 25px;
}
.woocommerce .gratis {
	margin-top: 30px;
}
.woocommerce span.esaurito {
    font-weight: 700;
    position: absolute;
    text-align: center;
	background-color: #d30605;
    color: #fff;
    font-size: .857em;
    z-index: 9;
    line-height: revert;
    top: 0;
    right: 0;
    left: auto;
    padding: 0px 10px;
    margin: -0.5em -0.5em 0 0;
}
.woocommerce ul.products li.product .esaurito {
	margin: -1.5em -1.5em 0 0;
}
.woocommerce span.onsale {
	background-color: #d30605;
	min-height: 3.236em;
    min-width: 3.236em;
    line-height: 3;
}
.woocommerce ul.products li.product .onsale {
	margin: -1.5em 0 0 -1.5em;
	right: auto;
	left: 0;
	border-radius: 5px;
	text-transform: uppercase;
	padding: 0px 10px;
	min-height: auto;
	line-height: revert;
}
.woocommerce ul.products {
	display: grid;
    grid-auto-rows: max-content;
} 
.variations_form .variations tr {
	height: auto;
}
.single-product .tabella div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}
.single-product .tabella {
	box-shadow: 2px 15px 30px 19px rgb(0 0 0 / 10%);
    border-radius: 10px;
	margin-bottom: 30px;
}
.single-product .tabella p {
	width: 50%;
	padding: 10px;
}
.single-product .tabella p:first-child {
	border-right: 1px solid #ccc;
	display: flex;
	align-items: center;
	height: 80px;
}
.single-product .right h3 {
	margin-top: 60px;
	margin-bottom: 20px;
}
.single-product .tabella .grey {
	background-color: #ededed;
}
#smart-button-container div {
	text-align: left;
}
.payment-box .gpay-button.black.pay.en {
    min-width: unset;
    width: 100%;
}
.wc_stripe_product_payment_methods li {
	width: 100% !important;
}
.wc-stripe-product-checkout-container.bottom {
	margin-top: 0 !important;
}
.woocommerce div.product form.cart {
    margin-bottom: 1em;
}
.product-type-variable .woocommerce-product-details__short-description .carte {
	display: none;
}
.outofstock .carte,
.outofstock .gratis {
	display: none;
}
.widget_block input {
	border: 1px solid #D7D7D7;
    border-radius: 4px;
    padding: 23px 10px;
    cursor: pointer;
    position: relative;
    text-align: center;
}
.widget_block p {
	color: var(--yith-wcan-filters_colors_titles, #434343);
}
.single-product .cart {
	margin-top: 30px;
}
.avvisami-box {
	margin-bottom: 30px;
	padding: 20px;
	text-align: center;
	border: 2px solid red;
}
.avvisami-box p {
	margin-bottom: 20px;
	font-weight: bold;
	text-transform: uppercase;
	color: #000;
}
.woocommerce-error li {
	display: flex;
	flex-direction: column-reverse;
	color: #fff;
}

.yt-filter-wrapper .sidebar-widget .filters-container > form {
    width: 100%;
    text-align: center;
}
.buy-now {
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 300 !important;
	padding: 20px !important;
	width: 100% !important;
	outline: none;
	display: inline !important;
	text-align: center;
	border-radius: 0 !important;
}
.buy-now:hover {
	opacity: 0.8;
	background-color: #000 !important;
	color: #fff !important;
	border: none !important;
}
/*-----------------CHECKOUT A STEP-------------------*/


.woocommerce-checkout .bottoni-per-step,
.woocommerce-checkout #btn-backstep,
.woocommerce-checkout #btn-nextstep,
.woocommerce-checkout #btn-confermastep {
    display: none;
}

.woocommerce-checkout.step-1 h3#compila_dati_cliente,
.woocommerce-checkout.step-1 .woocommerce-form-login-toggle,
.woocommerce-checkout.step-1 .woocommerce-form-coupon-toggle,
.woocommerce-checkout.step-1 #customer_details.col2-set,
.woocommerce-checkout.step-1 .woocommerce-checkout-review-order.metodi-pagamenti {
    display: none;
}
.woocommerce-checkout.step-1 .bottoni-per-step,
.woocommerce-checkout.step-2 .bottoni-per-step,
.woocommerce-checkout.step-3 .bottoni-per-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}
.woocommerce-checkout.step-1 #btn-confermastep,
.woocommerce-checkout.step-2 #btn-nextstep {
    display: inline-block;
    background-color: #85BB41;
    border: none;
    padding: 10px;
}
.woocommerce-checkout.step-3 #btn-backstep {
    display: inline-block;
    padding: 10px;
}


.woocommerce-checkout.step-2 .woocommerce-form-coupon-toggle,
.woocommerce-checkout.step-2 table.woocommerce-checkout-review-order-custom_table,
.woocommerce-checkout.step-2 .woocommerce-checkout-review-order.metodi-pagamenti {
    display: none;
}

.woocommerce-checkout.step-1 h3#compila_dati_cliente,
.woocommerce-checkout.step-3 .woocommerce-form-login-toggle,
.woocommerce-checkout.step-3 #customer_details.col2-set /*,
.woocommerce-checkout.step-3 table.woocommerce-checkout-review-order-custom_table */{
    display: none;
}
.woocommerce form .form-row .select2-container {
	width: 100% !important;
}
.woocommerce form .form-row select {
	height: 40px;
}
label.error, .woocommerce-error {
	background-color: #b81c23 !important;
	font-weight: bold;
    text-transform: uppercase;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	background-color: #d30605;
	color: #fff;
	font-weight: bold;
	padding: 0 5px;
	border: none;
	border-radius: var(--wc-form-border-radius);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #fff transparent transparent transparent;
}
.woocommerce form .form-row.woocommerce-validated .select2-container:not(.select2-container--open) .select2-selection,
.select2-container .select2-selection--single {
	border: none !important;
}
.sidebar .search {
	display: none;
}
/*-----------------TERMINI E CONDIZIONI-------------------*/
#termini h1 {
	text-align: center;
	font-size: 30px;
	color: #000;
	margin-bottom: 60px;
}
#termini p {
	margin-bottom: 20px;
}

/*----------------- BARRA DI RICERCA AGROTRADE -------------------*/
#servizio-montaggio {
	position: absolute;
	z-index: 10;
	width: 100%;
	margin:0 auto;
	top: 130px;
}
.subheader-agrotrade {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: transparent;
    padding: 0 5%;
}
body.prodotti-in-offerta.scrolled_over .subheader-agrotrade,
body.negozio.scrolled_over .subheader-agrotrade {
    position: relative;
}
body.scrolled_over .subheader-agrotrade nav.subnav {
    display: block;
}
body.scrolled_over .subheader-agrotrade .ricerca-wrapper {
    display: none;
}

.sfondo-ricerca {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0px;
    background: rgba(0,0,0,0.0);
    transition: background 1.2s ease;
    cursor: pointer;
}

.ricerca-aperta .sfondo-ricerca {
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.ricerca-content h3 {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.ricerca-content h3:before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: #d30605;
    top: 10px;
    left: 0px;
    z-index: -1;
}
.ricerca-content h3 span {
    background-color: #fff;
    padding: 5px;
    padding-left: 0px;
    padding-right: 10px;
    z-index: 10;
}

.ricerca-wrapper {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
    height: 40px;
    background-color: #fff;
    border: 2px solid #d30605;
    border-radius: 8px;
    position: relative;
    padding-left: 35px;
    z-index: 10; 
}

.ricerca-wrapper input[type="search"] {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    display: block;
    outline: none;
    border: none;
    background: none;
    padding: 10px;
}

.ricerca-wrapper .freccia-su {
    width: 0; 
    height: 0;
    position: relative;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 22px solid black;
    display: block;
    margin: 0 auto;
    z-index: 2;
    top: 1px;
    left: -1px;
}

.ricerca-wrapper .freccia-su:before {
    width: 0; 
    height: 0;
    content: "";
    position: relative;
    display: block;
    margin: 0 auto;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 21px solid #fff;
    z-index: 2;
    top: 1px;
    left: -21px;
}

.ricerca-interno {
    width: calc(100vw - 40px);
    max-width: 640px;
    position: absolute;
    display: none;
    top: 35px;
    left: 0;
}

.ricerca-aperta .ricerca-interno {
    display: block;
}

.ricerca-content {
    width: 100%;
    height: 100%;
    min-height: 100px;
    background: #fff;
    display: block;
    border: 1px solid #000;
    padding: 15px;
}

.ricerca-items {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.elemento-ricerca {
    display: flex;
    gap: 10px;
}
.elemento-ricerca.active {
    background-color: #dbe8d9;
}

.elemento-ricerca:hover {
    background-color: #e9f3e7;
}
.elemento-ricerca.active:hover {
    background-color: #dbe8d9;
}

.elemento-ricerca .item-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.ricerca-items.prodotti-items .item-content {
    flex-direction: column;
    flex-flow: wrap;
}

.elemento-ricerca .item-content label {
    display: block;
    width: 100%;
    font-size: 0.92em;
}
.item-content .item-bar {
    display: flex;
    width: 100%;
    font-size: 0.8em;
}
.item-content .item-bar .itembar-left {
    width: 30%;
}
.item-content .item-bar .itembar-center {
    width: 60%;
}
.item-content .item-bar .itembar-right {
    width: 20%;
}

.categorie-items .elemento-ricerca,
.prodotti-items .elemento-ricerca {
    padding: 5px 0px;
}

.item-content .star-rating {
    --percent: calc(var(--rating) / 5 * 100%);
    display: block;
    font-size: 20px;
    line-height: 1;
    position: relative;
    top: -3px;
}
    
.item-content .star-rating::before {
    content: '\2605\2605\2605\2605\2605';
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fc0 var(--percent), #eee var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.elemento-ricerca .item-icon {
    width: 20px;
}
.menu_card .item-icon {
    width: 20px;
    margin-right: 5px;
}
.menu_card .item-icon.image {
    width: 40px;
    display: none;
}
.menu_card .item-icon.image img {
    border-radius: 5px;
    border: 3px solid #d30605;
}
.menu_card ul a li {
	padding: 5px;
}
.menu-car .item-icon.image,
.elemento-ricerca .item-icon.image {
    width: 100px;
    border: 3px solid #d30605;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
}

.prodotti-items .elemento-ricerca .item-icon.image {
    border: 1px solid silver;
    border-radius: 0px;
}

.ricerca-wrapper > i.icona-ricerca {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    color: #ba0000;
}

.ricerca-wrapper h3.intestazione.categorie,
.ricerca-wrapper h3.intestazione.prodotti,
.ricerca-items.categorie-items,
.ricerca-items.prodotti-items {
    display: none;
}

.ajax-search-spinner {
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: search-spin 1.8s linear infinite;
    display: block;
    margin: 0 auto;
}

@keyframes search-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cart_totals .woocommerce-shipping-destination,
.cart_totals .woocommerce-shipping-calculator {
	display: none;
}

/*********** POPUP **********/

.popup-wrapper {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 100;
    top: 0px;
    left: 0px;
    align-items: center;
    justify-content: center;
}

.popup-wrapper .popup-background {
    background-color: rgba(0,0,0,0.15);
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0px;
    left: 0px;
    transition: all 1.2s ease;
    cursor: pointer;
}

.popup-wrapper .popup {
    z-index: 20;
    width: 100%;
    max-width: 450px;
    height: fit-content;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #c0c0c0;
    box-shadow: 1px 1px 2px 3px rgba(0,0,0,0.35);
    padding: 15px;
    z-index: 10;
}

.popup-wrapper .popup-head {
    width: 100%;
    padding: 10px;
    background-color: #d30605;
    color: #ffffff;
    font-weight: 650;
}
.popup-wrapper .popup-body {
    padding: 10px 0px;
}
.popup-wrapper .popup-body input {
    border: 1px solid #333;
    border-radius: 5px;
    margin-bottom: 10px;
}

.popup-wrapper .popup-body div.errori {
    color: #ba0000;
    font-weight: bold;
    font-style: italic;
}
.popup-wrapper .popup-body div.successo {
    color: #087b0e;
    font-weight: bold;
}
.popup-wrapper .popup-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
    gap: 10px;
}

.popup-wrapper[aria-visible="false"]{
    display: none;
}

.popup-wrapper[aria-visible="false"] .popup-background{
    display: block;
    background-color: rgba(0,0,0,0.0);
}

/** checkout **/
.woocommerce-checkout-review-order.metodi-pagamenti table.shop_table {
    display: none;
}
.woocommerce-checkout-review-order-custom_table .product-thumbnail img {
    width: 40px;
}
.woocommerce-checkout-review-order-custom_table th.product-thumbnail,
.woocommerce-checkout-review-order-custom_table td.product-thumbnail {
    width: 10%;
}
.woocommerce-checkout-review-order-custom_table th.product-quantity,
.woocommerce-checkout-review-order-custom_table td.product-quantity {
    width: 10%;
    text-align: center;
}
.woocommerce-checkout-review-order-custom_table th.product-total,
.woocommerce-checkout-review-order-custom_table td.product-total {
    text-align: right;
}
#payment.woocommerce-checkout-payment {
    margin-top: 20px;
}
.woocommerce table.custom_shop_table {
    border: 1px solid rgba(0,0,0,.1);
    margin: 0 auto;
    text-align: left;
    width: 90%;
    border-collapse: separate;
    border-radius: 5px;
}
.woocommerce table.custom_shop_table th {
    font-weight: 700;
    padding: 5px;
    line-height: 1.5em;
}
.woocommerce table.custom_shop_table td {
    border-top: 1px solid rgba(0,0,0,.1);
    padding: 5px;
    vertical-align: middle;
    line-height: 1.5em;
}
.woocommerce-page .col2-set {
	width: 100%;
	margin: 0 auto;
}
.woocommerce-order {
	width: 90%;
	margin: 0 auto;
}
.woocommerce #shipping_method {
	text-align: left;
}
.woocommerce table.custom_shop_table tbody th, .woocommerce table.custom_shop_table tfoot td, .woocommerce table.custom_shop_table tfoot th {
    font-weight: 700;
    border-top: 1px solid rgba(0,0,0,.1);
}
.woocommerce table.custom_shop_table tr.cart-subtotal td,
.woocommerce table.custom_shop_table tr.order-total td,
.woocommerce table.custom_shop_table tr.shipping td ul { 
    text-align: right;
}
.woocommerce-shipping-totals td:nth-child(1) {
	display: none !important;
}
.woocommerce-form__input-checkbox {
	height: auto;
	padding: 0;
	margin-bottom: 0;
	margin-right: 10px;
	width: auto;
}
.woocommerce form .form-row .optional {
	display: none;
}
#payment ul.payment_methods li img.ppcp-card-icon {
	width: 40px;
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form span {
	height: 35px !important;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, 
.woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
	width: 49%;
}
.product .spese-accessorie li {
    width: 100% !important;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    font-size: 18px;
}
.product .spese-accessorie {
    margin-top: 30px;
}
.product .image img {
	border-radius: 10px;
}
.product .spese-accessorie input {
    display: inline-block;
    height: 15px;
    width: 15px;
    margin:0 5px 0 0;
    border: 1px solid #000;
}
ul.products .product_cat-senza-categoria {
   display: none!important;
}
.info-montaggio {
	display: grid;
	margin-left: 5px;
}
.info-montaggio img {
	max-width: 20px;
}
.down {
	display: block;
}
.fascia-accessori {
	text-align: center;
	padding: 60px 0;
}
.fascia-accessori h2 {
	padding-bottom: 10px;
}
.heidipay-inline-wrapper {
	font-size: 20px !important;
}
#screen-meta label[for=postexcerpt-hide] {
	display: block !important;
}
span.marchio-sconto {
	position: absolute;
   	margin: -1.5em -1.5em 0 0;
    border-radius: 0;
    text-transform: uppercase;
    padding: 0px 10px;
    right: 0;
    top: 0;
    background-color: #d30605;
    color: #fff;
    font-size: .857em;
    font-weight: 700;
}
#payment.woocommerce-checkout-payment img, 
#payment.woocommerce-checkout-payment img {
	width: 35px !important;
}
/* ----------------SLIDE ACCESSORI------------------ */
.slide-accessori .slick-slide {
    margin: 0px 10px;
}
.accessorio-agro {
    text-align: center;
    position: relative;
    cursor: pointer;
    border: 1px solid silver;
}
.accessorio-agro h3 {
	padding-bottom: 30px;
}
.accessorio-agro h2 {
	font-size: 22px;
	height: 100px;
}
.slick-slide .accessorio-agro div.thumb-accesorio {
    width: 100%;
    height: 200px;
    display: block;
    padding: 30px;
}
.accessorio-agro img {
    max-width: unset;
    width: auto;
    height: 100%;
    display: block;
    margin: 0 auto;
    scale: 1;
    transition: scale 0.66s ease;
}
.accessorio-agro[selected] {
    border: 2px solid #d30605;
}
.accessorio-agro[selected] img {
    scale: 1.1;
}
.accessorio-agro::before {
    content: " ";
    border: 1px solid #d30605;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-style: normal;
    font-variant: normal;
    width: 28px;
    height: 28px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    font-size: 8px;
    left: 10px;
    top: 10px;
    transition: font-size 0.46s ease;
    overflow: hidden;
}
.accessorio-agro[selected]::before {
    content: "\f00c";
    background: #d30605;
    color:#ffffff;
    left: 9px;
    top: 9px;
    width: 30px;
    height: 30px;
    font-size: 25px;
}
.woocommerce .accessorio-agro span.num_disponibili {
    font-weight: 700;
    position: absolute;
    text-align: center;
    background-color: #d30605;
    color: #fff;
    font-size: .857em;
    z-index: 9;
    line-height: revert;
    top: 0;
    right: 0;
    left: auto;
    padding: 0px 10px;
    margin: 0;
}
.woocommerce .accessorio-agro span.esaurito {
	margin: 0;
}
/*-----------------SHOP NASCOSTI-------------------*/
.woocommerce.post-type-archive-product.yith-wcan-free ul.products .product_cat-top-3 {
    display: none!important;
}

/*-----------------OFFERTA-------------------*/
body.scrolled_over.offerte-stagionali .subheader-agrotrade {
	display: none;
}
#offerta {
	padding:150px 5% 60px;
}
#offerta h1 {
	text-align: center;
	padding-bottom: 30px;
    color: #d30605;
    font-size: 26px;
}
#offerta p {
	text-align: center;
}
#offerta .garanzie {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: start;
}
#offerta .product_list_widget {
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 0 5%;
}
#offerta .product_list_widget li {
	width: 100%;
	margin: 2%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	box-shadow: 0 0.2rem 2.8rem rgb(36 36 36 / 10%);
    padding: 20px;
}
#offerta .product_list_widget li a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
#offerta .product_list_widget li a img {
	width: 100%;
	border-bottom: 1px solid;
	margin-bottom: 30px;
}
#offerta .product-title {
	text-align: center;
    font-size: 16px;
    color: #d30605;
    font-weight: normal !important;
}
#offerta .woocommerce-Price-amount {
	font-weight: bold;
}
#offerta #yith-woocommerce-ajax-navigation-filters-3 {
	padding: 30px 0 0;
	text-align: center;
} 
.woocommerce span.onsale {
	top: 0;
    left: 0;
    border-radius: 0;
    text-transform: uppercase;
    padding: 0px 10px;
    min-height: auto;
    line-height: revert;
}
.woocommerce span.onsale.bollino-offerta {
    position: relative;
    float: right;
    font-size: 14px;
}

/** --------------------- POPUP INFORMATIVO AGROTRADE ------------------------------ **/
.popup-agrotrade {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
.popup-agrotrade .overlay {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.7);
}
.popup-agrotrade .popup {
    width: 100%;
    max-width: 600px;
    display: flex;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    height: fit-content;
    position: relative;
}
.popup-agrotrade .popup img {
	max-width: 100% !important;
}
.popup-agrotrade .popup .close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	font-weight: bold;
	font-size: 25px;
	margin-top: -8%;
	color: #fff;
	cursor: pointer;
}
.form-popup {
	width: 100%;
	height: 100vh;
	position: fixed;
	padding-top: 5%;
    top: 0;
	left: 0;
	z-index: 900;
	display: none;
    background-color: rgba(0, 0, 0, 0.45);
}
.form-popup .quadrato {
	max-width: 750px;
	background-color: #e6373c;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    border-radius: 10px;
    font-weight: bold;
    border: 10px solid;
}
.form-popup .quadrato img {
	max-width: 80px;
}
.form-popup .close {
	color: #fff;
	text-align: right;
	font-size: 25px;
	cursor: pointer;
}
.form-popup p {
	font-weight: bold;
}
#cmplz-document {
	margin: 0 auto;
}
.page-template-template-demo-php label {
	display: flex;
	padding: 10px 0;
}
.page-template-template-demo-php input {
	height: auto;
	width: auto;
	margin-bottom: 0;
	margin-right: 5px;
	border: 1px solid #333;
}
.product_tag-accessori .cart {
	display: none !important;
}
.payment_method_heylight img {
	max-width: 70px;
}
.heyLight-inline.widget-summary {
	width: 100% !important;
}
.heyLight-inline.widget-summary .summary-row {
	font-size: 16px !important;
}
.product_cat-active .popup-agrotrade {
	display: none;
}
.actions button {
	padding: 10px;
}
.wc-backward {
	padding: 10px;
}
.wc-forward {
	text-align: center;
	padding: 10px;
}
/*------------------------------------*\
	NEGOZIO AGROTRADE
\*------------------------------------*/

ul.filtri-sidebar {
    margin-bottom: 20px;
    font-size: 14px;
}

ul.filtri-sidebar.macchine,
ul.filtri-sidebar.marchi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.filtri-sidebar li {
    display: flex;
    gap: 10px;
    align-items: center;
}
.filtri-sidebar li[nprod="0"] {
    display: none;
}
.filtri-sidebar input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.agro-tendina .panel-prezzo .descrizione-range {
    display: flex;
    justify-content: space-between;
}

/*------------------------------------*\
	INPUT MULTIRANGE
\*------------------------------------*/

[multi-range] * {
    user-select: none;
}
[multi-range] {
    position: relative;
    height: 7px;
    border-radius: 10px;
    text-align: left;
    margin: 28px 10px;
    max-width: calc(100% - 20px);
    z-index: 1;
    background: #959393;
}
[multi-range] > div {
    position: absolute;
    pointer-events: none;
    left: 1px;
    right: 15px;
    height: 14px;
    width: 100%;
}
[multi-range] > div > [inverse-left] {
    position: absolute;
    left: 28px;
    height: 7px;
    border-radius: 10px;
    margin: 0 7px;
    pointer-events: none;
}
[multi-range] > div > [inverse-right] {
    position: absolute;
    right: 1px;
    height: 7px;
    border-radius: 10px;
    margin: 0 7px;
    pointer-events: none;
}
[multi-range] > div > [range] {
    position: absolute;
    left: 0;
    height: 7px;
    border-radius: 14px;
    background-color: #d30605;
    pointer-events: none;
}
[multi-range] > div > [thumb] {
    position: absolute;
    display: block;
    top: -5px;
    z-index: 2;
    height: 15px;
    width: 15px;
    text-align: left;
    margin-left: -11px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    background-color: #3f3f3d;
    border-radius: 50%;
    outline: none;
    pointer-events: visible;
    cursor: pointer;
}

[multi-range] > input[type=range] {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 3;
    height: 4px;
    top: -2px;
    margin: 0;
    width: calc(100% + 25px);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity = 0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}
[multi-range] > input[type=range].range-start {
    left: -15px;
}
[multi-range] > input[type=range].range-end {
    left: -15px;
}
.agro-tendina input {
    appearance: none;
    border-radius: 5px;
    border: 1px solid #d30605;
    pointer-events: none;
}
.agro-tendina input:checked {
    background-color: #d30605;
}
.riordina-prodotti {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-color: #d30605;
    padding: 0 10px;
}
.sidebar h4 img {
	display: none;
}
.woocommerce .products ul::after, 
.woocommerce .products ul::before, 
.woocommerce ul.products::after, 
.woocommerce ul.products::before {
	display: none;
}
.images.nickx_product_images_with_video {
	max-width: 100% !important;
}
#payment ul.payment_methods [class*=payment_method_ppcp-] label img {
	max-width: 50px;
}
.product-type-variable .sconto .price {
	display: none;
}
.product-type-variable .sconto .variations_form .price {
	display: block;
}
#customer_details,
#order_review {
	padding: 0 5%;
}
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Montserrat-Light';
	src:url('fonts/Montserrat-Light/Montserrat-Light.eot');
	src:url('fonts/Montserrat-Light/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
		url('fonts/Montserrat-Light/Montserrat-Light.woff') format('woff'),
		url('fonts/Montserrat-Light/Montserrat-Light.ttf') format('truetype'),
		url('fonts/Montserrat-Light/Montserrat-Light.svg#Montserrat-Light') format('svg');
    font-weight:normal;
    font-style:normal;
}

@font-face {
	font-family:'OptaneRegular';
	src:url('fonts/OptaneRegular/OptaneRegular.eot');
	src:url('fonts/OptaneRegular/OptaneRegular.eot?#iefix') format('embedded-opentype'),
		url('fonts/OptaneRegular/OptaneRegular.woff') format('woff'),
		url('fonts/OptaneRegular/OptaneRegular.ttf') format('truetype'),
		url('fonts/OptaneRegular/OptaneRegular.svg#OptaneRegular') format('svg');
    font-weight:normal;
    font-style:normal;
}


@font-face {
	font-family:'SabonRoman';
	src:url('fonts/SabonRoman/SabonRoman.eot');
	src:url('fonts/SabonRoman/SabonRoman.eot?#iefix') format('embedded-opentype'),
		url('fonts/SabonRoman/SabonRoman.woff') format('woff'),
		url('fonts/SabonRoman/SabonRoman.ttf') format('truetype'),
		url('fonts/SabonRoman/SabonRoman.svg#SabonRoman') format('svg');
    font-weight:normal;
    font-style:normal;
}


@font-face {
	font-family:'Gotham-Book';
	src:url('fonts/Gotham-Book/Gotham-Book.eot');
	src:url('fonts/Gotham-Book/Gotham-Book.eot?#iefix') format('embedded-opentype'),
		url('fonts/Gotham-Book/Gotham-Book.woff') format('woff'),
		url('fonts/Gotham-Book/Gotham-Book.ttf') format('truetype'),
		url('fonts/Gotham-Book/Gotham-Book.svg#Gotham-Book') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width:414px) {
	.pagamento article,
	.checkout article {
		padding: 0 5%;
	}

}
@media only screen and (min-width:768px) {
    .yt-filter-wrapper {
        min-height: 140px;
    }
	.wpcf7-form .flex {
		display: flex;
	    flex-direction: row;
	    justify-content: space-between;
	    align-items: center;
	}
	.wpcf7-form .flex div {
		width: 48%;
	}
	div.wpcf7-response-output {
		font-size: 20px;
		text-align: right;
	}
	.wpcf7-form {
		padding: 60px;
	}
	.wpcf7-submit {
		margin: 0;
		max-width: 240px;
		display: inline-block;
		float: right;
	}
	body {
		font-size: 16px;
	}
	h1, h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 14px;
	}
	.nav a {
		font-size: 20px;
	}
	.footer {
		font-size: 14px;
	}
	.footer .colonne {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row;
	}
	.footer .colonne div {
		width: 30%;
		border-top: none;
		border-left: 1px solid;
		padding: 0 15px;
	}
	.footer .credits {
		text-align: center;
		font-size: 12px;
	}
	header .carrello-mobile {
		padding-right: 80px;
	}
	@keyframes preheaderSlider {
		0% {transform: translateX(150%);}
		100% {transform: translateX(-150%);}
	}
	#indietro-shop-btn {
		width: calc(50% - 40px);
	}
/*--------------HOME------------------*/
	#home h1 {
		max-width: 600px;
		margin: 0 auto;
	}
	#home .fascia-1 .text h2 {
		font-size: 50px;
	}
	#home .fascia-1 .text p {
		margin-top: 0;
		font-size: 25px;
	}
	#home .fascia-3 .colonne {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#home .fascia-3 .colonne .collezione {
		width: 50%;
	}
	#home .parallax {
		background-attachment: fixed;
	}
	#home .fascia-4 ul {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#home .fascia-4 li {
		width: 31%;
		margin: 1%;
	}
	#home .fascia-8 .slick-slide {
		margin: 20px;
	}
/*--------------AZIENDA------------------*/
	#azienda .fascia-2 img {
		width: 70%;
		margin: 0 auto;
		display: block;
		padding: 60px 0;
	}
/*--------------MARCHI------------------*/
	#marchi .fascia-1 .loghi a {
		width: 33%;
	}
/*--------------CATEGORIE------------------*/
	#categorie .fascia-4 .content {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#categorie .fascia-4 a {
	    width: 46%;
		margin: 2%;
	}
/*--------------CONTATTI------------------*/
	#contact .fascia-1 .contenitore {
		max-width: 500px;
		margin: 0 auto;
	}
/*--------------BLOG------------------*/
	#blog .articoli {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	#blog .articoli a {
		width: 46%;
		margin: 2%;
	}
/*--------------BLOG SINGLE------------------*/
	
/*-----------------NEGOZIO-------------------*/
	.woocommerce .filters-container {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	.yith-wcan-filters .yith-wcan-filter {
		width: 30%;
	}
	.woocommerce .sidebar-widget {
		margin: 0;
	    text-align: left;
	}
	.woocommerce .woocommerce-ordering select {
		margin: 25px 0;
	}
	.select2-container .select2-selection--single {
		height: 40px !important;
		border-radius: 0 !important;
	}
	.select2-container--default .select2-selection--single .select2-selection__arrow {
		height: 40px !important;
	}
	.select2-container--default .select2-selection--single .select2-selection__rendered {
		line-height: 40px !important;
	}
	.garanzie {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: flex-start;
		margin: 60px auto;
	}
	.garanzie div {
		flex-direction: column;
		width: 28%;
		text-align: center;
	}
	.garanzie img {
		margin-bottom: 10px;
		margin-right: 0;
		max-height: 29px;
	}
	.mio-account .woocommerce-MyAccount-navigation ul, 
	.my-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	.mio-account .woocommerce-MyAccount-navigation ul li, 
	.my-account .woocommerce-MyAccount-navigation ul li {
		width: 46%;
		margin: 2%;
	}
	.mio-account .woocommerce-MyAccount-navigation ul li a, 
	.my-account .woocommerce-MyAccount-navigation ul li a {
		margin-bottom: 0;
	}
/*-----------------SINGOLO PRODOTTO-------------------*/
	.shop ul {
		display: flex;
		flex-direction: row;
		width: 100%;
		flex-wrap: wrap;
	}
	.shop ul li {
		width: 45%;
	}
	.sfsi_wicons {
		width: 40px !important;
		height: 40px !important;
	}
	.norm_row {
		min-width: 100%;
	}
	.single .quantity .qty {
		height: 58px;
	}
	.carrello .quantity .qty, 
	.cart .quantity .qty {
		height: auto;
	}
	.woocommerce div.product form.cart .variations {
		margin-bottom: 30px;
	}
	.woocommerce div.product form.cart .variations td.label {
		width: 200px;
	}
	.woocommerce div.product form.cart .variations select {
		min-width: 30%;
	}
	.woocommerce .up-sells ul,
	.woocommerce .related ul {
		display: block;
	}
	.pulsanti {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		padding-top: 30px;
	}
	.pulsanti .scheda-tecnica {
		margin-right: 30px;
	}
	.woocommerce #respond input#submit.alt, 
	.woocommerce a.button.alt, 
	.woocommerce button.button.alt, 
	.woocommerce input.button.alt {
		padding: 20px;
	}
	.variations_form .quantity .qty {
		height: 56px !important;
	}
	.ricerca-interno {
		left: -13vw;
	}
	.ricerca-items {
		grid-template-columns: 1fr 1fr;
	}
	.avvisami-box .pulsanti {
		padding-top: 0;
		justify-content: center;
	}
	#offerta .product_list_widget li {
		width: 46%;
	}
	.related .woocommerce ul.products[class*=columns-] li.product {
		margin: 0 !important;
	}
	.related .slick-slide div {
		margin: 5%;
	}
	.woocommerce ul.products {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	} 
	.woocommerce #content div.product div.summary, 
	.woocommerce div.product div.summary, 
	.woocommerce-page #content div.product div.summary, 
	.woocommerce-page div.product div.summary {
		width: 100%;
	}
	.woocommerce #content div.product div.images, 
	.woocommerce div.product div.images, 
	.woocommerce-page #content div.product div.images, 
	.woocommerce-page div.product div.images {
		width: 100%;
	}
	.woocommerce ul.products[class*=columns-] li.product, 
	.woocommerce-page ul.products[class*=columns-] li.product {
		width: 100%;
		margin: 0;
        height: 470px;
	}
	.woocommerce .cart-collaterals .cart_totals, 
	.woocommerce-page .cart-collaterals .cart_totals {
		float: none;
		width: 100%;
	}
	.woocommerce span.onsale.bollino-offerta {
		margin-right: 50%;
		margin-top: 5px;
	}
	.woocommerce div.product form.cart .single_add_to_cart_button.button {
		border-radius: 5px 0 0 5px;
	}
	.buy-now {
		border-radius: 0 5px 5px 0 !important;
		width: 35% !important;
	}
	.woocommerce div.product form.cart {
			display: flex;
			flex-direction: row;
			width: 100%;
			justify-content: start;
	}
	.woocommerce div.product .google {
		width: 65%;
		margin-bottom: 0;
	}
/*-----------------OFFERTA-------------------*/
	#offerta .filters-container form {
		display: flex;
	    flex-direction: row;
	    justify-content: space-between;
	    align-items: flex-start;
	}
	#offerta .yith-wcan-filter {
   		width: 30%;
	}
	#offerta .garanzie {
		flex-direction: row;
		justify-content: center;
		align-items: start;
		flex-wrap: wrap;
	}
	#offerta .garanzie div {
		width: 33.33333%;
		padding:2%;
	}
	#offerta .garanzie img {
		max-width: 50px;
		max-height: 50px;
	}
}

@media only screen and (min-width:1024px) {
	.nav .mobile a {
		cursor: pointer;
	}
	header .carrello-mobile {
        padding-right: 100px;
    }
    .preheader p {
	    animation-duration: 18s;
	    width: 70%;
    }
	#servizio-montaggio {
		top: 160px;
	}
/*--------------HOME------------------*/
	#home h1 {
		font-size: 60px;
		max-width: 800px;
	}
	#home .fascia-1 .text {
		text-align: left;
		align-items: start;
	}
	#home .fascia-1 .text h2 {
		font-size: 80px;
	}
	#home .fascia-1 .text p {
        margin-top: 0;
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 40px;
    }
    #home .fascia-1 .text .pulsante {
	    font-size: 30px;
    }
	#home .fascia-1 .right {
		left: auto;
		right: 0;
		align-items: end;
		text-align: right;
	}
	#home .fascia-2 {
		padding: 60px 0;
	}
	#home .fascia-2 p {
		max-width: 900px;
		margin: 0 auto;
	}
	#home .fascia-3 .colonne .collezione {
		width: 33.33333333333%;
	}
	#home .fascia-3 .colonne .collezione h2 {
		line-height: 1.2;
	}
	#home .fascia-3 .colonne h3 {
		padding: 20px 0 10px;
	}
	#home .fascia-3 .colonne p {
		padding: 0 30px 10px;
	}
	#home .fascia-4 {
		padding: 60px 0;
	}
	#home .fascia-5 {
		padding: 60px 0;
	}
	#home .fascia-5 p {
		max-width: 900px;
		margin: 60px auto 0;
	}
	#home .fascia-6 {
		padding: 60px 5%;
	} 
	#home .fascia-6 p {
		max-width: 1000px;
		margin: 0 auto;
	}
	.call-to-action {
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
	.call-to-action .pulsante {
		margin-top: 0;
	}
	.call-to-action h3 {
		font-size: 22px;
		text-align: left;
	}
	.carosello-prodotti .slick-next,
	.carosello-prodotti .slick-prev {
		width: 30px;
		height: 30px;
	} 
	#home .fascia-8 .slick-slide {
		height: 40vw;
	}
/*--------------AZIENDA------------------*/
	#azienda .fascia-1 {
		padding: 60px 0;
	}
	#azienda .fascia-1 p {
		max-width: 750px;
		margin: 0 auto;
	}
	#azienda .fascia-2 .flex {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-direction: row;
	}
	#azienda .fascia-2 h2 {
		margin-bottom: 30px;
	}
	#azienda .fascia-2 .flex div {
		width: 48%;
	}
	#azienda .fascia-2 img {
		padding: 0;
		width: 90%;
	}
	#azienda .fascia-2 p {
		text-align: left;
	}
	#azienda .fascia-3 {
		padding: 0 0 60px;
	}
	.slide2 {
		width: 80%;
		margin: 0 auto;
	}
/*--------------MARCHI------------------*/
	#marchi .fascia-1 {
		text-align: center;
		padding: 200px 0 30px;
	}
	#marchi .fascia-1 .loghi a {
		width: 25%;
	}
	#marchi .fascia-1 p {
		max-width: 800px;
		margin: 0 auto;
	}	
/*--------------CATEGORIE------------------*/
	#categorie .fascia-4 {
		padding: 60px 0;
	}
/*--------------CONTACT------------------*/
	#contact .fascia-1 {
		padding-top: 200px;
	}
	#contact .fascia-1 .contenitore {
	    max-width: 600px;
	    margin: 0 auto;
	}
	.wpcf7 {
		padding-top: 60px;
	}
/*--------------BLOG------------------*/
	#blog .fascia-1 {
	    padding: 60px 0;
	}
	#blog h1 {
		padding-bottom: 0;
	}
	#blog a .testo {
	    padding: 20px;
	} 
/*-----------------NEGOZIO-------------------*/
	.woocommerce ul.products li.product .woocommerce-loop-category__title, 
	.woocommerce ul.products li.product .woocommerce-loop-product__title, 
	.woocommerce ul.products li.product h3 {
		font-size: 22px;
	}
	.woocommerce ul.products li.product .price {
		font-size: 20px;
		margin-bottom: 0;
	}
	.woocommerce .woocommerce-ordering select {
		margin: 30px 0;
	}
	.woocommerce section .hentry {
		padding: 0 10px;
	}
	.woocommerce .woocommerce-ordering {
		padding: 0 2%;
	}
	.titolo {
		font-size: 20px;
	}
	.yith-wcan-filters {
		margin-bottom: 0 !important;
	}
	.mio-account .woocommerce-MyAccount-navigation ul li, 
	.my-account .woocommerce-MyAccount-navigation ul li {
		width: 29%;
	}
/*-----------------SINGOLO PRODOTTO-------------------*/
	.product {
		margin-top: 0;
	}
	.carrello .product-thumbnail,
	.cart .product-thumbnail {
		display: table-cell;
	}
	.carrello .product-thumbnail img,
	.cart .product-thumbnail img {
		width: 20%;
		height: auto;
	}
	.carrello th,
	.cart th {
		width: 20%;
		text-align: center;
		font-size: 16px;
	}
	td {
		padding: 20px 0;
	}
	.carrello .cart tr,
	.cart .cart tr {
		height: auto;
	}
	.carrello section h1,
	.cart section h1,
	.checkout section h1,
	.pagamento section h1 {
		padding: 50px 0;
	}
	.mio-account section h1,
	.my-account section h1 {
		padding: 50px 0 0;
	}
	.carrello .shop_table,
	.cart .shop_table,
	.checkout .shop_table,
	.pagamento .shop_table,
	.mio-account .shop_table,
	.my-account .shop_table {
		width: 100%;
	}
	.carrello tr,
	.cart tr {
		font-size: 16px;
	}
	#order_review_heading {
		margin-top: 50px;
	}
	.checkout .woocommerce-columns,
	.pagamento .woocommerce-columns {
		display: flex;
	    flex-direction: row;
	    justify-content: space-evenly;
	}
	.checkout .woocommerce section,
	.pagamento .woocommerce section {
		padding: 20px 0;
	}
	.mio-account .shop_table .woocommerce-orders-table__row td,
	.my-account .shop_table .woocommerce-orders-table__row td {
		text-align: left;
	}
	.mio-account .addresses,
	.my-account .addresses {
		display: flex;
	    flex-direction: row;
	    justify-content: space-around;
	    padding: 30px 0;
	}
	.mio-account .shop_table,
	.my-account .shop_table {
		text-align: left;
	}
	.shop .product_title {
		text-align: left;
	}
	.shop .products .price {
		padding: 0;
		margin: 0 auto;
	}
	.shop .summary .price {
		margin: 0 0;
		padding: 0;
	}
	.related .price {
		margin: 0 auto;
	}
	.shipping-calculator-form {
		width: 50%;
		margin: 20px auto;
	}
	.carrello .shipping-calculator-form p input,
	.cart .shipping-calculator-form p input {
		border: none;
		width: 100%;
	}
	.shop .summary .info {
		text-align: left;
	}
	.shop .summary .info a {
		text-align: left;
	}
	.shop .summary .info span {
		margin: 0;
	}
	.shop .summary .info .social ul {
		justify-content: flex-start;
	}
	.shop .stock {
		margin: 0 0 15px;
	}
	.shop .price {
		align-items: flex-start;
	}
	.onsale {
		margin-bottom: 50px;
	}
	.esaurito {
		margin-bottom: 50px;
	}
	.woocommerce #content div.product .woocommerce-tabs, 
	.woocommerce div.product .woocommerce-tabs, 
	.woocommerce-page #content div.product .woocommerce-tabs, 
	.woocommerce-page div.product .woocommerce-tabs {
		clear: none;
		display: inline-block;
		margin-top: 30px;
	}
	.related {
		clear: both;
	}
	.related h2 {
		font-size: 26px;
	}
	.woocommerce .quantity .qty {
		padding-left: 20px;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation {
		width: 100%;
		float: none;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 50%;
		margin: 0 auto;
		float: none;
	}
	.woocommerce .cart-collaterals .cart_totals, 
	.woocommerce-page .cart-collaterals .cart_totals {
		width: 100%;
	}
	.product-quantity .quantity {
		text-align: center;
	}
	#add_payment_method table.cart img, 
	.woocommerce-cart table.cart img, 
	.woocommerce-checkout table.cart img {
		width: 100px;
	}
	.pagamento form {
		padding: 0;
	}
	.woocommerce ul.order_details li {
		padding: 0 20px;
		width: auto;
	}
	.woocommerce .woocommerce-message .button {
		width: 300px;
	}
	.woocommerce .up-sells {
		padding: 60px 0;
		display: inline-block;
		width: 100%;
	}
	.woocommerce .up-sells ul {
		margin-bottom: 0;
	}
	.product .exit {
		margin: 0 0 30px;
	}
	.woocommerce div.product .woocommerce-tabs .panel {
		margin: 0;
	}
	.checkout .woocommerce-billing-fields__field-wrapper p input, 
	.pagamento .woocommerce-billing-fields__field-wrapper p input, 
	.checkout textarea, .pagamento textarea {
		font-size: 16px;
	}
	.single_variation_wrap .price bdi {
		font-size: 30px;
	}
	.woocommerce .up-sells li {
		width: 23% !important;
	}
	.woocommerce .sidebar-widget {
	    display: flex;
	    justify-content: space-between;
	    align-items: flex-start;
	}
	.widget_block {
		width: 20%;
	}
	.widget_yith-woocommerce-ajax-navigation-filters {
		width: 100%;
	}
	.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
		top: 0.5em;
	}
	.ricerca-interno {
	    left: -10vw;
	}
	.pulsanti .info {
		max-width: 350px;
	}
	.woocommerce-checkout-review-order-custom_table .product-thumbnail img {
	    width: 100px;
	} 
	.woocommerce-shipping-totals td:nth-child(2) {
		text-align: center;
		font-weight: bold;
		border-top: none !important;
	}
	.cart-subtotal th,
	.cart-subtotal td {
		border-bottom: 1px solid #ebe9eb !important;
	}
	.woocommerce ul.products li.product a img {
		max-width: 250px;
		margin: 0 auto;
	}
	.form-popup p {
		font-size: 25px;
		padding: 30px;
		line-height: 1.5;
	}
	.related ul.products .slick-next {
		right: -3%;
		width: 30px;
		height: 30px;
	}
	.related ul.products .slick-prev {
		left: -2%;
		width: 30px;
		height: 30px;
	}
	.woocommerce table.shop_table td {
		text-align: right;
	}
	.woocommerce table.shop_table th {
		text-align: left;
	}
	.woocommerce table.shop_table li {
		text-align: left;
	}
	.woocommerce table.custom_shop_table,
	.woocommerce-page .col2-set {
		width: 100%;
	}
	.woocommerce-cart-form__contents th,
	.woocommerce-cart-form__contents td {
		text-align: center !important;
	}
	.woocommerce .cart .button, 
	.woocommerce .cart input.button {
		float: right !important;
	}
	.woocommerce span.onsale.bollino-offerta {
		margin-right: 65%;
	}
	.woocommerce ul.products {
		gap:10px;
	}
	.negozio section {
		padding-top: 200px;
	}
/*-----------------OFFERTA-------------------*/
	#offerta h1 {
		padding-top: 60px;
	}
	#offerta .product-title {
		font-size: 20px;
	}
	#offerta .product_list_widget li {
		width: 23%;
		margin: 1%;
	}
	#offerta .product_list_widget li a img {
		max-width: 250px;
		margin: 0 auto 30px;
	}
	#offerta .widget_yith-woocommerce-ajax-navigation-filters {
		width: 100%;
	}
}

@media only screen and (min-width:1280px) {
    header .carrello-mobile {
        display: none;
    }

    body.scrolled_over  .subheader-agrotrade {
        padding-left: 25%;
    }
	.menu_card .item-icon.image {
	    width: 40px;
	    display: grid;
	}
	.menu_card-wrapper .menu_card li {
		font-size: 16px;
	}
	.preheader {
		display: block;
	}
	.header {
		height: auto;
		line-height: 20px;
		padding: 30px 0;
		top: 60px;
	}
	.scrolled_over #servizio-montaggio {
		display: none;
	}
	.scrolled_over.negozio .header,
	.scrolled_over.offerte-stagionali .header {
		position: absolute;
	}
	/* nav */
	.nav {
		display: block;
		background-color: transparent;
		backdrop-filter: none;
		height: auto;
		width: 95%;
        left: 0px;
		position: relative;
        transition: unset;
	}
	.nav ul {
		margin-top: 0;
		text-align: right;
		width: 100%;
		margin-right: 0;
	}
	.nav ul li {
		padding: 0;
		display: inline-block;
		text-transform: none;
	}
	.nav ul li a {
		padding: 0 0 0 20px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		color: #fff;
	}
	.nav .desktop {
		display: flex;
	}
	.nav .mobile {
		display: none;
	}
	.openclose img {
		display: none;
	}
	nav .cart-contents {
		display: contents;
		width: 100%;
	}
	header .cart-contents span {
		color: #fff;
		margin-left: 10px;
	}
	.nav .account {
		margin: 0 20px;
		width: 100%;
	}
	.logo {
		margin-top: 20px;
		height: auto;
		width: 20%;
	}
	.logo img {
		max-width: 230px;
		height: 100%;
	}
	.slide2 .slick-next {
		width: 70px;
		height: 70px;
		margin-right: -100px;
		top: 40%;
	}
	.slide2 .slick-prev {
		width: 70px;
		height: 70px;
		top: 40%;
		margin-left: -120px;
	}
	.slide .slick-next {
		width: 70px;
		height: 70px;
	}
	.slide .slick-prev {
		width: 70px;
		height: 70px;
	}
	.footer .colonne div {
		width: 24%;
	}
	h1,h2 {
		font-size: 30px;
	}
	h3 {
		font-size: 17px;
	}
	.rosso {
		margin-left: 20px;
	}
	.rosso a {
		color: #fff !important;
		padding: 10px !important;
		background-color: #d30605;
		letter-spacing: 1.2px;
		font-size: 16px !important;
		text-transform: uppercase;
		border-radius: 10px;
	}
	.rosso a:hover {
		text-decoration: none;
		opacity: 0.9;
	}
	.rosso.current_page_item a {
		color: #fff;
	}
	.menu_card .item-icon.image {
		display: grid;
	}
	.menu_card-wrapper {
		background-color: rgba(28, 28, 28, 0.90) !important;
		backdrop-filter: blur(14px);
		border-radius: 0 0 20px 20px;
	}
	.menu_card-wrapper .menu_card li {
		justify-content: start;
		margin-bottom: 10px;
	}
	.menu_card .menu_card-head {
		margin-bottom: 20px;
	}
	.menu_card ul a li {
		padding: 0;
	}
	.subheader-agrotrade {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row;
	}
	.scrolled_over .subheader-agrotrade .logo,
	.scrolled_over .subheader-agrotrade .icone {
		display: block;
		width: 25%;
	}
	.subheader-agrotrade .icone {
		text-align: right;
	}
    .nav .shop-sub_menu {
        height: 900px;
        max-height: calc(100vh - 170px);
		width: 100%;
		left: 0;
		top: 12px;
    }
	.subheader-agrotrade .icone .account {
		margin: 0 20px;
		max-width: 20px;
		display: inline-block;
	}
	.subheader-agrotrade .icone .cart-contents img {
		max-width: 25px;
	}
	.subheader-agrotrade .icone .cart-contents span {
		color: #000;
		margin-left: 10px;
	}
	#blog h2 {
		font-size: 25px !important;	
	}
	#blog .articoli a {
		width: 29%;
	}
	.preheader p {
	    animation-duration: 20s;
	    width: 50%;
    }
	.cart-contents {
		width: 25px;
	}

    @keyframes preheaderSlider {
		0% {transform: translateX(180%);}
		100% {transform: translateX(-180%);}
	}
/*-----------------CATEGORIE-------------------*/
	#categorie .fascia-4 a {
	    width: 31%;
		margin: 1%;
	}
/*-----------------SINGOLO PRODOTTO-------------------*/
	.woocommerce div.product .flex {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		margin-top: 100px;
	}
	.woocommerce div.product .flex .right,
	.woocommerce div.product .flex .left {
		width: 48%;
	}
	.single-product .right h3 {
		margin-top: 0;
	}
	.single-product .tabella p:first-child {
		height: 50px;
	}
	.related h2 {
	    font-size: 20px;
	}
	.woocommerce div.product form.cart .button {
		height: 56px;
	}
	.woocommerce div.product .google {
		width: 70%;
	}
	.cart .product-name a,
	.carrello .product-name a {
		font-size: 18px;
	}
	.cart .product-price,
	.carrello .product-price {
		text-align: center;	
	}
	.woocommerce #content div.product div.summary, 
	.woocommerce div.product div.summary, 
	.woocommerce-page #content div.product div.summary, 
	.woocommerce-page div.product div.summary {
		width: 48%;
	}
	.woocommerce #content div.product div.images, 
	.woocommerce div.product div.images, 
	.woocommerce-page #content div.product div.images, 
	.woocommerce-page div.product div.images {
		width: 48%;
	}
	.fascia-accessori h2 {
		font-size: 26px;
		padding: 20px;
		line-height: 1.2;
	}
	.shop {
		padding: 0 5% 0 0;
	}
	.woocommerce .flex,
	.shop .flex {
		display: flex;
		align-items: stretch;
		justify-content: start;
		flex-direction: row;
	}
    .flex .sidebar-wrapper {
		width: 30%;
		background-color: #fff;
	}
	.woocommerce-shop .flex .products,
	.shop .flex .products {
		width: 70%;
		padding-left: 10px;
	}
    .sidebar-wrapper .sidebar {
        width: 100%;
        position: relative;
        top: 5px;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #d30605;
    }
	.woocommerce-shop .sidebar-fissata .flex .products,
	.shop .sidebar-fissata .flex .products {
		margin-left: 30%;
    }
    .sidebar-fissata .flex .sidebar-wrapper {
        position: fixed;
        top: 0;
        padding-right: 6px;
    }
    .sidebar-fissata .sidebar-wrapper .sidebar {
        height: calc(100vh - 10px);
        overflow-y: scroll;
    }
    .woocommerce-shop .sidebar-fissata .sidebar-wrapper .sidebar {
        height: calc(100vh - 10px);
    }
    .woocommerce-shop .sidebar-fissata .flex .sidebar-wrapper {
        top: 0px;
        padding-right: 6px;
    }
    .riordina-prodotti {
	    margin-bottom: 0;
    }
    .sidebar h4 {
	    padding-top: 30px;
	    font-weight: bold;
	    color: #d30605;
	    display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .sidebar h4 img {
	    width: 20px;
	    height: 20px;
        margin-right: 5px;
        display: inline-block;
    }
    ul.filtri-sidebar {
	    margin-bottom: 0;
    }
    .woocommerce span.onsale.bollino-offerta {
		margin-right: 0;
	}
	.woocommerce div.product p.price, 
	.woocommerce div.product span.price {
		max-width: 320px;
	}
	#offerta {
		padding: 150px 10px 60px;
	}
	#offerta .products {
		width: 70%;
	    padding-left: 10px;
	}

    .sidebar-fissata #offerta .products {
	    margin-left: 30%;
    }
	.woocommerce div.product .google {
		width: 60%;
	}
	.buy-now {
		width: 40% !important;
	}
	.woocommerce button.button.alt {
		padding: 10px;
	}
/*--------------BLOG SINGLE------------------*/
    .single-post article {
	    max-width: 1000px;
	    margin: 0 auto;
	    padding: 60px 5%;
    }
    .single-post h1 {
	    font-size: 40px;
    }
}
@media only screen and (min-width:1400px) {
	.slide2 .slick-next {
		margin-right: -80px;
	}
	.menu_card .item-icon.image {
	    width: 60px;
	    display: grid;
	}
/*--------------HOME------------------*/
	#home .fascia-3 .text h3 {
		font-size: 22px;
	}
/*--------------AZIENDA------------------*/
	#azienda .fascia-1 {
		padding: 60px 0 120px;
	}
	#azienda .fascia-2 {
		max-width: 1000px;
	}
/*--------------NEGOZIO------------------*/
	.negozio article {
		padding: 0 4%;
	}
	.woocommerce .woocommerce-ordering {
		padding: 0 1%;
	}
	.garanzie {
		width: 60%;
	}
/*-----------------SINGOLO PRODOTTO-------------------*/
	.mio-account section,
	.my-account section {
		width: 70%;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
	}
	.woocommerce .up-sells {
		padding: 120px 0 60px;
	}
	.woocommerce #content div.product .woocommerce-tabs, 
	.woocommerce-page #content div.product .woocommerce-tabs {
		display: flex;
	    width: 50%;
	    padding-left: 4%;
	}
/*--------------OFFERTE------------------*/
	#offerta .garanzie {
		width: 100%;
	}

}
@media only screen and (min-width:1600px) {
	.preheader p {
		animation-duration: 22s;
	}
	#home .fascia-3 .colonne p {
		font-size: 18px;
	}
	
	#smart-button-container,
	.wc-stripe-product-checkout-container {
		max-width: 400px;
	}
	.woocommerce-product-details__short-description .image img,
	.image-sconto {
		max-width: 80% !important;
	}
	.woocommerce div.product form.cart {
		width: 80%;
	}
	.menu_card .item-icon.image {
	    width: 80px;
	    display: grid;
	}
	.woocommerce ul.products {
        grid-template-columns: 1fr 1fr 1fr;
    }
	.flex .sidebar-wrapper {
		width: 25%;
	}
	.woocommerce-shop .flex .products, 
	.shop .flex .products {
		width: 75%;
	}
	.woocommerce-shop .sidebar-fissata .flex .products, 
	.shop .sidebar-fissata .flex .products {
		margin-left: 25%;
	}
	#servizio-montaggio {
		top: 180px;
	}
	.logo img {
		max-width: 250px;
	}
/*--------------OFFERTE------------------*/
	#offerta .garanzie div {
		width: 19%;
		padding: 0;
	}
	#offerta .flex .sidebar-wrapper {
        width: 25%;
    }
    #offerta .products {
        width: 75%;
    }
    .sidebar-fissata #offerta .products {
	    margin-left: 25%;
    }
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        height: 530px;
    }
	
}
@media only screen and (min-width:1750px) {
	#home .fascia-8 .slick-slide {
		height: auto;
	}
	.filtri-sidebar li {
		font-size: 18px;
	}
	.preheader p {
		animation-duration: 25s;
	}
}

@media only screen and (max-width:1279px) {
    .nav > div.mobile {
        display: block;
    }
    .sidebar-wrapper {
	    padding: 30px 0;
    }
    .agro-tendina {
        background: #fff;
        border-radius: 5px;
        border: 1px solid #d30605;
        margin-bottom: 10px;
        position: relative;
    }
    .agro-tendina::after {
        content: "˅";
        position: absolute;
        right: 5px;
        top: 5px;
        font-weight: 900;
        scale: 1 0.5;
        font-size: 20px;
    }
    .agro-tendina h4 {
        cursor: pointer;
    }
    .sidebar h4 {
        margin: 0;
        padding: 0 10px;
        height: 40px;
        line-height: 40px;
    }
    .agro-tendina ul {
        margin: 0;
        height: 0px;
        overflow: hidden;
        transition: height 1s ease;
        padding:0 5px;
    }
    .agro-tendina[aria-open="true"] ul {
        height: auto;
    }
    .agro-tendina ul li {
        cursor: pointer;
        padding:5px;
    }
    .panel-prezzo {
	    padding: 0 10px;
    }

    
    .subheader-agrotrade nav.subnav {
        display:  none!important;
    }
    body.scrolled_over .subheader-agrotrade .ricerca-wrapper {
        display: block;
    }
    

}
