/*
	Theme Name: Reppucci
	Theme URI: https://reppuccilab.com/
	Description: Abbigliamento
	Version: 1.4.3
	Author: Jacopo Zane
	Author URI: https://www.digitalia.srl
	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;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:500 18px/1.4 'KeplerStd-Disp', Helvetica, Arial, sans-serif;
	color:#000;
}
/* 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;
}
picture {
	display: grid;
}
.ios .parallax {
	background-attachment: scroll !important;
}
a {
	color:#000;
	text-decoration:none;
	font-family:'Arsenal-Regular';
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
}
ul {
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6,p {
	padding: 0;
	margin: 0;
	font-weight: normal;
}
h1 {
	font-size: 30px;
}
h2 {
	font-size: 22px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-family:'Arsenal-Regular';
	text-transform: uppercase;
}
.pulsante {
	text-transform: uppercase;
	font-size: 14px;
}
.pulsante:hover {
	
}
.blocco {
	position: relative;
	overflow: hidden;
	display: flex;
}
.text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
}
.up {
	position: fixed;
	top: 95%;
	right: 2%;
	z-index: 2;
}
.up img {
	max-width: 30px;
	cursor: pointer;
}
.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);
}
.szoom {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
}
.szoom:hover {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transform: scale(0.9,0.9);
	-webkit-transform: scale(0.9,0.9);
	-o-transform: scale(0.9,0.9);
	-ms-transform: scale(0.9,0.9);
	-moz-transform: scale(0.9,0.9);
}

.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;
}
.rotation-inverse {
	animation-name: rotation-inverse;
	-webkit-animation: rotation-inverse;
	-ms-animation-name: rotation-inverse;
	-moz-animation-name: rotation-inverse;
	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: 6s;
	-webkit-animation-duration: 6s;
	-ms-animation-duration: 6s;
	-moz-animation-duration: 6s;
}
@keyframes rotation-inverse {
	0% {transform: rotateZ(0);}
	25% {transform: rotateZ(-90deg);}
	50% {transform: rotateZ(-180deg);}
	75% {transform: rotateZ(-270deg);}
	100% {transform: rotateZ(-360deg);}
}

.lampeggio {
	position: fixed;
	max-width: 50px;
	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);}
}
/* SLIDE */
.slick-dots {
	position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    text-align: center !important;
}
.slick-dots .slick-active {
    background-color: #fff !important;
}
.slick-dots li {
    display: inline-block !important;
    width: 8px !important;
    height: 8px !important;
    overflow: hidden !important;
    background-color: transparent !important;
    border-radius: 50% !important;
    margin: 20px 5px 0 !important;
    border: 1px solid #fff !important;
}
.slick-dots button {
	color: transparent !important;
	background-color: transparent !important;
	display: contents !important;
}
.slick-prev {
	background-image: url(img/header/left.svg)!important;
	background-repeat: no-repeat!important;
	background-color: transparent!important;
	border: none!important;
	color: transparent!important;
	position: absolute!important;
	top: 50%!important;
	left: 1%!important;
	z-index: 1!important;
	outline: none!important;
}
.slick-next {
	background-image: url(img/header/right.svg)!important;
	background-repeat: no-repeat!important;
	background-color: transparent!important;
	border: none!important;
	color: transparent!important;
	position: absolute!important;
	top: 50%!important;
	right: 1%!important;
	z-index: 1!important;
	outline: none!important;
}
/* FORM */
.wpcf7-form {
	background-color: #ece8e1;
	padding: 30px;
}
.wpcf7-form label {
	color: #000;
	display: block;
    margin-bottom: -10px;
    font-family:'Arsenal-Regular';
}
input,
textarea {
	outline: none;
	padding: 5px;
	color: #000;
	margin-bottom: 30px;
	background-color: transparent;
	border: none;
	width: 100%;
	border-bottom: 1px solid #999;
}
input {
	height: 30px;
}
.wpcf7-form .wpcf7-acceptance input {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #999;
	background-color: transparent;
	padding: 6px;
	margin-bottom: 0;
	max-width: 6px;
}
.wpcf7-form #privacy:checked {
	background-color: #999;
}
.wpcf7-form .privacy a {
	text-decoration: underline;
}
span.wpcf7-list-item {
	margin: 0;
}
.wpcf7-submit {
	margin-top: 30px;
	border: 1px solid #999;
	background-color: transparent;
	padding: 0 50px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 0;
    max-width: 150px;
}
.wpcf7-submit:hover {
	background-color: #999;
	color: #fff;
}
div.wpcf7-mail-sent-ok,
div.wpcf7-validation-errors, 
div.wpcf7-acceptance-missing,
.wpcf7 form .wpcf7-response-output {
	border: none;
}
div.wpcf7-response-output {
	padding: 0;
}
/* Style the tab */
.tab {
  	overflow: hidden;
  	text-align: center;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  	background-color: inherit;
  	outline: none;
  	cursor: pointer;
  	transition: 0.3s;
  	margin: 0.5%;
  	color: #666;
  	padding: 5px;
  	font-size: 20px;
  	border: none;
}

/* Create an active/current tablink class */
.tab button.active {
  	border-bottom: 2px solid #666;
}
/* Style the tab content */
.tabcontent {
 	display: none;
 	padding: 30px 0;
  	border-top: none;
  	flex-direction: column;
}
#all {
	display: block;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #fff;
  color: #000;
  cursor: pointer;
  padding: 18px 0;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 12px;
  line-height: 1;
  background-image: url(img/shop/freccia-accordion.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 15px;
  background-position-x: 180px;
  font-family:'Arsenal-Regular';
  text-transform: uppercase;
}
.active, .accordion:hover {
  background-color: #fff;
  margin-bottom: 0;
}
.accordions {
	margin-top: 30px;
	display: inline-block;
}
.accordions .active {
  background-image: url(img/shop/freccia-accordion-2.svg);
}
.accordion img {
	max-width: 35px;
	float: right;
}
.accordion p {
	margin-right: 40px;
    font-weight: bold;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
  padding:0 5%;
  background-color: white;
  overflow: hidden;
  margin-bottom: 20px;
  max-height: 0;
  transition: max-height 0.3s ease;
  -webkit-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  -ms-transition: max-height 0.3s ease;
  -moz-transition: max-height 0.3s ease;
}
.panel p {
  padding: 10px 0;
  color: #666;
}
.panel a {
	 color: #666;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
}
.content {
	max-width:1400px;
	width:90%;
	margin:0 auto;
	position:relative;
}

/* header */
.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 5;
	height: 100px;
	line-height: 100px;
}
/* logo */
.logo {
	position: absolute;
	top: 0;
	left: 5%;
	z-index: 20;
	margin-top: 10px;
}
.logo img {
	max-width: 120px;
}
.logo .black {
	display: none;
}
/* nav */
.nav {
	display: none;
	background-color: #d2c9b8;
	color: #000;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.nav a {
	color: #000;
	text-transform: uppercase;
	font-family:'Arsenal-Regular';
}
.nav a:hover {
	text-decoration: underline;
}
.nav .current_page_item a {
	font-weight: bold;
}
.nav ul {
	list-style-type: none;
	text-align: center;
	width: 100%;
}
.nav ul li {
	padding: 10px 0;
	line-height: 1;
}
.nav ul .instagram,
.nav ul .cart {
	padding-top: 30px;
}
.nav .favicon {
	max-width: 50px;
	margin-top: 50px;
}
.menu-shop {
	display: none;
}
.openclose {
	position: absolute;
	right: 5%;
	z-index: 90;
	width: 25px;
}
.openclose .open {
	max-width: 25px;
}
.openclose .black {
	display: none;
}
.openclose .close {
	max-width: 25px;
	margin-top: 25px;
}
/* footer */
.footer {
	background-color: #ebebeb;
	padding: 30px 5%;
	font-family:'Arsenal-Regular';
	font-size: 12px;
}
.footer .row-1 {
	border-bottom: 1px solid #000;
	margin-bottom: 20px;
}
.footer .row-2 {
	border-bottom: 1px solid #000;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.footer .row-2 .column-1,
.footer .row-2 .column-2,
.footer .row-2 .column-3,
.footer .row-2 .column-4 {
	padding-bottom: 30px;
}
.footer h4 {
	padding-bottom:10px;
}
.footer .copyright a {
	text-decoration: underline;
}
.footer .wpcf7-response-output {
	text-align: center;
}
.wcml-vertical-list li a {
	padding: 0;
}
.numero .cart-contents span {
	border-radius: 50%;
	font-family:'KeplerStd-Disp';
	font-size: 10px;
	font-weight: bold;
	background-color: #000;
	color: #fff;
	display: block;
    height: 15px;
    width: 15px;
    line-height: 1.6;
    text-align: center;
    margin-left: 3px;
}
.nav .numero a {
	display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    flex-direction: row;
}
.menu-shop .cart-contents span {
	border-radius: 50%;
	font-family:'KeplerStd-Disp';
	font-size: 10px;
	font-weight: bold;
	background-color: #fff;
	color: #333;
	display: block;
    height: 15px;
    width: 15px;
    line-height: 1.6;
    text-align: center;
    margin-left: 3px;
}
.menu-shop a {
	display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    flex-direction: row;
}
.footer .wpcf7-form {
	background-color: transparent;
	padding: 0;
}
.footer .wpcf7-form .flex {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: row;
}
.footer .wpcf7-form .flex div {
	width: 50%;
}
.footer .wpcf7-form .wpcf7-submit {
	margin: 0;
	border: none;
	border-bottom: 1px solid #999;
	height: 30px;
    line-height: 30px;
}
.footer .wpcf7-form input {
	margin-bottom: 0;
	max-width: 100%;
}
.footer .copyright {
	font-size: 10px;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
/*--------------COMING SOON------------------*/
.coming-soon-2 .openclose {
	display: none;
}
.coming-soon-2 .menu-shop {
	display: none;
}
.coming-soon-2 .footer {
	display: none;
}
#coming .fascia-1 {
	background-image: url(img/home/coming-mobile.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
}
#coming .fascia-1 .text {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100vh;
}
#coming .fascia-1 h1 {
	color: #fff;
	font-size: 40px;
	text-transform: lowercase;
}
#coming .fascia-1 a {
	color: #fff;
	border: 1px solid #fff;
	background-color: transparent;
	padding: 10px 20px;
	margin-bottom: 60px;
	position: absolute;
	bottom: 0;
}
#coming .fascia-1 a:hover {
	background-color: #fff;
	color: #000;
}
/*--------------HOME------------------*/
#home .fascia-1.desktop {
	display: none;
}
#home .fascia-1 .slide {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	display: block !important;
}
#home .fascia-1 .testo {
	color: #fff;
	display: flex !important;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	text-align: center;
	flex-direction: column;
}
#home .fascia-1 .testo a {
	background-color: #fff;
	color: #000;
	font-size: 16px;
	padding: 10px 20px;
}
#home .fascia-2 {
	background-color: #f5f3f0;
}
#home .fascia-2 h3 {
	text-align: center;
	padding: 30px 0;
}
#home .prodotto {
	position: relative;
}
#home .prodotto a {
	display: grid;
	position: relative;
}
#home .prodotto .hover {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}
#home .prodotto .hover .testo {
	position: absolute;
	bottom: 5%;
	left: 0;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: flex-start;
	width: 100%;
	padding: 0 5%;
}
#home .prodotto .hover .testo p,
#home .prodotto .hover .testo h2 {
	font-size: 14px;
}
#home .prodotto .colori {
	position: absolute;
    top: 5%;
    right: 5%;
    display: none;
    z-index: 2;
}
#home .prodotto .colori a {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	display: inline-block;
	margin-left: 10px;
}
#home .prodotto .colori a:hover {
	border: 1px solid #666;
}
#home .prodotto:hover .hover,
#home .prodotto:hover .colori {
	display: block;
}
#home .fascia-3 {
	padding: 30px 0;
	text-align: center;
}
#home .fascia-3 img {
	max-width: 50px;
}
#home .fascia-3 h2 {
	padding: 20px 0;
}
#home .fascia-3 h3 {
	padding-top: 20px;
}
#home .fascia-4 {
	padding: 30px 0 0;
}
#home .fascia-4 h3 {
	padding-bottom: 20px;
	text-align: center;
}
#home .fascia-4 h2 {
	font-size: 40px;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	height: 50%;
	font-family:'KeplerStd-Disp';
}
#home .fascia-4 p {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 96%;
	text-transform: uppercase;
	font-size: 16px;
}
/*--------------ABOUT------------------*/
#about video {
	width: 100%;
}
#about .video .desktop {
	display: none;
}
#about .fascia-1 {
	background-image: url(img/about/sfondo.svg);
	background-position: center center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding:30px 0;
}
#about h1 {
	padding-bottom: 30px;
}
#about .fascia-2 {
	padding: 30px 0;
}
#about .fascia-2 .left {
	display: grid;
	width: 70%;
}
#about .fascia-2 .right h2 {
	padding: 30px 0;
}
#about .fascia-2 .right img {
	max-width: 50px;
	margin-top: 30px;
}
/*--------------SUMMER------------------*/
.summer-limited-collection #shop {
	padding: 0;
}
.summer-limited-collection .fascia-1 {
	text-align: center;
	padding: 30px 0;
}
.summer-limited-collection .fascia-1 h1 {
	color: #dd4682 !important;
}
.summer-limited-collection .fascia-1 img {
	max-width: 100px;
	margin-top: 30px;
}
.summer-limited-collection .prodotti {
	padding: 30px 0;
}
.summer-limited-collection .fascia-2 .slide {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	display: block !important;
}
/*--------------CONTATTI------------------*/
.contacts .header .white,
.contatti .header .white {
	display: none;
}
.contacts .header .black,
.contatti .header .black {
	display: inline-block;
}
#contact {
	padding-top: 100px;
}
#contact .fascia-1 {
	padding: 30px 0;
}
#contact .fascia-1 p {
	color: #999;
	padding-top: 20px;
}
#contact .fascia-2 {
	padding-bottom: 30px;
} 
/*--------------SHOP------------------*/
.shop .header .white {
	display: none;
}
.shop .header .black {
	display: inline-block;
}
.shop section,
.cart section,
.carrello section,
.my-account section,
.mio-account section,
.checkout section,
.pagamento section {
	padding-top: 100px;
}
.checkout .header .white,
.pagamento .header .white,
.cart .header .white,
.carrello .header .white,
.my-account .header .white,
.mio-account .header .white {
	display: none;
}
.checkout .header .black,
.pagamento .header .black,
.cart .header .black,
.carrello .header .black,
.my-account .header .black,
.mio-account .header .black {
	display: inline-block;
}
#shop {
	padding-top: 100px;
}
#shop .filtro {
	text-align: center;
}
#shop h1 {
	padding-bottom: 20px;
}
#shop #block-3 a {
	color: #999;
	font-family:'KeplerStd-Disp';
	font-size: 30px;
}
#shop .prodotti {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#shop .prodotto {
	position: relative;
	margin: 3%;
    width: 44%;
}
#shop .prodotto a {
	display: grid;
	position: relative;
}
#shop .prodotto .hover {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
}
#shop .prodotto .hover .testo {
	position: absolute;
	bottom: 5%;
	left: 0;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: flex-start;
	width: 100%;
	padding: 0 5%;
}
#shop .prodotto .hover .testo p,
#shop .prodotto .hover .testo h2 {
	font-size: 14px;
}
#shop .prodotto .colori {
	position: absolute;
    bottom: 2%;
    display: none;
    z-index: 2;
    width: 100%;
    text-align: center;
}
#shop .prodotto .colori a {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	display: inline-block;
	margin:0 10px;
}
#shop .prodotto .colori a:hover {
	border: 1px solid #666;
}
#shop .prodotto:hover .hover {
	display: block;
}
/*-----------------SINGOLO PRODOTTO-------------------*/
.single-product .header .white {
	display: none;
}
.single-product .header .black {
	display: inline-block;
}
.product h1 {
	text-align: left;
	font-family:'KeplerStd-Disp';
}
.single-product .product {
	padding: 100px 5% 0px;
}
.product ol {
	display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 2% 0 !important;
}
.quantity input {
	position: relative;
	height: auto;
	border: 1px solid #ccc;
}
.carrello section,
.cart section {
	padding-bottom: 60px;
}
.carrello .product-thumbnail,
.cart .product-thumbnail {
	display: none;
}
.carrello th,
.cart th {
	font-size: 14px;
	padding: 5% 8px;
}
.carrello tr,
.cart tr {
	height: 40px;
	font-size: 14px;
}
.carrello h1,
.cart h1,
.carrello h2,
.cart h2 {
	font-size: 25px;
	text-align: center;
}
.carrello h2,
.cart h2 {
	margin: 30px 0;
	font-family:'Arsenal-Regular';
}
.carrello .product-name,
.cart .product-name {
	height: 80px;
}
.carrello .product-name .variation,
.cart .product-name .variation {
	margin: 20px 0;
}

.woocommerce-info {
	border-top-color: #000;
	font-family:'Arsenal-Regular';
}
.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: 0;
}
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}
.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;
}
.checkout article,
.pagamento article {
	padding: 0 5%;
}
.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;
	font-family:'Arsenal-Regular';
}
.checkout .form-row,
.pagamento .form-row {
	display: grid;
}
.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;
}
.sidebar {
	display: none;
}
.woocommerce-notice {
	margin-bottom: 20px;
}
.woocommerce-order ul {
	padding: 20px 0;
}
.woocommerce-message .button {
	background-color: #fff;
	color: #cd1719;
	width: 100%;
}
.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 60px;
}
.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 {
	border-bottom: 1px solid;
	padding: 20px 0;
}
.mio-account .woocommerce .woocommerce-message .button,
.my-account .woocommerce .woocommerce-message .button {
	width: 100%;
}
.woocommerce-MyAccount-content a {
	font-weight: bold;
}
.woocommerce-info a {
	width: 100%;
	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;
}
.woocommerce div.product p.price, 
.woocommerce div.product span.price {
	color: #000;
}
.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 #ccc;
	border-radius: 0;
	color: #000;
	text-transform: uppercase;
	font-weight: 300;
	padding: 20px;
    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;
}
.product .quantity .qty {
	height: 72px !important;
	width: 100% !important;
	margin-bottom: 0;
}
.woocommerce div.product form.cart div.quantity {
	width: 25%;
    padding-right: 1%;
}
.related {
	margin-top: 60px;
}
.related h2 {
	color: #000;
	text-align: center;
	font-size: 20px;
	margin-bottom: 30px;
}
.related li {
	width: 48% !important;
	margin: 2% 0 !important;
}
.woocommerce ul.products li.product .button {
	display: none;
}
.woocommerce ul.products li.product a {
	position: relative;
	display: block;
}
.single .woocommerce-loop-product__title,
.single .woocommerce ul.products li.product .price {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    text-transform: uppercase;
    line-height: 1;
    padding: 0 2%;
}
.related .woocommerce-loop-product__title {
    background-color: rgba(0, 0, 0, 0.50);
    padding-bottom: 30px !important;
}
.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;
	font-family:'Arsenal-Regular';
}
.carrello .coupon .button,
.cart .coupon .button,
.carrello .coupon #coupon_code,
.cart .coupon #coupon_code {
	width: 100% !important;
	margin: 10px 0;
	font-family: 'Arsenal-Regular';
}
.carrello .cart-collaterals, 
.cart .cart-collaterals, 
.woocommerce-page .cart-collaterals {
	margin-top: 100px;
	display: inline-table;
}
.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;
}
.woocommerce div.product div.summary {
	margin-bottom: 0;
}
.product .exit {
	letter-spacing: 1px;
	font-size: 12px;
	margin-bottom: 30px;
	display: inline-block;	
}
.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 #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
	border-radius: 0;
}
.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 .button {
	width: 83% !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: 14px;
    font-family:'Arsenal-Regular';
}
.woocommerce div.product form.cart .variations li {
	width: 30px !important;
}
.flaticon-right-arrow,
.flaticon-back {
	display: none !important;
}
.wpgs-nav {
	width: 100%;
	margin: 0 auto;
}
.slick-prev::before,
.slick-next::before {
	display: none;
} 
.wpgs-nav .slick-track .slick-slide {
	margin: 2px;
}
.woocommerce .slick-next,
.woocommerce .slick-prev {
	background-image: none;
}
.slick-slider .slick-track {
	float: left;
}
.woocommerce-checkout #payment {
	border: 1px solid;
    margin-bottom: 60px;
    background-color: #fff;
}
.related .price {
	position: absolute;
    top: 0;
    left: 0;
    display: flex !important;
    color: #fff !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.woo-variation-swatches.wvs-show-label .variations td .woo-selected-variation-item-name, 
.woo-variation-swatches.wvs-show-label .variations td label {
	font-size: 15px;
	font-family: 'Arsenal-Regular';
}
.woocommerce-product-details__short-description {
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
	margin-bottom: 20px;
	color: #666;
}
.variations tr {
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
	margin-bottom: 20px;
	height: auto;
	display: block;
}
.single_add_to_cart_button {
	display: flex !important;
	flex-direction: row;
	justify-content: space-between;
	align-items: end;
	font-family:'KeplerStd-Disp';
}
.single_add_to_cart_button div {
	display: flex !important;
	flex-direction: row;
	align-items: end;
}
.single_add_to_cart_button img {
	max-width: 20px;
	margin-right: 10px;
}
.woocommerce div.product form.cart .variations {
	margin-bottom: 0;
}
.woocommerce div.product p.stock {
	text-transform: uppercase;
	color: #000;
}
.woocommerce div.product .out-of-stock {
	color: red !important;
}
.single_add_to_cart_button p.stock {
	display: none;
}
.single-product .up-sells {
	padding: 60px 0;
}
.single-product .up-sells h2 {
	text-align: center;
	padding-bottom: 20px;
}
.woocommerce ul.products[class*=columns-] li.product, 
.woocommerce-page ul.products[class*=columns-] li.product {
	width: 50%;
	margin: 0;
}
.single-product .up-sells .woocommerce-loop-product__title {
	display: none !important;
}
.single-product .up-sells .price {
	display: none !important;
}
.woocommerce-privacy-policy-link {
	font-size: 15px;
}
.woocommerce table.shop_table th {
	font-family: 'Arsenal-Regular';
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item .variable-item-span-color {
	width: 50% !important;
    height: 50% !important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
	box-shadow: none !important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected {
	text-decoration: underline;
}
.up-sells ul li:nth-child(3),
.up-sells ul li:nth-child(4) {
	display: none;
}
.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 ul.products li.product a {
	padding: 4%;
}
.woocommerce-variation-price {
	display: none;
}
.wcml-spinner {
	display: none;
}
.payment_method_vpossia img {
	max-width: 150px;
}
.input-checkbox {
	max-width: 20px;
}
#ship-to-different-address {
	width: 100%;
}
.woocommerce-shipping-fields h3 label {
	display: flex;
    align-items: unset;
}
.woocommerce-shipping-fields h3 label span {
	font-size: 16px;
    margin-left: 10px;
}
.preorder {
	padding: 30px 0;
	display: inline-block;
}
.preorder p {
	text-align: left;
}
.preorder a {
	background-color: #000;
	color: #fff;
	padding: 10px 20px;
	margin-top: 20px;
	display: inline-block;
	text-transform: uppercase;
	border: 1px solid #000;
}
.preorder a:hover {
	background-color: #fff;
	color: #000;
}
.payment_method_woocommerce_payments {
	display: none;
}
.page-template-template-demo .header .white  {
	display: none;
}
.page-template-template-demo .header .black {
	display: inline-block;
}
.page-template-template-demo-php label {
	display: flex;
	padding: 10px 0;
}
.page-template-template-demo-php input {
	width: auto;
	height: auto;
	margin-bottom: 0;
	margin-right: 5px;
}
.woocommerce div.product form.cart .variations li.button-variable-item {
	width: auto !important;
}
.summer-limited-edition .product_title,
.summer-limited-edition .title,
.summer-limited-edition .descrizione {
	display: none;
}
.summer-limited-edition .descrizione {
	margin-bottom: 30px;
}
.army-green .army,
.verde-militare .army {
	display: block;
	color: #909c90;
}
.bubble-pink .pink,
.rosa .pink {
	display: block;
	color: #ff869b;
}
.papagayo .papagayo,
.ocra .papagayo {
	display: block;
	color: #f19a53;
}
.black .black,
.nero .black {
	display: block;
	color: #000;
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

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

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

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:768px) {
	.wpcf7-form label {
		font-size: 18px;
	}
	.wpcf7-form .flex {
		display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    justify-content: space-between;
	    align-items: flex-start;
	    align-content: center;
	}
	.wpcf7-form .flex div {
		width: 48%;
	}
	.wpcf7-form p {
		text-align: left;
		display: inline-block;
		width: 100%;
	}
	.wpcf7-submit {
		display: block;
		float: left;
	}
	div.wpcf7-response-output {
		font-size: 20px;
		text-align: left;
	}
	.slick-dots {
		bottom: 0 !important;
		margin-bottom: -30px !important;
	}
	.slick-dots li {
		border: 1px solid #000 !important;
		width: 12px !important;
		height: 12px !important;
	}
	.slick-dots .slick-active {
		background-color: #000 !important;
	}
	.slick-prev {
		left: -4%!important;
	}
	.slick-next {
		right: -5%!important;
	}
	.touch .parallax {
		background-attachment: scroll !important;
	}
	.nav a {
		font-size: 20px;
	}
	.footer .wpcf7-form .flex {
		width: 400px;
	}
/*--------------HOME------------------*/
	#home .fascia-4 {
		padding: 30px 0;
	}
	#home .fascia-4 h3 {
		padding-bottom: 0;
	}
	#home .fascia-4 h2 {
		height: 100%;
		width: 50%;
		top: 5%;
	}
	#home .fascia-4 p {
		width: 50%;
		align-items: flex-end;
	}
/*--------------SUMMER------------------*/


/*--------------CONTATTI------------------*/
	#contact h1,
	#contact .fascia-1 p {
		text-align: center;
	}
/*-----------------SHOP-------------------*/
	#shop .prodotti {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
		flex-direction: row;
		padding-bottom: 30px;
	}
	#shop .prodotto .colori {
		width: 92%;
	}
	#shop .prodotto .colori a {
		margin: 0 5px;
	}
	#shop .prodotto:hover .colori {
		display: block;
	}
/*-----------------SINGOLO PRODOTTO-------------------*/
	.single-product main {
		display: flow-root;
	}
	.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: 10%;
	}
	.woocommerce div.product form.cart .variations select {
		min-width: 30%;
	}
	.single-product .up-sells {
		display: inline-block;
	}

}
@media only screen and (min-width:1024px) {
	.header {
		line-height: 120px;
	}
	.logo {
		width: 50%;
	}
	.logo img {
		max-width: 120px;
	}
	.nav {
		width: 360px;
		height: 100vh;
		left: auto;
		right: 0;
		position: absolute;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-end;
		padding: 60px 5%;
	}
	.nav ul {
		text-align: right;
		margin-top: 50px;
	}
	.nav ul li {
		padding: 3px 0;
	}
	.nav a {
		font-size: 18px;
	}
	.nav .favicon {
		margin-top: 0;
		max-width: 50px;
	}
	.openclose .close {
		max-width: 20px;
	}
	.numero {
		text-align: right;
	}
	.nav .numero a {
		justify-content: flex-end;
	}
	.menu-shop {
		margin-right: 14%;
		line-height: 5;
		display: flex;
		justify-content: end;	
		float: right;	
	}
	.menu-shop a {
		margin-left: 60px;
		color: #fff;
		font-size: 16px;
	}
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 25px;
	}
	h3 {
		font-size: 30px;
	}
	.pulsante {
		font-size: 16px;
	}
	.footer {
		padding: 30px 5% 10px;
	}
	.footer .row-1,
	.footer .row-2 {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-direction: row;
	}
	.footer .row-1 .column-1 {
		width: 100%;
		text-align: center;
	}
	.footer .row-1 .column-2,
	.footer .row-1 .column-3 {
		width: 25%;
	}
	.footer .row-2 {
		margin-bottom: 10px;
	}
	.footer .wpcf7-form .flex {
		margin: 0 auto;
	}
	.copyright {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-direction: row;
	}
	.copyright p {
		text-align: center;
		width: 33%;
	}
	.slick-dots {
		margin-bottom: -45px !important;
	}
	.wpcf7-form {
		padding: 60px;
	}
	.wpcf7-form p {
		display: inline-block;
	}
	.panel {
		padding: 0;
	}
/*--------------COMING SOON------------------*/
	#coming .fascia-1 {
		background-image: url(img/home/coming-soon.jpg);
	}
	#coming .fascia-1 a {
		position: relative;
		margin-bottom: 0;
		margin-top: 30px;
	}
/*--------------HOME------------------*/
	#home .fascia-1 a {
		font-size: 18px;
	}
	#home .prodotto .hover .testo p, 
	#home .prodotto .hover .testo h2 {
		font-size: 16px;
	}
	#home .fascia-3 {
		padding: 60px 0;
	}
	#home .fascia-3 h2 {
		max-width: 670px;
		margin: 0 auto;
	}
	#home .fascia-4 {
		padding: 0 0 60px;
	}
/*--------------AZIENDA------------------*/
	#about .video .mobile {
		display: none;
	}
	#about .video .desktop {
		display: block;
	}
	#about h1 {
		text-align: center;
	}
	#about h2 {
		max-width: 480px;
		margin: 0 auto;
	}
	#about .fascia-1 {
		padding: 60px 0;
	}
	#about .fascia-2 {
		padding: 0 0 60px;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
	}
	#about .fascia-2 .left {
		width: 40%;
	}
	#about .fascia-2 .right {
		padding-left: 5%;
	}
	#about .fascia-2 .right p {
		max-width: 370px;
	}
/*--------------SUMMER------------------*/
	.summer-limited-collection #shop .prodotti .prodotto {
		width: 48%;
	}
/*--------------CONTATTI------------------*/
	.contacts .menu-shop a,
	.contatti .menu-shop a {
		color: #000;
	}
	.contacts .menu-shop span,
	.contatti .menu-shop span {
		color: #fff;
		background-color: #000;
	}
	#contact .fascia-1 {
		padding: 60px 0;
	}
	#contact .fascia-1 p {
		padding: 20px 0;
	}
	#contact .fascia-2 {
		padding-bottom: 60px;
	}
	.contacts .menu-shop .widget_icl_lang_sel_widget span {
		color: #000;
		background-color: #fff;
	}
/*-----------------SHOP-------------------*/
	.shop .menu-shop a,
	.cart .menu-shop a,
	.carrello .menu-shop a,
	.checkout .menu-shop a,
	.pagamento .menu-shop a,
	.my-account .menu-shop a,
	.mio-account .menu-shop a {
		color: #000;
	}
	.shop .menu-shop .cart-contents span,
	.cart .menu-shop .cart-contents span,
	.carrello .menu-shop .cart-contents span,
	.checkout .menu-shop .cart-contents span,
	.pagamento .menu-shop .cart-contents span,
	.my-account .menu-shop .cart-contents span,
	.mio-account .menu-shop .cart-contents span {
		color: #fff;
		background-color: #000;
	}
	#shop .prodotti .prodotto {
		width: 31%;
		margin: 1%;
	}
	#shop .prodotto .hover .testo p, 
	#shop .prodotto .hover .testo h2 {
		font-size: 16px;
	}
	#shop {
		padding-top: 150px;
	}
	#shop .prodotti {
		padding-bottom: 60px;
		justify-content: center;
	}
	#shop .prodotto .colori {
		width: 100%;
	}
/*-----------------SINGOLO PRODOTTO-------------------*/
	.single-product .menu-shop a {
		color: #000;
	}
	.product {
		margin-top: 0;
	}
	.single-product h1 {
		font-size: 30px;
	}
	.single-product article {
		max-width: 1200px;
		margin: 60px auto 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 section h1,
	.cart section h1,
	.checkout section h1,
	.pagamento section h1,
	.mio-account section h1,
	.my-account section h1 {
		padding: 50px 0;
		font-size: 50px;
	}
	.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 .entry-summary {
		padding: 30px 10%;
	}
	.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;
	}
	.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: table;
	}
	.related {
		clear: both;
		display: inline-block;
	}
	.related li {
		width: 25% !important;
		padding: 1% !important;
	}
	.related h2 {
		font-size: 26px;
	}
	.woocommerce div.product .woocommerce-tabs .panel {
		padding-left: 8%;
	}
	.woocommerce .quantity .qty {
		padding-left: 10px;
	}
	.single .woocommerce-loop-product__title, 
	.single .related .price {
		display: none !important;
	}
	.woocommerce .related ul.products li.product a:hover .woocommerce-loop-product__title,
	.woocommerce .related ul.products li.product a:hover .price {
		display: flex !important;
		padding: 0 5%;
	}
	.woocommerce ul.products li.product .price {
		font-size: 18px;
	}
	.related .woocommerce-loop-product__title {
		padding-bottom: 30px !important;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation{
		width: 100%;
		float: none;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 50%;
		margin: 0 auto;
		float: none;
		font-family: 'Arsenal-Regular';
	}
	.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;
	}
	.wpgs-nav .slick-prev::before {
		display: block;
		content: url(img/header/left.svg);
		width: 15px;
	} 
	.wpgs-nav .slick-next::before {
		display: block;
		content: url(img/header/right.svg);
		width: 15px;
	}
	.woocommerce .slick-next {
		margin-right: -30px;
		top: 45%;
	} 
	.woocommerce .slick-prev {
		margin-left: -20px;
		top: 45%;
	}
	.woo-variation-product-gallery-thumbnail-columns-7 .woo-variation-gallery-thumbnail-slider:not(.slick-initialized)>div {
		width: calc(var(--thumb-wrapper-margin-remove) / 1) !important;
		--total-margin: calc(var(--wvg-thumbnail-item-gap) * 0) !important;
		margin: 0 !important;
	}
	.woo-variation-gallery-has-product-thumbnail .woo-variation-gallery-thumbnail-position-bottom .woo-variation-gallery-slider-wrapper {
		margin-bottom: 0 !important;
	}
	.woo-variation-gallery-slider-wrapper {
		display: none;
	}
	.woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image {
		opacity: 1 !important;
	}
	.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: 35%;
		margin: 0 auto;
	}
	.woocommerce div.product {
		display: flex;
		flex-wrap: wrap;
		padding: 0;
	}
	.single-product .sticky {
		position: sticky;
		display: flex;
		justify-content: center;
		flex-direction: column;
		top: 8vw;
	    z-index: 1;
	    padding: 0 2.778vw 2.778vw calc(1.389vw * var(--vw-correction));
	}
	.woo-variation-gallery-thumbnail-wrapper {
		pointer-events: none;
	}
	.single-product .up-sells {
		width: 90%;
		margin: 0 auto;
	}
	.up-sells ul li {
		width: 25% !important;
	}
	.checkout h3, .pagamento h3 {
		font-size: 20px;
	}
	.up-sells ul li:nth-child(3),
	.up-sells ul li:nth-child(4) {
		display: block;
	}
	.checkout .woocommerce-billing-fields__field-wrapper p input, 
	.pagamento .woocommerce-billing-fields__field-wrapper p input, 
	.checkout textarea, 
	.pagamento textarea {
		font-size: 14px;
	}
	.woocommerce-cart table.cart td {
		text-align: center;
	}
	.woo-variation-gallery-thumbnail-position-bottom-bottom .woo-variation-gallery-container .woo-variation-gallery-thumbnail-columns-8:not(.slick-initialized)>div {
		--thumb-wrapper-width: auto !important;
	}
	.variations tr {
		padding-bottom: 10px;
		margin-bottom: 10px;
	}


	.page-template-template-demo .menu-shop a {
		color: #000;
	}
	.page-template-template-demo .menu-shop span {
		color: #fff;
		background-color: #000;
	}
	.accordions {
		margin-top: 20px;
	}

}
@media only screen and (min-width:1280px) {
	.openclose {
		right: 60px;
	}
	.nav {
		padding: 60px;
	}
	.nav ul {
		padding-top: 60px;
	}
	.footer {
		font-size: 14px;
	}
	.logo {
		margin-top: 20px;
	}
	.logo img {
		max-width: 150px;
	}
	h1 {
		font-size: 50px;
	}
	.slick-next, .slick-prev {
		height: 25px !important;
		width: 25px !important;
	}
/*--------------HOME------------------*/
	#home .fascia-1.desktop {
		display: block;
	}
	#home .fascia-1.mobile {
		display: none;
	}
	#home .fascia-1 a {
		font-size: 22px;
	}
	#home .fascia-4 h2 {
		font-size: 50px;
	}
/*--------------ABOUT------------------*/
	#about .video {
		height: auto;
	}
	#about .desktop {
		height: auto;
		width: 100%;
	}
	#about .fascia-1 {
		padding: 120px 0;
	}
	#about h1 {
		padding: 0 0 20px;
	}
	#about .fascia-2 {
		padding: 0 0 120px;
	}
	#about .fascia-2 .right h2 {
		padding: 60px 0 30px;
	}
/*--------------SUMMER------------------*/
	.summer-limited-collection .fascia-1 {
		max-width: 800px;
		margin: 0 auto;
	}
	.summer-limited-collection #shop .prodotti .prodotto {
		width: 23%;
	}
/*--------------CONTATTI------------------*/
	#contact .fascia-2 {
		max-width: 70%;
		margin: 0 auto;
	}
/*--------------PRODOTTI------------------*/
	#shop .prodotti .prodotto {
		width: 25%;
	}
}
@media only screen and (min-width:1600px) {
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 35px;
	}
/*--------------HOME------------------*/
	#home .fascia-1 img {
		height: 100vh;
	}
	#home .fascia-3 h2 {
		max-width: 800px;
	}
	#home .fascia-4 h2 {
		font-size: 100px;
	}
/*--------------ABOUT------------------*/
	#about h2 {
		max-width: 620px;
	}
/*-----------------SINGOLO PRODOTTO-------------------*/
	.mio-account section,
	.my-account section {
		width: 50%;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
	}
	.single-product .sticky {
		top: 6.639vw;
	}

}

