@import url('https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap');
/*

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #7e4292
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

html {
  scroll-behavior: smooth;
}

.form-control {
	margin-bottom:10px;
	border:1px solid #121212;
}
 
 @keyframes zoomout {
  0% {
			-moz-transform: scale(1.4,1.4);
		-ms-transform: scale(1.4,1.4);
		-webkit-transform: scale(1.4,1.4);
		transform: scale(1.4,1.4);
  }

  100% {
		-moz-transform: scale(1,1);
		-ms-transform: scale(1,1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
  }
}
@-webkit-keyframes zoomout {
  0% {
		-moz-transform: scale(1.2,1.2);
		-ms-transform: scale(1.2,1.2);
		-webkit-transform: scale(1.2,1.2);
		transform: scale(1.2,1.2);
  }

  100% {
		-moz-transform: scale(1,1);
		-ms-transform: scale(1,1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
  }
}



@keyframes bollasu {
  0% {
		opacity:0;
		-moz-transform: scale(0.25,0.25);
		-ms-transform: scale(0.25,0.25);
		-webkit-transform: scale(0.25,0.25);
		transform: scale(0.25,0.25) translate(600px);
	  
  }
  
  50% {
		opacity:0.5;
		-moz-transform: scale(0.5,0.5);
		-ms-transform: scale(0.5,0.5);
		-webkit-transform: scale(0.5,0.5);
		transform: scale(0.5,0.5) translate(300px);
  }
  
  75% {
		opacity:0.75;
		-moz-transform: scale(0.75,0.75);
		-ms-transform: scale(0.75,0.75);
		-webkit-transform: scale(0.75,0.75);
		transform: scale(0.75,0.75) translate(100px);
  }
  
  

  100% {
		opacity:1;
		-moz-transform: scale(1,1);
		-ms-transform: scale(1,1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1) translate(0px);
  }
}

.bollasu {
	animation-name: bollasu;
	transition-delay:2s;



}

   .slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  }
  @keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  } 
  

	.cover1 {
		background-position:50% 50%;
		height:100%;
		animation-name: zoomout;
		animation-duration:5s;
			 
	}
	.cover2 {
	    background-position:50% 50%;
		height:100%;
		animation-name: zoomout;
		animation-duration:30s;
	} 

 .w3-animate-left {
	 transition-delay:2s;

 }
 
 .elementToFadeInAndOut {
    width:100%;
    height: 200px;
     -webkit-animation: fadeinout 2s linear forwards;
    animation: fadeinout 2s linear forwards;
}

@-webkit-keyframes fadeinout {
  0% { opacity: 0; }
  50% { opacity: 0.5; }
  75% { opacity: 0.75; }
  100% { opacity: 1; color:#ff0000; }
}

@keyframes fadeinout {
   0% { opacity: 0; }
   50% { opacity: 0.5; }
  75% { opacity: 0.75; }
  100% { opacity: 1; color:#ff0000;}
}

 
body {

   font-family: 'Titillium Web', sans-serif;
  color: #333;
  background-color: #fff;
}

.scorrimento {
  position: relative;
  animation: w3-animation-top 1.5s linear;
}
.scorrimento img {
	height:110px;
	text-align: center;
	vertical-align:middle;
	padding: 5px;
}

.contact-info {
	
	border-bottom:1px solid #ccc;
	width:100%;
	margin-bottom:4px;
	padding-bottom:10px;
	
}

.contact-info p {
	
	margin-top:20px;
	margin-left:20px;
	
}

.contact-info span {
	float:left;
	margin-left:20px;
	margin-top:0px;
	margin-right:10px;
	font-size:26px;
	color:#333;
}

@keyframes mymove {
  from {left: -200px;}
  to {left: 0px;}
}


h1 {  font-size:28px;}
h2 {  font-size:24px;}
h3 {  font-size:20px; font-weight:500; color:#99cee1;}
h4 {  font-size:16px; font-weight:500;}

a {
	color: #0090a8;
	font-weight: 500;
	-webkit-transition: 0.2s color;
	transition: 0.2s color;
	text-decoration:none;
}

a:hover{
  color: #000;
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.btn {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  border:1px solid #ccc;
  padding: 12px 30px;
  font-weight: bold;
  margin: 0 0 10px;
  border-radius:2px;
  min-height:44px;
  color:#fff;
}
.btn:hover{
	-webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	 color:#fff;
}
.btn-info {
    color: #333;
    background-color: #fff;
}
.btn-info:hover, .btn-info:focus {
    background-color: #ededed;
	color: #121212;
}

.btn-success {
    color: #fff;
    background-color: #000;
}
.btn-success:hover {
    background-color: #fff;
	color:#000;
}

.btn-dark {
    color: #fff;
    background-color: #000;
}
.btn-dark:hover {
    background-color: #fff;
	color:#000;
}


.btn-danger {
    color: #fff;
    background-color: #ff0000;
}
.btn-danger:hover {
    background-color: #fff;
	color:#ff0000;
}

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #076c76;
  border: none;
  border-radius: 4px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);

}
.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height:40px;
  padding: 0px 15px;
  border: 1px solid #C4BBAB;
  background-color: #FFF;
  width: 100%;
  line-height:20px;
  border-radius:4px;
}
input {
/*   height: 40px; */
  padding: 0px 15px;
  border: 1px solid #C4BBAB;
  background-color: #FFF;
  line-height:20px;
}

radio.input {
  height:12px;
  padding: 0px 15px;
  border: 1px solid #C4BBAB;
  background-color: #FFF;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
  margin-bottom:10px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #C4BBAB;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #C4BBAB;
  background-color: #FFF;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
  color: #e29500;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #C4BBAB;
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #E4E7ED;
  background: #FFF;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FFF;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #e29500;
  border-color: #e29500;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section, .section_uno {
  padding-bottom:15px;
  background-color:#fff;
 
}

.section-title {
  position: relative;
  margin-bottom:0px;
  margin-top: 6px; 
}



.section-title .title {
  display: inline-block;
  margin: 0px;
}

.section-title h1 {font-size:32px;}
.section-title h2 { font-size:28px; }
.section-title h3 { font-size:24px; }
.section-title h4 { font-size:20px; }

	

.section-title h1,.section-title h2,.section-title h3,.section-title h4 {
  padding:10px;
  margin-top:10px;
  width:100%;
  color:#000;
  border-bottom:1px solid rgba(0,0,0,0.19);
 font-weight:600;  
}

.section-title h1 span {font-size:30px; color:#121212;}
.section-title h2 span {font-size:22px; color:#333333;}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #2b53a0;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #e29500;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #e29500;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}
.section_uno {
    background-color: #fff;
    border-top: 1px solid #d4d1c6;
    border-bottom: 1px solid #d4d1c6;
}


/*---------------------- offerte -----------------*/
.offerte {
	background-color:#d0e1df;
    padding-top: 15px;
	padding-bottom: 15px;
	position:relative;
}
.offerte::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(171, 212, 212, 0.89);
    content: "";
}

.testuale {
	background: #fff;

	padding-bottom: 10px;
	box-shadow: 2px 2px 12px 0 rgba(0,0,0,.18) inset;
	border-bottom:2px inset #333;
}

.testuale-testo {
	
	box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.057), 0 8.1px 17.9px rgba(0, 0, 0, 0.083), 0 25px 80px rgba(0, 0, 0, 0.14); 
	background-color:rgba(255,255,255,0.44);
	padding:20px;
	border-radius:4px;
	margin-top:4px;

}

.testuale-testo p  {

	margin-right:4px;
	text-align:justify;
	color:#000;
	line-height:25px;
}

.testuale-testo h1 {
	 color:#1B59AC; 
	 margin-bottom:5px;
	
	 font-weight:600;
	border-bottom:1px solid #333;
}


.testuale-testo h2 {
	 color:#3D69A4; 
	 margin-bottom:5px;
	
	 font-weight:600;
	 
}
.testuale-img {
	box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.057), 0 8.1px 17.9px rgba(0, 0, 0, 0.083), 0 25px 80px rgba(0, 0, 0, 0.14);
	background-color:#fff;
	border-radius:4px;
}
.testuale .container {
	position:relative;
}
.richiedi-info {
	min-height: 300px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #dadada;
}
/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
	padding: 10px 0px;
	background: #000;
	color:#fff;
	border-bottom: 1px solid #333;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color:#fff;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #fff;
  font-weight:600;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #fff;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
background-color: #000;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #fff;
}

.header-links li a:hover {
  color: #ededed;
}

.header-links li i {
  color: #ededed;
  margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  color:#000;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 1px 5px rgba(0,0,0,0.24);
  background-color:rgba(255,255,255,0.20);
  z-index:9999;
}
#header::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
}
.header-logo {
	float: left;
	padding: 15px 0 10px;
}
.header-logo .logo img {
	display: block;
	max-width: 100%;
	max-height: 75px;
}
.header-menu {
	padding:10px 0 0 0;

}

.home #header {
	background:transparent;
	box-shadow:none;
}

.home #header::before {
	display:none;
}

.home .header-menu {
    background-color: transparent;
}
.home .navbar-default .navbar-nav > li > a {
    color: #000;
	font-weight:bold;
	text-shadow: 0 0 6px rgba(0,0,0,0.5);
}
.home .header-logo {
	background: transparent;
}


/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
  padding: 15px 0px;
  margin-top:20px;
}

.header-search form {
  position: relative;
}

.header-search form .input-select {
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: calc(100% - 95px);
  margin-right: -4px;
 /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);*/
  border-radius:4px 4px 4px 4px;
  border:1px solid #333;
}

.header-search form .search-btn {
  height: 40px;
  width: 80px;
   background-color: #fff;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 0px 4px 4px 0px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
   
}

/*----------------------------*\
	Cart E ACCOUNT
\*----------------------------*/
.header-ctn {
  float: right;
/*  padding: 15px 0px;*/
  padding:9999;
  display:inline-flex;
  margin-top:10px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  height:100px;
  max-height:100px;
  text-align: center;
  color: #FFF;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FFF;
  background-color: #000;
}

.header-ctn .menu-toggle {
  display: none;
}

i .fa { font-size:30px;}

.titolo-carrello {
	 background-color: #000;
	margin: -9px -15px 15px;
	padding: 4px 10px;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}
#header .cart-list a {
	color:#000;
	font-size:12px;
}
.cart-list .product-widget .product-body {
    padding-left:0px;
}
.cart-dropdown {
  width:100%;
  min-width:350px;
  background: #FFF;
  padding: 0 15px;
}

.dropdown-no-caret {
	cursor: pointer;	
}
.dropdown-no-caret::after {
	content:none;	
}
.dropdown-menu.show {
    display: block;
    box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.057), 0 8.1px 17.9px rgba(0, 0, 0, 0.083), 0 25px 80px rgba(0, 0, 0, 0.14);
	overflow: hidden;
}

.dropdown.open>.cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  max-height: 280px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #ccc;
	border-radius: 0;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2B2D42;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -8px;
}

.cart-dropdown .cart-btns>a {
  display: inline-block;
  width: calc(50% - 1px);
  padding: 12px;
  background-color: #fff;
  color: #000; 
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
  margin-right: -4px;
  background-color: #ededed;
}

.cart-dropdown .cart-btns>a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
     border-top:3px solid #121212;
    padding-top: 5px;
    padding-bottom: 15px;
	font-size:20px;
	font-weight:600;
}
.account-mobile {
	padding:0;
	text-align:center;
	margin-top: -3px;
}
.account-mobile .icona-account {
	font-size: 27px;
}
.carrello-mobile {
	margin-right: -10px;
	margin-top: 3px;
	padding:0;
	text-align:center;
}
.carrello-mobile.header-ctn > div > a > .qty {
	top:-4px;
	right:10px;
}
.carrello-mobile .icona-carrello {
	font-size: 27px;
	margin-top: 6px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
	
}
.navbar-nav {
	margin: auto;
}
.navbar { 	

	/*box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;*/
	padding:25px;

/*	border-bottom:2px solid #ededed;*/
	font-size:20px;
	font-weight:bold;
	margin:0 auto !important;
	float:none;
	width:100%;

}
.navbar-dark .navbar-toggler-icon {
       background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-chiudi {

	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	opacity:1;
	position:absolute;
	z-index:99999;
	top:17px;
	right:20px;
}

.btn-chiudi:focus {
    box-shadow: none;
	
}

.navbar-dark .navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}

.agile_inner_drop_nav_info { padding:10px; width:380px;}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    color: #000;
	font-weight:400;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
   background-color:transparent !important;	

}

.navbar-default .navbar-nav>li>a {
    color: #000;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
	text-decoration-line:none;
	text-transform:uppercase;
}

.navbar-nav > li {
    margin: 0 4px;
}
.navbar-nav > li > a {
    padding: 15px;
	font-size:13px;
}
.navbar-collapse {
    padding-right: 0;
    padding-left: 0;

}

.navbar-nav > li > a {
    line-height: inherit;
}
a.nav-stylehead {
    letter-spacing: 0.5px;
    color: #000;
    font-size: 15px;
	font-weight: bold;
}

.agile_short_dropdown {
    border-radius: 0;
   /* background: #ffffff;*/
    text-align: center;
	padding:0;
	border: none;
}
.agile_short_dropdown li a {
    color: #000;
    font-size: 13px;
    padding: .8em 0;
    border-bottom: 1px solid #ddd;
    letter-spacing: 1px;
}
.agile_short_dropdown > li > a:hover {
    text-decoration: none;
    background-color: transparent;
    color:#fff;
}
.multi-gd-img img {
    margin-top: 60px;
}

/*-- navigation-dropdown --*/

.dropdown-menu {
   border:0px;
 }



ul.multi-column-dropdown  {	 width:360px; border:0px; }
ul.multi-column-dropdown li {
    list-style-type: none;
    line-height:20px;
	 width:360px;
	padding:10px;
	border-bottom:1px solid #ccc;
/* 	width:260px;
	margin-right:10px; */

}
ul.multi-column-dropdown li a {
    text-decoration:none;
	font-size:14px;
    color: #000;
    letter-spacing: 0.5px;
	padding-left: 0;
}

ul.multi-column-dropdown.item li a {

	text-transform:capitalize;
}

ul.multi-column-dropdown li a:hover{
	color:#659AD1;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
	  color:#659AD1;
}
.dropdown-item:focus, .dropdown-item:hover {
    color:#333;
    background: none;
}
/*-- //navigation-dropdown --*/
/* //navigation */

@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .nav-link{ color: #000;  }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}	

.nav-item .dropdown-menu {
	background-color:rgba(255,255,255,0.81);
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 20px 0px;
  color: #397b2b;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: #397b2b;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

.pre-footer-bottom {
    padding-bottom: 40px;
   box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background-color:#333;
    padding-top: 40px;
}
.pre-footer-bottom img { 
    margin-right:6px;
	
}
.pre-footer-bottom-text h2 {
	font-size:18px;
	color:#333;
	margin-left:4px;
	line-height:24px;
	font-weight:400;
	
	
}



.pre-footer {
    padding-bottom: 40px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding-top: 40px;
	color:#333;
	background-size: 200px;
}
.pre-footer img { 
    margin-right:6px;
	
}
.pre-footer-text p {
	font-size:18px;
}

.bluefoot-wrapper {
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}

/*-- product left --*/
.ads-list {
	width:33.333%;
	float:left;
}
.select-box {
    background: rgba(255, 76, 76, 0.66);
    padding: 30px 30px;
    margin: 40px 0;
    border-radius: 6px;
    -ms-border-radius: 6px;

}
.ads-list label {
	display: block;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 6px;
}
.ads-list select {
	width: 70%;
    outline: none;
    color: #000;
    font-size: 15px;
    border: 1px solid #eee;
    padding: 7px 8px;
}
.btn-group.bootstrap-select.show-tick button {
    padding: 8px 10px;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 260px;
}
#custom-search-input {
    padding: 3px;
    border: solid 1px #D1E0EE;
    border-radius: 0;
    -ms-border-radius: 0px;
    background-color: #fff;
    width: 80%;
    color: #000;
}

#custom-search-input input{
    border: 0;
    box-shadow: none;
}

#custom-search-input button{
    margin: 2px 0 0 0;
    background: none;
    box-shadow: none;
    border: 0;
    color: #666666;
    padding: 0 8px 0 10px;
    border-left: solid 1px #ccc;
}

#custom-search-input button:hover{
    border: 0;
    box-shadow: none;
    border-left: solid 1px #ccc;
}

#custom-search-input .glyphicon-search{
    font-size: 23px;
}
.input-lg {
    height: 29px;
    padding: 0px 10px;
    font-size: 15px;
    line-height: 1.3333333;
    border-radius: 0;
    -ms-border-radius: 0px;

}
#custom-search-input .glyphicon-search {
    font-size: 16px;
}

h3.agileits-sear-head {
    color:#99cee1;
	margin-bottom: 10px;
	font-size: 22px;
	border-bottom: 1px solid #99cee1;
	text-transform: uppercase;
	font-weight: bold;
}
h3.agileits-sear-head:not(:first-child) {
	margin-top:10px;
}
.search-hotel{
    padding: 15px 0;
    border-bottom: 1px solid #e5e3db; 
}
/*-- Slider range --*/
ul.dropdown-menu6 ,ul.dropdown-menu5{
margin:0;
position:relative;
}
ul.dropdown-menu6 li {
list-style:none;
}
ul.dropdown-menu6 li p{
width:100%;
}
span.amount{
color:#ffffff;
font-size:16px;
}
input#amount,input#amount1 {
  font-size: 13px;
  outline: none;
  background: none;
  word-spacing: 1em;
  color: #000 !important;
  position: absolute;
  left: 0%;
  top: -27px;
  margin-top: -10px;
}
.range,.w3-brand-select,.w3ls-featured-ads{
	color:#333;
	line-height:25px;
	
}
.side-bar {
    background-color: #fff;
	padding: 5px 15px;
	border-right: 1px solid #ddd;
	margin:2px 0;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
/*-- //Slider range --*/
/*-- check input --*/
.left-side ul li {
    display: inline-block;
    width: 100%;
    margin-bottom: 6px;
}
input.checked {
    display: inline-block;
    margin: 0;
    cursor: pointer;
}
.left-side ul li span {
    font-size: 13px;
    color: #000;
    letter-spacing: 1px;
    margin-left: 3px;
    vertical-align: top;
}
.left-side{
    margin-top: 18px;
}
/*-- //check input --*/
/*-- customer --*/
.customer-rev ul li i {
    color: #FFC107;
}
.customer-rev ul li {
   list-style: none;
}
.customer-rev ul li a span {
    color: #000;
    font-weight: normal;
    font-size: 14px;
    margin-left: 8px;
}
/*-- //customer --*/
/*-- special deals --*/
.img-deal1 {
    padding: 0 .5em;
    margin-top: 10px;
}
.img-deal1 h3 {
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}
.img-deal1 a{
    font-size: 18px;
    color: #d60404;
}
.special-sec1:nth-child(3), .special-sec1:nth-child(5) {
    margin: 15px 0;
}
/*-- //special deals --*/
/*-- //product left --*/


/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
	
  }

  .navbar-toggler {
	
	  position:fixed;
	  float:left;
	  background:none;
	  top:14px;

	  left:10px;
	  color:#fff;
	  overflow: hidden;
      z-index:9999;
	  border-radius:4px!important;
	  padding: .25rem .25rem;
}
  
  .nav-item .dropdown-menu {
	background-color:rgba(0,0,0,1);
}
  
 
 .navbar {
	min-height:0px !important;
	height:0px !important;
	z-index:9999;
	margin-top:0px;
    padding: 0px;
    color: #fff;
    float: left;
    width: 100%;
    top: 0px;
}

.navbar-nav {
    float: none;
	
}

.navbar-default .navbar-toggler:hover, .navbar-default .navbar-toggler:focus {
/*     background-color: #fff; */
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
	background-color: #000;
    position:fixed;
	width:100%;
	top:0px;
	left:0px;
	padding-top:70px;
	
}

.navbar-default .navbar-nav > li > a {
    color: #fff;

}

.navbar-default .navbar-nav > li > a:hover {
    color: #fff;
}
.navbar ul li a {
    font-size: 13px;
	color:#fff;
}

.nav > li {
    border-top: 1px solid #cccccc;
	padding:10px;
	color: #fff;
	width:100%;
	
}
.navbar ul li a {
    font-size: 13px;
	color:#fff;

}


.menu__list {
    margin-left: 0px;
    margin-top: 60px;
    width:100%;
}

ul.multi-column-dropdown  {	 border:0px; width:100% !important; box-shadow:none !important; background-color:#000;}
ul.multi-column-dropdown li {
	padding:12px;
	line-height:14px;
	width:100%;
	color:#fff;
}
ul.multi-column-dropdown li a {
    text-decoration:none;
	text-transform:capitalize;
    font-size:14px;
    color:#fff;
    letter-spacing: 0.5px;
	margin-bottom:2px;
	padding-left: 0;
	font-weight:bold;
}
	

ul.multi-column-dropdown.item li a {
color:#fff;
	text-transform:capitalize;
}

ul.multi-column-dropdown li a:hover{
	color:#fff;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    background-color: #333;
}

}
/*------------------------ Showcase e carousel ---------------------------*/
.showcase {
	position:relative;
	top: -90px;
	box-shadow: none;
	margin-bottom: -90px;
	
}
.carousel {

    border-bottom: 10px inset #333;
}

.carousel-item {
	height:100vh;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	 transition-delay:5s;

}

.carousel-item-interno {
	height:50vh;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	 transition-delay: 2s;

}

.carousel-item-interno .container .testo {
	display:table-cell;
	vertical-align:middle;
	color:#fff;
	text-shadow:rgba(0, 0, 0, 0.64) 1px 1px 5px;

}

.carousel-item-interno h2 {
	
	font-weight:bold;
	font-size:42px;
	color:#fff;
	text-align:center;
	padding:10px;
	border-radius: 4px;
	text-shadow:1px 2px 1px rgba(131,131,131,1.00);
}


.carousel-item .container {
	display:table;
	height:100%;

}


.carousel-item .container .testo {
	display:table-cell;
	vertical-align:middle;
	text-align:left;
	color:#fff;
	text-shadow:rgba(0, 0, 0, 0.64) 1px 1px 5px;

}

.carousel-item h2 {
	
	font-weight:bold;
	font-size:62px;
	color:#fff;
	text-align:center;
	padding:10px;
	border-radius: 4px;
	text-shadow:1px 2px 1px rgba(131,131,131,1.00);
}
.carousel-item span {
	text-transform:uppercase;
	color:#1C58AA;
	font-weight:600;
	font-size:40px;
	text-shadow:1px 2px 1px rgba(131,131,131,1.00);
}
.carousel-item p {
	font-size:30px;
	color:#fff;
	text-align:center;
	padding-bottom:20px;
	text-shadow:1px 2px 1px rgba(51,47,47,1.00);
}
.carousel-item .container .testo {
	display:table-cell;
	vertical-align:middle; 
	text-align:center;
	color:#fff;
	text-shadow:rgba(0, 0, 0, 0.64) 1px 1px 5px;

}

.carousel-overlay {
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.2);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.1) 27%);
}


.carousel-control-next-icon,.carousel-control-prev-icon {
    background-color: rgba(0,0,0,0.5);
	border-radius:4px;
}



/* --------------------- Sezioni speciali ------------------------------- */
.slide-fissa {
	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
	height:35vh;
	display:table;
	width:100%;
}
.slide-fissa .testo-slide {
	display:table-cell;
	text-align:center;
	color:#fff;
	vertical-align:middle;
	font-size:1.5rem;
	font-weight:bold;
	text-shadow:rgba(0, 0, 0, 0.25) 0px 0px 8px
}


/*---------------- vetrina ------------------------------*/

.vetrina {
/*background: rgb(136,136,136);
background: linear-gradient(17deg, rgba(136,136,136,36%) 0%, rgba(240,240,240,1) 81%, rgba(237,237,237,1) 100%);*/
background-color:rgba(255,255,255,1.00);
}

.vetrina1 {
	background-color: #fff;
	border-top:10px solid #ccc;
	border-bottom:10px inset #ccc;
	color:#000;
}
.vetrina1 h2 { color:#333; margin-bottom:10px;padding:5px; font-weight:600;}
.vetrina1 h3 { color:#444; margin-bottom:10px;padding:5px; font-weight:600;}
.vetrina1  p { color:#000; /*box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;*/}
.vetrina1  img { width:auto; /* max-width:320px; */ }

.img_certificazioni a img { border:1px solid #ededed;}
.img_certificazioni a img:hover { opacity:0.5; background-color:rgba(117,117,117,0.57);}

.testo_categorie {
   
   background: rgb(255,255,255);
   border-bottom:10px solid #ededed inset;
   padding:20px;

}

.testo_categorie img {
    
	border-top-left-radius:2px;
	border-top-right-radius:2px;
	border-bottom-right-radius:2px;
	border-bottom-left-radius:2px;
	height:auto !important;
	border:10px solid #C7C7C7;
	   

}



/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/


.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
  background-color:#fff;
/*  -webkit-box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.057),  0 8.1px 17.9px rgba(0, 0, 0, 0.083),  0 25px 80px rgba(0, 0, 0, 0.14);
  box-shadow:0 6.7px 5.3px rgba(0, 0, 0, 0.057),  0 8.1px 17.9px rgba(0, 0, 0, 0.083),  0 25px 80px rgba(0, 0, 0, 0.14);*/
  
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  background-size: cover;
  display: flex;
   flex-wrap: wrap;
}

.shop>a {
	width:100%;
}

.shop .shop-img {
	position: relative; 
	width:100%;
    height: 0;
	padding: 0px;
    padding-top:56.25%;    
}
.shop .shop-img img{
	max-height: 101%;
	max-width: 101%;
	width: auto;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;	
}

.shop .shop-img img:hover {
	 opacity:1;
    -webkit-transition: 1.2s all;
    transition: 1.2s all;
 	-moz-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
	-webkit-transform:  rotateY(360deg);
	  transform: rotateY(360deg);
}

.shop .shop-img>img {
  width: 100%;
  -webkit-transition: 1.2s all;
  transition: 1.2s all;
}


.shop:hover {
  -webkit-box-shadow: 0 9.4px 5.3px rgba(0, 0, 0, 0.057),  0 11.4px 17.9px rgba(0, 0, 0, 0.083),  0 35px 80px rgba(0, 0, 0, 0.14);
  box-shadow: 0 9.4px 5.3px rgba(0, 0, 0, 0.057),  0 11.4px 17.9px rgba(0, 0, 0, 0.083),  0 35px 80px rgba(0, 0, 0, 0.14);

}

.shop .shop-body {
  width: 100%;
  padding: 10px;
  background:#fff; 
  color:#000;
  border-bottom:2px inset #333;
}

.shop .shop-body h2 {

    color: #000;
	text-shadow: 2px 2px 4px #fff;
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: bold;
    text-size-adjust: initial;
    text-align: -webkit-center;
    margin-top: 3px;
	}

.shop .shop-body h2 a:link  {
	color: #fff;
	font-size: 16px;
	font-weight:400;
}

.shop .shop-body h2 a:visited  {
	color: #fff;
}

.shop .shop-body h2 a:hover  {
	color: #fff;
}


.shop .shop-body h3 {
	color: #fff;
	font-size: 16px;
	font-weight:normal;
	margin-bottom: 3px;
	min-height: 36px;
}


.shop .shop-body .cta-btn {
  color: #444;
  text-transform: uppercase;
}


/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px;
/*  background-color: #E4E7ED;
  background-image: url('../images/hotdeal.png');*/
  background-position: center;
  background-repeat: no-repeat;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #7e4292e6;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FFF;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  background-color:rgba(255,255,255,1);
	border-radius: 4px;
	overflow: hidden;
}

.product:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.product .product-img {
	width:100%;
}
.product .product-img a {
	position:relative;
	height:0;
	padding-top:100%;	
	display:block;
}

.product .product-img img {

	width: 100%;
	height:100%;
/*	max-height: 100%;
	max-width: 100%;
	padding: 15px;*/
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	
}

.product .product-img img:hover {
   
    opacity:1;
    -webkit-transition: 1.2s all;
    transition: 1.2s all;
 	-moz-transform: scale(1.2,1.2) rotate(360deg);
	-ms-transform: scale(1.2,1.2) rotate(360deg);
	-webkit-transform: scale(1.2,1.2) rotate(360deg);
	transform: scale(1.2,1.2) rotate(360deg);
/*	
 transform: scaleX(1) scaleY(1) scaleZ(1) rotateX(360deg) rotateY(360deg) rotateZ(360deg) translateX(0px) translateY(0px) translateZ(0px) skewX(0deg) skewY(0deg);	
	  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%;
*/
	
			
}

.product .product-img .product-label {
  /*position: absolute;
  top: 15px;
  right: 15px;*/
  
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  width: 100%;
  background:#74c3de;
  color:#121212;
/*  background: linear-gradient(90deg, rgb(216, 216, 206) 0%, rgb(247, 247, 245) 100%);*/
  text-align: right;
   overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  
}

.product .product-img .product-label>span {
  border: none;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
 /*  background-color: #FFF;
  border-color: #e29500; */
  color: #121212;
  border-radius: 3px;
}

.product .product-img .product-label>span.new {
  /* background-color: #e29500; */
  /* border-color: #e29500; */
  color: #121212;
  font-weight:600;
  border-radius: 3px;
}

.product .product-body {
  position: relative;
  padding: 0 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
}

.product .product-body .product-category {
	text-transform: uppercase;
	font-size: 13px;
	font-weight:600;
	color:#74c3de;
	display: inline;
}
.product .product-body .product-category:not(:first-child)::before {
	content:"/ "
}

.product-category p {
   
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
   height:20px;
   max-height:20px;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 18px;
  min-height:52px;
  max-height:52px;
  text-overflow:ellipsis;
  overflow:hidden;
  position:relative
}
.product .product-body  .product-name:after {
	content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1.5em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 99%);
}

.product-name h2 a {

min-height:30px;
	max-height:30px;
	color: #333;
	font-weight:400;
	font-size: 18px;
	margin-bottom: 3px;
text-transform: uppercase; 
  text-overflow:ellipsis;
}

.product-name h3 a {
min-height:30px;
	max-height:30px;
	color: #333;
	font-weight:400;
	font-size: 18px;
	margin-bottom: 3px;
	
text-transform: uppercase; 
  text-overflow:ellipsis;
}

.product .product-body .product-name>a {
  font-weight: 700;
  color:#000;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #477DC6;
}

.product .product-body .product-price {
	color: #fff;
	font-size: 18px;
	background:#035b64;
	padding: 10px;
	top:0px;
	margin: 0 -15px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	
}

.product-sconto {
	color: #035b64;
	font-size: 15px;
	font-weight: bold;
	background: rgb(251, 204, 66);
	padding: 4px;
	display: inline-block;
	position: relative;
	top: 10px;
	border-radius: 4px;
	margin-bottom:10px;
}
.product .product-sconto {
	top: -9px;
}

.product .product-body .product-price  {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}



.product .product-body .product-price  {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

 .product-old-price {
  font-size: 16px;
  font-weight: 400;
  color: #f1b743
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #397b2b;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
	background: #f7f6f1;
	color: #333;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
/*  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  background: transparent;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;*/
  
    
}

.product:hover .add-to-cart {
/*  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);*/
}

.product .add-to-cart .add-to-cart-btn {
 position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  width:90%;
  margin-bottom:15px;
  margin-top:15px;
  background-color:#000;
  color:#fff;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 20px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  line-height:14px;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color:#fff;
  color:#000;
}

.product .add-to-cart .add-to-cart-btn a {
	color:#fff;
	
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #fff;
  /* opacity: 0; */
  /* visibility: hidden; */
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color:#000;
  color:#fff;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.slick-slide {padding:15px;}

.product-widget {
	position: relative;
	border-radius:4px;
	-webkit-box-shadow: 2px 2px 12px 0 rgba(0,0,0,.18);
	box-shadow: 2px 2px 12px 0 rgba(0,0,0,.18);
	overflow:hidden;
	border:none;
	padding: 0;
	background-color: #fff;
	display: flex;
	flex-direction: row-reverse;
}

.product-widget+.product-widget {
  margin: 12px 0px 10px;
  /* border-bottom:1px solid #ccc; */
}

.product-widget .product-img {
	position: relative;
	float:right;
	width: 33%;
	min-height:100px;
	font-size: 11px;
}
.product-widget .product-img .slick-slide img {
    max-height: 100px;
    margin: auto;
}
.product-widget .product-img .img-thumbnail {
	margin:0;
	padding:0;
	padding:0;
	width:auto;
	height:100px;
	border-radius: 0;
	border: none;
	margin: auto;

}
.product-widget .product-img>img {
  width: 100%;
}

.product-widget .product-body {
  float:left;
  width:67%;
  padding:10px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  font-weight:bold;
  color: #333;

background-color: #797979;
margin: -12px -12px 8px;
padding: 3px 12px 2px;
border-bottom: 1px solid #ddd;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
  color:#333;
}


.product-widget .product-body .product-name>a {
  font-weight: 700;
  color:#333;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #b63913
}

.product-widget .product-body .product-price {
  font-size: 17px;
  color: #035b64;
  margin-top: 10px;
  float:left;
  font-weight:bold;
}
.product-widget .product-body .sconto {
	margin-top: 11px;
	color: #fff;
	background-color: #6c883b;
	float: left;
	border-radius: 4px;
	padding: 0 3px;
	font-size: 13px;
	font-weight: bold;
	margin-left: 10px;
}

.product-widget .product-body .product-price .product-old-price {
	font-size: 90%;
	font-weight: bold;
	color: #b63913;
	margin-right: 15px;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
	position: absolute;
	top: 0;
	right: 0;
	height: 20px;
	width: 20px;
	text-align: center;
	font-size: 10px;
	padding: 0;
	background: #fbcc42;
	border: none;
	color: #333;
	border-radius: 12px;
}
.product-widget .delete i {
	font-size:13px;
	margin: 1px 0px 0px 0px;
}
.product-widget .delete:hover {
	background-color:#333;
	color: #fbcc42;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
padding-bottom: 70px;
margin-bottom: -50px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #C4BBAB;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #7e4292;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #7e4292;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #C4BBAB;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #000;
  color: #fff;
}

.store-grid li.active {
  background-color: #000;
  border-color: #ccc;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
   color:#fff;
   padding:0px;
   margin:0px;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #000;
  color:#fff;
  border: 1px solid #CCC;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}
.store-pagination li a:link {
  background-color: #000;
  color: #fff;
}

.store-pagination li a:visited {
  background-color: #000;
  color: #fff;
}

.store-pagination li:hover {
  background-color: #FFF;
  color: #000;
}

.store-pagination li a.active {
  background-color:#75A46A;
  border-color: #ccc;
  color: #fff;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #C4BBAB;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #000;
  color: #fff;
}

.store-grid li.active {
  background-color: #000;
  border-color: #ccc;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
   color:#fff;
   padding:0px;
   margin:0px;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #000;
  color:#fff;
  border: 1px solid #CCC;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}
.store-pagination li a:link {
  background-color: #000;
  color: #fff;
}

.store-pagination li a:visited {
  background-color: #000;
  color: #fff;
}

.store-pagination li:hover {
  background-color: #FFF;
  color: #000;
}

.store-pagination li a.active {
  background-color:#fff;
  border-color: #ccc;
  color: #000;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  background-color:#fff;
  border-bottom-right-radius:2px;
  border-top-left-radius:2px;
  border-bottom-left-radius:2px;
  border-top-right-radius:2px;
  border:1px solid #ededed;
	
}

#product-imgs .product-preview.slick-current {
  border-color: #ccc;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
 
}
#product-imgs .product-preview a img {
	width:auto;
	max-width:100%;
	max-height:250px;
	margin: 0 auto;
}
#product-main-img .product-preview a img {
	width:auto;
	max-width:100%;
	height:auto;
	max-height:400px;
	margin: 0 auto;
	
}
#product-main-img .product-preview {
	background-color:#fff;
}
/*----------------------------*\
	Product details
\*----------------------------*/
 .product-details {
    background-color: #fff;
	border:1px solid #ededed;
	margin-top:4px;
    border-radius: 4px;
    padding: 15px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

 .product-details h1 {
	 border-bottom:1px solid #ededed;
 }

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
  color: #7e4292;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top:10px;
  margin-bottom: 25px;
  color: #5F8F4C;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #FF0000;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #5F8F4C;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
  
}

.product-details .add-to-cart p {
  text-align:justify;
  
}

.add-to-cart-btn .add-to-cart {
	width:100%;
}
.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color:#076c76;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  -webkit-transition: 0.2s all;
transition: 0.2s all;
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
border: none;
width:100%;
}

.product-details .add-to-cart .add-to-cart-btn a {
	color:#fff;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: background-color: #5C2170;
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	border: none;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

 .qty-label {
	 width:100%;
 }
.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
  margin-bottom: 10px;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background-color: #ddd;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #000;
}

#product-tab .tab-nav li.active a {
  color: #000;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #7e4292;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
  color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: #7e4292;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #E4E7ED;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: #7e4292;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8D99AE;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #7e4292;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #C4BBAB;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #E4E7ED;
  color: #7e4292;
}

.reviews-pagination li.active {
  background-color: #7e4292;
  border-color: #7e4292;
  color: #FFF;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  color: #7e4292;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #7e4292;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
	margin-bottom: 15px;
	padding: 15px;
}

.shiping-details {
	margin-bottom: 15px;
	padding: 15px;
}

.billing-details .input, .shiping-details .input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #C4BBAB;
	border-radius:4px;
}

/* .order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
} */
.order-details {
  position: relative;
  padding: 25px;
  border: none;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
	background-color: #fff;

}

/* .order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
} */

.order-summary {
  margin: 0px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 20px;
  color: #C78E30;
}


.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
border-top: 10px solid #08747F;
border-bottom: 10px solid #08747F;
min-height:300px;
padding-top:45px;
padding-bottom:45px;
background-color:#035b64;
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
background-repeat:no-repeat;
background-position:center;
background-attachment:fixed;
background-size:cover !important;
}

.newsletter {
  text-align: left;
  
}

.newsletter h4 {
  font-size:22px;
  
}


.newsletter p {
  font-size: 16px;
  text-align:left;
  line-height:25px;
  color:#fff;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  /*content: "\f003";
  font-family: FontAwesome;*/
  position: absolute;
  font-size: 160px;
  color: #DFDBC7;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 165px);
  margin-right: -4px;
  border-radius: 4px 0px 0px 4px;
}

.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background:#60a3a3;
  color: #FFF;
  border: none;
  border-radius: 0px 4px 4px 0px;
  text-transform: uppercase;
  padding: 8px;
  padding-left: 10px;
  padding-right: 13px;
  color: #ffffff!important;
  font-weight: 600;

}

.newsletter .newsletter-follow {
  text-align: center;
}

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #C4BBAB;
  background-color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
  background-color: #E4E7ED;
  color: #333;
}

.search-form-line form {
	width: 100%;
    margin: 0 auto;
	padding: 12px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	background:rgba(57,123,43,1.00);	
}

.search-form-line label {
	font-size:12px;
	margin:4px 0px 4px 0px;
	float:left;
}

.search-form-line input[type="email"],.search-form-line input[type="password"], .search-form-line input[type="text"], .search-form-line input[type="number"] {
	outline: none;
    border: 1px solid #DBDBDB;
    padding: 10px 10px 10px 10px;
	margin-right:10px;
    font-size: 14px;
    color: #333;
    display: block;
	float:left;
	width:100%
}
.form-combo {
	text-align: center;
}

.search-form-line select {
	outline: none;
	border: none;
	padding: 5px 10px;
	margin-right: 10px;
	font-size: 14px;
	color: #333;
	display: inline-block;
	width: 30%;
	background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23999999' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/10px 10px;
	border-radius: 3px;
	height: 38px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.search-form-line input[type="submit"] {
	outline: none;
    border: none;
	border-radius:3px;
    padding: 0px 10px;
    font-size: 14px;
	min-height: 38px;
	height: 38px;    
	margin:-3px 0px 0px
}
/*---------------------------- slide-bottom----------------------*/
.slide-bottom {
	background-color: #a8cfcf;
}


/*-- checkout --*/
.titolo-separatore {
	background-color:#60a3a3;
	color:#fff;
	border-radius:4px;
	padding:8px;
	margin:35px 0 15px;
	text-transform: uppercase;
}
.titolo-separatore h4 {color:#fff;}
.checkout h2 {
	font-size: 1em;
	color: #212121;
	text-transform: uppercase;
	margin: 0 0 3em;
}

.checkout h2 span {
	color: #3399cc;
}

table.timetable_sub {
	width: 100%;
	margin: 0 auto;
}

.timetable_sub thead {
	 background-color: rgba(255,255,255,1.00);
	 border-bottom:1px solid #ccc;
}

.timetable_sub th {
	
	color: #333 !important;
	text-transform: capitalize;
	font-size: 13px;

}

.timetable_sub th,
.timetable_sub td {
    padding: 7px;
    font-size: 14px;
    color: #333;
	text-transform:uppercase;
	 background-color: rgba(255,255,255,1.00);
}

.timetable_sub td {
/*	border-bottom: 1px solid #CDCDCD;*/
}

td.invert-image a img {
	float:left;
	margin: 0 auto;
	margin-right:0px;
	width:20%;
}

.rem {
	position: relative;
}

.close1,
.close2,
.close3 {
	background: url('../images/close_1.jpg') no-repeat 0px 0px;
    cursor: pointer;
    width: 41px;
    height: 39px;
    position: absolute;
    right: 6px;
    top: -23px;
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}


/*-- quantity-starts --*/

.value-minus,
.value-plus {
	height: 30px;
	line-height: 24px;
	width: 30px;
	margin-right: 3px;
	display: inline-block;
	cursor: pointer;
	position: relative;
	font-size: 14px;
	color: #fff;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	border: 1px solid #b2b2b2;
	vertical-align: bottom;
}

.quantity-select .entry.value-minus:before,
.quantity-select .entry.value-plus:before {
	content: "";
	width: 13px;
	height: 2px;
	background: #000;
	left: 50%;
	margin-left: -7px;
	top: 50%;
	margin-top: -0.5px;
	position: absolute;
}

.quantity-select .entry.value-plus:after {
	content: "";
	height: 13px;
	width: 2px;
	background: #000;
	left: 50%;
	margin-left: -1.4px;
	top: 50%;
	margin-top: -6.2px;
	position: absolute;
}

.quantity .input-text.qty {
  width: 45px;
  height: 40px;
  line-height: 30px;
  padding: 0 5px;
  text-align: center;
  background-color: transparent;
  border: 1px solid #efefef;
  color:#000;
  display: inline-block;
  vertical-align: middle;
  float: none;
}


.value {
	cursor: default;
	width: 30px;
	height: 30px;
	padding: 8px 0px;
	color: #A9A9A9;
	line-height: 24px;
	border: 1px solid #E5E5E5;
	background-color: #E5E5E5;
	text-align: center;
	display: inline-block;
	margin-right: 3px;
}

.quantity-select .entry.value-minus:hover,
.quantity-select .entry.value-plus:hover {
	background: #E5E5E5;
}

.quantity-select .entry.value-minus {
	margin-left: 0;
}


/*-- quantity-end --*/

.checkout-right h4,
.address_form h4 {
	font-size: 1.1em;
	margin: 1em 0;
	letter-spacing: 1px;
	color: #888;
}

.checkout-left-basket h4 {
    padding: 1em;
    background:#ffcb2d;
    font-size: 1em;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 2em;
}

.checkout-left {
	margin: 2em 0 0;
}

.checkout-left-basket ul li {
	list-style-type: none;
	margin-bottom: 1em;
	font-size: 14px;
	color: #999;
}

.checkout-left-basket {
	float: left;
	padding-left: 0;
}

.checkout-right-basket {
	float: right;
	margin: 3em 0em;
}

.checkout-left-basket ul li span {
	float: right;
}

.checkout-left-basket ul li:nth-child(5) {
	font-size: 1em;
	color: #212121;
	font-weight: 600;
	padding: 1em 0;
	border-top: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	margin: 2em 0 0;
}

.checkout-right-basket a {
	padding: 10px 20px;
	color: #fff;
	font-size: 1em;
	background: #212121;
	text-decoration: none;
}

.checkout-right-basket a:hover {
	background:#26bb48;
}

.checkout-right-basket a span {
	left: -.5em;
	top: 0.1em;
}

.checkout {
	padding: 5em 0;
}

.address_form {
	float: right;
}

.information-wrapper input {
	width: 100%!important;
}

.check_box_one.cashon_delivery {
	float: left;
	width: 100%;
	margin-bottom: 10px;
}


/*-- checkbox --*/

.agileits-login label {
	font-size: 1em;
	color: #000;
	letter-spacing: 0.5px;
	font-weight: 400;
	cursor: pointer;
	position: relative;
}

input.checkbox {
	background: #212121;
	cursor: pointer;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	margin: 0 5px 0 0;
	vertical-align: text-bottom;
}


/*-- //checkout --*/


/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
	margin-bottom: 15px;
	padding: 15px;
}

.shiping-details {
	margin-bottom: 15px;
	padding: 15px;
}

.billing-details .input, .shiping-details .input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #C4BBAB;
	border-radius:4px;
}

/* .order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
} */
.order-details {
  position: relative;
  padding: 25px;
  border: none;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
	background-color: #fff;

}

.order-summary {
  margin: 0px 0px;
  text-align: right;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 20px;
  color: #C3873A;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/
.vetrina_certificazioni {
  box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.057), 0 8.1px 17.9px rgba(0, 0, 0, 0.083), 0 25px 80px rgba(0, 0, 0, 0.14);
  padding:10px;
  height:240px;
 }
  


#footer {

}
.sezione-footer {

    box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 1px 5px rgba(0,0,0,0.24);
	background-color:#000;

}

#bottom-footer {
	background: #000;
	color:#fff;
	box-shadow: none;
	position: unset;
	border:none;
	padding:15px 15px 25px;
}

#bottom-footer a {
	color: #fff;
}

.footer {
  margin: 30px 0px;

}

.footer p {
  color:#fff;
  line-height:26px;
  text-align:justify;

}

.footer .footer-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0px 0px 12px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: #fff;
}

.footer-links li a:hover {
  color: #fff;
}

.footer-links li i {
  margin-right: 15px;
  color: #fff;
  width: 14px;
  text-align: center;
}

.copyright {
  margin-top: 10px;
  display: block;
    font-size: 14px;
  color:#fff;

}

.copyright a:link {
	color:#ededed;
}
.copyright a:visited {
	color:#fff;
}
.copyright a:hover {
	color:#ededed;
}
.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

#bottom-footer .footer-payments li a {
  color: #fff;
  font-size: 36px;
  display: block;
}
/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #C4BBAB;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background-color: #f0d6aa;
    border-color: #efd4a7;
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  color: #FFF;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #E4E7ED;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #7e4292;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}
/*=========================================================
	12BIS -> REGISTRAZIONE
===========================================================*/
.form-registrazione{
	background-color:#fff;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	padding: 25px;
	border-radius: 4px;
	overflow: hidden;
}
.form-registrazione input:not([type='checkbox']){
	height:40px;
	border-radius:4px;
}


.form-checkout{
	background-color:rgba(255,255,255,0.71);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	padding: 5px;
	text-align:center;
	
}

.form-checkout h3 {

 font-size:16px;
 text-align:left;

}

.form-registrazione-2{
	background-color:#fff;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	padding: 25px;
	text-align:center;
	margin-bottom: 25px;
}
.form-registrazione-2 .form-group {
    margin:0 auto 10px;
    float: none;
    clear: both;
	width: 100%;
	/*max-width: 325px;*/
	text-align: left;
}
.form-registrazione-2 input {
	width: 100%;
	/*max-width: 325px;*/
}
.form-registrazione-2 .centrato {
	text-align:center;
	margin-top:10px;
}

.form-registrazione input:not([type='checkbox']) {
	display:block;
	width:100%;
	margin:0 auto 10px;
}

.form-checkout h4 {
	text-align:left;
	margin-bottom:2px;
}

.form-checkout input {
	display:block;
	width:100%;
	padding:0px;
	border:1px solid #999;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
	border-bottom-left-radius:4px;
	border-bottom-right-radius:4px;
	text-align:center;
	margin:0 auto 10px;
	
}

.form-checkout .btn {
	display:block;
	width:100%;
	padding:10px;
	border:1px solid #999;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
	border-bottom-left-radius:4px;
	border-bottom-right-radius:4px;
	text-align:center;
	margin:0 auto 10px;
	
}


.form-registrazione .forgot {
	margin-top:5px;
}

.titolo-form {
	width: 100%;
	border-bottom: 1px solid #4a8e8e;
	font-size:18px;
	color: #fff;
	background-color: #60A3A3;
	margin: -25px -25px 25px;
	padding: 15px 25px 10px;
	box-sizing: content-box;
}

.titolo-form h2 {
	font-size:14px;
	
}



/* ----------------- BANNER FISSO TASTI RAPIDI MOBILE ---------------------------------------*/

.banner-contatti {
    position: fixed;
    z-index: 100;
    text-align: center;
    bottom: 0px;
    left: 0px;
    padding:0px;
    width:100%;
    background-color: #f7f6f1;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0 0px 6px rgba(0,0,0,0.16), 0 -1px 6px rgba(0,0,0,0.23);
}

.banner-contatti a {color:#fff;}

.banner-contatti-item {
	float:left;
	width:32%;
	text-align:left;
	margin:2px 0px 2px 1% ;
	margin: 1vw 0px 1vw 1%;
}
.contatti-button-inner {margin:0 auto;}

.banner-contatti .informazioni, .banner-contatti .mappa , .banner-contatti .chiama {
    float:left;
    text-align:left;
    color: #FFF;
    padding: 5px 0px;
	
	
}

.banner-contatti .informazioni { 
    font-size: 2em;
}
.banner-contatti .mappa { 
    font-size: 2em;
}
.banner-contatti .chiama { 
/*    font-size: 2em;*/
}


.contatti-button1 {background-color: #000000;}

.contatti-button2 {background-color: #58355E;}

.contatti-button3 {background-color: #121212;}

.contatti-button1, .contatti-button2, .contatti-button3 {
   padding:4px 2px;
   box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0,0,0,.12);
   border-radius:6px;
   text-align:center;
   line-height: 30px;
}

.banner-contatti-testo {line-height:40px;}
/* @media(max-width: 991.999px) {
	body {
		padding-bottom:calc(31px + 2vw) !important;
		
	}
} */

/*--------------------- GALLERIA --------------------------------*/
.galleria-quadrata a.example-image-link {
	display:block;
	position:relative;
	height:0;
	padding-top:100%;
	overflow:hidden;	
	margin-bottom:25px;
	border-radius:4px;
	background-size:cover;
	background-position:center;
	box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.057), 0 8.1px 17.9px rgba(0, 0, 0, 0.083), 0 25px 80px rgba(0, 0, 0, 0.14);
}
.galleria-quadrata a.example-image-link img {
	position:absolute;
	width:100%;
	top:0;
	border-radius:4px;
}


/*=========================================================
	13 -> RESPONSIVE
===========================================================*/


@media only screen and (max-width:991px){

  #top-header .header-links.pull-left {
    float: none !important;
  }
  
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;

  }
  #header {height:auto !important;}
  
  .header-logo {
    float: none;
    text-align: center;
  }
  
  .header-logo .logo {
    display: inline-block;
  }
  
  .header-logo .logo img {
	  padding-top:6px;
	  max-height:110px;
  }
  .header-logo-right .logo img {
	 padding-top:6px;
	 margin-top:10px;
	 align-content:center;
	 margin-right:6px;
	 max-height:110px;

}

  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
    .form-registrazione-2 .form-group span {
	  display:none;
  }
  .form-registrazione-2 .form-group {
    text-align: center;
}
.search-form-line select {
	margin-right: 10px;
	margin-bottom:6px;
}

.search-form-line input[type="submit"] {
    
	margin:0px
}
}

@media only screen and (max-width: 767px) {
  

  
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
.form-registrazione {
    margin: 0 15px;
    padding: 25px 20px 5px;
}
.form-registrazione-2 {
    margin: 0 15px;
    padding: 25px 5px 5px;
}
}

@media only screen and (max-width: 480px) {
   [class*='col-xs'] {
  /*  width: 50%;*/

  } 
  
.vetrina1 h2 { font-size:18px; margin-bottom:2px;padding:2px;}
.vetrina1 h3 {  font-size:15px; margin-bottom:2px;padding:2px;}
  
  
  .agile_inner_drop_nav_info { padding:10px; width:90%;}
  
  .header-logo {
    padding:0px;
  }
  
  
  #header {padding:0px;}
  
  .vetrina_certificazioni {
     height:auto !important;
 }
 
  .carousel-item .container .testo {
	font-size:15px;
	padding:0 15px;
	text-shadow: rgba(0, 0, 0, 0.75) 1px 1px 6px;
}
.carousel-overlay {
    background: rgba(0,0,0,0.4);
}
.carousel-item h2 {
	font-size:26px;
	line-height:1;
}
.carousel-item p {
	font-size:14px;
}
.carousel-control-next, .carousel-control-prev {
    top: unset;
    bottom: 5%;
}

  .carousel-item {
    height:100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.carousel-item span {
	font-size:18px;
	
}



.fa-cart-plus {font-size:30px !important; }

.section-title h1 {font-size:22px;}

h2 {  font-size:18px;}
h3 {  font-size:16px;}
h4 {  font-size:14px;}

.section-title h1,.section-title h2 {
  padding:10px;

}
 
.product-preview  {display:block; }
.slick-slider {  
width:100%;
}
.img-magnifier-glass {
  width: 80px;
  height: 80px;
}  
  
.pre-footer-text img {
	width:26px;
	float:left;
	height:26px;

} 
pre-footer-bottom img {
	margin-top:4px;
}
.product-preview {-webkit-overflow-scrolling: auto; /* Lo scorrimento si blocca immediatamente */ }
.zoomImg { display:none;}

.form-registrazione {font-size:12px;}

.titolo-form h2 {font-size:12px;}
  
  .search-form-line select {
	width:100%;
	margin-bottom:6px;
}
.btn {width:100%;}

  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }

.header-ctn > div + div {
    margin-left: 5px;
}
.header-ctn > div > a {
    width: 65px;
}
.header-search {
    padding: 5px 0px;
}
.cart-dropdown {
    right: 0px;
}
.row-categorie {
	margin-left:0px;
}
.col-categorie {
	padding-left:0px;
}
.shop {
    margin: 15px 0px 0px;
}
.shop .shop-body .cta-btn {
   /* display: none;*/
}
.shop .shop-body h2 {
    font-size: 13px;
    margin-bottom: 0px;
}

	
.product {
	width:100%;
	padding: 0px;
}

.product .product-img img {

}


.product .product-marca {
	padding: 0px;
    height: 100px;
	max-height:100px;
}
.product .product-marca img {
    height: 100px;
	max-height:100px;
	top:0;
	bottom:0;
}

.product .product-body .product-name {
  font-size: 13px;
  min-height:62px;
  max-height:3em;
  overflow:hidden;
  position:relative
}
.product .product-body  .product-name:after {
content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1.5em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 99%);
}

.ribbon {
display:none;
}


.product .add-to-cart .add-to-cart-btn {
  padding: 0;
}

.navbar-dark .navbar-toggler-icon {

	margin-top:10px;
	font-weight:600;
}

.header-search form .input {
  width: calc(100% - 95px);
 /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);*/
  border-radius:4px 4px 4px 4px;
  border:1px solid #2b53a0;
  color:#74c3de;
}

.header-search form .search-btn {
  height:40px;
  width: 80px;
   background-color: #fff;
  color: #74c3de;
  font-weight:500;
  border: none;
  border-radius: 0px 4px 4px 0px;
   
}




}
