/* General */

:root {
	--primario:#393085;
	--secondario: #5690ff;
	--dark: #002b7d;
  }


.wrap {
	min-height: 100vh;
}

#iubenda_policy .wrap {
	min-height: inherit;
}

#content {
	margin: 0;
}

body {
	font-size: 15px;
	color: var(--primario);
	letter-spacing: 0.45px;
	font-family: 'Lato', sans-serif;
}

a {
	color: var(--dark);
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

h2.emulateh1{ 
color: var(--primario); 
font-size: 28px; 
font-style: normal;
letter-spacing: 2.8px;
line-height: normal;
text-align: center;
text-transform: uppercase;
/* Text style for "SCOPRI TUT" */
font-family: Helvetica;
font-weight: 400; 
}

.overflow-hidden {
	overflow: hidden;
}

a:hover, a:focus {
	color: var(--secondario);
}

p {
	line-height: 22px;
}

.bg-secondary {
	background-color: #E5EEFF;
}
.bg-secondary-dark{
	background-color: #5690FF;

}
.bg-secondary-light {
	background-color: #F5F9FF;
}

 
.bg-secondary-dark.padding-sm {
	padding-top: 25px;
	padding-bottom: 25px;
}

.bg-gradient { 

}

.bg-carousel { 
}

.color-secondary {
	color: var(--secondario);
}

.row-flex {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.col-flex {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-width: 0;
	max-width: 100%;
}

.align-items-center {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-o-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	align-items: center;
	-o-align-items: center;
	-ms-align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
}

.align-items-end {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-o-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	align-items: flex-end;
	-o-align-items: flex-end;
	-ms-align-items: flex-end;
	-moz-align-items: flex-end;
	-webkit-align-items: flex-end;
}

.justify-content-center {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
}

h1, .h1 {
	font-size: 36px;
	font-weight: 600;
	line-height: 43px;
}

h4, .h4 {
	font-size: 20px;
	line-height: 27px;
	font-weight: 700;
	margin: 0;
}

h5, .h5 {
	font-size: 16px;
	line-height: 26px;
	margin: 0;
}

.justify-content-center {
	-webkit-box-pack: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;
}

.mark, mark {
	background-color: transparent;
}

.icon-wrapper {
	position: relative;
	width: 50px;
	height: 50px;
}

.icon-wrapper>img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.bg-gradient, .bg-gradient h1, .bg-gradient h2, .bg-gradient h3, .bg-gradient h4, .bg-gradient h5, .bg-gradient p {
	color: #fff;
}

.font-weight-100 {
	font-weight: 100;
}

.font-weight-400 {
	font-weight: 400;
}

.font-weight-500 {
	font-weight: 500;
}

.font-weight-600 {
	font-weight: 600;
}

.font-weight-800 {
	font-weight: 800;
}

.font-weight-900 {
	font-weight: 900;
}

.a-underlined {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #5790b8;
	cursor: pointer;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.a-underlined:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #5790b8;
	bottom: -3px;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.a-underlined-white {
	color: #fff;
}

.a-underlined-white:after {
	background-color: #fff;
}

.a-underlined:hover {
	color: #23527c;
}

.a-underlined:hover:after {
	background-color: #23527c;
}

.a-underlined-dark {
	color: #052642;
}

.a-underlined-dark:after {
	background-color: #5790b8;
}

.a-underlined-dark:hover {
	color: #5790b8;
}

.a-underlined-all-dark {
	color: #052642;
}

.a-underlined-all-dark:after {
	background-color: #052642;
}

.a-underlined-all-dark:hover {
	color: #5790b8;
}

.a-underlined-all-dark:hover:after {
	background-color: #5790b8;
}

.a-underlined.h4 {
	font-size: 20px;
	font-weight: 900;
}

.border-top-primary {
	border-top: 1px solid #dadada;
}

.border-bottom-primary {
	border-bottom: 1px solid #dadada;
}

.mixed-blend-mode {
	display: block;
}

.mixed-blend-mode>img {
	mix-blend-mode: darken;
}

.d-none {
	display: none !important;
}

/* Top Header */

.top-nav {
	float: left;
	width: 100%;
	padding: 8px 0;
}

.top-nav ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;
}

.top-nav li {
	display: block;
	margin-left: 10px;
	margin-right: 10px;
}

.top-header .top-nav ul li a {
	width: 64px;
	height: 20px;
	color: var(--primario);
	font-family: "Poppins";
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.25px;
	line-height: 20px;
	/* Text style for "chi siamo" */
	text-transform: uppercase;
}

h1.top-header-title, h2.top-header-title {
	font-size: 12px;
	line-height: 16px;
	margin: 0;
}

h2.top-header-title {
	font-weight: 600;
}

.top-header-title>a {
	color: #333;
}

.wrap-language-cart.wrap-language-cart6 {
	margin-top: 0;
	padding: 7px 0;
}

.language-box {
	line-height: 16px;
	font-size: 12px;
}

.wrap-language-cart.wrap-language-cart6 .language-box>label {
	font-size: 10px;
	line-height: 16px;
	font-weight: 400;
	margin-bottom: 0;
}

.language-box.style6>a, .currency-box.style6>a {
	color: #000;
	font-size: 10px;
	line-height: 16px;
	font-weight: 600;
}

.wrap-language-cart>div {
	display: block;
	float: right;
	margin-left: 0;
}

.language-list {
	width: 39%;
	margin-top: 5px;
	font-size: 10px;
	line-height: 16px;
	padding: 10px 20px;
	text-align: left;
	right: -20px;
	box-sizing: content-box;
	color: #000;
}

.top-header.top-header6 {
	z-index: 5;
	background-color: #E5EEFF;
	color: var(--primario);
	font-family: "Crimson Text";
	font-size: 12px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.96px;
	line-height: normal;
	text-align: left;
	text-transform: uppercase;
	padding: 10px 0;
	margin: 0 0 25px 0;
}
.top-header.top-header6 p{
	margin: 0;

}
.top-header.top-header6 .top-nav {
	background: transparent;
	padding: 0;
}

.top-header.top-header6 .language-list a {
	padding: 5px 0;
	font-size: 11px;
	color: #000;
}

.fixed-header .top-header.top-header6 {
	display: none;
}

/* end Top Header */

/* Main Header */

.mini-cart {
	z-index: 4;
}

.main-header {
	padding-top: 0;
}

.smart-search-form {
	padding-left: 40px;
	position: relative;
	width: 100%;
}

.smart-search-form input[type="text"] {
	height: 22px;
	color: var(--primario);
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.45px;
	line-height: 22px;
	padding: 0;
	background-color: #f0f0f0;
}
.smart-search-form input[type="text"] {
	height: 30px;
	font-size: 12px;
	color: var(--primario);
	padding: 0 30px 0 0;
	background: transparent; 
font-family: Lato;
font-size: 14px;
font-weight: 700;
font-style: normal;
letter-spacing: 0.35px; 
}

.smart-search-form input[type="submit"] {
	height: 30px;
	width: 30px;
	color: #c4c4c4;
	background-image: url("../../img/icon/lens.svg");
	background-position: center center;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	right: auto;
	left: 0;
}
 
.smart-search-form .smart-search-border {
	background-color: #e2e2e2;
	height: 1px;
	width: 100%;
	position: absolute;
	bottom: -3px;
	left: 0;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.smart-search-form input[type="text"]:focus+.smart-search-border {
	background-color: #c2c2c2;
	height: 2px;
}

.smart-search-form.smart-search-form6::after {
	content: '';
	color: #c4c4c4;
	display: none;
}

.list-product-box {
	margin-left: 0;
	margin-bottom: 0;
}

.col-head .list-product-box {
	padding: 25px 50px;
}

.list-product-box>li {
	display: block;
	float: left;
	margin-left: 0;
}

.list-product-box>li>a {
	float: left;
	color: #000;
}

.list-product-box>li>a>img, .list-product-box>li .mini-cart-icon img {
	float: left;
	width: auto;
	height: 25px;
	margin-right: 5px;
}

.list-product-box>li>a:hover, .list-product-box>li a.mini-cart-link:hover {
	transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
}

.list-product-box>li>a:hover, .list-product-box>li a.mini-cart-link:hover {
	opacity: 0.8;
}

.list-product-box>li>a>span, .list-product-box>li .mini-cart-number {
	float: left;
	display: block;
	color: var(--primario);
   
	text-transform: uppercase;  

font-family: "Crimson Text";
font-size: 12px;
font-weight: 700;
font-style: normal;
letter-spacing: 0.96px; 
line-height: 28px;
}

.mini-cart-icon {
	margin-right: 0;
}

.mini-cart .mini-cart-link #cart-count {
	position: absolute;
	top: -10px;
	left: 15px;
	background: #5690b8;
	color: #fff;
	font-size: 8px;
	font-weight: 900;
	border-radius: 50%;
	height: 15px;
	min-width: 15px;
	line-height: 15px;
	text-align: center;
	padding: 0 5px;
}

.col-head-logged.col-head .list-product-box {
	width: 100%;
	padding: 15px 15px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
}

.col-head-logged .list-product-box>li {
	-ms-flex: 0 0 65px;
	flex: 0 0 65px;
	width: 65px;
	max-width: 65px;
}

.col-head-logged .list-product-box>li>a, .col-head-logged .list-product-box>li a.mini-cart-link {
	float: none;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.col-head-logged .list-product-box>li>a>img, .col-head-logged .list-product-box>li .mini-cart-icon img {
	float: none;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.col-head-logged .list-product-box > li > a > span, .col-head-logged .list-product-box > li .mini-cart-number {
	float: none;
	margin-left: auto;
	margin-right: auto;
	color: var(--primario);
	font-size: 11px;
	letter-spacing: 0.5px;
}

/* end Main Header */

/* Header Nav */

.nav-header {
	padding: 5px 0;
	background-color: transparent;
}
.main-nav.main-nav19 {
	margin: 25px 0 0 0;
	border-top: 2px solid #E1E0EC;
	padding: 10px 0;
}
.main-nav>ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center!important;
	-ms-flex-pack: center!important;
	justify-content: space-between !important;
}

.mega-menu {
	width: 100vw;
	left: 50%;
	padding: 25px 20px 30px;
	margin-top: 0;
	background: #F5F9FF;
	transform: translateX(-50%);
	transition: all 0s linear 0s;
	-webkit-transition: all 0s linear 0s;
	border-top: none;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.10);
	top: 30px;
	min-height: 220px;
}

.main-nav>ul>li>a {
	text-transform: capitalize !important;
}
 

.main-nav.main-nav19>ul>li>a {
	padding: 0 4px;
	white-space: nowrap
}

.main-nav.main-nav19>ul>li.highlight>a {
	color: #ff0000;
}

.mega-menu {
	transition: all 0.1s linear 0s;
	-webkit-transition: all 0.1s linear 0s;
}

.main-nav>ul>li.has-mega-menu>a:hover+.mega-menu, .main-nav>ul>li.has-mega-menu>.mega-menu:hover {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	transition: all 0.2s linear 0.1s;
	-webkit-transition: all 0.2s linear 0.1s;
}

.layer-menu {
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 50%;
	top: 45px;
	opacity: 0;
	transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	/*   transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;*/
	z-index: 9;
}

.main-nav>ul>li.has-mega-menu>a:hover~.layer-menu, .main-nav>ul>li.has-mega-menu>.mega-menu:hover~.layer-menu {
	display: block;
	width: 100vw;
	height: 200vh;
	position: absolute;
	left: 50%;
	top: 108px;
	opacity: 0.95;
	background-color:#505a63;
	transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transition: opacity 0.1s ease-in 0.1s;
	-o-transition: opacity 0.1s ease-in 0.1s;
	-ms-transition: opacity 0.1s ease-in 0.1s;
	-moz-transition: opacity 0.1s ease-in 0.1s;
	-webkit-transition: opacity 0.1s ease-in 0.1s;
}

.main-nav>ul>li.has-mega-menu:nth-child(3)>a:hover~.layer-menu, .main-nav>ul>li.has-mega-menu:nth-child(3)>.mega-menu:hover~.layer-menu {
	top: 220px;
}

.main-nav.main-nav19>ul>li {
	margin-right: 0;
	padding-left: 7px;
	padding-right: 7px;
}

.main-nav.main-nav19 > ul > li > a {
	height: 20px;
	font-family: Lato;
	color: var(--primario);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2.8px;
	line-height: 30px;
	height: 30px;
	text-transform: uppercase !important;
	-webkit-transition: color 0.3s ease-out 0s;
	-moz-transition: color 0.3s ease-out 0s;
	-ms-transition: color 0.3s ease-out 0s;
	-o-transition: color 0.3s ease-out 0s;
	transition: color 0.3s ease-out 0s;
}
 
.main-nav.main-nav19>ul>li>a.mark {
	color: #052542;
}

.main-nav.main-nav19.main-nav20>ul>li>a::before {
	display: none;
}

.main-nav.main-nav19 > ul > li > a::after {
	bottom: -5px;
}

.main-nav.main-nav19.main-nav20>ul>li>a::after {
	height: 3px;
	background: var(--primario) none repeat scroll 0 0 !important;
}

.main-nav.main-nav19.main-nav20>ul>li:hover>a {
	color: #052542;
}

.mega-link.mega-link-container {
	text-transform: none;
	margin-top: 0;
	column-count: 4;
	/* page-break-inside: avoid; */
	height: 220px;
	column-gap: 15px;
	column-fill: auto;
	-webkit-column-count: 4;
	-webkit-column-gap: 15px;
	-webkit-column-fill: auto;
}

.mega-list-link {
	/* display: inline; */
	page-break-inside: avoid;
	padding: 0 0 25px 0;
	margin: 0;
}

.mega-link-col-flex .mega-link.mega-link-container {
	display: -moz-webkit-flex;
	display: -webkit-flex;
	display: -ms-box;
	display: flex;
	-ms-flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex: auto;
	margin-bottom: 50px;
}

.mega-link-col-flex .mega-link.mega-link-container .mega-list-link {
	display: -moz-webkit-flex;
	display: -webkit-flex;
	display: -ms-box;
	display: flex;
	flex: auto;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	align-content: flex-start;
	-ms-flex: 0 0 16.6666666667%;
	flex: 0 0 16.6666666667%;
	max-width: 16.6666666667%;
}

.mega-link-col-flex .mega-link.mega-link-container .mega-list-link>li {
	display: block;
	width: 100%;
}

.mega-link:not(:first-child) {
	margin-top: 20px;
}

.mega-link>h3 {
	font-size: 15px;
	color: #4d4d4d;
}

.mega-link>h3:last-child {
	margin: 0;
}

.main-nav.main-nav20 .mega-list-link a:hover {
	color: #009ee3;
}

.main-nav.main-nav20 .mega-link>h3 a:hover {
	color: #009ee3;
}

.mega-link a {
	text-transform: capitalize;
}

.mega-link h4, .mega-link h4 a {
	margin: 0 0 5px 0;
	text-transform: uppercase;
	color: var(--primario);
	font-family: Lato;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 2.25px;
	line-height: normal;
	text-transform: uppercase;
	
}
 

.main-nav.main-nav20 .mega-link h4 a:hover {
	color: #009ee3;
}

.mega-list-link>li {
	margin-bottom: 5px;
}

.mega-list-link a {
	text-transform: uppercase;
	color: var(--primario);
	font-family: Lato;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 2.25px;
	line-height: normal;
	text-transform: uppercase;
}

.mega-list-link a::before {
	display: none;
}
.mega-list-link > li > a {
	display: inline-block;
	margin: 0 0 2px 0;
}


.mega-banner.mega-banner-text {
	width: 100%;
	align-items: center;
	height: 270px;
}

.mega-banner.mega-banner-text h3 {
	display: block;
	height: 100%;
}

.mega-banner.mega-banner-text h3 a {
	color: #fff;
	height: 100%;
	background: #4d4d4d;
	display: flex;
	align-items: center;
	padding: 40px;
}

.mega-banner.mega-banner-text h3 a span {
	line-height: 40px;
}

.main-nav.main-nav19>ul>li.offerte-menu>a {
	border-bottom: 1px solid #A5A5A5;
	line-height: 56px;
	margin-top: -6px;
}

.main-nav .sub-menu {
	background: #fff;
	box-shadow: none;
	right: 0;
	left: auto;
	list-style: outside none none;
	margin-bottom: 0;
	margin-top: 0;
	opacity: 0;
	padding: 20px 0;
	position: absolute;
	top: 100%;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	visibility: hidden;
	width: 250px;
	z-index: 999;
	text-align: right;
	box-shadow: 1px 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.main-nav .sub-menu li {
	padding: 0 15px;
}

.main-nav .sub-menu li a::before {
	display: none;
}

.main-nav .sub-menu li a {
	color: #4d4d4d;
	display: block;
	padding: 3px 0 3px 15px;
	position: relative;
	text-transform: uppercase;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	font-size: 13px;
	text-transform: capitalize;
}

.main-nav20.main-nav .sub-menu li:hover>a {
	color: #009ee3;
}

.fixed-header #header {
	letter-spacing: 0;
}

#header {
	letter-spacing: 0.5px;
}

.menu-banner-container {
	float: left;
	width: 100%;
}

.menu-banner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	cursor: pointer;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.menu-banner:hover {
	opacity: 0.8;
}

.menu-banner .menu-banner-media {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.menu-banner .menu-banner-content {
	position: relative;
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
	color: #fff;
	text-align: center;
	background-image: linear-gradient(270deg, #5690b8 0%, #548db5 10%, #5087ae 20%, #4b80a6 30%, #44779c 40%, #3b6c91 50%, #326183 60%, #285475 70%, #1d4565 80%, #113654 90%, #042642 100%);
}

.menu-banner .menu-banner-content>div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.menu-banner .menu-banner-content h3 {
	margin: 0 0 10px;
	font-weight: 600;
	min-height: 52px;
}

.menu-banner .menu-banner-content .a-underlined {
	color: #fff;
}

.menu-banner .menu-banner-content .a-underlined:after {
	background-color: #fff;
}

.menu-banner .menu-banner-content .a-underlined:hover:after, .menu-banner .menu-banner-content .a-underlined:focus:after {
	background-color: #fff;
}

/* HEADER FIXED */

body.fixed-header {
	padding-top: 210px;
}

.fixed-header .header {
	position: fixed;
	top: 0;
	height: auto;
	width: 100%;
	z-index: 2;
	transition: all 0.5s ease;
	animation-duration: 0.5s;
	animation-name: slidein;
	z-index: 999;
	background: #fff;
	padding-top: 15px;

}

@keyframes slidein {
	from {
		top: -80px;
	}
	to {
		top: 0;
		;
	}
}

.col-border {
	border-top: 2px solid #f0f0f0;
	border-bottom: 2px solid #f0f0f0;
	border-left: 1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
}

.col-head {
	float: left;
	width: 300px;
	padding: 15px 20px;
}

.col-menu {
	float: left;
	width: calc(100% - 600px);
}

.fixed-header .header .main-header {
	padding-top: 0;
	background-color: #fff;
}

.fixed-header .header .main-header div.container {
	position: relative;
}

.fixed-header .header .main-header .row>div {
	position: static;
}

.fixed-header .header .logo img {
	max-height: 50px;
}

.fixed-header .header .nav-header .main-nav { 
	margin: 15px 0 0 0;
}
.fixed-header .header .main-nav.main-nav19>ul>li>a {
	font-size: 14px; 
}

.fixed-header .col-head .list-product-box {
	padding: 0 15px;
}

.fixed-header .main-nav.main-nav19>ul>li>a::after { 
}

/* end Header Nav */

/* Banner Full */
 

.store-slide-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 27px;
	-webkit-border-radius: 27px;
	-moz-border-radius: 27px;
	-ms-border-radius: 27px;
	-o-border-radius: 27px;
	background-color: #052542b8;
	will-change: opacity;
}

.store-slide-wrapper>img {
	width: 100%;
	height: auto;
	mix-blend-mode: darken;
}

/*.store-slide-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.64;
    background-color: #5690b8;
}*/

.store-slide-wrapper .store-slide-content {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	color: #fff;
	text-align: center;
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.store-slide-wrapper .store-slide-content img {
	width: auto;
	height: 60px;
}

.store-slide-wrapper .store-slide-content h1 {
	color: #fff;
	margin: 0 0 10px;
}

.row.banner-slider-container>div { 
}

.banner-slider-container h3 {
 
}

.brand-slider {
	padding: 0;
}

.brand-slider .wrap-item .owl-item {
	padding: 0 35px;
	position: relative;
}

.brand-slider .wrap-item .owl-item>div {
	position: relative;
	width: 100%;
	padding: 50% 0;
}

.brand-slider .wrap-item .owl-item img {
	position: absolute;
	top: 50%;
	left: 50%;
	/*filter: grayscale(1);
	*/
	margin: 0 auto;
	display: block;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.brand-slider .owl-controls, .store-slider .owl-controls {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	overflow: visible;
	transition: all 0.25s ease 0.25s;
	-o-transition: all 0.25s ease 0.25s;
	-ms-transition: all 0.25s ease 0.25s;
	-moz-transition: all 0.25s ease 0.25s;
	-webkit-transition: all 0.25s ease 0.25s;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

#big-picture.owl-theme .owl-controls .owl-buttons div, .brand-slider .owl-theme .owl-controls .owl-buttons div, .store-slider .owl-theme .owl-controls .owl-buttons div {
	position: absolute;
	background-color: #5790b8;
	color: inherit;
	margin: 0;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.brand-slider .owl-theme .owl-controls .owl-buttons div {
	background-color: #e5eef4;
}

#big-picture.owl-theme .owl-controls .owl-buttons div>img, .brand-slider .owl-theme .owl-controls .owl-buttons div>img, .store-slider .owl-theme .owl-controls .owl-buttons div>img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

#big-picture.owl-theme .owl-controls .owl-buttons div:hover, .brand-slider .owl-theme .owl-controls .owl-buttons div:hover, .store-slider .owl-theme .owl-controls .owl-buttons div:hover {
	background: transparent;
	opacity: 0.8;
}

.brand-slider .owl-controls .owl-prev {
	position: absolute;
	left: -15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.store-slider .owl-controls .owl-prev {
	position: absolute;
	left: 3px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.brand-slider .owl-controls .owl-next {
	position: absolute;
	right: -15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.store-slider .owl-controls .owl-next {
	position: absolute;
	right: 3px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.about-slider .owl-carousel .owl-wrapper, .about-slider .owl-carousel .owl-item>div>img, .banner-home-slider .owl-carousel .owl-wrapper, .banner-home-slider .owl-carousel .owl-item>div>img {
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.about-slider .owl-theme .owl-controls, .banner-home-slider .owl-theme .owl-controls {
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.about-slider .owl-theme .owl-controls .owl-page span, .banner-home-slider .owl-theme .owl-controls .owl-page span {
	border: 1px solid #5690b8;
	background: #5690b8;
	opacity: 0.47;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.about-slider .owl-theme .owl-controls .owl-page.active span, .banner-home-slider .owl-theme .owl-controls .owl-page.active span {
	opacity: 1;
}

.sedi-slider .owl-carousel .owl-item > div img {
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.sedi-slider .owl-theme .owl-controls {
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.sedi-slider .owl-theme .owl-controls .owl-page span {
	border: 1px solid #5690b8;
	background: #5690b8;
	opacity: 0.47;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.sedi-slider .owl-theme .owl-controls .owl-page.active span {
	opacity: 1;
}

.banner-item {
	position: relative;
	overflow: visible;
}

.banner-home-slider .banner-item {
	margin: 0 0 30px;
	padding: 0 15px;
}

.banner-item .banner-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 27px;
	-webkit-border-radius: 27px;
	-moz-border-radius: 27px;
	-ms-border-radius: 27px;
	-o-border-radius: 27px;
	background-color: #052542b8;
	will-change: opacity;
}

.banner-item .banner-wrapper>img {
	width: 100%;
	mix-blend-mode: darken;
}

/*.banner-item .banner-wrapper:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	opacity: 0.64;
	background-color: #5690b8;
}*/

.banner-item .banner-wrapper .banner-content {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	color: #fff;
	text-align: center;
	transform: translate(-50%, -66%);
	-webkit-transform: translate(-50%, -66%);
	-moz-transform: translate(-50%, -66%);
	-ms-transform: translate(-50%, -66%);
	-o-transform: translate(-50%, -66%);
}

.banner-item .banner-wrapper .banner-content h1 {
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 1.8px;
	line-height: 46px;
	cursor: default;
}

.banner-item .banner-wrapper .banner-content h5 {
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.82px;
	line-height: 20px;
	text-transform: uppercase;
	cursor: default;
}

.banner-item>a {
	position: absolute;
	left: 50%;
	bottom: 0;
	color: #ffffff;
	font-weight: 500;
	min-width: 210px;
	padding-top: 11px;
	padding-bottom: 11px;
	padding-left: 17px;
	padding-right: 22px;
	background-image: linear-gradient(270deg, #5690b8 0%, #548db5 10%, #5087ae 20%, #4b80a6 30%, #44779c 40%, #3b6c91 50%, #326183 60%, #285475 70%, #1d4565 80%, #113654 90%, #042642 100%);
	line-height: 22px;
	text-align: center;
	border-radius: 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transform: translate(-50%, +50%);
	-o-transform: translate(-50%, +50%);
	-ms-transform: translate(-50%, +50%);
	-moz-transform: translate(-50%, +50%);
	-webkit-transform: translate(-50%, +50%);
}

.banner-item>a:hover, .banner-item>a:focus {
	color: #009ee3;
	text-decoration: none;
	outline: none;
}

/* end Banner Full */

/* Tabcat */

.list-tabcat14 {
	margin: 0;
	padding: 0;
}

.list-tabcat14.bg-secondary {
	padding: 60px 0;
}

.category-slider6 {
	padding: 0;
}

.category-slider6.tabcat14 {
	margin: 0;
}

.title-tab14, .title-slider {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 80px 0 40px 0;
}
.list-tabcat14 h1, .title-slider h1 {
	color: #4d4d4d;
	margin: 0 0 40px;
}

.title-tab14 > ul {
	/* display: -moz-box; */
	display: flex;
	width: 100%;
}

.title-tab14>ul li {
	margin-left: 0;
	padding-left: 0;
	border-left: none;
	padding: 0 20px;
	display: flex;
}

.title-tab14>ul li a { 
	white-space: nowrap; 
opacity: 0.27;
color: var(--primario);
font-family: Lato;
font-size: 14px;
font-weight: 900;
font-style: normal;
letter-spacing: 2.1px;
line-height: normal;
text-align: left;
text-transform: uppercase; 
}

.title-tab14>ul li a:hover {
	opacity: 1;
	color: var(--primario);
}

.title-tab14>ul li.active a {
	color: var(--primario);
	opacity: 1;
	position: relative;  
}

.title-tab14>ul li a:hover:after, .title-tab14>ul li.active a:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--primario);
	bottom: -5px;
}

.product-brand-title a:hover, .product-info .product-title a:hover {
	color: #009ee3;
}

.slide-selector.form-control, .info-selector.form-control {
	background: transparent;
	border: 1px solid #dadada;
	color: #969696;
	text-align: center;
	max-width: 80%;
	margin: 0 auto;
	padding: 5px;
	height: 44px;
	font-size: 18px;
}

.item-product6 .product-brand-title {
	min-height: auto;
	line-height: 11px;
	margin: 0;
	text-align: center;
	display: inline-block;
}


.product-brand-title a {
	
color: var(--primario);
font-family: Helvetica;
font-size: 16px;
font-weight: 600;
font-style: normal;
letter-spacing: 0.4px;
	display: inline-block; 
	line-height: normal;
}

 


.product-brand-title span {
	color: #969696;
	font-size: 10px;
	line-height: 16px;
	font-weight: 700;
	display: block;
}

.item-product6 {
	margin: 0;
}

.product-item-wrapper {
	position: relative;
}

.prod-main-container .product-item-wrapper {
	margin-bottom: 45px;
}

.product-item-wrapper .addto-wishlist {
	position: absolute;
	top: 10px;
	right: 30px;
}

.product-item-wrapper .addto-wishlist a:focus, .product-item-wrapper .addto-wishlist a:active, .product-item-wrapper .addto-wishlist a:hover {
	color: #052642;
}

.product-info {
	position: relative;
	min-height: 170px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.product-info .product-title {
	text-align: center;
	height: auto;
	padding: 0 20px;
	text-transform: none;
	font-weight: normal;
}

.product-info .product-title a {

	color: var(--primario);
	font-family: Lato;
	font-size: 21px;
	font-weight: 300; 
line-height: 30px;
}

 



.product-info .product-code {

	color: #505a63;
	font-family: Helvetica;
	font-size: 12px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	padding-bottom: 0;
}
  
  
.product-info>a.product-link {
	text-align: center;
	
color: var(--primario);
font-family: Lato;
font-size: 12px;
font-weight: 900;
font-style: normal;
letter-spacing: 3px;
	text-transform: uppercase;
	position: absolute;
	display: inline-block;
	margin-bottom: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.product-info>a.product-link:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--primario);
	bottom: -4px;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.product-info>a.product-link:hover {
	color: #009ee3;
}

.product-info>a.product-link:hover:after {
	background-color: #009ee3;
}

.category-slider6.tabcat14.corr-slider {
	margin: 80px 0;
}

.corr-slider>h2 {
	margin: 0 0 30px 0;
	border-bottom: 1px solid #dadada;
	padding: 0 0 30px 0;
	font-size: 24px;
	font-weight: 700;
}

.category-slider6 .owl-directnav6 .owl-controls {
	position: absolute;
	top: -63px;
	right: 0;
	width: 100%;
	overflow: visible;
	transition: all 0.25s ease 0.25s;
	-o-transition: all 0.25s ease 0.25s;
	-ms-transition: all 0.25s ease 0.25s;
	-moz-transition: all 0.25s ease 0.25s;
	-webkit-transition: all 0.25s ease 0.25s;
}

.owl-directnav6 .owl-theme .owl-controls .owl-buttons div {
	background-color: #e5eef4;
	color: inherit;
	margin: 0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.owl-directnav6 .owl-theme .owl-controls .owl-buttons div>img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.tabcat14 .owl-directnav6 .owl-theme .owl-controls .owl-buttons div:hover {
	background: transparent;
	opacity: 0.8;
}

.category-slider6 .owl-directnav6 .owl-controls .owl-prev {
	position: absolute;
	left: 0;
}

.category-slider6 .owl-directnav6 .owl-controls .owl-next {
	position: absolute;
	right: 0;
}

.list-tabcat14.bg-secondary .tab-content .product-thumb>a {
	display: block;
	position: relative;
	background-color: #fafafa;
}

.list-tabcat14.bg-secondary .tab-content .product-thumb>a img {
	mix-blend-mode: darken;
}

/* end Tabcat */

/* Contatti Block */

.contatti-block h4 { 
color: var(--primario);
font-family: Helvetica;
font-size: 28px;
font-weight: 400;
font-style: normal;
letter-spacing: 2.8px;
line-height: normal;
text-align: center; 
text-transform: uppercase;
}
.contatti-block p{ 
color: var(--primario);
font-family: Lato;
font-size: 20px;
font-weight: 300;
font-style: normal;
letter-spacing: normal;
line-height: 30px;
text-align: center; 
letter-spacing: normal; 
}

.contatti-block h4 strong {
	font-weight: 900;
}

.contatti-block h4 a {
	color: #052542;
	text-decoration: none;
	font-weight: 400;
}

#form_contatti p {
	text-align: center;
	margin: 0 0 40px 0;
}

/* end Contatti Block */

/* News Block */

.news-content-block {
	height: 130px;
}

.news-block h3 {
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	color: #333;
	margin: 0 0 20px;
	padding: 0 0 12px;
	border-bottom: 2px solid #333;
}

.news-block h5 {
	font-size: 14px;
	font-weight: 900;
	line-height: 22px;
	color: #4d4d4d;
}

.news-block p {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #4d4d4d;
	margin: 0;
	height: 90px;
}

.news-block-link {
	font-size: 12px;
	font-weight: 900;
	line-height: 22px;
	color: #000000;
}

.news-block-link:hover {
	color: #009ee3;
}

/* end News Block */

.social-box {
	height: 188px;
	background-image: url(../../img/bg-social.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	position: relative;
	text-align: center;
}

.social-box h3 {
	color: #fff;
	border: 2px solid #fff;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.5px;
	padding: 2px 30px;
	margin: 21px 0 0 0;
	font-weight: 900;
}

.social-box-content h5, .social-box-content-alt h5 {
	color: #fff;
	margin: 25px 0 15px 0;
}

.social-box-content {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	transition: all 0.4s ease;
}

.social-box-content:hover {
	background: rgba(100, 100, 100, 0.6);
}

.social-box-content-alt {
	width: 100%;
	height: 100%;
	background: rgba(80, 80, 80, 0.4);
	transition: all 0.4s ease;
}

.social-box-content-alt:hover {
	background: rgba(0, 0, 0, 0.5);
}

/* Social */

.social-list {
	display: block;
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
}

.social-list > li {
	float: left;
	display: block;
	overflow: hidden;
	width: 45px;
	height: 45px;
	margin-right: 15px;
	font-size: 26px;
}
.social-list > li a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	color: #fff;
	background-color: var(--primario);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.social-list>li a:hover {
	opacity: 0.8;
}

.social-list>li a>i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

/* end Social */

/* Info Block */

.tab-detail {
	float: left;
	width: 100%;
	;
}

.title-tab-detail > ul {
	margin: 5px 0 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}
.title-tab-detail > ul li {
	text-align: center;
	margin: 0 20px;
} 

.title-tab-detail>ul li a {
	display: inline-block;
	width: auto;
	height: auto;
font-family: Lato;
font-size: 14px;
font-weight: 900;
letter-spacing: 2.1px;
	padding: 0;
	color: var(--primario);
	text-transform: uppercase;
	position: relative;
	opacity: 0.5;
	white-space: nowrap;
} 

.title-tab-detail > ul li.active a {
	border-color: transparent;
	color: var(--primario);
	opacity: 1;
}

.title-tab-detail>ul li a:after {
	content: '';
	opacity: 0;
	visibility: hidden;
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color:  var(--primario);
	bottom: -5px;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.title-tab-detail>ul li a:hover:after, .title-tab-detail>ul li.active a:after {
	opacity: 1;
	visibility: visible;
}

.tab-detail .tab-content {
	border: 1px solid transparent;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
}

.content-tab-detail, .content-tab-detail p {
	font-size: 13px;
	line-height: 24px;
	color: var(--primario);
	margin: 30px 0 0 0;
}

.content-tab-detail .headingTab {
	font-size: 10px;
	text-transform: uppercase;
	margin-top: 0px;
	line-height: 20px;
	margin-bottom: 0px;
}

/* end Info Block */

/* Custom Accordion */
.accordion-trigger {
	display: block;
	cursor: pointer;
	font-size: 22px;
}

.accordion-marker {
	float: right;
    transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.opened .accordion-marker {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}
/* end Custom Accordion */

/* Page Title */

.page-title {
	
color: var(--primario);
font-family: "Crimson Text";
font-size: 28px;
font-weight: 400;
font-style: normal;
letter-spacing: 2.8px;
line-height: normal; 
text-transform: uppercase;
	margin: 0; 
}
 

.page-title.nobreadcrumb { 
}

/* end Page Title */

/* Breadcrumbs */

.bread-crumb {
	margin-top: 0;
	margin-bottom: 10px;
	background-color: transparent;
	padding: 0;
}



.bread-crumb a, .bread-crumb span {

	color: #505a63;
	text-transform: uppercase;
	margin-right: 13px;
	letter-spacing: 1px;
	
font-family: "Crimson Text";
font-size: 12px;
font-weight: 700;
font-style: normal;
letter-spacing: 0.96px;

}
 

.bread-crumb a::after {
	content: "/";
	position: absolute;
	top: 50%;
	height: 5px;
	width: 10px;
	left: 100%;
	margin-left: 6px;
	margin-top: -5px;
	background: transparent;
	transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	font-weight: 600;
	font-size: 10px;
}

.bread-crumb a:last-child::after {
	display: none;
}

/* end Breadcrumbs */

/* Footer */
#footer {
	border-top: 1px solid #dadada;
}


.footer7 {
	background: #fff none repeat scroll 0 0;
	border-top: none;
}

.footer-top7 {
	border-bottom: 1px solid #e6eef4;
}

.logo-footer {
	margin-bottom: 8px;
}

.logo-footer+p {
	width: 170px;
	text-align: left;
	font-size: 11px;
	line-height: 15px;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0 0 40px 4px;
}
.title-footer7, .footer-desc strong  {
	font-size: 14px;
	line-height: 20px;
	font-weight: 800;
	color: var(--primario);
	float: left;
	width: 100%;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.menu-box7 ul {
	float: left;
	width: 100%;
}

.col-md-4 .menu-box7 ul, .col-sm-4 .menu-box7 ul {
	width: 50%;
}

.menu-box7 ul li a {
	float: left;
	width: 100%;
	font-size: 14px;
	line-height: 24px;
	color: #5690b8;
	text-transform: uppercase;
}

.footer20 .menu-box7 ul li a:hover, .menu-box7 ul li a:hover {
	color: #052542;
}

/* end Footer */

/* Footer Bottom */

.footer-bottom7:not(:last-of-type) {
	border-bottom: 1px solid #dadada;
}

.paymment-method {
	float: left;
	margin: 0;
}

.footer-desc {
	font-size: 13px;
	line-height: 20px;
	color: #505a63; 
font-family: Lato;
font-size: 13px;
font-weight: 400;
font-style: normal;
letter-spacing: 0.01px;
line-height: 20px;
text-align: left; 
text-transform: uppercase;

}
.footer-bottom7 {
	padding: 15px 0px;
}

.footer-bottom7 .title-footer7, .footer-bottom7 .paymment-method, .footer-bottom7 .social-list {
	display: inline-block;
	width: auto;
	float: none;
	margin: 0 20px 0 0;
	vertical-align: middle;
	height: 50px;
	line-height: 50px;
}
.footer-bottom7 .social-list {
	margin-right: 0;
}


.footer-desc strong {
	font-weight: 600;
}

.copyright7 {
	font-size: 11px;
	line-height: 20px;
	margin-bottom: 0;
	color: #052542;
	text-transform: uppercase;
}

.copyright7 a {
	color: #052542;
	position: relative;
}

.copyright7 a:after {
	content: '';
	opacity: 0;
	visibility: hidden;
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #052542;
	bottom: 0;
	left: 50%;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.copyright7 a:hover:after {
	opacity: 1;
	visibility: visible;
}

.made-by-quantico {
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	padding: 0;
	text-align: right;
}

.made-by-quantico a {
	display: inline-block;
}

.made-by-quantico img {
	width: auto;
	height: 13px;
	margin-left: 5px;
}

/* end Footer Bottom */

/***** ANTEPRIMA PRODOTTI ********************/

.ajaxPrice {
	position: relative;
}

.ajaxPrice span {
	opacity: 0;
}

.ajaxPrice::before {
	content: "";
	background: url(../../img/loader.svg) no-repeat center center;
	background-size: contain;
	width: 22px;
	height: 22px;
	position: absolute;
	overflow: hidden;
}

.widget.closed>ul {
	display: none;
}

.widget.widget-filter {
	border-bottom: 1px solid #dadad9;
	padding: 0 0 20px 0;
}

.widget-title { 
	font-size: 15px;
	font-weight: 900;
	margin: 0 0 10px;
	overflow: hidden;
	text-shadow: none;
	text-transform: none;
	letter-spacing: 1px;
}

.widget-title>span {
	position: relative;
	display: block;
	cursor: pointer;
}

.widget-title>span::after {
	display: none
}

.widget-filter .widget-title>span::after {
	display: block;
	content: "-";
	height: auto;
	right: 0;
	margin-left: 0;
	position: absolute;
	top: 0;
	width: 20px;
	font-size: 16px;
	line-height: 14px;
	left: auto;
	background: none;
	text-align: center;
}

.widget-filter .widget-title.active>span::after {
	content: "+";
}

.widget:last-child {
	padding-bottom: 40px;
}

.widget-new-product .widget-title {
	cursor: default;
	text-transform: capitalize;
}

.widget-mail .widget-title {
	font-size: 22px;
	text-transform: none;
	font-weight: 700;
	border-bottom: 1px solid;
	padding: 0 0 10px 0;
}

.widget-filter>ul {
	max-height: 300px;
	overflow: auto;
	margin: 0;
}

.widget-filter .icheckbox_minimal {
	margin-top: 1px;
	vertical-align: top;
}

.widget-filter ul li.nested-title {
	font-weight: 600;
	margin: 10px 0 10px 0;
	letter-spacing: 1px;
}

.widget-filter ul li label {
	margin: 0px 0 10px 0;
	font-weight: normal;
	cursor: pointer;
	transition: all 0.5s ease;
	display: inline-block;
	width: calc(100% - 30px);
	color: var(--primario);
	font-size: 15px;
	font-weight: 300;
	font-style: normal;
	letter-spacing: 0.45px;
	line-height: 22px;
}
 


.widget-filter ul li label:hover {
	color: #009ee3;
}

.widget-filter .icheckbox_minimal-custom, .iradio_minimal-custom {
	border: 1px solid #5790b8;
}

/*

.widget.widget-filter.widget-filter-highlight ul li label {
	font-weight: 700;
	line-height: 18px;
	color: #CE3535;
}

.widget.widget-filter.widget-filter-highlight.widget-filter-highlight-alt  ul li label {
 color:#333;
}

.widget.widget-filter.widget-filter-highlight {
	 
	padding: 10px 10px 20px 0;
}

.widget.widget-filter.widget-filter-highlight.widget-filter-highlight-alt {
	padding: 0 0 20px 0;
}
*/

/*.widget.widget-filter.widget-filter-highlight .icheckbox_minimal {
	background-position: -20px 0px;
}

.widget.widget-filter.widget-filter-highlight .icheckbox_minimal.checked {
	background-position: -40px 0px;
}*/

.widget-title>span { 
	 
color: var(--primario);
font-family: Lato;
font-size: 14px;
font-weight: 900;
font-style: normal;
letter-spacing: 2.1px;
line-height: normal;
text-align: left; 
text-transform: uppercase;

}

.widget-filter.widget-filter-highlight ul li label {
	font-weight: 700;
	line-height: 18px;
}

.widget-filter.widget-filter-highlight ul li.highlight label {
	color: #CE3535;
}

.widget-mail p {
	margin: 0 0 20px 0;
}

.widget-new-product ul li {
	border-top: 1px solid #dadad9;
	display: table;
	margin-bottom: 20px;
	padding: 10px 0;
	width: 100%;
	margin: 0;
}

.widget-new-product ul li .product-info {
	display: table-cell;
	padding-top: 0;
	padding-left: 20px;
	vertical-align: top;
}

.widget-new-product .product-info h3, .widget-new-product .product-info h2 {
	text-align: left;
	padding: 0;
}

.widget-new-product .product-info h3 {
	margin: 0;
	line-height: 10px;
}

.widget-new-product .product-info h3 a {
	font-size: 10px;
	line-height: 10px;
}

.widget-new-product .product-info h2 {
	height: auto;
	margin: 5px 0;
}

.widget.widget-new-product, .widget.widget-mail {
	margin-top: 60px;
}

.row.filter-row {
	margin: 0;
	padding: 30px 0;
	border-top: 1px solid #F2F6FF;
	border-bottom: 1px solid #F2F6FF;
}

.row.filter-row>div {
	padding: 0;
}

#active-filters {
	overflow: hidden;
	min-height: 55px;
	margin-bottom: 0;
}

#active-filters .active-filter:not(.clear-filters) {
	float: left;
	display: block;
	position: relative;
	font-size: 11px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: 0.5px;
	padding: 6px 10px;
	border: solid 1px #f1f1f1;
	margin: 0 10px 10px 0;
	color: #5790b8;
	background-color: #f1f1f1;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
}

#active-filters .active-filter:not(.clear-filters):hover {
	background-color: #009ee3;
	color: #fff;
}

#active-filters .active-filter:not(.clear-filters) span {
	color: #5790b8;
	font-size: 11px;
	padding-left: 5px;
	transition: all 0.5s ease;
	font-weight: 900;
}

#active-filters .active-filter:hover span {
	color: #fff;
}

#active-filters .active-filter.clear-filters, #active-filters .active-filter.clear-filters span {
	position: relative;
	margin: 0;
	font-weight: 900;
	font-size: 15px;
	line-height: 30px;
	color: #052642;
	letter-spacing: 1px;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

#active-filters .active-filter.clear-filters:hover, #active-filters .active-filter.clear-filters:hover span {
	color: #009ee3;
}

#active-filters .active-filter.clear-filters:hover:after {
	background-color: #009ee3;
}

#active-filters .active-filter.clear-filters:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #052542;
	bottom: 5px;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

#active-filters .active-filter.clear-filters:after:hover {
	background-color: #009ee3;
}

#active-filters h3 {
	margin: 0;
	font-weight: 900;
	font-size: 15px;
	line-height: 30px;
	letter-spacing: 1px;
}

.filtri-wrapper {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.filtri-content {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	-webkit-box-ordinal-group: 2;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}

.filtri-header {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	-webkit-box-ordinal-group: 1;
	-moz-box-ordinal-group: 1;
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
	margin-bottom: 20px;
}

.product-item-wrapper .product-item {
	margin: 0 0 50px 0;
}

.product-thumb .square-container {
	/*background-image: url(../../img/nophoto_small.png);	*/
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	overflow: hidden;
	border-radius: 0;
}

.list-tabcat14 .product-thumb .square-container {
	background-image: none;
}

.product-thumb a:hover {
	opacity: 0.8;
}

.product-thumb .square-container img {
	width: 100%;
	max-height: inherit;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}
 

.badge-block {
	display: block !important;
}

.badge-up, .badge-season {
	position: absolute;
	top: -27px;
	left: 0;
	white-space: nowrap;
	width: 100%;
	border-radius: 0;
	color: #ffffff;
	font-family: helvetica;
	font-size: 12px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	height: 31px;
	line-height: 31px;
	text-align: center;
}
.badge-season.continuativo {
	background-color: #393085; 
}
.badge-season.ai {
	background-color: #0036FF; 
}
.badge-season.pe {
	background-color: #5690FF; 
}

 

.badge-giacenza {
	display: inline-block;
	margin: 0 auto;
	padding: 8px 20px;
	color: #000;
	background-color: #00ffff;
	font-size: 10px;
	font-weight: 400;
	line-height: 14px;
	letter-spacing: 1.25px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	cursor: pointer;
}

.badge-giacenza.badge-giacenza-terminato {
	color: #fff;
	background-color: #ff0000;
}

.product-info .product-title {
	margin: 2px 0 0;
	padding: 0 10px;
}

.product-item .product-info .product-title {
	margin-bottom: 8px;
}

.price-box {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

.price {
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 2px;
}

.price-discount {
	font-size: 15px;
	font-weight: 300;
}

.old-price.price {
	font-weight: 500;
	color: #969696;
	text-decoration: line-through;
	/* font-size: 11px; */
	margin: 0 5px 0 0;
}

.special-price.price {
	color: #ce3535;
}

.special-price.price em {
	text-decoration: none;
	font-style: normal;
	font-size: 12px;
	background: #ce3535;
	color: #fff;
	padding: 4px 10px;
	border-radius: 10%;
	margin: 0 0px 0px 2px;
	display: inline-block;
	vertical-align: middle;
}

.product-badge {
	font-weight: 600;
	font-size: 11px;
	color: #000;
	text-align: center;
	margin: 10px 0;
}

.product-badge.promo-badge {
	color: #ce3535;
}

.product-badge.promo-badge em {
	display: inline-block;
	text-transform: none;
	font-style: normal;
	background: #ce3535;
	color: #fff;
	border-radius: 2px;
	padding: 2px 5px;
	margin: 0 0 0 5px;
}

.product-badge.pezzi-badge {
	position: absolute;
	right: 0;
	margin: 0;
	bottom: 0px;
	background: #009ee3;
	color: #fff;
	padding: 5px 10px;
}

.pezzi-price.price {
	display: block;
	font-weight: 500;
	font-size: 12px;
	color: #969696;
	margin: 6px 0 0 0;
}

.price-container .pezzi-price.price {
	font-size: 14px;
	display: block;
	margin: 10px 0 0 0;
}

.product-item .addto-wishlist {
	text-align: center;
	margin-top: 20px;
}

.product-item .addto-wishlist a {
	font-size: 14px;
	border-top: 1px solid #009ee3;
	padding-top: 2px;
}

.loadmore {
	margin: 40px 0 0 0;
}

.loadmore .pag small {
	font-size: 12px;
	color: #969696;
	display: block;
	margin: 10px 0;
}

.seo_description {
	margin: 60px 0;
	padding: 20px 20px;
	border-top: 1px solid #dadada;
	color: #969696;
	line-height: inherit;
}

.seo_description p {
	line-height: inherit;
}

.seo_description ul.otherList {
	padding-top: 10px;
}

.seo_description ul.otherList a {
	font-size: 12px;
	line-height: 18px;
	text-transform: capitalize;
}

.seo_description h2, .seo_description h3 {
	font-size: 14px;
	text-transform: uppercase;
	margin-top: 20px;
	margin-bottom: 10px;
	font-weight: 700; 
}

/**** accordion *******/

h4.text-toggle {
	font-size: 14px;
}

h4.text-toggle::after {
	content: "\f0d7";
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	margin: 0px 0 0 5px;
}

h4.text-toggle.active::after {
	content: "\f0d8";
}

.text-toggle-content {
	transition: all 0.8s ease;
}

.text-toggle-content.active {
	max-height: 1000px;
}

/* TABS */

.title-tab-detail>ul li a h2 {
	font-size: 12px;
	margin: 0px;
	line-height: 20px;
	font-weight: 700;
}

.H1LikeP {
	font-size: 10px;
	line-height: 12px;
	margin: 0px 0px 5px 0px;
	font-weight: 700;
}

/**** PRODOTTI DETAIL **********************/

.product-detail {
	margin-top: 80px;
}

#big-picture {
	margin: 45px 0;
}

#big-picture .img-responsive {
	max-height: 480px;
	margin: 0 auto;
}

#big-picture .square-container {
	/*background-image: url(../../img/nophoto_small.png);*/
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	color: transparent;
}

#big-picture .item {
	width: 100%;
}

#big-picture .owl-wrapper-outer {
    z-index: 9;
}

#big-picture .owl-controls {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 130%;
	overflow: visible;
	height: 100%;
	z-index: 0;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

#big-picture .owl-controls .owl-pagination {
	position: absolute;
	bottom: -35px;
	width: 100%;
}

#big-picture .owl-controls .owl-buttons {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 1;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transition: all 0.25s ease 0.25s;
	-webkit-transition: all 0.25s ease 0.25s;
	-moz-transition: all 0.25s ease 0.25s;
	-ms-transition: all 0.25s ease 0.25s;
	-o-transition: all 0.25s ease 0.25s;
}

#big-picture:hover .owl-controls .owl-buttons {
	opacity: 1;
}

#big-picture .owl-buttons div {
	background: transparent;
	margin: 0;
	position: absolute;
	right: 0;
	height: 30px;
	width: 30px;
}

#big-picture .owl-buttons div.owl-prev {
	left: 0;
}

#big-picture .owl-controls .owl-page span {
	height: 8px;
	width: 8px;
	border: 1px solid #5790b8;
}

#big-picture .owl-controls .owl-page.active span {
	background: #5790b8;
}

.prod-sharebox {
	padding: 0;
}

.prod-sharebox span {
	color: #052642;
	font-weight: 700;
	font-size: 10px;
	line-height: 20px;
	letter-spacing: 0.65px;
}

.prod-sharebox, .prod-sharebox a {
	color: #5790b8;
}

.inline-socialshare {
	display: inline-block;
	margin: 0 0 0 5px;
}

.prod-sharebox a {
	padding: 0 5px;
	display: inline-block;
	background: transparent;
	width: auto;
	vertical-align: middle;
	margin: 0 0 0 0;
}

.inline-socialshare a i {
	font-size: 15px;
	line-height: 15px;
	color: #5790b8;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.prod-sharebox a:hover {
	color: #052642;
}

.prod-sharebox a:hover i {
	color: #052642;
}

.prod-detail-header h3 {
	text-transform: uppercase;
	margin: 0 0 10px;
	font-size: 14px;
}

.prod-detail-header h1, .prod-detail-header h1 a {
 
color: var(--primario);
font-family: Lato;
font-size: 36px;
font-weight: 300;
font-style: normal;
letter-spacing: normal;
line-height: 40px;
text-align: left; 
}

.prod-detail-header h5 {
 
color: var(--primario);
font-family: "Crimson Text";
font-size: 16px;
font-weight: 600;
font-style: normal;
letter-spacing: 0.4px;
line-height: normal;
text-align: left;
text-transform: uppercase; 
}

.login-box h4 {
	margin: 0 0 15px; 
 
color: var(--primario);
font-family: Lato;
font-size: 15px;
font-weight: 300;
font-style: normal;
letter-spacing: 0.45px;
line-height: 22px;
text-align: left; 
}

.price-container .price {
	font-size: 35px;
}

.price-container .old-price.price {
	font-size: 16px;
}

.row.price-container {
	margin-top: 40px;
	margin-bottom: 40px;
}

.price-container .gotobuy {
	position: relative;
	display: inline-block;
	line-height: 15px;
	font-weight: 700;
	font-size: 11px;
	color: #052642;
	margin-top: 19px;
}

.price-container .gotobuy::before {
	content: "\f078";
	font-family: Font Awesome\ 5 Pro;
	font-weight: 400;
	position: absolute;
	right: -20px;
	top: 50%;
	font-size: 15px;
	line-height: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.row.description { 
	margin: 0 0 60px;
	padding: 30px 0;  
	color: #909090;
}

.row.description>div {
	padding-left: 0;
	color: #909090;
	font-family: Lato;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.45px;
	line-height: 22px;
	text-align: left; 
}

.row.description h4 {
	margin: 30px 0 0 0;
 
color: var(--primario);
font-family: Lato;
font-size: 14px;
font-weight: 700;
font-style: normal;
letter-spacing: 0.35px;
line-height: normal;
text-align: left; 
}

.row.description p { 
	margin: 0 0 20px 0; 
color: #909090;
font-family: Lato;
font-size: 15px;
font-weight: 400;
font-style: normal;
letter-spacing: 0.45px;
line-height: 22px;
text-align: left; 

}

.row.description p:last-of-type {
	margin: 0;
}

.brand-info .btn {
	min-height: 70px;
}

.brand-info .btn strong {
	display: block;
	text-align: left;
	font-size: 14px;
	text-transform: uppercase;
	margin: 0 0 5px 0;
}

.brand-info .btn span {
	text-align: left;
	display: block;
	font-size: 12px;
	font-weight: normal;
}

.brand-info .btn.addto-wishlist {
	position: relative;
	color: #052642;
	font-size: 10px;
	line-height: 20px;
	min-height: auto;
	text-align: left;
	padding: 0;
	padding-left: 35px;
	text-transform: uppercase;
	letter-spacing: 0.65px;
}

.brand-info .btn.addto-wishlist i {
	position: absolute;
	left: 0;
	top: 50%;
	font-size: 22px;
	color: #abc8dc;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.brand-info .btn.addto-wishlist span {
	color: #052642;
	font-weight: 700;
	font-size: 10px;
	line-height: 20px;
}
.brand-info .brand-name {
	color: var(--primario);
	font-family: Lato;
	font-size: 14px;
	font-weight: 900;
	font-style: normal;
	letter-spacing: 2.1px;
	line-height: normal;
	text-align: left;
	border-bottom: 2px solid var(--primario);
	padding: 0 0 4px 0;
}

.table-grid {
	margin: 40px 0;
	border: none;
}

.table-grid>thead>tr>th:first-child, .table-grid>tbody>tr>th:first-child {
	border-left: none;
	text-align: left;
}

.table-grid thead th {
	color: #5790b8;
	font-weight: 400;
	font-size: 15px;
}

.table-grid>thead>tr>th:last-child, .table-grid>tbody>tr>td:last-child {
	border-right: none;
}

.table-grid>thead>tr>th, .table-grid>tbody>tr>th, .table-grid>tbody>tr>td {
	padding: 5px 14px;
	text-align: center;
	transition: all 0.3s ease;
	color: #5790b8;
	border: 2px solid #e6eef4;
}

.table-grid>tbody>tr>th {}

.table-grid>tbody>tr>td.highlight {
	background-color: #fff;
}

.table-grid>tbody>tr>th h5 {
	padding: 30px 0;
	margin: 0;
	font-size: 20px;
	line-height: 20px;
	;
	font-weight: 700;
}

.table-grid>tbody>tr>th a {
	width: 80px;
	display: block;
	margin-top: -10px;
}

.table-grid td .price, .table-grid td .price-placeholder {
	display: inline-block;
	margin-bottom: 10px;
	color: #5790b8;
	font-size: 10px;
	line-height: 10px;
	font-weight: 600;
	letter-spacing: 0.65px
}

.table-grid td .special-price.price {
	color: #ce3535;
}

.table-grid .form-group {
	margin: 0 0 10px 0;
}

.table-grid .form-group .input-group .input-group-addon {
	border-radius: 0;
	background: transparent;
	font-size: 11px;
	color: #abc8dc;
	padding: 6px 8px;
}

.table-grid .form-group .input-group .input-group-addon.input-group-addon-small {
	padding: 6px 12px;
	font-size: 9px;
}

.table-grid td.td-small .price {
	font-size: 12px;
	white-space: nowrap;
}

.table-grid .form-group .input-group {
	max-width: 200px;
	margin: 0 auto;
}

.table-grid .form-group .form-control {
	width: 100%;
	padding: 0 5px;
	font-size: 16px;
	box-shadow: none;
	color: #052642;
	border-radius: 0;
	text-align: center;
	z-index: 0
}

.table-grid .form-group .form-control::-moz-placeholder {
	color: #000;
}

.table-grid .form-group .form-control:focus::-moz-placeholder {
	color: transparent;
}

.table-grid .form-group .form-control:focus {
	box-shadow: 0 0 8px rgba(102, 175, 233, .6);
}

.table-grid span.not_available {
	color: #5790b8;
	padding: 30px 0;
	line-height: 20px;
	display: inline-block;
}

.table-grid td .addnote {
	position: relative;
	color: #5790b8;
	display: inline-block;
	font-size: 9px;
	line-height: 9px;
	margin: 10px 0;
}

.table-grid td .addnote:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #5790b8;
	bottom: -3px;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.table-grid td .addnot:hover {
	color: #e6eef4;
}

.table-grid td .addnote:hover:after {
	color: #e6eef4;
}

.table-grid td .addnote.black-link {
	color: #052542;
}

.table-grid td .form-group {
	margin-bottom: 0;
}

.table-grid td .form-group .form-control {
	border: 2px solid #e6eef4;
}

.table-grid td .form-group .form-control::-webkit-input-placeholder {
	font-size: 11px;
	color: #abc8dc;
}

.table-grid td .form-group .form-control:-ms-input-placeholder {
	font-size: 11px;
	color: #abc8dc;
}

.table-grid td .form-group .form-control::placeholder {
	font-size: 11px;
	color: #abc8dc;
}

.btn.addtocart {
	padding: 22px;
	font-size: 15px;
	font-weight: 900;
	margin: 0 0 25px;
 
}

.btn.addtocart i {
	margin: 0 0 0 10px;
}

.prod-buttons a.black-link {
	display: inline-block;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
}

.cart-control-wrapper .input-group {
	width: 100%;
}

.cart-control-wrapper .input-group select {
	height: 50px;
	color: #5790b8;
	border: 2px solid #e6eef4;
	text-align-last: center;
}

.cart-control-wrapper .input-group input {
	height: 50px;
	color: #5790b8;
	border-top: 2px solid #e6eef4;
	border-bottom: 2px solid #e6eef4;
	border-left: none;
	border-right: none;
}

.cart-control-wrapper .input-group-prepend, .cart-control-wrapper .input-group-append {
	float: left;
	width: 50px;
	height: 50px;
	font-size: 11px;
	line-height: 50px;
	border-radius: 0;
	text-align: center;
	cursor: pointer;
	color: #5790b8;
	border: 2px solid #e6eef4;
}

.cart-control-wrapper input[type=text].form-control {
	float: left;
	width: 50%;
	width: calc(100% - 100px);
	text-align: center;
}

.fixed-buttons {
	position: fixed;
	bottom: -80px;
	width: 100%;
	padding: 20px 0;
	background: #f1f1f1;
	z-index: 10;
	transition: all 0.5s ease;
	height: 80px;
	overflow: hidden;
}

.fixed-buttons.visible {
	bottom: 0;
}

.fixed-buttons span {
	display: inline-block;
	margin: 10px 0 0 0;
	font-size: 14px;
	text-transform: uppercase;
}

.fixed-buttons span strong {
	margin: 0 4px;
}

.fixed-buttons span:last-child::after {
	display: none;
}

.fixed-buttons span::after {
	content: " ";
	display: inline-block;
	border-right: 2px solid #C4C4C4;
	height: 14px;
	width: auto;
	margin: 0 10px;
	vertical-align: middle;
}

.fixed-buttons .btn-sm {
	padding: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/**** pAGINE STTICHE ************************/
.container.login {
	padding-bottom: 60px;
}

.static-page #content {
	margin: 60px 0 0 0;
	min-height: 520px;
}

p.intro-text {
	font-size: 16px;
	margin: 0 0 60px 0;
	letter-spacing: 0.5px;
}

h2.line-title {
	font-size: 28px;
	font-weight: 600;
	padding: 0 0 15px 0;
	border-bottom: 1px solid #052642;
	letter-spacing: 0.5px;
	margin: 0 0 20px 0;
	font-family: helvetica;
	letter-spacing: 2.8px;
	text-transform: uppercase;
	border: none;
	color: var(--primario);
	font-weight: 400;
}
/**** login page ***************************/

.form_pre_reg .btn, .login-form .btn {
	margin: 20px 0 20px 0;
}

.form_pre_reg .btn {
	margin-top: 80px;
}

label {
	font-weight: 400;
	cursor: pointer
}

label .icheckbox_minimal {
	margin: -2px 5px 0 0px;
}

.login-form label, .login-form .black-link {
	font-size: 12px;
}

/*** reg page ************************/

.box-interessi {
	padding: 30px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin: 60px 0;
}

.box-interessi h3 {
	margin: 0 0 30px 0;
}

.interessi-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.interessi-list li {
	display: inline-block;
	width: 20%;
	text-align: left;
	color: #969696;
	margin: 0 0 10px 0;
	padding: 0 10px 0 0;
}

.interessi-list li label:hover {
	color: #000;
}

.interessi-list li label.error {
	position: absolute;
	top: -34px;
	left: -5px;
	width: 400px;
	display: block;
	max-width: none;
}

#form_reg .btn-primary {
	margin: 30px 0 0 0;
}

#form_reg p {
	margin: 0 0 20px 0;
}

/*********************** CARRELLO E CHECKOUT ****************************************/

.table.cart-items>thead>tr>th {
	padding: 0 0 15px;
	border-bottom: none;
}

.table.cart-items td {
	position: relative;
	padding: 12px 8px;
	border-top: 2px solid #abc7db;
}

.table.cart-items td.cart-item-note {
	padding-left: 0;
	padding-right: 0;
}

.table.cart-items .cart-item-image {
	position: relative;
	padding: 0 8px 0 0;
}

.table.cart-items .cart-item-image .square-container {
	padding-bottom: 100%;
}

.table.cart-items .cart-item-image .square-container img {
	height: 80%;
}

.table.cart-items td.cart-item-description label {
	display: block;
}

.table.cart-items td.cart-item-description span.label {
	cursor: pointer;
}

.table.cart-items a.remove-button {
	position: absolute;
	bottom: 32px;
	right: 8px;
	z-index: 1;
	background: transparent;
	color: #052642;
	text-transform: uppercase;
	border-radius: unset;
	width: auto;
	height: auto;
	line-height: 22px;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
}

.table.cart-items a.remove-button i {
	margin-left: 5px;
}

.table.cart-items h4, .table.orders-table h4 {
	font-weight: 600;
	font-size: 15px;
	line-height: 15px;
	margin-bottom: 5px;
}
.table.cart-items h4 a {
	font-size: 15px;
	line-height: 17px;
	color: var(--primario);
	font-weight: 500;
}

.table.cart-items h5, .table.orders-table h5 {
	color: var(--primario);
	font-size: 15px;
	line-height: 15px;
	font-weight: 400;
}

.table.cart-items h6 {
	color: #5790b8;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.table.cart-items .price {
	font-size: 15px;
	color: #052642;
	font-weight: 400;
}

.table.cart-items .price strong {
	font-weight: 900;
}

.table.cart-items.form-group .form-control {
	border: 1px solid #ccc;
}

.table.cart-items .form-group .form-control {
	width: 100%;
	padding: 0 5px;
	font-size: 14px;
	box-shadow: none;
	border-radius: 0;
	text-align: center;
	z-index: 0;
}

.table.cart-items .cart-item-option-info h5, .table.cart-items .cart-item-option-info span {
	font-size: 12px;
	color: #444;
	display: block;
	margin: 0px 0 5px 0;
}

.final_qty {
	text-align: right;
}

.table.cart-items .cart-subitem .cart-item-image {
	padding: 0;
}

.table.cart-items .cart-subitem a.remove-button {
	bottom: 28px;
}

.table.cart-items .form-group {
	margin: -4px -6px 0px 0px;
}

.table.cart-items .form-group .form-control {
	width: 80%;
	padding: 0 5px;
	font-size: 14px;
	box-shadow: none;
	border-radius: 0;
	text-align: right;
	z-index: 0;
	border: 2px solid #e6eef4;
	margin: 0 0 0 20%;
	height: 28px;
	text-align-last: right;
	-moz-text-align-last: right;
	-ms-text-align-last: right;
}

.cart-item-description .accordion-title::after {
	content: " +";
}

.cart-item-description .accordion-title.active::after {
	content: " -";
}

.cart-item-description .accordion-title {
	font-weight: 900;
	color: #052642;
	font-size: 11px;
	margin: 25px 0 0;
	display: inline-block;
	text-transform: uppercase;
}

.table.cart-items .cart-subitem td {
	border-top: none;
	padding: 0 8px 12px 8px;
	padding-top: 0px;
}

.table.cart-items .cart-subitem.first td {
	border-top: 2px solid #abc7db;
	padding-top: 12px;
}

.table.cart-items .cart-subitem td .table th {
	font-size: 11px;
}

.table.cart-items .cart-subitem td .table td {
	border-bottom: 1px solid #ECECEC;
	padding: 10px 2px;
	font-size: 11px;
	color: #abc8dc;
	text-transform: uppercase;
}

.table.cart-items .cart-subitem td .table td strong {
	color: #5790b8;
}

.table.cart-items .cart-subitem td .table th, .table.cart-items .cart-subitem td .table td:first-of-type {
	text-transform: uppercase;
	color: #052642;
	font-weight: 700;
	padding: 10px 2px;
}

.table.cart-items .cart-subitem td .table th, .table.cart-items .cart-subitem td .table td {
	border-bottom: 2px solid #e6eef4;
}

.table.cart-items .cart-subitem td .table th:not(:last-of-type), .table.cart-items .cart-subitem td .table td:not(:last-of-type) {
	border-right: 2px solid #e6eef4;
}

.table.cart-items .cart-subitem td .table th:not(:first-of-type), .table.cart-items .cart-subitem td .table td:not(:first-of-type) {
	text-align: center;
}

.cart-item-option-info .addnote {
	display: inline-block;
	margin: 10px 0 0 0;
	font-size: 12px;
	font-weight: 900;
}

.cart_summary_cont {
	background: #f1f1f1;
	padding: 15px; 
}

.cart_summary_cont h3 {
	color: var(--primario);
	font-size: 15px;
	font-weight: 600;
	margin: 0px 0 20px 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.cart_summary_cont>div {
	padding: 10px 0 25px 0;
	border-top: 1px solid #abc7db;
	text-align: right;
}

.cart_summary_cont:not(.cart_summary_cont-order)>div:last-of-type {
	border-top: none;
	padding: 10px 0 0;
}

.cart_summary_cont>div h3, .cart_summary_cont>div h4 {
	color: var(--secondario);
	font-size: 11px;
	font-weight: 600;
	margin: 0 0 5px 0;
	line-height: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cart_summary_cont>div h3 {
	font-weight: 700;
	color: var(--primario);
}

.cart_summary_cont>div h3 small {
	color: var(--primario);
}

.cart_summary_cont>div .price {
	letter-spacing: 0.5px;
	font-size: 20px;
	color: var(--secondario);
	font-weight: 400;
}

.cart_summary_cont>div.cart_total .price {
	font-size: 20px;
	color: var(--primario);
	font-weight: 700;
}

.cart_summary_cont>div.cart_minimo h4 {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	color: var(--secondario);
	text-transform: none;
}

.cart_summary_cont>div.cart_minimo .price {
	color: var(--secondario);
	font-size: 13px;
}

.help-menu {
	margin: 20px 0 0 0;
}

.help-menu h4 {
	color: var(--secondario);
	font-size: 15px;
	line-height: 22px;
}

.help-menu p {
	color: var(--secondario);
	font-size: 15px;
	line-height: 22px;
}

.help-menu .black-link {
	display: inline-block;
	margin: 5px 0;
	font-weight: 600;
	color: var(--secondario);
}

.table.cart-items .form-group .form-control.cart-note {
	text-align: left;
	margin: 20px 0;
	width: 100%;
	height: 80px;
	padding: 10px 15px;
	color:var(--primario);
	background-color: #f7f9fb;
	border: 2px solid #f7f9fb; 
}

.static-page.cart-page #content {
	margin: 0;
}
#carrello-detail {
	float: left;
	padding: 30px 0 80px 0;
	width: 100%;
}

#carrello-detail .cart-items {
	margin: 0;
}

.listview {
	margin: 0 0 6px 0;
}

.listview li {
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	display: inline-block;
	margin: 0 5px 0 5px;
	vertical-align: top;
}

.listview li a {
	color: #969696;
	font-size: 16px;
	vertical-align: middle;
}

.listview li a.active {
	color: #000;
}

.cart-subitem {
	display: none;
}

.cart-subitem.active {
	display: table-row;
}

.table.cart-items .cart-subitem.active td {
	background: transparent;
}

.table.cart-items .cart-subitem .grid-table {
	margin-bottom: 22px;
}

.static-page.checkout-page #content {
	margin: 60px 0 60px 0;
}

.payment-options h3, .ship-options h3, .ord-options h3, .coupon-options h3, .checkout-buttons h3 {
	color: var(--primario);
	font-size: 20px;
	font-weight: 400;
	margin: 30px 0 30px 0;
	border-top: 1px solid #5790b8;
	padding: 50px 0 0 0;
	font-family: helvetica;
	letter-spacing: 2.8px;
	text-transform: uppercase;
}

.payment-options h3 a, .ship-options h3 a {
	font-size: 11px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--secondario);
}

label.tipo-pay, label.tipo-spe, label.tipo-ord {
	display: block;
	position: relative;
	height: 100%;
	border: 1px solid #abc8dc; 
	padding: 15px;
	padding-left: 50px;
	margin: 0;
}

label.tipo-pay.selected, label.tipo-spe.selected, label.tipo-ord.selected {
	border: 1px solid #abc8dc;
	background-color: #e6eef4;
}

label.tipo-pay .pay-info-wrapper, label.tipo-spe .spe-info-wrapper, label.tipo-ord .ord-info-wrapper {
	display: block;
	position: relative;
	height: 100%;
	min-height: 60px;
}

label.tipo-pay {
	min-height: 140px;
}

.pay-info-wrapper h5, .spe-info-wrapper h5, .ord-info-wrapper h5 {
	display: block;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 1px;
	margin: 0 0 5px 0;
}

.pay-info-wrapper span {
	display: block;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
}

.tipo-pay.selected .pay-info-wrapper h5, .tipo-spe.selected .spe-info-wrapper h5, .tipo-ord.selected .ord-info-wrapper h5 {
	color: #052642;
}

label.tipo-pay .iradio_minimal-custom, label.tipo-spe .iradio_minimal-custom, label.tipo-ord .iradio_minimal-custom {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

label.tipo-pay .iradio_minimal-custom.checked, label.tipo-spe .iradio_minimal-custom.checked, label.tipo-ord .iradio_minimal-custom.checked {
	border: 1px solid #052642;
}

label.tipo-pay .iradio_minimal-custom.checked:before, label.tipo-spe .iradio_minimal-custom.checked:before, label.tipo-ord .iradio_minimal-custom.checked:before {
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	background-color: #052642;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.spe-info-wrapper h5 span {
	display: block;
	font-weight: 400;
	line-height: normal;
	/* font-size: 12px; */
}

.input-coupon.form-control {
	height: 50px;
	border: 2px solid #abc8dc;
}

.checkout-buttons h3 {
	padding: 20px 0 0 0;
}

.checkout-buttons a.black-link {
	display: inline-block;
	margin: 35px 0 0 0px;
	font-weight: 900;
}

#carrello-detail .alert>i {
	font-size: 22px;
	margin: 0px 10px 0 0;
	vertical-align: middle;
}

.ship-options .address {
	position: relative;
	height: 100%;
	border: 1px solid #abc8dc;
	padding: 15px 15px 15px 60px;
}
.ship-options .address.active {
	border: 1px solid #abc8dc;
	background-color: #e6eef4;
}

.ship-options .address label>.iradio_minimal-custom {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.ship-options .address label>.iradio_minimal-custom.checked {
	border-color: #052642;
}

.ship-options .address label>.iradio_minimal-custom.checked:before {
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	background-color: #052642;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.ship-options .address .address-text {
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
}

.ship-options .address .address-text strong {
	display: block;
	font-weight: 400;
}

#form-list-ship {
	padding: 0;
}

/*********************** AREA UTENTI ****************************************/

.side-menu-user h4 {
	padding: 10px 0;
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 300;
	text-transform: capitalize;
}

h1.user-title {
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	font-size: 28px;
	font-weight: 300;
	text-align: center;
	margin: 0 0 30px 0;
	padding: 17px 0;
	line-height: normal;
}

.side-menu-user .altribute ul {
	list-style: none;
	margin: 0;
	padding: 20px;
	background: #F8F8F8;
}

.side-menu-user .altribute ul li {
	display: block;
	border-bottom: 1px solid #dadada;
	padding: 20px 0;
}

.side-menu-user .altribute ul li a {
	font-size: 16px;
	color: #969696;
	text-transform: uppercase;
}

.side-menu-user .altribute ul li.active a, .side-menu-user .altribute ul li a:hover {
	color: #000;
}

.side-menu-user .altribute ul li:last-child {
	border-bottom: none;
}

.form-label .form-group label {
	text-transform: uppercase;
	color: #000;
	margin-bottom: 15px;
	font-size: 12px;
	font-weight: 700;
}

.form-label .form-control {
	border: 1px solid #DADADA;
	padding: 8px;
	height: auto;
}

span.disclaimer {
	font-size: 11px;
	display: block;
	margin: 10px 0 0 2px;
	font-weight: 300;
}

.user-page .box-interessi {
	margin: 20px 0 40px 0;
}

#user-addresses {
	margin-bottom: 30px;
}

#user-addresses .row>div {
	border: 1px solid #dadada;
	padding: 15px;
}

#user-addresses .row>div h3 {
	margin: 0 0 10px 0;
	font-size: 14px;
	font-weight: 700;
}

.order-detail .totals .row>div {
	padding-top: 10px;
	font-size: 16px;
	border-bottom: 1px solid #dadada;
	padding-bottom: 7px;
}

.order-detail .totals .total .row>div {
	font-weight: 700;
}

/****** NEWS *****************/

.news-item h2 {
	margin: 0 0 20px 0;
	font-size: 20px;
}

/*********************** BRANDS ****************************************/

.brands-nav {
	margin: 0 0 40px;
	padding: 0 0 40px 0;
	border-bottom: 1px solid #DADADA;
	display: flex;
	justify-content: space-between;
}

.brands-nav li a {
	padding: 5px;
}

.brands-list-container {
	margin: 0 0 40px 0;
	border-bottom: 1px solid #DADADA;
	padding: 0 0 40px 0;
}

.alpha-title {
	font-size: 40px;
	font-weight: 900;
	color: var(--secondario);
}

.brands-list {
	max-height: 490px;
	column-count: 5;
	column-gap: 15px;
	column-fill: auto;
	-webkit-column-count: 5;
	-webkit-column-gap: 15px;
	-webkit-column-fill: auto;
}

.brands-list li a {
	text-transform: capitalize;
	font-size: 15px;
	margin: 0 0 5px 0;
	display: inline-block;
	color: var(--primario);
}
.main-text {
	color: #5690b8;
}

.main-text strong {
	font-weight: 900;
}

.brand-article {
	margin-top: 30px;
	margin-bottom: 30px;
	border-top: 1px solid #DADADA;
	padding: 30px 0;
}

.brand-article h3 {
	margin: 20px 0 20px 0;
	font-size: 18px;
}

.brand-article a {
	font-weight: 900;
	font-size: 12px;
	display: inline-block;
	margin: 15px 0 0 0;
}

.brand-article .btn-primary {
	margin-right: 10px;
	min-width: 210px;
}


.banner-container{
	margin: 80px 0 40px 0;
	max-width: 1980px;
}
.banner-container > div.row > div{
	padding: 0;
}


/****** PAGINA AZIENDA ***************************/

.bg-image {
	padding: 100px 0;
}

.bg-image.bg-azienda {
	background-image: url(../../img/bg-azienda.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.bg-image .page-subtitle {
	color: #fff;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 40px;
}

.bg-image h5 {
	color: #fff;
	text-transform: uppercase;
}

.azienda-page p.intro-text {
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 28px;
	margin: 0;
}

.azienda-page .brand-article h3 {
	margin: 0 0 20px 0;
	font-weight: 700;
}

/******* SERVIZI *************************/

.row.servizi-list-container {
	border-top: 1px solid #DADADA;
	border-bottom: 1px solid #DADADA;
	padding: 50px 0;
}

.servizi-list-container .alpha-title {
	font-size: 20px;
	line-height: normal;
	font-weight: 700;
	color: var(--primario);
	margin: 0 0 15px 0;
}

/******* CONTATTI *************************/

.contatti-page .brand-article {
	border: none;
}

.contatti-page .brand-article h3 {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: 700;
}

.contatti-page .brand-article a {
	display: inline-block;
	margin: 0;
	line-height: normal;
	font-size: 16px;
	font-weight: normal;
}

.contatti-page #map {
	height: 420px;
	margin: 0 0 20px 0;
}

.container-fluid.slide-wrapper {
	padding: 0;
	position: relative;
	margin: 40px 0 0 0;
}

.slider-bg {
	background-image: linear-gradient(to right, #383185 0%, #3c3a91 10%, #3f449e 20%, #424eaa 30%, #4558b7 40%, #4861c3 50%, #4b6bd0 60%, #4e75dc 70%, #517ee8 80%, #5488f4 90%, var(--secondario) 100%);
	height: 380px;
	position: absolute;
	z-index: 0;
	width: 100vw;
	top: 60px;
}
.banner-full .slide-container {
	cursor: pointer;
	position: relative;
	display: flex;
}
.banner-full .slide-container picture {
	width: 50%;
}
.slide-container .banner-content {
	width: 50%;
}
.slide-container .banner-content > div {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.slide-container .subtitle {
	background: #E5EEFF;
	height: 60px;
	width: 100%;
	color: var(--primario);
	font-family: "Crimson Text";
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 4.8px;
	line-height: normal;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
	line-height: 60px;
}
.slide-container h2{ 
color: #ffffff;
font-family: Lato;
font-size: 48px;
font-weight: 300;
font-style: normal;
letter-spacing: 2.4px;
line-height: 67px;
text-align: center; 
} 
.slide-container .foot{ 
	color: #ffffff;
	font-family: Lato;
	font-size: 48px;
	font-weight: 300;
	font-style: normal;
	letter-spacing: 2.4px;
	line-height: 67px;
	text-align: center; 
	
	height: 160px;
	margin: 0;
	background: #5690FF;
	}  

	.slide-container .foot .btn {
		color: #fff;
		border-color: #fff;
		padding: 15px;
		width: 240px;
		display: block;
		margin: 50px auto;
		float: ;
	}

	.slide-wrapper .owl-theme .owl-controls {
		position: absolute;
		left: 0;
		width: 100%;
		top: 50%;
	}
	.slide-wrapper .owl-theme .owl-controls .owl-prev, .slide-wrapper .owl-theme .owl-controls .owl-next {
		background: transparent;
		left: 0;
		position: absolute;
		top: -80px;
	}
	.slide-wrapper .owl-theme .owl-controls .owl-buttons div:hover {
		background: transparent;
	}

	.slide-wrapper .owl-theme .owl-controls .owl-prev img, .slide-wrapper .owl-theme .owl-controls .owl-next img {
		height: 40px;
	
	}

	.slide-wrapper .owl-theme .owl-controls .owl-next{
		right: 0;
		left: auto;
	}

	

/* POPUP */

.popup-container {
	padding: 0 20px 25px;
	min-width: 560px;
	background: #fff;
	max-width: 1090px;
}

.popup-container h3 {
	margin: 0 0 25px;
	padding: 15px;
	text-transform: none;
	font-family: Helvetica;
font-weight: 400;
font-size: 24px;
font-weight: 400;
letter-spacing: 2px;
text-transform: uppercase;
}
 

.popup-container h4 {
	margin: 0 0 20px;
}

.fancybox-container {
	font-family: 'Lato', sans-serif;
}

.fancybox-close-small {
	top: 15px;
	right: 10px;
}

/*******  MAIL *************************/
.newsletter-container{

}
.newsletter-container h5{ 
color: #ffffff;
font-family: Lato;
font-size: 20px;
font-weight: 900;
font-style: normal;
letter-spacing: normal;
line-height: normal; 
}
.newsletter-page p.intro-text {
	font-size: 20px;
	line-height: normal;
}

.newsletter-list {
	border-bottom: 1px solid #dadada;
	margin: 0 0 60px 0;
}

.newsletter-list-highlight {
	text-align: center;
	height: 180px;
	border-bottom: 1px solid #dadada;
	padding: 0 0 20px 0;
	margin: 0 0 30px 0;
}

.newsletter-list-highlight img {
	/* max-width: 74px; */
	display: inline-block;
	max-height: 74px;
}

.newsletter-list-highlight span {
	display: block;
	color: #5790b8;
	padding: 0 15px 40px 15px;
	margin: 30px 0 0 0;
}

.newsletter-list p {
	padding: 0 25px 25px;
	text-align: center;
}

.newsletter-form {
	padding: 0;
	width: 100%;
}

.newsletter-form>form {
	padding: 0;
	width: 100%;
}

.newsletter-input-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	margin-bottom: 13px;
}

.newsletter-form>form input[type="text"], .newsletter-form>form .newsletter-input-block input[type="text"] {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	background: rgba(255, 255, 255, 1) none repeat scroll 0 0;
	border: medium none;
	color: #5690b8;
	height: 36px;
	padding: 0 20px;
	font-size: 13px;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.newsletter-form>form .newsletter-input-block button {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 165px;
	flex: 0 0 165px;
	max-width: 165px;
	background-color: var(--primario);
	color: #ffffff;
	
font-family: Lato;
font-size: 14px;
letter-spacing: 2.1px;
	font-weight: 900; 
	text-transform: uppercase;
	border: none;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
} 
.newsletter-form>form .newsletter-input-block button:hover {
	opacity: 0.8;
}

.newsletter-form>form label[for="newsletter-privacy"] {
	font-size: 10px;
	font-weight: 400;
	color: #fff;
}

.newsletter-form>form label[for="newsletter-privacy"] a {
	color: #fff;
	position: relative;
	display: inline-block;
}

.newsletter-form>form label[for="newsletter-privacy"] a:after {
	content: '';
	opacity: 0;
	visibility: hidden;
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #fff;
	bottom: 0;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.newsletter-form>form label[for="newsletter-privacy"] a:hover, .newsletter-form>form label[for="newsletter-privacy"] a:focus {
	color: #fff;
}

.newsletter-form>form label[for="newsletter-privacy"] a:hover:after, .newsletter-form>form label[for="newsletter-privacy"] a:focus:after {
	opacity: 1;
	visibility: visible;
}

[class*="icheckbox_minimal"], [class*="iradio_minimal"] {
	margin-right: 6px;
}

/****** WISHLIST **********************/

.product-item-wrapper.wishlist-item-wrapper>.row {
	border-bottom: 1px solid #dadada;
	margin: 0 0 30px 0;
	padding: 0 0 30px 0;
}

.wishlist-item-wrapper .product-brand-title {
	margin: 0;
}

.wishlist-item-wrapper .product-item .product-info .product-title {
	text-align: left;
	margin: 0;
	padding: 0;
}

.wishlist-item-wrapper .product-item .product-info h5 {
	font-size: 12px;
	color: #969696;
}

.wishlist-item-wrapper .btn {
	margin: 20px 0 0 0;
}

/**** FANCY SELECT ****/

div.fancy-select {
	float: right;
}
div.fancy-select div.trigger {
	color: #052642;
	background-color: #fff;
	padding: 12px 45px 12px 25px;
	border: 1px solid var(--primario);
	font-size: 11px;
	line-height: 20px;
	text-transform: uppercase;
	border-radius: 11px;
	-webkit-border-radius: 0;
	-moz-border-radius: 11px;
	-ms-border-radius: 11px;
	-o-border-radius: 11px;
}
div.fancy-select div.trigger::after {
	content: "\f078";
	font-family: Font Awesome\ 5 Pro;
	font-weight: 600;
	position: absolute;
	right: 20px;
	top: 50%;
	font-size: 11px;
	line-height: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

div.fancy-select div.trigger.open::after {
	content: "\f077";
	font-family: Font Awesome\ 5 Pro;
}

div.fancy-select ul.options {
	top: 100%;
	background: #fff;
	border-radius: 0px;
	border-top: 0px none;
	box-shadow: none;
	padding: 0;
	z-index: 999;
	border-radius: 0; 
}

div.fancy-select ul.options.open {
	top: 100%;
}

div.fancy-select ul.options li {
	background: #fff;
	padding: 0 0 10px;
	text-transform: capitalize;
	line-height: 15px;
	box-sizing: border-box;
}

div.fancy-select ul.options li.disabled {
	color: #ccc !important;
	cursor: auto !important;
}

div.fancy-select ul.options li.hover {
	color: #969696;
}

div.fancy-select div.trigger.open, div.fancy-select ul.options.open {
	background-color: #fff;
	border: solid 1px #F0F0F0;
	color: #000;
	box-shadow: none;
}

div.fancy-select select:focus+div.trigger.open, div.fancy-select select:active+div.trigger.open, div.fancy-select select:focus+div.trigger {
	box-shadow: none;
}

div.fancy-select .options {
	border-radius: 0px;
	font-weight: bold;
	background-color: #fff;
}

div.fancy-select ul.options li {
	color: #052642;
	position: relative;
	display: inline-block;
}

div.fancy-select ul.options.open li {
	padding: 0 0 10px;
}

div.fancy-select ul.options li:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #052642;
	bottom: 9px;
	opacity: 0;
	visibility: 0;
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

div.fancy-select ul.options li.selected {
	background-color: #fff;
	color: #052642;
}

div.fancy-select ul.options li.selected:after {
	opacity: 1;
	visibility: visible;
}

div.fancy-select .content-select+ul.options {
	top: 0px;
}

div.fancy-select .content-select#order+div.trigger {
	text-align: right;
	padding-right: 40px;
	letter-spacing: 0.5px;
}

div.fancy-select .content-select#order+div.trigger+ul.options {
	border: 1px solid #abc7db;
	text-align: center;
	font-size: 11px;
	padding: 10px 15px 0;
}

/***** autocomplete *****************/

.easy-autocomplete input {
	box-shadow: none;
}

.easy-autocomplete-container ul {
	background: none repeat scroll 0 0 #ffffff;
	border-top: 1px dotted #ccc;
	display: none;
	margin-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	position: relative;
	top: -1px;
}

.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
	background: inherit;
	border-color: #ccc;
	border-image: none;
	border-style: solid;
	border-width: 0 1px;
	display: block;
	font-size: 12px;
	font-weight: normal;
	padding: 6px 8px;
	text-transform: lowercase;
	color: #333;
}

/* BLOCK UI */

.blockUI.blockOverlay {
	background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
}

.blockUI.blockMsg .preloader-container {
	background: #f4f5f6 none repeat scroll 0 0;
	border-radius: 60px;
	box-shadow: 0 0 13px #999;
	padding: 15px;
}

.blockUI .md-preloader svg {
	height: 45px;
	width: 45px;
}

#container .blockUI.blockMsg .preloader-container {
	height: 75px;
	position: fixed;
	top: 50%;
	width: 75px;
}

/* LOADER */

.md-preloader {
	font-size: 0;
	display: inline-block;
	-webkit-animation: outer 6600ms linear infinite;
	animation: outer 6600ms linear infinite
}

.md-preloader svg {
	-webkit-animation: inner 1320ms linear infinite;
	animation: inner 1320ms linear infinite;
	height: 60px;
	width: 60px;
}

.md-preloader svg circle {
	fill: none;
	stroke: #969696;
	stroke-linecap: square;
	-webkit-animation: arc 1320ms cubic-bezier(.8, 0, .4, .8) infinite;
	animation: arc 1320ms cubic-bezier(.8, 0, .4, .8) infinite
}

@-webkit-keyframes outer {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes outer {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@-webkit-keyframes inner {
	0% {
		-webkit-transform: rotate(-100.8deg);
		transform: rotate(-100.8deg)
	}
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@keyframes inner {
	0% {
		-webkit-transform: rotate(-100.8deg);
		transform: rotate(-100.8deg)
	}
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@-webkit-keyframes arc {
	0% {
		stroke-dasharray: 1 210.48670779px;
		stroke-dashoffset: 0
	}
	40% {
		stroke-dasharray: 151.55042961px, 210.48670779px;
		stroke-dashoffset: 0
	}
	100% {
		stroke-dasharray: 1 210.48670779px;
		stroke-dashoffset: -151.55042961px
	}
}

@keyframes arc {
	0% {
		stroke-dasharray: 1 210.48670779px;
		stroke-dashoffset: 0
	}
	40% {
		stroke-dasharray: 151.55042961px, 210.48670779px;
		stroke-dashoffset: 0
	}
	100% {
		stroke-dasharray: 1 210.48670779px;
		stroke-dashoffset: -151.55042961px
	}
}

.md-preloader.md-preloader-small {
	height: 24px;
	margin: 0 5px;
	vertical-align: middle;
}

.md-preloader.md-preloader-small svg {
	height: 24px;
	width: 24px;
}

/****** 404 ***********************/

.title-404 {
	font-weight: 900;
	font-size: 110px;
	color: #5690b8;
	margin: 20px 0 60px 0;
}

.not-found h2 {
	margin: 0 0 50px 0;
}

.not-found p {
	font-size: 16px;
}

.not-found h3 {
	display: none;
}

.not-found ul {
	list-style: none;
	margin: 0 0 20px 0;
	display: block;
	padding: 0;
}

.search-goog {
	margin: 30px 0 0 0;
}

#goog-wm-qt {
	border: solid 1px #dadada;
	padding: 0px 16px;
	height: 49px;
	line-height: 49px;
	font-size: 14px;
	letter-spacing: 1px;
	border-radius: 0;
}

#goog-wm-sb {
	background: #0061B5;
	border: solid 2px #0061B5;
	border-radius: 3px;
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 13px;
	display: inline-block;
	padding: 12px 15px;
	color: #fff;
	text-transform: uppercase;
	margin: 15px 10px;
}


.home-services p {
	font-weight: 300;
	letter-spacing: 0.5px; 
}

.home-services p strong {
	text-transform: uppercase;
	display: block;
	margin: 0 0 5px 0;
}
.home-services .icon-wrapper {
	margin: 20px auto;
	background: #E5EEFF;
	border-radius: 50%;
	width: 99px;
	height: 99px;
}

/****** HELPER CLASSES *************************/

a.black-link {
	color: #000
}

a.black-link:hover {
	color: #009ee3;
}

.square-container {
	padding-bottom: 117.65%;
	overflow: hidden;
	position: relative;
	display: block;
}

.square-container img {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100%;
	max-height: 100%;
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.padding-lg {
	padding-top: 120px;
	padding-bottom: 120px;
}

.padding-md {
	padding-top: 60px;
	padding-bottom: 60px;
}

.padding-sm {
	padding-top: 30px;
	padding-bottom: 30px;
}

.padding-xs {
	padding-top: 15px;
	padding-bottom: 15px;
}

.margin-lg {
	margin-top: 120px;
	margin-bottom: 120px;
}

.margin-md {
	margin-top: 60px;
	margin-bottom: 60px;
}

.margin-sm {
	margin-top: 30px;
	margin-bottom: 30px;
}

.margin-xs {
	margin-top: 15px;
	margin-bottom: 15px;
}

.dash {
	position: relative;
}

.dash:after {
	content: '';
	display: block;
	width: 25px;
	height: 1px;
	background-color: #000;
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.dash.dash-primary:after {
	background-color: #009ee3;
}

/* end General */

/**** form ****/

label.error {
	color: #cc0000;
	margin: 5px 0 0 0;
	padding: 0 5px;
	position: absolute;
	bottom: 6px;
	right: 20px;
}

#okprivacy-error {
	position: absolute;
	width: 200px;
	max-width: none;
	left: -2px;
	top: 15px;
	text-align: left;
}

.form-group {
	margin-bottom: 25px;
	position: relative;
}

.form-control {
	position: relative;
	border: 1px solid #c3c1da;
	padding-left: 5px;
	box-shadow: none;
	border-radius: 0;
	letter-spacing: 0.5px;
	color: var(--primario);
	height: 42px;
}

.form-control::-webkit-input-placeholder {
	color: #abc8dc;
}

.form-control::-moz-placeholder {
	color: #abc8dc;
}

.form-control:-ms-placeholder {
	color: #abc8dc;
}

.input-group-addon {
	background-color: #fff;
	border: 2px solid #e6eef4;
	color: #abc8dc;
}

.alert h3 {
	margin: 0 0 10px 0;
}

.alert>i {
	font-size: 60px;
	margin: -2px 20px 0 5px;
}

/* Buttons */

.btn {
	text-shadow: none;
	box-shadow: none;
	background-image: none;
	background-color: #fff;
	filter: none;
	border-radius: inherit;
	transition: all 0.5s ease;
}
 

.btn-primary {
	background-color: var(--primario);
 
	border-style: solid;
	border-width: 1px;
	border-color: var(--primario);
	color: #fff;
	color: #ffffff;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 2.1px;
	font-weight: 900;
	text-transform: uppercase;
	padding: 15px;
	border-radius: 3px;
	 
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active:focus, .btn-primary:active, .btn-primary.active, .dropdown-toggle.btn-primary {
	background-position: inherit;
	border-color: #5690b8;
	color: #fff;
	background: #5690b8;
	outline: none;
}

.btn-default {
	border-color: #dadada;
	border-style: solid;
	border-width: 1px;
	color: #000;
	line-height: 16px;
	font-size: 14px;
	font-weight: 600;
	padding: 16px;
}

.btn-light { 
	background: transparent;
	border-color: var(--primario);
	border-style: solid;
	border-width: 1px;
	border-color: var(--primario);
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 2.1px;
	font-weight: 900;
	text-transform: uppercase;
	padding: 16px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .dropdown-toggle.btn-default {
	background-position: inherit;
	border-color: #000;
	color: #fff;
	background: #000;
}

.btn-light:hover, .btn-light:focus, .btn-light:active, .btn-light.active, .dropdown-toggle.btn-light {
	background-position: inherit;
	border-color: #052542;
	color: #052542;
	background: transparent;
}

.btn-gradient {
	border-color:  var(--primario);
	border-style: solid;
	border-width: 1px;
	color: #fff;
	line-height: 16px;
	font-size: 14px;
	font-weight: 600;
	padding: 16px;
	border-radius: 0;
	background-color: var(--primario);
/* 	background-image: linear-gradient(270deg, #5690b8 0%, #548db5 10%, #5087ae 20%, #4b80a6 30%, #44779c 40%, #3b6c91 50%, #326183 60%, #285475 70%, #1d4565 80%, #113654 90%, #042642 100%); */
 
}

.btn-gradient:hover, .btn-gradient:focus, .btn-gradient:active, .btn-gradient.active, .dropdown-toggle.btn-gradient {
	background-position: inherit;
	border-color: #5690b8;
	color: #fff;
	background: #5690b8;
}

.btn-secondary {
	border-color: #abc7db;
	border-style: solid;
	border-width: 1px;
	color: #052642;
	line-height: 16px;
	font-size: 14px;
	font-weight: 600;
	padding: 16px; 
}
.checkout-help {
	text-align: center;
	display: block;
	margin: 5px 0 0 0;
}


.btn-secondary-light {
	background: transparent;
	border-color: #969696;
	border-style: solid;
	border-width: 1px;
	color: #969696;
	line-height: 16px;
	font-size: 14px;
	font-weight: 600;
	padding: 16px;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active, .dropdown-toggle.btn-secondary {
	background-position: inherit;
	border-color: #F0F0F0;
	color: #052642;
	background: #fff;
}

.btn-secondary-light:hover, .btn-secondary-light:focus, .btn-secondary-light:active, .btn-secondary-light.active, .dropdown-toggle.btn-secondary-light {
	background-position: inherit;
	border-color: #009ee3;
	color: #009ee3;
	background: transparent;
}

.btn-sm {
	font-size: 12px;
	line-height: 21px;
	padding: 10px 30px;
}

.btn-md {
	font-size: 14px;
	line-height: 20px;
	padding: 20px 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 0;
	 
}

.btn-lg {
	font-size: 16px;
	padding: 35px 15px;
	text-transform: uppercase;
	border-radius: 0; 
	letter-spacing:2px;
}

/* end Buttons */

/* tooltip */

.tooltip.top .tooltip-arrow {
	border-top-color: #f7f9fb;
	border-width: 8px 8px 0;
	bottom: -4px;
}

.tooltip-inner {
	background: #f7f9fb;
	color: #5790b8;
	font-size: 12px;
	text-align: left;
	padding: 10px;
	box-shadow: 1px 1px 4px #bbb;
	line-height: 20px;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0;
	/* <-- Apparently some margin are still there even though it's hidden */
}

/*COOKIE BANNER*/

body .box-cookie-policy {
	display: none!important;
}

body .cookies-box {
	background: rgba(255, 255, 255, 0.95);
	border-top: 1px solid #dadada;
	padding-top: 15px;
	padding-bottom: 15px;
	font-family: 'Lato', sans-serif !important;
}

body .cookies-box a {
	color: #333!important;
	font-family: 'Lato', sans-serif!important;
}

body .cookies-box>p {
	padding: 0 10px 0px !important;
	color: #333 !important;
	font-size: 12px !important;
	margin: 0 !important;
	text-align: left !important;
}

body .cookies-box>p a {
	color: #333 !important;
	font-size: 12px !important;
}

body .cookies-box, body .cookies-box a, body .cookies-box p, body .btn.cookies-close, body .box-cookie-policy, body .box-cookie-policy a {
	font-family: 'Lato', sans-serif!important;
}

body .cookies-box .box-button {
	float: right;
	font-family: 'Lato', sans-serif!important;
	width: 270px;
}

body .cookies-box .btn.cookies-close {
	color: #fff!important;
	border: solid 1px #dadada;
	background: #fff;
	border-radius: 0;
	color: #333!important;
	text-transform: uppercase;
	font-size: 12px!important;
	letter-spacing: 1px!important;
	font-weight: bold!important;
}

body .cookies-close {
	background-color: #fff;
	color: #333;
	border: solid 1px #dadada;
}

.nopadding {
	padding: 0 !important;
}

.padding-top-0 {
	padding-top: 0 !important;
}

.padding-top-5 {
	padding-top: 5px !important;
}

.padding-top-10 {
	padding-top: 10px !important;
}

.padding-top-15 {
	padding-top: 15px !important;
}

.padding-top-20 {
	padding-top: 20px !important;
}

.padding-top-25 {
	padding-top: 25px !important;
}

.padding-top-30 {
	padding-top: 30px !important;
}

.padding-top-35 {
	padding-top: 35px !important;
}

.padding-top-40 {
	padding-top: 40px !important;
}

.padding-top-45 {
	padding-top: 45px !important;
}

.padding-top-50 {
	padding-top: 50px !important;
}

.padding-top-55 {
	padding-top: 55px !important;
}

.padding-top-60 {
	padding-top: 60px !important;
}

.padding-top-70 {
	padding-top: 70px !important;
}

.padding-top-80 {
	padding-top: 80px !important;
}

.padding-top-90 {
	padding-top: 90px !important;
}

.padding-top-100 {
	padding-top: 100px !important;
}

.padding-bottom-0 {
	padding-bottom: 0 !important;
}

.padding-bottom-5 {
	padding-bottom: 5px !important;
}

.padding-bottom-10 {
	padding-bottom: 10px v;
}

.padding-bottom-15 {
	padding-bottom: 15px !important;
}

.padding-bottom-20 {
	padding-bottom: 20px !important;
}

.padding-bottom-25 {
	padding-bottom: 25px !important;
}

.padding-bottom-30 {
	padding-bottom: 30px !important;
}

.padding-bottom-35 {
	padding-bottom: 35px !important;
}

.padding-bottom-40 {
	padding-bottom: 40px !important;
}

.padding-bottom-45 {
	padding-bottom: 45px !important;
}

.padding-bottom-50 {
	padding-bottom: 50px !important;
}

.padding-bottom-55 {
	padding-bottom: 55px !important;
}

.padding-bottom-60 {
	padding-bottom: 60px !important;
}

.padding-bottom-70 {
	padding-bottom: 70px !important;
}

.padding-bottom-80 {
	padding-bottom: 80px !important;
}

.padding-bottom-90 {
	padding-bottom: 90px !important;
}

.padding-bottom-100 {
	padding-bottom: 100px !important;
}

.margin-top-0 {
	margin-top: 0 !important;
}

.margin-top-5 {
	margin-top: 5px !important;
}

.margin-top-10 {
	margin-top: 10px !important;
}

.margin-top-15 {
	margin-top: 15px !important;
}

.margin-top-20 {
	margin-top: 20px !important;
}

.margin-top-25 {
	margin-top: 25px !important;
}

.margin-top-30 {
	margin-top: 30px !important;
}

.margin-top-35 {
	margin-top: 35px !important;
}

.margin-top-40 {
	margin-top: 40px !important;
}

.margin-top-45 {
	margin-top: 45px !important;
}

.margin-top-50 {
	margin-top: 50px !important;
}

.margin-top-55 {
	margin-top: 55px !important;
}

.margin-top-60 {
	margin-top: 60px !important;
}

.margin-top-70 {
	margin-top: 70px;
}

.margin-top-100 {
	margin-top: 100px;
}

.margin-bottom-0 {
	margin-bottom: 0 !important;
}

.margin-bottom-5 {
	margin-bottom: 5px !important;
}

.margin-bottom-10 {
	margin-bottom: 10px !important;
}

.margin-bottom-15 {
	margin-bottom: 15px !important;
}

.margin-bottom-20 {
	margin-bottom: 20px !important;
}

.margin-bottom-25 {
	margin-bottom: 25px !important;
}

.margin-bottom-30 {
	margin-bottom: 30px !important;
}

.margin-bottom-35 {
	margin-bottom: 35px !important;
}

.margin-bottom-40 {
	margin-bottom: 40px !important;
}

.margin-bottom-45 {
	margin-bottom: 45px !important;
}

.margin-bottom-50 {
	margin-bottom: 50px !important;
}

.margin-bottom-55 {
	margin-bottom: 55px !important;
}

.margin-bottom-60 {
	margin-bottom: 60px !important;
}

.margin-bottom-100 {
	margin-bottom: 100px;
}

.margin-bottom-120 {
	margin-bottom: 120px;
}

.debug-pre {
	display: none;
	height: auto;
}

.flex-box {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.flex-box.flex-wrap {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex-box.vertical-flex {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex-box.space-between-flex {
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

.flex-box.space-around-flex {
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

.flex-box.center-flex {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.flex-box.end-flex {
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
}

.flex-box.align-left-flex {
	-webkit-align-items: left;
	-moz-align-items: left;
	-ms-align-items: left;
	align-items: left;
}

.flex-box.align-center-flex {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

.flex-box.flex-order-1 {
	-webkit-box-ordinal-group: 1;
	-moz-box-ordinal-group: 1;
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}

.flex-box.flex-order-2 {
	-webkit-box-ordinal-group: 2;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}

.firstnamer {
	display: none !important;
}