.ip-logo{
	display: flex;
	justify-content: center;
	align-items: start;
}

[data-animate]{
	opacity: 0;
}
[data-animate].animated{
	opacity: 1;
}
[data-province]{
	display: none;
}
[data-box]{
	cursor: pointer;
}
i[data-box]{
	margin: 4.5px 0 0 5px;
	color: #1D1D1B;
	float: right;
}

.h1, h1{
	font-size: 1.5rem;
}
.loader{
	display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 6000;
}
.loader.absolute{
	position: absolute;
}
.loader .loading{
	display: flex;
	justify-content: center;
}
.loader .loading div{
	width: 1rem;
	height: 1rem;
	margin: 2rem 0.3rem;
	background: #000;
	border-radius: 50%;
	-webkit-animation: 0.9s bounce infinite alternate;
	animation: 0.9s bounce infinite alternate;
}
.loader .loading div:nth-child(2){
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.loader .loading div:nth-child(3){
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
img.zoomImg{
	transition: opacity .3s ease-out;
	pointer-events: none;
}
@-webkit-keyframes bounce{
	to {
		opacity: 0.3;
		-webkit-transform: translate3d(0, -1rem, 0);
		transform: translate3d(0, -1rem, 0);
	}
}
@keyframes bounce{
	to {
		opacity: 0.3;
		-webkit-transform: translate3d(0, -1rem, 0);
		transform: translate3d(0, -1rem, 0);
	}
}
.fullscreen, .products-box, .mobile-clamp{
	overflow: hidden;
}
.flex-mobile{
	display: none;
}

.mobile-clamp{
	max-height: calc(100vh - 170px);
	transition: height 0.3s ease-out 0s;
}

.owl-carousel.fullscreen .owl-stage-outer, .owl-carousel.fullscreen .owl-stage, .owl-carousel.fullscreen .owl-item, .owl-carousel.fullscreen .item{
	height: 100%;
}
.owl-carousel.fullscreen .owl-item img, .owl-carousel.landscape .owl-item img{
	display: block;
    position: relative;
    margin: 0 auto;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.owl-carousel.landscape .item{
	background-size: cover;
	background-position: center right;
}
.owl-carousel.landscape .owl-item img{
	min-height: 350px;
	visibility: hidden;
}


input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number]::-ms-clear {
    display: none;
}
input[type=number]{
    -moz-appearance:textfield;
}

.checkbox-entry{
	display: flex;
	align-items: center;
	margin: 0;
	cursor: pointer;
}
.checkbox-entry > input{
	display: none;
}
.checkbox-entry::before{
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	background-color: #fff;
	border: 1px solid #cbcacb;
	transition: all .3s ease-out;
	margin-right: 10px;
	text-align: center;
}
.no-touch .checkbox-entry::before:hover{
	border-color: rgb(29, 29, 27);
	box-shadow: 0 0 0 0.2rem rgba(29,29,27,.25);
}
.checkbox-entry.checked::before{
	content: "\2713";
}


.flex-bar{
	display: flex;
	justify-content: space-between;
}
.flex-bar > div + div{
	margin-left: 15px;
}

img.black-white{
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: filter 2s ease-out, -webkit-filter 2s ease-out;
}
.no-touch img.black-white:hover{
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

#instafeed{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#instafeed a{
	position: relative;
	margin: 10px;
}
#instafeed img{
	width: 100%;
	height: 100%;
    object-fit: cover;
	max-width: 306px;
	max-height: 306px;
}
#instafeed .overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	color: #FFF;
	padding: 15px;
	display: flex;
	align-items: center;
	z-index: 1;
	opacity: 0;
	transition: opacity .3s ease-out;
	overflow: hidden;
}
.no-touch #instafeed .overlay:hover{
	opacity: 1;
}
#instafeed .overlay .testo{
	font-size: 12px;
	line-height: 16px;
}

body{
	font-family: 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
}
a, a:hover{
	color: #000;
}
header{
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;

	padding: 10px;
	background: #FFF;
	overflow: hidden;
	z-index: 1;
}
header.fixed{
	position: fixed;
}
header .header-container{
	justify-content: space-between;
	align-items: center;
	height: 40px;
	z-index: 100;
}
header .brand-container{
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
header .brand-container .logo{
	width: 190px;
}
.langs-wrapper{
	width: 22px;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 12px;
	font-weight: 500;
}

header .cart-counter{
    min-width: 15px;
	height: 15px;
	line-height: 15px;
    color: #FFF;
    background-color: #000;
    border-radius: 50%;
    margin-left: 7px;
    display: flex;
    align-items: center;
	justify-content: center;
	transition: opacity .3s ease-out;
	opacity: 1;
}
header .cart-counter.no-items{
	opacity: 0;
}
header .cart-counter .number{
	font-size: 10px;
    line-height: 15px;
    font-weight: 700;
}

footer .row.white, footer .row.black{
	padding-top: 20px;
	padding-bottom: 20px;
}
footer .row.white{
	padding: 40px 0;
	background-color: #FFF;
}
footer .row.black{
	background-color: #000;
	color: #FFF;
}
footer a{
	color: #FFF;
}
footer a:hover{
	color: #FFF;
}
footer .footer-logo{
	background-image: url(../img/sole.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 80px;
	height: 80px;
	width: 100%;
}
footer .credits{
	display: flex;
	flex-wrap: wrap;
	font-size: 10px;
	line-height: 20px;
	font-weight: 200;
}
footer .credits > div + div::before{
	content: '-';
	margin: 0 5px;
}


.actions-group{
	display: flex;
	align-items: center;
}
.actions-group > div + div{
	margin-left: 25px;
}
.actions-group > div.cart{
	margin-left: 5px;
	width: 	50px;
	display: flex;
	justify-content: flex-end;
}

div.cart > a{
	display: flex;
	align-items: center;
}


.i-svg{
	display: block;
	width: 15px;
	height: 15px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.i-svg.search{
	background-image: url(../icons/search.svg);
}
.i-svg.user{
	background-image: url(../icons/user.svg);
}
.i-svg.cart{
	background-image: url(../icons/cart.svg);
}

.bordered{
	border: 1px solid #ccc;
}

.burger{
	display: block;
    height: 16px;
    width: 22px;
    min-width: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.burger .line {
    content: "";
    position: relative;
    float: left;
    width: 100%;
    height: 2px;
    background: #1D1D1B;
}

#main{
	padding-top: 60px;
	min-height: calc(100vh - 252px);
}
.have-sconto #main{
	padding-top: 100px;
	min-height: calc(100vh - 292px);
}
#main .centered-box{
	min-height: calc(100vh - 312px);
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
	flex-direction: column;
	flex-wrap: wrap;
}
#main .page-content{
	margin-top: 50px;
}

.payment-box{
    margin-top: 50px;
}
.payment-box.paypal{
    max-width: 100%;
	width: 300px;
}
.payment-box.bonifico{
    background-color: #f1f1f1;
    padding: 15px 40px;
    border-radius: 3px;
}

.portrait{
	display: none !important;
}
.owl-carousel .item{
	position: relative;
	width: 100%;
	overflow: hidden;
}
.owl-carousel .owl-dots{
	position: absolute;
    z-index: 1;
    bottom: 0;
    display: flex;
	justify-content: center;
	padding: 0 15px;
	width: 390px;
	max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.owl-carousel .owl-dots > button + button{
	margin-left: 30px;
}

.owl-carousel button.owl-dot{
	height: 4px;
	min-width: 1px;
    width: 100%;
    background-color: #000;
	margin-bottom: 22px;
	outline: none;
	transition: background-color .3s ease-out;
}
.owl-carousel button.owl-dot.active{
	background-color: #FFF;
}
.owl-nav{
    display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next{
    display: flex;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #1d1d1b;
    color: #1d1d1b;
    background-color: #fff;
	transition: border-color .2s ease-out, color .2s ease-out, background-color .2s ease-out;
	outline: none;
}
.no-touch .owl-carousel .owl-nav button.owl-prev:hover,
.no-touch .owl-carousel .owl-nav button.owl-next:hover{
	border: 1px solid #fff;
    color: #fff;
    background-color: #1d1d1b;
}
.owl-carousel .owl-nav button > span{
	margin: 0 auto;
}
.absolute-wrapper{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    display: flex;
    align-items: center;
}

.titolo, .contacts-form h3{
	font-size: 60px;
	line-height: 60px;
	font-weight: 200;
}
.testo{
	font-size: 16px;
	line-height: 60px;
	font-weight: 300;
}

.link{
	font-size: 12px;
	line-height: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

.overlay-box .titolo{
	font-weight: 200;
}
.overlay-box .testo{
	font-weight: 200;
}

.socials{
	text-align: center;
}
.socials a.social{
	color: #000;
	font-size: 35px;
	opacity: 0.5;
	transition: opacity .3s ease-out;
}
footer .socials a.social{
	color: #FFF;
}
.socials a.social + a.social{
	margin-left: 20px;
}
.no-touch .socials a.social:hover{
	opacity: 1;
}

.bee-offcanvas .bee-offcanvas-bar{
	width: 475px;
	max-width: 100%;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content{
	padding: 25px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content.flex-space{
	position: relative;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
	padding: 25px;
	min-height: 100%;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content .langs-wrapper{
	position: absolute;
	margin: 3px 0 0 !important;
	text-align: right;
    left: auto;
	width: auto;
	top: 35px;
    transform: translateY(-50%);
	right: 15px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content > div+div{
	margin-top: 50px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content.flex-space > div+div{
	margin-top: 30px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li a{
	font-weight: 200;
	font-size: 38px;
	line-height: 60px;
	padding: 0px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li.cat a{
    font-size: 32px;
    line-height: 40px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li.cat.first{
    margin-top: 10px;
    border-top: 1px solid #ccc;
	padding-top: 10px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li.cat.last{
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul li + li{
	border: none;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content > div{
	float: left;
	width: 100%;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content.flex-space > div.close-wrapper{
	width: 40px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content .cart-list{
    max-height: calc(100% - 322px);
    overflow: auto;
}

.bee-offcanvas .cart .titolo{
	font-size: 40px;
	line-height: 40px;
}

.bee-offcanvas .cart-list::-webkit-scrollbar, .ss-list::-webkit-scrollbar{
	width: 8px;
}
.bee-offcanvas .cart-list::-webkit-scrollbar-track, .ss-list::-webkit-scrollbar-track{
	background: #f1f1f1;
} 
.bee-offcanvas .cart-list::-webkit-scrollbar-thumb, .ss-list::-webkit-scrollbar-thumb {
	background: #ccc; 
}
.no-touch .bee-offcanvas .cart-list::-webkit-scrollbar-thumb:hover, .no-touch .ss-list::-webkit-scrollbar-thumb:hover{
	background: #555; 
}

.bee-offcanvas .bee-offcanvas-bar .button-close{
	float: left;
	display: inline-block;
	font-size: 32px;
	line-height: 32px;
	font-weight: 200;
	color: #1D1D1B;
	cursor: pointer;
}
.bee-offcanvas .bee-offcanvas-bar .button-close.right{
	float: right;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul li.active a, .no-touch .bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul li a:hover{
	color: #1D1D1B;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul li.active a{
	font-weight: 400;
}

.box-wrapper{
	padding: 10px 0;
    display: flex;
    justify-content: center;
}
.box-wrapper > div + div{
	margin-left: 15px;
}
.box-wrapper .box{
	position: relative;
	overflow: hidden;
}
.box-wrapper .box .content{
	position: absolute;
	left: 15px;
    position: absolute;
    left: 15px;
    width: 205px;
	max-width: calc(100% - 30px);
	top: 15px;
}
.box-wrapper .box .content.bottom{
	top: auto;
	bottom: 15px;
}
.box-wrapper .box .content.right{
	left: auto;
	right: 15px;
	text-align: right;
}
.box-wrapper .box .content > div + div{
	margin-top: 15px;
}
.box-wrapper .box .content .titolo{
	font-size: 18px;
	font-weight: 700;
}
.box-wrapper .box .content .testo{
	font-size: 14px;
}
.box-wrapper .box .content .link{
	font-size: 11px;
}
.box-wrapper .box .content .titolo, .box-wrapper .box .content .testo, .box-wrapper .box .content .link{
	line-height: 20px;
}

.box-wrapper .box.box-4 .content .titolo{
	width: 75%;
	margin: 0 0 0 auto;
}

.box-wrapper .multibox-wrapper{
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.box-wrapper .box.box-1 > img, .box-wrapper .box.box-2 > img{
	max-height: 419px;
}
.box-wrapper .box.box-3 > img, .box-wrapper .box.box-4 > img{
	max-height: 203px;
}

.link a{
	display: inline-block;
	position: relative;
    padding-bottom: 10px;
}
a:hover{
	text-decoration: none;
}
.link a:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #1D1D1B;
	transition: width 0.3s ease-out;
}
.text-white .link a{
	color: #FFF;
}
.text-white .link a:after{
	background-color: #FFF;
}

.no-touch .link a:hover:after{
	width: 100%;
}
.no-touch .is-touch .link a:hover:after{
	width: 0;
}


.padding-box{
	padding: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 250px;
	height: 100%;
	background-color: #F1F1F1;
}
.padding-box > div{
	width: 100%;
}
.padding-box > div + div{
	margin-top: 15px;
}

.padding-box > div.icon + div{
	margin-top: 35px;
}
.padding-box .icon{
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
}
.padding-box .icon.normal{
	opacity: 1;
}

.evento-item .img-box img{
	border: 1px solid #e9e8e8;
}
.padding-box .titolo, .section .section-titolo, .evento-item .titolo{
	font-weight: 200;
	font-size: 24px;
	line-height: 32px;
	margin: 0;
}

.padding-box .testo, .section .section-testo, .evento-item .testo{
	font-weight: 300;
	font-size: 14px;
	line-height: 20px;
	margin-top: 20px;
}

.container.section{
	padding: 45px 0 25px 0;
}
.row.banner + .container.section{
	padding-top: 135px;
}
.section .section-head{
	text-align: center;
	justify-content: center;
	padding-bottom: 45px;
}

.item.product{
	overflow: hidden;
	position: relative;
	border: 1px solid #eaeaea;
	margin-bottom: 30px;
	cursor: pointer;
}
.item.product .content{
	position: relative;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 20px;
	background-color: #FFF;
	text-align: center;
	z-index: 1;
	transition: transform 0.3s ease-out;
}
.item.product .content::before{
	content: '';
	position: absolute;
	height: 1px;
	top: 0px;
	left: 15px;
	width: calc(100% - 30px);
	background-color: #eaeaea;
}

.item.product .prod-image{
	display: block;
	margin: 0 auto;
    transition: transform 3s ease-out;
}
.no-touch .item.product:hover .prod-image{
	transform: scale(1.3);
}

.item.product .content .testo, .item.product .content .prezzo, .product-details .content .prezzo{
	font-size: 14px;
	line-height: 20px;
}
.item.product .content .testo{
	height: 60px;
	overflow: hidden;
}

.item.product .content .prezzo, .product-details .content .prezzo, .cart .price, .checkout-wrapper .price{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}
.prezzo > .sconto{
	font-weight: 400;
    font-size: 11px;
    text-decoration: line-through;
}
.price > .sconto{
	font-weight: 400;
    font-size: 16px;
    text-decoration: line-through;
    display: inline-block;
    margin-left: 10px;
}
.item.product .content > div + div{
	margin-top: 20px;
}

.variant-wrapper .titolo{
	color: #9d9d9c;
	font-weight: 200;
	font-size: 14px;
	line-height: 20px;
}

.color-wrapper{
	padding: 15px 60px;
	display: flex;
	justify-content: center;
}
.color-wrapper .color{
	position: relative;
	border: 2px solid #FFF;
	width: 42px;
	height: 42px;
	transition: border-color .3s ease-out;
}
.color-wrapper > a+a{
	margin-left: 5px;
}
.color-wrapper .color.active, .no-touch .color-wrapper .color:hover{
	border-color: #000;
}
.color-wrapper .color::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 4px solid #FFF;
}
.color-wrapper .color::before{
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	border: 1px solid #CCC;
	z-index: 1;
}

.button, a.button{
	display: inline-block;
	background-color: #1d1d1b;
	padding: 13px 50px;
	text-transform: uppercase;
	color: #FFF;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	border: 2px solid #1d1d1b;
	cursor: pointer;
	transition: background-color .3s ease-out, color .3s ease-out;
}
.no-touch .button:hover, .no-touch a.button:hover{
	background-color: #ece8dc;
	color: #1d1d1b;
}
.button.style-2, a.button.style-2{
	background-color: #FFF;
	border: 2px solid #1d1d1b;
	color: #1d1d1b;
}
.no-touch .button.style-2:hover, .no-touch a.button.style-2:hover{
	background-color: #1d1d1b;
	color: #FFF;
}
.section.newsletter .row.section-body{ 
	justify-content: center;
}
/* .section.newsletter form{
	width: 645px;
	max-width: 100%;
} */
.section.newsletter form input {
	/* width: 420px; */
	/* max-width: 100%; */
	/* margin: 0 auto; */
	border-radius: 0px;
}
/* .section.newsletter form input::placeholder{
	text-align: center;
} */
/* .section.newsletter form .epp-ci-ta{
	text-align: center !important;
} */

.form-control:focus{
    border-color: rgb(29, 29, 27);
    box-shadow: 0 0 0 0.2rem rgba(29,29,27,.25);
}

.banner-wrapper{
	position: relative;
	height: 335px;
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
}
.banner-wrapper.foto_small{
	background-size: contain;
	background-position: 72% 50%;
}
.banner-wrapper .titolo{
	font-size: 60px;
	line-height: 60px;
	font-weight: 100;
	margin: 0;
}
.banner-wrapper .testo{
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
	margin: 15px 0 0 0;
}
.banner-wrapper .banner-image{
	width: 100%;
	visibility: hidden;
}
.view-pagina.products .banner-wrapper.collezione{
	height: 413px;
}
.view-pagina.products .banner-wrapper .banner-image{
	display: none;
}
.collezione .banner-wrapper .testo{
	padding-right: 15px;
}


.content-block{
	position: relative;
}
.content-block .block-text-image{
	height: 100%;
}
.content-block .block-text-image.content-text{
	padding: 15px 0px;
}
.content-block .content-text{
	text-align: center;
	font-size: 18px;
	line-height: 24px;
	font-weight: 200;
}

.content-block.fit-full .content-text{
	font-size: 46px;
	line-height: 50px;
	font-weight: 100;
	padding: 0;
	color: #FFF;
}
.content-block .content-text > p:last-of-type, .testo > p:last-of-type{
	margin-bottom: 0;
}
.master-contents{
	padding-top: 70px;
	width: 100%;
}
.master-contents .ck-titolo{
	margin-top: 60px;
}

.master-contents.eventi{
	overflow: hidden;
}
.master-contents.eventi .flex-mobile .titolo{
	margin-bottom: 30px; 
}

.master-contents.collezioni{
	padding-top: 0;
}
.master-contents.collezioni .image{
	text-align: right
}

.master-contents + .master-contents, .master-contents .content-block + .content-block{
	margin-top: 50px;
}

.item-wrapper{
    display: flex;
	align-items: center;
	background-color: #f1f1f1;
	background-repeat: no-repeat;
    background-size: auto 100%;
}
.item-wrapper .row{
	justify-content: center;
	align-items: center;
}
.item-wrapper:nth-child(even){
	background-color: #ece8dc;
}
.item-wrapper + .item-wrapper{
	margin-top: 10px;
}
.item-wrapper:nth-child(even) .content{
	order: 1;
	text-align: right;
}
.item-wrapper:nth-child(even) .image{
	text-align: left;
}
.item-wrapper .content .titolo{
	font-size: 24px;
	line-height: 32px;
	font-weight: 200;
}
.item-wrapper .content .testo{
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
}
.item-wrapper .content > div + div{
	margin-top: 25px;
}
.item-wrapper .content .titolo + .testo{
	margin-top: 40px;
}

.data{
	position: absolute;
	top: 15px;
	left: 30px;
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FFF;
	border-radius: 50%;
	text-align: center;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	flex-wrap: wrap;
	flex-direction: column;
}
.data .number{
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
}
.data .letter{
	text-transform: uppercase;
}

.data > div{
	width: 100%;
}
.evento-item .dates{
	margin-top: 5px;
	font-size: 14px;
    line-height: 16px;
}
.evento-item .testo{
	margin-top: 20px;
}
.evento-item .link{
	margin-top: 25px;
}
.evento-item + .evento-item{
	margin-top: 50px;
}
.evento-item.dettaglio{
	justify-content: center;
}
.evento-item.dettaglio .content-box{
	margin-top: 45px;
    text-align: center;
}
.evento-item.dettaglio .content-box .titolo{
	font-weight: 500;
}
.evento-item.dettaglio .content-box .titolo + .testo{
	margin-top: 35px;
}
.evento-item.dettaglio + .evento-item{
	margin-top: 125px;

}
.view-not-found #main{
	display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-box, .contacts-form{
	margin-bottom: 110px;
}
.contacts-box .item{
	display: flex;
	flex-direction: column;
    align-items: center;
	justify-content: center;
	text-align: center;
    flex-wrap: wrap;
	min-height: 250px;
	background-color: #f1f1f1;
	padding: 15px;
}
.contacts-box .item > div{
	width: 100%;
}
.contacts-box .item > div + div{
	margin-top: 40px;
}
.contacts-box .item .icon{
	opacity: 0.5;
}
.contacts-box .item .titolo{
	font-size: 24px;
	line-height: 32px;
	font-weight: 200;
}
.contacts-box .item .testo, .contacts-box .item .testo a{
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
}

.wrapper-more{
	text-align: center;
	padding: 40px 0 50px 0;
}


.map{
	height: 560px;
}

.filters-wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 35px 0px 50px 0px;
	border-top: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	opacity: 0;
	transition: opacity 0.3s ease-out;
}
.filters-wrapper .label{
	text-transform: uppercase;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
}
.filters-wrapper .label.mobile{
	display: none;
	width: 100%;
	padding: 10px 0;
	text-align: center;
}
.filters-wrapper .filters{
	display: flex;
}
.filters-wrapper .filters > div{
	display: inline-block;
	border-left: 1px solid #bfbfbf;
}

.ss-main.slim .ss-single-selected{
	height: 70px;
	width: 250px;
	max-width: 100%;
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
	border: none;
	padding: 6px 10px;
}
.ss-main.slim.lite .ss-single-selected{
	height: auto;
	width: auto;
    border: 1px solid #ccc;
}
.ss-main .ss-content{
	margin: 0 -1px 0 -1px;
	width: calc(100% + 2px);
}
.ss-main.slim.lite .ss-content{
	width: 100%;
    margin: -1px 0 0;
}
.ss-main .ss-single-selected .placeholder{
	text-transform: uppercase;
}
.ss-main .ss-content, .ss-main .ss-single-selected .ss-arrow span{
	border-color: #bfbfbf;
}

.product-details{
	margin-top: 60px;
}
.product-details .image-wrapper{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	border: 1px solid #eaeaea;
	overflow: hidden;
	height: 538px;
}
.product-details .image-wrapper img.img-fluid{
	max-height: 100%;
    object-fit: contain;
}

.product-details .content > div, .product-details .content > a{
	position: relative;
	float: left;
	width: 100%;
}
.product-details .content .table-responsive{
	overflow: visible;
}
.product-details .content .d-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product-details .content .category, .text{
	font-size: 24px;
	line-height: 24px;
	font-weight: 200;
}
.product-details .content .code{
	font-size: 14px;
	line-height: 14px;
	font-weight: 300;
}
.product-details .content .price{
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
	margin: 30px 0 5px 0;
}
.product-details .content .iva{
	font-weight: 300;
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 20px;
}

.order-details .iva{
	position: relative;
	float: right;
	text-align: right;
    font-size: 12px;
    margin: 0;
	padding-left: 15px;
}

.product-details .content .testo{
	font-weight: 300;
	font-size: 14px;
	line-height: 20px;
	padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #c6c6c6;
}

.product-details .content .testo h2, .product-details .content .link-box .titolo{
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

hr{
	border-color: #c6c6c6;
}
.product-details .content .features .name, .product-details .content .features .value{
	font-size: 14px;
	line-height: 18px;
	font-weight: 300;
}
.product-details .content .features .name{
	text-transform: uppercase;
	vertical-align: middle;
	width: 110px;
}
.product-details .content .features .help{
	font-size: 12px;
	line-height: 16px;
	font-weight: 200;
	font-style: italic;
	width: 235px;
	opacity: 0;
	transition: opacity .3s ease-out;
}
.product-details .content .features .active{
	opacity: 1;
}


.product-details .color-wrapper{
	padding: 0;
	justify-content: flex-start;
}
.product-details .color-wrapper > a + a{
	margin-left: 5px;
}

.add-cart .qta, .product-details .add-cart .button.cart{
	position: relative;
	float: left;
	width: 210px;
	height: 50px;
}
.product-details .add-cart .button.cart{
	width: 225px;
}
.add-cart .button.cart{
	padding: 13px;

	display: flex;
	align-items: center;
	justify-content: center;
}
.add-cart .qta{
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.add-cart .qta .action{
	position: absolute;
	font-size: 18px;
	line-height: 20px;
	font-weight: 700;
	top: 50%;
	transform: translateY(-50%);
	left: 15px;
	cursor: pointer;
	padding: 5px;
}
.add-cart .qta .action.sub{
	left: auto;
	right: 15px;
}

.add-cart .qta input{
	height: 100%;
	width: 100%;
	text-align: center;
	pointer-events: none;
}
.product-details .add-cart > div + div{
	margin-left: 15px;
}
.product-details .content .prezzo{
	text-align: right;
	text-transform: uppercase;
	text-decoration: underline;
	padding: 15px 0 30px 0;
}

.table td{
	border: none;
	padding-top: 0;
}
.table tr > td:first-of-type{
	padding-left: 0;
	padding-right: 0;
}
.table tr > td:last-of-type{
	padding-right: 0;
}

.product-details .content .link-box{
	padding-top: 1rem;
    padding-bottom: 10px;
	border-bottom: 1px solid #c6c6c6;
}
.product-details .content .link-box.alt{
	padding-bottom: 1rem;
	cursor: pointer;
}
.product-details .content .link-box.alt::after{
    content: '+';
    position: absolute;
    right: 15px;
    font-size: 20px;
	line-height: 14px;
	top: 26.5px;
	transform: translateY(-50%);
}
.product-details .content .link-box.alt .titolo{
	text-transform: uppercase;
}
.product-details .content .link-box .help, .help.alt{
	margin-top:20px;
	font-size: 12px;
	line-height: 16px;
}
.product-details .content .link-box .help.alt, .help.alt{
	background-color: #333;
    padding: 10px;
    border-radius: 3px;
    margin-top: 5px;
	color: #FFF;
	font-style: italic;
}


.breadcrumb-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 58px;
}
.breadcrumb-wrapper .breadcrumb{
    background-color: unset;
	align-items: center;
	margin: 0;
	padding: 0;
}
.breadcrumb-wrapper .breadcrumb > li{
	display: flex;
	flex-wrap: wrap;
}
.breadcrumb-wrapper .breadcrumb > li + li::before{
	content: '/';
	margin: 0 8px;
	font-size: 12px;
    line-height: 24px;
    font-weight: 400;
}
.breadcrumb-wrapper .breadcrumb h1, .breadcrumb-wrapper .breadcrumb h2, .breadcrumb-wrapper .breadcrumb h3, .breadcrumb-wrapper .breadcrumb h4, .breadcrumb-wrapper .back{
	font-size: 12px;
	line-height: 24px;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0;
}
.breadcrumb-wrapper .breadcrumb h1, .breadcrumb-wrapper .back{
	font-weight: 700;
}
.breadcrumb-wrapper .back{
	min-width: 75px;
}

.bg-lc{
	background-color: #ece8dc;
}

.tab.box + .tab.box{
	margin-top: 75px;
}
.title-box{
	padding: 15px;
    background-color: #f1f1f1;
    font-size: 26px;
    line-height: 28px;
}

.title-box + .content-box{
	margin-top: 35px;
}
.form-line + .form-line{
	margin-top: 30px;
}
.form-line label{
    width: 100%;
}
.form-line .input{
	padding-left: 15px;
    padding-right: 15px;
    width: 345px;
    height: 50px;
    max-width: 100%;
    background-color: #FFF;
    border: 1px solid #cbcacb;
	outline-color: #000;
	border-radius: 0px;
}
.form-line textarea.input{
	padding: 15px;
	height: 150px;
}
form.full .form-line .input{
	width: 100%;
}
.form-line a{
	display: block;
    margin: 15px 0px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    color: #1d1d1b;
	text-transform: none;
}
.epp-ci a{
	display: inline-block;
}
.slider{
	display: none;
}

.go-top{
	position: fixed;
    display: flex;
    align-items: center;
	justify-content: center;
    width: 30px;
    height: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid #1d1d1b;
    color: #1d1d1b;
    background-color: #fff;
    cursor: pointer;	
	transition: border-color .2s ease-out, color .2s ease-out, background-color .2s ease-out;
	z-index: 100;
}
.no-touch .go-top:hover{
	border: 1px solid #fff;
    color: #fff;
    background-color: #1d1d1b;
}


.hide{
	display: none;
}

.cart .item{
	font-weight: 200;
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 30px;
}
.cart .item .category, .cart .item .code, .cart .item .misura, .cart .item .add-cart, .cart .item .cart-remove{
	font-size: 16px;
}
.cart .item .img-wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
    width: 100%;
	height: 100%;
	overflow: hidden;
}
.cart .item .img-wrapper img{
	min-width:  1px;
}
.cart .item .content{
	padding: 0 5px 0 30px;
}
.cart .item .content .block.bold{
	font-weight: 700;
}
.cart .item .content .block + .block{
	margin-top: 20px;
}

.cart .item .add-cart{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.cart .item .add-cart .qta-label{
	position: relative;
	float: left;
	margin-right: 5px;
}
.cart .item .add-cart .qta{
	width: 70px;
	height: 32px;
	max-width: 100%;
}
.cart .item .add-cart .qta .action{
	left: 8px;
}
.cart .item .add-cart .qta .action.sub{
	left: auto;
	right: 8px;
}
.cart .item .cart-remove{
	text-decoration: underline;
	cursor: pointer;
}
.cart .summary{
	text-align: right;
}
.cart .summary .line{
	margin-bottom: 15px; 
}
.cart .summary .price{
	display: inline;
}
.cart .summary .button{
	padding: 13px 20px;
}

.checkout-bar{
    background-color: #ece8dc;
    padding: 20px 0;
    text-transform: uppercase;
}
.checkout-bar .steps{
    display: flex;
    align-items: center;
	justify-content: center;
}
.checkout-bar .steps .step{
	pointer-events: none;
}
.checkout-bar .steps .step.clickable{
	pointer-events: all;
	cursor: pointer;
}
.checkout-bar .steps .step.active{
	pointer-events: none;
	font-weight: 700;
}
.checkout-bar .steps .step + .step::before{
	content: '>';
	margin: 0 40px;
}
.checkout-wrapper{
	margin-top: 60px;
}
.checkout-wrapper .step-contents{
	overflow: hidden;
}
.checkout-wrapper .step-contents .step{
	display: none;
}
.checkout-wrapper .step-contents .step.active{
	display: block;
}
.checkout-wrapper .step-contents .step.spedizione .content, .checkout-wrapper .step-contents .step.pagamento .content {
	padding: 35px 0 0 0;
}
.checkout-wrapper .step-contents .step.pagamento .payment .content{
	padding: 0;
}
.checkout-wrapper .step-contents form .step.spedizione label{
	text-transform: uppercase;
}
.checkout-wrapper .step-contents .step.pagamento label{
	text-align: center;
	cursor: pointer;
	margin: 0;
}
.checkout-wrapper .checkout-box{
	border: 1px solid #918f8f;
	padding: 30px;
}
.checkout-wrapper .checkout-box + .checkout-box{
	margin-top: 30px;
}
.checkout-wrapper .checkout-box, .checkout-wrapper .checkout-box .titolo, .checkout-wrapper .checkout-box .testo{
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
}
.checkout-wrapper .checkout-box .titolo{
	text-transform: uppercase;
}
.checkout-wrapper .checkout-box ul{
	padding: 0 0 0 15px;
	margin: 0;
}
.checkout-wrapper .checkout-box > div + div, .checkout-wrapper .checkout-box ul > li + li{
	margin-top: 30px;
}
.checkout-wrapper .section + .section{
	margin-top: 35px;
}
.checkout-wrapper .section .product{
	position: relative;
	padding: 35px 0 35px 35px;
	margin: 0;
	border-bottom: 1px solid #c6c6c6;
}
.checkout-wrapper .section .product.reduce{
	padding: 20px 0 20px 35px;
}
.checkout-wrapper .section .product .delete{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    cursor: pointer;
}
.checkout-wrapper .section .product.subtotal{
	padding-bottom: 0;
	border: none;
}
.checkout-wrapper .section .subtotal-wrapper{
	display: flex;
	justify-content: space-between;
}
.checkout-wrapper .section .subtotal-wrapper .label{
	text-transform: uppercase;
}
.checkout-wrapper .section .product img{
	border: 1px solid #eaeaea;
}
.checkout-wrapper .section .product .content{
	padding-left: 35px;
}
.checkout-wrapper .section .product .content > div + div{
	margin-top: 15px;
}
.checkout-wrapper .section .product .add-cart .qta{
	width: 200px
}
.checkout-wrapper .section .product .testo{
	font-size: 14px;
	line-height: 18px;
}
.checkout-wrapper .section .product .price span{
	font-weight: 400;
    margin-left: 5px;
}
.checkout-wrapper .section .product .iva{
	position: relative;
	float: right;
	font-size: 11px;
    margin: 0;
    padding-left: 15px;
}
.checkout-wrapper .section .titolo{
	background-color: #f1f1f1;
	padding: 15px;
	font-size: 26px;
	line-height: 26px;
}
.checkout-wrapper .extra{
	margin-top: 55px;
}
.checkout-wrapper .extra .titolo, .checkout-wrapper .extra p{
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
}
.checkout-wrapper .extra .titolo{
	text-transform: uppercase;
	margin-bottom: 15px;
}
.checkout-wrapper .extra p{
	margin: 0;
}
.checkout-wrapper .section .shipping, .checkout-wrapper .section .wrapper-radio{
	padding: 35px 0;
	margin: 0;
	border-bottom: 1px solid #c6c6c6;
	align-items: center;
}
.checkout-wrapper .section .shipping .first-col, .checkout-wrapper .section .wrapper-radio .first-col{
	display: flex;
	align-items: center;
}
.checkout-wrapper .section .shipping .second-col, .checkout-wrapper .section .shipping .third-col,
.checkout-wrapper .section .wrapper-radio .second-col, .checkout-wrapper .section .wrapper-radio .third-col{
	padding-left: 60px;
}
.checkout-wrapper .section .shipping .third-col,
.checkout-wrapper .section .wrapper-radio .third-col{
	text-align: right;
	font-weight: 700;
}
.checkout-wrapper .step-loader{
	text-align: right;
	margin-top: 35px;
	text-transform: uppercase;
}
.checkout-wrapper .step-loader .button{
	float: right;
}
.checkout-wrapper .step-loader .button.style-2{
	float: left;
}

.fake-radio{
	width: 35px;
	height: 35px;
	min-width: 35px;
	min-height: 35px;
	padding: 8px;
	margin-right: 20px;
	cursor: pointer;
	-webkit-box-shadow: inset 2px 2px 10px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: inset 2px 2px 10px 0px rgba(0,0,0,0.35);
	box-shadow: inset 2px 2px 10px 0px rgba(0,0,0,0.35);
}
.fake-radio .black-box{
	width: 100%;
	height: 100%;
	background-color: #FFF;
	transition: background-color .2s ease-out;
}
.no-touch .fake-radio:hover .black-box, .fake-radio.active .black-box{
	background-color: #333;
}

.disabled{
	opacity: 0.5;
    pointer-events: none;
}

form.password-recovery{
	width: 500px;
    max-width: 100%;
    margin: 35px auto 35px auto;
}

.responsive-label{
    display: none;
}
.responsive-table{
    width: 100%;
}
.responsive-table thead tr{
    background-color: #666;
    color: #fff;
}
.responsive-table thead tr th{
	font-weight: 400;
	font-size: 14px;
}
.responsive-table thead tr th, .responsive-table tbody tr td{
    padding: 5px;
}
.responsive-table tr th.centered, .responsive-table tr td.centered{
	text-align: center;
}
.responsive-table tbody tr + tr{
    border-top: 1px solid #666;
}
table.responsive-table + table.responsive-table, .mt-25px{
    margin-top: 25px;
}

.bee-dialog{
	display: flex;
    align-items: center;
    padding: 10px;
}
.bee-dialog.no_scroll .bee-dialog-main{
	max-height: calc(100vh - 170px);
	overflow-y: auto;
	overflow-x: hidden;
}
.bee-dialog > .bee-dialog-inner{
	margin:  auto;
}
.bee-dialog h2{
	font-size: 18px;
}
.bee-dialog p{
	font-size: 14px;
}

.account-content-area .section .h2{
	text-transform: uppercase;
	margin: 0;
	font-size: 24px;
    line-height: normal;
}
.account-content-area .section h5{
	text-transform: uppercase;
}
.account-content-area .section.separator::after{
    content: '';
    width: 100%;
    height: 1px;
    background-color: #CCC;
    position: relative;
    float: left;
	margin: 10px 0;
}
.account-content-area .row.title + .row.content{
	margin-top: 15px;
}
.account-content-area .row.content + .row.title{
	margin-top: 50px;
}
.account-content-area .order-table, .order-details{
	margin: 25px 0;
}
.account-content-area .order-table .responsive-table thead tr th:nth-child(1){
	width: 16%;
}
.account-content-area .order-table .responsive-table thead tr th:nth-child(2){
	width: 19%;
}
.account-content-area .order-table .responsive-table thead tr th:nth-child(3){
	width: 30%;
}
.account-content-area .order-table .responsive-table thead tr th:nth-child(4){
	width: 15%;
}
.account-content-area .order-table .button, .account-content-area .order-table a.button{
	font-size: 12px;
    line-height: normal;
    padding: 8px 25px;
}

.order-details{
	margin: 25px 0;
}
.order-details > .row + .row{
	margin-top: 25px;
}
.order-details .title h4{
	font-size: 18px;
    line-height: normal;
	text-transform: uppercase;
}
.order-details address{
	margin: 0;
}
.order-details address strong{
	font-weight: 400;
}
.order-details .payment-box{
	margin: 0;
}
#sidebar li + li{
	margin-top: 10px;
}
#sidebar li.active{
	font-weight: 600;
}

.pagination-wrapper li a{
	display: inline-block;
	width: 25px;
	height: 25px;
	line-height: 25px;
    text-align: center;
	background: #1d1d1b;
	color: #fff;
	border: 2px solid #1d1d1b;
	box-sizing: content-box;
	transition: all 0.3s ease-out;
}
.no-touch .pagination-wrapper li a:hover, .pagination-wrapper li.active a{
	background: #ece8dc;
	color: #1d1d1b;
}
.pagination-wrapper li + li{
	margin-left: 5px;
}

.overlay.gallery{
	position: relative;
	margin-top: 15px;
	z-index: 100;
	display: flex;
	align-items: center;
}
.overlay.gallery .thumb-box{
    width: 75px;
    border: 1px solid #eaeaea;
	cursor: pointer;
	transition: border-color .3s ease-out;
}
.overlay.gallery .thumb-box.active, .no-touch .overlay.gallery .thumb-box:hover{
	border-color: #bbb;
}
.overlay.gallery .thumb-box + .thumb-box{
	margin-left: 15px;
}
.overlay.gallery .thumb-box.video{
	position: relative;
	height: 75px;
}
.overlay.gallery .thumb-box.video .overlay{
	content: '';
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #FFF;
	background: rgba(0, 0, 0, 0.4);
	font-size: 18px;
}
.overlay.gallery .thumb-box.video img{
	width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.view-misure #main{
	padding: 60px 0;
}
.misure-head{
	text-align: center;
}
.misure-head .table-title{
	margin: 40px 0;
}
.table-title{
	text-transform: uppercase;
	font-size: 22px;
	line-height: normal;
	letter-spacing: 0.1rem;
}
.table-misure{
	margin-top: 20px;
	border: 2px solid #ccc;
}
.table-misure thead th, .table-misure td{
	text-align: center;
	vertical-align: middle;
}
.table-misure thead th{
	background-color: #ece8dc;
	border-color: #000;
	border-style: solid;
	border-width: 0px 0 2px 2px;
	text-transform: uppercase;
}
.table-misure thead th:first-of-type{
	border-left-width: 0px;
}
.table-misure td{
	padding-top: .75rem;
	border-color: #ccc;
	border-style: dotted;
	font-weight: 500;
	border-width: 0px 0 2px 2px;
}
.table-misure td:first-of-type{
	border-left-width: 0px;
}
.table-misure tr:last-of-type td{
	border-bottom-width: 0px;
}
.table-misure tr > td:last-of-type{
	padding-right: .75rem;
}
.table-misure tbody tr:nth-child(even){
	background-color: #e4ebf3;
}


.misure-body .image-wrapper{
	position: relative;
}
.misure-body .text-overlay{
	position: absolute;
    top: 90px;
    right: 200px;
    width: 100px;
    text-align: center;
}

.bracciali .misure-body{
	margin-top: 50px;
}
.bracciali .description-block{
	font-size: 24px;
	line-height: normal;
}

.bracciali .description-block ul{
	list-style-type: none;
	padding: 0;
	margin: 50px 0 0 0;
}
.bracciali .description-block ul li{
	display: flex;
	justify-content: space-between;
	max-width: 300px;
}
.bracciali .description-block ul li + li{
	margin-top: 25px;
}

.misura-circle{
	border: 1px solid #000;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
	justify-content: center;
	margin: auto;
}

.read_more{
	margin: 1rem 0 0 0;
}

.burger-wrapper{
    display: flex;
	align-items: center;
	height: 40px;
    width: 40px;
}

.master-contents .content-block:before, .master-contents .content-block:after{
	content: none;
}

.popup-sconto{
	text-align: center;
}
.popup-sconto .bee-dialog-inner{
	padding: 35px 25px;
}
.popup-sconto .bee-dialog-inner{
	width: 550px;
	max-width: 100%;
}
.popup-sconto .content{
	margin-top: 35px;
}
.popup-sconto .content .title{
	font-size: 36px;
    line-height: 42px;
	font-weight: 400;
	max-width: 320px;
	margin: 0 auto 2rem;
}
.popup-sconto .content .text{
	max-width: 420px;
	font-weight: 400;
	margin: 0 auto;
}
.popup-sconto .content > p:last-child{
	margin-bottom: 0;
}

.sconto-banner{
	position: absolute;
	width: 100%;
	display: flex;
	align-items: center;
    justify-content: center;
	background-color: #000;
    color: #FFF;
    height: 40px;
	text-align: center;
	padding: 10px 40px;
	cursor: pointer;
}
.sconto-banner.fixed{
	position: fixed;
	z-index: 2;
}
.sconto-banner .title{
	font-size: 19px;
}
.sconto-banner .sconto-close{
    display: flex;
    align-items: center;
    justify-content: center;
	position: absolute;
	font-weight: 500;
	width: 40px;
	height: 35px;
	right: 0;
}

.have-sconto header{
	top: 40px;
}

.head-wrapper{
	position: absolute;
	width: 100%;
	z-index: 1000;
}
.head-wrapper.fixed{
	position: fixed;
}

.section-titolo-rivenditori {

}

.rivenditori-filter {
	background: #000000;
	margin-bottom: 40px;
}

.rivenditori-filter .filters-box .filters-wrapper{
	margin: 20px 0px 20px 0px;
}

.rivenditori-filter .filters-box .filters-wrapper .ss-main .ss-single-selected {
	border-radius: 0;
	background-color: #000000;
}

.rivenditori-filter .filters-box .filters-wrapper .label {
	color: #FFFFFF;
}

.rivenditori-filter .filters-box .filters-wrapper .ss-main .ss-single-selected .placeholder,
.rivenditori-filter .filters-box .filters-wrapper .ss-main .ss-single-selected .ss-deselect,
.rivenditori-filter .filters-box .filters-wrapper .ss-main .ss-single-selected .placeholder .ss-disabled {
	color: #FFFFFF;
}

.rivenditore-item {
	margin-bottom: 50px;
	line-height: 1.5em;
}

.rivenditore-item h4 {
	font-size: 19px;
}

.rivenditore-item p, .rivenditore-item a {
	font-size: 14px;
	margin-bottom: 0;
}

.rivenditore-item a.view-on-map {
	text-decoration: underline;
	color: #666;
}

.sconto-baloon{
	position: absolute;
    background: #000;
    color: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    right: 10px;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
}
.img-wrapper .sconto-baloon{
	width: 35px;
	height: 35px;
	font-size: 11px;
}

.no-results{
	text-align: center;
	width: 100%;
	padding: 0 30px;
}

.video-box{
	position: relative;
	overflow: hidden;
}
.video-box img{
	width: 100%;
}
.video-box video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 100%;
}
.fullscreen .video-box{
	height: 100%;
}
.fullscreen .video-box img{
	height: 100%;
}

.youtube-video{
	display: block;
}
.youtube-video.bee-dialog.bee-dialog-in .bee-dialog-inner{
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
}
.youtube-video.bee-dialog .bee-dialog-inner .bee-dialog-close{
	top: 4px;
    right: 9px;
}

/* Newsletter Box */
.newsletter-fixed-box {
	display: none;
    position: fixed;
    z-index: 1000;
    bottom: 16px;
    top: auto;
    left: 16px;
    max-width: 300px;
    margin-left: auto;
    background: rgba(255, 255, 255);
    text-align: center;
    padding: 32px 32px 41px;
	border: 1px solid #eaeaea;
}
.newsletter-fixed-box .icon-close {
	position: absolute;
    right: 22px;
    top: 10px;
    cursor: pointer;
}
.newsletter-fixed-box .icon-close,
.newsletter-dialog.bee-dialog .bee-dialog-inner .bee-dialog-close {
	font-size: 20px;
	color: #1D1D1B;
}
.newsletter-fixed-box .icon-close i {
	color: #ccc;
	font-size: 14px;
}
.newsletter-fixed-box img {
	width: 25px;
	margin-bottom: 25px;
}
.newsletter-fixed-box p {
	font-size: 12px;
}
.newsletter-fixed-box a {
	color: #ffffff !important;
}
.newsletter-fixed-box a:hover {
	color: #1d1d1b !important;
}
.newsletter-dialog .titolo {
	font-size: 40px;
	line-height: 48px;
}
.iti {
	display: block;
}

/* Contact Widget */
.contact-widget {
	display: block;
	position: fixed;
	bottom: 95px;
	right: 10px;
	left: 50px;
	z-index: 1900;
}
.contact-widget .cwt {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	transition: transform .3s ease, opacity .3s ease;
}
.contact-widget .cwt .cwti {
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
}
.contact-widget .cwt .cwtl {
    display: block;
    position: absolute;
    right: 100%;
    top: 50%;
    padding: 12px 16px;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
    color: #222;
    white-space: nowrap;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
    transform: translateY(-50%);
}

.grecaptcha-badge {
	bottom: 180px !important;
	z-index: 20;
}