:root {
	--font-family: "Poppins", sans-serif;

    --primary-color: #052642;
    --secondary-color: #009ee3;
	--tertiary-color: #5690b8; 
	--quaternary-color: #abc8dc;
	--primary-background: #e6eef4;
	--secondary-background: #f7f9fb;
	

	--white: #fff;
	--black: #000;
	--red: #ce3535;
	--gray-extra-light: #f0f0f0;
	--gray-light: #dadada;
	--gray: #c2c2c2;
	--gray-medium: #969696;
	--gray-dark: #4d4d4d;
	--gray-extra-dark: #333;

	--linear-gradient: linear-gradient(270deg, #5690b8 0%, #548db5 10%, #5087ae 20%, #4b80a6 30%, #44779c 40%, #3b6c91 50%, #326183 60%, #285475 70%, #1d4565 80%, #113654 90%, #052642 100%);

	--badge-continuativo: #0036ff;
	--badge-terminato: #ff0000;
	--badge-giacenza: #00ffff;

	--underline-color: #23527c;
}

/* General */

.wrap {
	min-height: 100vh;
}

#iubenda_policy .wrap {
	min-height: inherit;
}

#content {
	margin: 0;
}

body {
	font-size: 15px;
	color: var(--primary-color);
}

a {
	color: var(--secondary-color);
	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;
}

.overflow-hidden {
	overflow: hidden;
}

a:hover, a:focus {
	color: var(--primary-color);
}

p {
	line-height: 22px;
}

.bg-secondary {
	background-color: var(--primary-background);
}

.bg-secondary-dark {
	background-color: var(--gray-extra-light);
}

.bg-secondary-dark.padding-sm {
	padding-top: 25px;
	padding-bottom: 25px;
}

.bg-gradient {
	background-image: var(--linear-gradient);
}

.bg-carousel {
	background-color: var(--secondary-background);
}

.color-secondary {
	color: var(--tertiary-color);
}
.mix-blend-multiply {
	mix-blend-mode: multiply;
}
.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: var(--white);
}

.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: var(--tertiary-color);
	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: var(--tertiary-color);
	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: var(--white);
}

.a-underlined-white:after {
	background-color: var(--white);
}

.a-underlined:hover {
	color: var(--underline-color);
}

.a-underlined:hover:after {
	background-color: var(--underline-color);
}

.a-underlined-dark {
	color: var(--primary-color);
}

.a-underlined-dark:after {
	background-color: var(--tertiary-color);
}

.a-underlined-dark:hover {
	color: var(--tertiary-color);
}

.a-underlined-all-dark {
	color: var(--primary-color);
}

.a-underlined-all-dark:after {
	background-color: var(--primary-color);
}

.a-underlined-all-dark:hover {
	color: var(--tertiary-color);
}

.a-underlined-all-dark:hover:after {
	background-color: var(--tertiary-color);
}

.a-underlined.h4 {
	font-size: 20px;
	font-weight: 900;
}

.border-top-primary {
	border-top: 1px solid var(--gray-light);
}

.border-bottom-primary {
	border-bottom: 1px solid var(--gray-light);
}

.mixed-blend-mode {
	display: block;
}

.mixed-blend-mode>img {
	mix-blend-mode: darken;
}

.d-none {
	display: none !important;
}

/* Top Header */
.top-header-msg {
	float: left;
	width: 100%;
	padding: 8px 0;
	font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.25px;
    line-height: 24px;
    text-transform: uppercase;
	color: var(--white);
	margin: 0;
	padding-left: 20px;
	padding-right: 20px;
}
.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: end!important;
	-ms-flex-pack: end!important;
	justify-content: end!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(--white);
	font-family: var(--font-family);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.25px;
	line-height: 20px;
	/* Text style for "chi siamo" */
	text-transform: uppercase;
}

.lang-selector {
    color: var(--white);
	background-color: var(--tertiary-color);
    font-family: var(--font-family);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.25px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    border: none;
}
.main-nav .lang-selector{

	margin-top:34px;
}


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: var(--gray-extra-dark);
}

.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: var(--black);
	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: var(--black);
}

.top-header.top-header6 {
	z-index: 5;
	/*background-color: var(--white);*/
	background-image: var(--linear-gradient);
}

.top-header.top-header6 .language-list a {
	padding: 5px 0;
	font-size: 11px;
	color: var(--black);
}

.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 {
	width: 100%;
}

.smart-search-form input[type="text"] {
	height: 22px;
	color: var(--tertiary-color);
	font-family: var(--font-family);
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.45px;
	line-height: 22px;
	padding: 0;
	background-color: var(--gray-extra-light);
}

.smart-search-form input[type="text"] {
	color: var(--primary-color);
	height: 40px;
	line-height: 40px;
}

.smart-search-form input[type="submit"] {
	height: 20px;
	width: 20px;
	color: var(--gray);
	background-image: url("../../img/icon/lens-dark.svg");
	background-position: center center;
	background-size: 20px 20px;
	background-repeat: no-repeat;
}

.smart-search-form input[type="submit"] {
	height: 40px;
	width: 40px;
	background-size: 20px 20px;
}

.smart-search-form .smart-search-border {
	background-color: var(--gray);
	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: var(--gray);
	height: 2px;
}

.smart-search-form.smart-search-form6::after {
	content: '';
	color: var(--gray);
	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: var(--black);
}

.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(--tertiary-color);
	font-family: var(--font-family);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.33px;
	line-height: 22px;
	text-transform: uppercase;
}

.mini-cart-icon {
	margin-right: 0;
}

.mini-cart .mini-cart-link #cart-count {
	position: absolute;
	top: -10px;
	left: 15px;
	background: var(--tertiary-color);
	color: var(--white);
	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(--primary-color);
}

/* end Main Header */

/* Header Nav */

.nav-header {
	padding: 5px 0;
	background-color: var(--gray-extra-light);
}

.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: center!important;
}

.mega-menu {
	width: 100vw;
	left: 50%;
	padding: 20px 20px 30px;
	margin-top: 0;
	background: var(--white) none repeat scroll 0 0;
	transform: translateX(-50%);
	transition: all 0s linear 0s;
	-webkit-transition: all 0s linear 0s;
	border-top: 2px solid var(--gray-extra-light);
}

.main-nav>ul>li>a {
	text-transform: capitalize !important;
}

/*
.has-mega-menu:before {
    content: '';
    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 ease;
    -o-transition: all 0.1s ease 0.2s;
    -ms-transition: all 0.1s ease 0.2s;
    -moz-transition: all 0.1s ease 0.2s;
    -webkit-transition: all 0.1s ease 0.2s;
    z-index: 9;
}

.has-mega-menu:hover:before {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 50%;
    top: 45px;
    opacity: 1;
    background-color: rgba(45,45,45,.65);
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    -ms-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    -webkit-transition: opacity 0.25s ease;
}*/

.main-nav.main-nav19>ul>li>a {
	padding: 0 4px;
	white-space: nowrap
}

.main-nav.main-nav19>ul>li.highlight>a {
	color: var(--red);
}

.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: 1;
	background-color: rgba(45, 45, 45, .65);
	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;
	color: var(--tertiary-color);
	font-family: var(--font-family);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.35px;
	line-height: 108px;
	height: 108px;
	-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: var(--primary-color);
}

.main-nav.main-nav19.main-nav20>ul>li>a::before {
	display: none;
}

.main-nav.main-nav19>ul>li>a::after {
	bottom: 35px;
}

.main-nav.main-nav19.main-nav20>ul>li>a::after {
	height: 3px;
	background: var(--secondary-color) none repeat scroll 0 0 !important;
}

.main-nav.main-nav19.main-nav20>ul>li:hover>a {
	color: var(--primary-color);
}

.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: var(--gray-dark);
}

.mega-link>h3:last-child {
	margin: 0;
}

.main-nav.main-nav20 .mega-list-link a:hover {
	color: var(--secondary-color);
}

.main-nav.main-nav20 .mega-link>h3 a:hover {
	color: var(--secondary-color);
}

.mega-link a {
	text-transform: capitalize;
}

.mega-link h4, .mega-link h4 a {
	margin: 0 0 5px 0;
	text-transform: uppercase;
	color: var(--primary-color);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.82px;
	line-height: 20px;
}

.main-nav.main-nav20 .mega-link h4 a:hover {
	color: var(--secondary-color);
}

.mega-list-link>li {
	margin-bottom: 5px;
}

.mega-list-link a {
	color: var(--tertiary-color);
	padding-left: 0;
	font-size: 13px;
	font-weight: 400;
}

.mega-list-link a::before {
	display: none;
}

.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: var(--white);
	height: 100%;
	background: var(--gray-dark);
	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: var(--white);
	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: var(--gray-dark);
	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: var(--secondary-color);
}

.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: var(--white);
	text-align: center;
	background-image: var(--linear-gradient);
}

.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: var(--white);
}

.menu-banner .menu-banner-content .a-underlined:after {
	background-color: var(--white);
}

.menu-banner .menu-banner-content .a-underlined:hover:after, .menu-banner .menu-banner-content .a-underlined:focus:after {
	background-color: var(--white);
}

/* 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;
}

@keyframes slidein {
	from {
		top: -80px;
	}
	to {
		top: 0;
		;
	}
}

.col-border {
	border-top: 2px solid var(--gray-extra-light);
	border-bottom: 2px solid var(--gray-extra-light);
	border-left: 1px solid var(--gray-extra-light);
	border-right: 1px solid var(--gray-extra-light);
}

.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: var(--white);
}

.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 {
	padding: 0 15%;
}

.fixed-header .header .main-nav.main-nav19>ul>li>a {
	font-size: 14px;
	line-height: 80px;
	height: 80px;
}

.fixed-header .col-head .list-product-box {
	padding: 0 15px;
}

.fixed-header .main-nav.main-nav19>ul>li>a::after {
	bottom: 16px;
}

/* end Header Nav */

/* Banner Full */

.banner-full {
	padding-top: 30px;
}

.banner-full .slide-container {
	position: relative;
	height: 100%;
	width: auto;
}

.banner-full .slide-container .banner-content h2 {
	margin: 0 0 20px;
	font-size: 48px;
	font-weight: 700;
	line-height: 60px;
}
.banner-full .slide-container .banner-content.inverted h2,
.banner-full .slide-container .banner-content.inverted p{
	color: var(--white);
}
 
.banner-full .slide-container .banner-content.grayscale h2,
.banner-full .slide-container .banner-content.grayscale p{
	color: var(--gray-medium);
}
 
.banner-full .slide-container .banner-content.darkgrayscale h2,
.banner-full .slide-container .banner-content.darkgrayscale p{
	color: var(--gray-dark);
}
 



.list-tabcat14 h2.emulateh1, .title-slider h2.emulateh1 {
	color: var(--tertiary-color);
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 46px;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.banner-full .slide-container .spacer {
	clear: both;
}

.banner-full .slide-container.inverted .banner-content {
	background: var(--secondary-color);
	color: var(--white);
}

.banner-full .slide-container.inverted:hover .banner-content h2, .banner-full .slide-containerinverted:hover .banner-content h1, .banner-full .slide-container.inverted:hover .banner-content h3 {
	color: var(--white);
}

.banner-full .slide-container.inverted .banner-content a, .banner-full .slide-container.inverted .banner-content a:hover {
	color: var(--white);
}

.banner-full .slide-container.inverted .banner-content a:before, .banner-full .slide-container.inverted .banner-content a:hover:before {
	background: var(--white);
}

.slide-container.inverted:hover .banner-content::after {
	border-bottom: 8px solid var(--white);
}

.banner-full .slide-container.grayscale .banner-content {
	background: transparent;
	color: var(--white);
}

.banner-full .slide-container.grayscale:hover .banner-content h2 {
	color: var(--white);
}

.banner-full .slide-container.grayscale .banner-content a, .banner-full .slide-container.grayscale .banner-content a:hover {
	color: var(--white);
}

.banner-full .slide-container.grayscale .banner-content a:before, .banner-full .slide-container.grayscale .banner-content a:hover:before {
	color: var(--white);
}

.slide-container.grayscal .banner-content::after {
	display: none;
}

.banner-full .slide-container.darkgrayscale .banner-content {
	background: transparent;
}

.banner-full .slide-container.darkgrayscale .banner-content a:before, .banner-full .slide-container.darkgrayscale .banner-content a:hover:before {
	background: transparent;
}

.slide-container.inverted:hover .banner-content::after {
	display: none;
}

.banner-full .slide-container picture {
    display: block;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
    overflow: hidden;
}

.banner-full .slide-container .banner-layer {
	display: block;
	position: absolute;
	width: 100%;
	width: 50vw;
	height: 100%;
	background-color: inherit;
}

.banner-full .slide-container .banner-content {
	padding: 30px 30px;
	max-width: 80%;
	height: auto;
}

.banner-full .slide-container .banner-content h1 {
	margin: 0 0 20px;
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
}

.banner-full .slide-container .banner-content h3 {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 500;
	line-height: 40px;
}

.banner-full .slide-container .banner-content p {
	margin: 0 0 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 42px;
}

.banner-full .slide-container .banner-content p:last-child {
	margin: 0;
}

.banner-full .slide-container .banner-content a {
	display: inline-block;
	color: var(--white);
	position: relative;
	font-weight: 500;
	min-width: 160px;
	padding-top: 11px;
	padding-bottom: 11px;
	padding-left: 17px;
	padding-right: 22px;
	background-image: var(--linear-gradient);
	line-height: 22px;
	text-align: left;
	border-radius: 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.banner-full .slide-container .banner-content a.text-center {
	text-align: center;
}

.banner-full .slide-container .banner-content a>i {
	position: absolute;
	top: 50%;
	font-size: 18px;
	margin-left: 10px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.banner-full .slide-container .banner-content a:not(.text-center)>i {
	position: absolute;
	top: 50%;
	right: 10px;
	font-size: 18px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.banner-full .slide-container .banner-content a:hover {
	color: var(--secondary-color);
}

.banner-full .slide-container {
	cursor: pointer;
}

.banner-full>div:nth-child(1) .slide-container .banner-layer {
	right: 100%;
	/*  background-color: var(--primary-background);*/
}

.banner-full>div .slide-container img {
	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;
}

.banner-full>div:nth-child(1) .slide-container img {
	float: right;
}

.banner-full>div:nth-child(1) .slide-container:hover img {
	opacity: 0.6
}

.banner-full>div:nth-child(2) .slide-container:hover img {
	opacity: 0.6
}

.banner-full>div:nth-child(3) .slide-container:hover img {
	opacity: 0.6
}

.banner-full .slide-container:hover .banner-content h1, .banner-full .slide-container:hover .banner-content h3 {
	color: var(--secondary-color);
}

.banner-full>div:nth-child(1) .slide-container .banner-content {
	position: absolute;
	left: 0;
	bottom: 0;
}

.banner-full>div:nth-child(2)>div>div:nth-child(1) .slide-container, .banner-full>div:nth-child(2)>div>div:nth-child(2) .slide-container {
	margin-bottom: 52px;
}

.banner-full>div:nth-child(2) .slide-container .banner-layer {
	left: 100%;
	/*  background-color: #ebf2fa;*/
}

.banner-full>div:nth-child(2) .slide-container .banner-content {
	width: 100%;
	height: auto;
	padding: 0;
	position: absolute;
	position: absolute;
	left: 50%;
	bottom: 0;
	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-full>div:nth-child(3) .slide-container img {
	height: 240px;
	float: right;
}

.banner-full>div:nth-child(3) .slide-container .banner-content {
	position: absolute;
	left: 0;
	min-width: 220px;
}

.banner-full .slide-container.slide-half {
	position: relative;
	margin: 60px 15px 15px 15px !important;
}

.banner-full .slide-container.slide-half img {
	width: 100%;
	height: auto !important;
}

.banner-full .slide-container.slide-half .banner-content {
	height: 100%;
	top: 0;
	right: 0px;
	left: 0 !important;
	bottom: auto;
	width: 100% !important;
	background: transparent;
	padding-left: 37%;
}

.banner-full .slide-container.slide-half .banner-content h3 {
	margin: 0;
}

.banner-full .slide-container.slide-half .banner-content p {
	margin: 0;
}

.banner-full .slide-container.slide-half .banner-content a {
	text-decoration: underline;
	padding: 0;
}

.banner-full .slide-container.slide-half .banner-content a::before {
	display: none;
}

.banner-full .slide-container.slide-half .banner-content.inverted * {
	color: var(--white);
}

.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: var(--tertiary-color);
}*/

.store-slide-wrapper .store-slide-content {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	color: var(--white);
	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: var(--white);
	margin: 0 0 10px;
}

.row.banner-slider-container>div {
	padding: 30px 15px 20px 15px;
	border-top: 1px solid var(--gray-light);
	border-bottom: 1px solid var(--gray-light);
}

.banner-slider-container h3 {
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	margin: 0;
	color: var(--primary-color);
}

.brand-slider {
	padding: 0;
}

.brand-slider .wrap-item .owl-item {
	padding: 0 35px;
	position: relative;
}

.brand-slider .wrap-item .owl-item > div > 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: var(--tertiary-color);
	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: var(--primary-background);
}

#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 var(--tertiary-color);
	background: var(--tertiary-color);
	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 var(--tertiary-color);
	background: var(--tertiary-color);
	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-container h2.emulateh1 {
	color: var(--tertiary-color);
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 46px;
	margin-bottom: 50px;
}
.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: var(--tertiary-color);
}*/

.banner-item .banner-wrapper .banner-content {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	color: var(--white);
	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: var(--white);
	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: var(--white);
	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: var(--white);
	font-weight: 500;
	min-width: 210px;
	padding-top: 11px;
	padding-bottom: 11px;
	padding-left: 17px;
	padding-right: 22px;
	background-image: var(--linear-gradient);
	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: var(--secondary-color);
	text-decoration: none;
	outline: none;
}

.banner-home-wrapper .banner-home-slider {
	margin-left: -15px;
	margin-right: -15px;
}

.banner-home-wrapper .banner-item .banner-wrapper .banner-content {
    display: block;
    position: absolute;
    bottom: 0;
	top: auto;
    left: 0;
    z-index: 9;
    color: var(--white);
    text-align: left;
    padding: 20px;
	transform: translate(0, -0);
	-webkit-transform: translate(0, -0);
	-moz-transform: translate(0, -0);
	-ms-transform: translate(0, -0);
	-o-transform: translate(0, -0);
}
.banner-home-wrapper .banner-item .banner-wrapper .banner-content h1 {
	font-size:28px;
	line-height: 38px;
}
.banner-home-wrapper .banner-item .banner-wrapper .banner-content a {
    display: inline-block;
    color: var(--white);
    position: relative;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 24px;
    padding-right: 24px;
    background-image: var(--linear-gradient);
    line-height: 22px;
    text-align: left;
    border-radius: 5px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    margin-top: 10px;
    line-height: 22px;
}
.banner-home-wrapper .banner-item .banner-wrapper {
	background-color:transparent;
}

/* 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-bottom: 50px;
}

.list-tabcat14 h1, .title-slider h1 {
	color: var(--gray-dark);
	margin: 0 0 40px;
}

.title-tab14>ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.title-tab14>ul li {
	margin-left: 0;
	padding-left: 0;
	border-left: none;
	padding: 0 20px;
	display: flex;
}

.title-tab14>ul li a {
	text-transform: none;
	color: var(--tertiary-color);
	font-weight: 400;
	font-size: 15px;
	line-height: 21px;
	white-space: nowrap;
}

.title-tab14>ul li a:hover {
	color: var(--primary-color);
}

.title-tab14>ul li.active a {
	position: relative;
	color: var(--primary-color);
	font-weight: 900;
}

.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(--primary-color);
	bottom: -5px;
}

.product-brand-title a:hover, .product-info .product-title a:hover {
	color: var(--secondary-color);
}

.slide-selector.form-control, .info-selector.form-control {
	background: transparent;
	border: 1px solid var(--gray-light);
	color: var(--gray-medium);
	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(--primary-color);
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	display: inline-block;
	text-transform: uppercase;
}

.product-brand-title span {
	color: var(--gray-medium);
	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: var(--primary-color);
}

.product-info {
	position: relative;
	min-height: 200px;
	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(--tertiary-color);
	font-size: 20px;
	line-height: 28px;
}

.product-info .product-code {
	color: var(--tertiary-color);
	line-height: 20px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1.25px;
	text-transform: uppercase;
	padding-bottom: 0;
}

.product-info>a.product-link , .product-info a.product-link {
	text-align: center;
	color: var(--primary-color);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.82px;
	line-height: 20px;
	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 , .product-info a.product-link:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--primary-color);
	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;
}

.product-info>a.product-link:hover, .product-info a.product-link:hover {
	color: var(--secondary-color);
}

.product-info>a.product-link:hover:after, .product-info a.product-link:hover:after {
	background-color: var(--secondary-color);
}

.category-slider6.tabcat14.corr-slider {
	margin: 80px 0;
}

.corr-slider>h2 {
	margin: 0 0 30px 0;
	border-bottom: 1px solid var(--gray-light);
	padding: 0 0 30px 0;
	font-size: 24px;
	font-weight: 700;
}

.category-slider6 .owl-directnav6 .owl-controls {
	position: absolute;
	top: -89px;
	right: 0;
	width: 73px;
	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: var(--primary-background);
	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: var(--gray-extra-light);
}

.list-tabcat14.bg-secondary .tab-content .product-thumb>a img {
	mix-blend-mode: darken;
}

/* end Tabcat */

/* Contatti Block */

.contatti-block h4 {
	font-weight: 400;
	color: var(--primary-color);
}

.contatti-block h4 strong {
	font-weight: 900;
}

.contatti-block h4 a {
	color: var(--primary-color);
	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: var(--gray-extra-dark);
	margin: 0 0 20px;
	padding: 0 0 12px;
	border-bottom: 2px solid var(--gray-extra-dark);
}

.news-block h5 {
	font-size: 14px;
	font-weight: 900;
	line-height: 22px;
	color: var(--gray-dark);
}

.news-block p {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: var(--gray-dark);
	margin: 0;
	height: 90px;
}

.news-block-link {
	font-size: 12px;
	font-weight: 900;
	line-height: 22px;
	color: var(--black);
}

.news-block-link:hover {
	color: var(--secondary-color);
}

/* 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: var(--white);
	border: 2px solid var(--white);
	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: var(--white);
	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: 30px;
	height: 30px;
	margin-right: 15px;
}

.social-list>li a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	color: var(--white);
	background-color: var(--tertiary-color);
	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;
}

.title-tab-detail>ul li {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-width: 0;
	max-width: 100%;
	width: 100%;
	text-align: center;
}

.title-tab-detail>ul li a {
	display: inline-block;
	width: auto;
	height: auto;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	padding: 0;
	color: var(--primary-color);
	text-transform: uppercase;
	position: relative;
}

.title-tab-detail>ul li.active a {
	border-color: transparent;
	color: var(--primary-color);
}

.title-tab-detail>ul li a:after {
	content: '';
	opacity: 0;
	visibility: hidden;
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--primary-color);
	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: 15px;
	line-height: 22px;
	color: var(--primary-color);
}

.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 {
	font-size: 36px;
	line-height: 46px;
	color: var(--tertiary-color);
	margin: 0;
	font-weight: 900;
	letter-spacing: 1px;
}

.page-title.nobreadcrumb {
	color: var(--white);
	font-weight: 700;
}

/* end Page Title */

/* Breadcrumbs */

.bread-crumb {
	margin-top: 0;
	margin-bottom: 10px;
	background-color: transparent;
	padding: 0;
}

.bread-crumb a, .bread-crumb span {
	color: var(--primary-color);
	font-size: 10px;
	line-height: 20px;
	font-weight: 500;
	text-transform: uppercase;
	margin-right: 13px;
	letter-spacing: 1px;
}

.bread-crumb a::after {
	content: "/";
	position: absolute;
	top: 50%;
	height: 5px;
	width: 10px;
	left: 100%;
	margin-left: 6px;
	margin-top: -8px;
	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 */

.footer7 {
	background: var(--white) none repeat scroll 0 0;
	border-top: none;
}

.footer-top7 {
	border-bottom: 1px solid var(--primary-background);
}

.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 {
	font-size: 11px;
	line-height: 20px;
	font-weight: 700;
	color: var(--primary-color);
	float: left;
	width: 100%;
	margin-bottom: 5px;
	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: 11px;
	line-height: 20px;
	color: var(--tertiary-color);
	text-transform: uppercase;
}

.footer20 .menu-box7 ul li a:hover, .menu-box7 ul li a:hover {
	color: var(--primary-color);
}

/* end Footer */

/* Footer Bottom */

.footer-bottom7:not(:last-of-type) {
	border-bottom: 1px solid var(--gray-light);
}

.paymment-method {
	float: left;
	margin: 0;
}

.footer-desc {
	font-size: 13px;
	line-height: 20px;
	color: var(--primary-color);
	margin-bottom: 0;
	font-weight: 400;
}

.footer-desc strong {
	font-weight: 600;
}

.copyright7 {
	font-size: 11px;
	line-height: 20px;
	margin-bottom: 0;
	color: var(--primary-color);
	text-transform: uppercase;
}

.copyright7 a {
	color: var(--primary-color);
	position: relative;
}

.copyright7 a:after {
	content: '';
	opacity: 0;
	visibility: hidden;
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--primary-color);
	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,
.pagina-blog .widget {
	border-bottom: 1px solid #dadad9;
	padding: 0 0 20px 0;
}

.widget-title {
	font-family: var(--font-family);
	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,
.pagina-blog .widget .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,
.pagina-blog .widget .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(--tertiary-color);
	font-size: 15px;
	letter-spacing: 1px;
}

.widget-filter ul li label:hover {
	color: var(--secondary-color);
}

.widget-filter .icheckbox_minimal-custom, .iradio_minimal-custom {
	border: 1px solid var(--tertiary-color);
}

/*

.widget.widget-filter.widget-filter-highlight ul li label {
	font-weight: 700;
	line-height: 18px;
	color: var(--red);
}

.widget.widget-filter.widget-filter-highlight.widget-filter-highlight-alt  ul li label {
 color:var(--gray-extra-dark);
}

.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 {
	text-transform: none;
	line-height: normal;
}

.widget-filter.widget-filter-highlight ul li label {
	font-weight: 700;
	line-height: 18px;
}

.widget-filter.widget-filter-highlight ul li.highlight label {
	color: var(--red);
}

.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 #dadad9;
	border-bottom: 1px solid #dadad9;
}

.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 var(--primary-background);
	margin: 0 10px 10px 0;
	color: var(--tertiary-color);
	background-color: var(--primary-background);
	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: var(--secondary-color);
	color: var(--white);
}

#active-filters .active-filter:not(.clear-filters) span {
	color: var(--tertiary-color);
	font-size: 11px;
	padding-left: 5px;
	transition: all 0.5s ease;
	font-weight: 900;
}

#active-filters .active-filter:hover span {
	color: var(--white);
}

#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: var(--primary-color);
	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: var(--secondary-color);
}

#active-filters .active-filter.clear-filters:hover:after {
	background-color: var(--secondary-color);
}

#active-filters .active-filter.clear-filters:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--primary-color);
	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: var(--secondary-color);
}

#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: 11px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	-ms-border-radius: 11px;
	-o-border-radius: 11px;
}

.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;
}

.product-thumb .square-container .altfoto {
	display: none;
}
.product-thumb .square-container:hover img.firstfoto {
	display: none;
}
.product-thumb .square-container:hover img.altfoto {
	display: block;
}

.badge-season {
	display: inline-block;
	margin: 0 auto;
	padding: 8px 20px;
	color: var(--tertiary-color);
	background-color: var(--primary-background);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 1.25px;
	text-transform: uppercase;
	text-align: center;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	cursor: pointer;
}

.badge-season.continuativo {
	color: var(--badge-continuativo);
	font-weight: 600;
}

.badge-block {
	display: block !important;
}

.badge-up {
	/*transform: translateY(-50%);*/
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	top: 0;
	left: 50%;
	white-space: nowrap;
}

.badge-giacenza {
	display: inline-block;
	margin: 0 auto;
	padding: 8px 20px;
	color: var(--black);
	background-color: var(--badge-giacenza);
	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: var(--white);
	background-color: var(--badge-giacenza);
}

.product-info .product-title {
	margin: 10px 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: 14px;
	font-weight: 900;
}

.price-discount {
	font-size: 14px;
	font-weight: 400;
}

.old-price.price {
	font-weight: 500;
	color: var(--gray-medium);
	text-decoration: line-through;
	/* font-size: 11px; */
	margin: 0 5px 0 0;
}

.special-price.price {
	color: var(--red);
}

.special-price.price em {
	text-decoration: none;
	font-style: normal;
	font-size: 12px;
	background: var(--red);
	color: var(--white);
	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: var(--black);
	text-align: center;
	margin: 10px 0;
}

.product-badge.promo-badge {
	color: var(--red);
}

.product-badge.promo-badge em {
	display: inline-block;
	text-transform: none;
	font-style: normal;
	background: var(--red);
	color: var(--white);
	border-radius: 2px;
	padding: 2px 5px;
	margin: 0 0 0 5px;
}

.product-badge.pezzi-badge {
	position: absolute;
	right: 0;
	margin: 0;
	bottom: 0px;
	background: var(--secondary-color);
	color: var(--white);
	padding: 5px 10px;
}

.pezzi-price.price {
	display: block;
	font-weight: 500;
	font-size: 12px;
	color: var(--gray-medium);
	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 var(--secondary-color);
	padding-top: 2px;
}

.loadmore {
    margin: 40px 0 20px 0;
}

.loadmore .pag small {
	font-size: 12px;
	color: var(--gray-medium);
	display: block;
	margin: 10px 0;
}

.seo_description {
	margin: 60px 0;
	padding: 20px 20px;
	border-top: 1px solid var(--gray-light);
	color: var(--gray-medium);
	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;
	font-family: var(--font-family);
}

/**** 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;
	position: relative;
}

#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;
}


.picture-thumbs .square-container{
	background-color: var(--secondary-background);
	opacity: 0.7; 
	transition: all 0.5s ease;
	margin: 0 0 15px 0;
	border: 1px solid var(--secondary-background);
}


.picture-thumbs .square-container img{
	max-width: 90%;
	max-height: 90%;
	mix-blend-mode: darken;
}

.picture-thumbs .square-container:hover,
.picture-thumbs .square-container.active {
	opacity: 1;
	border: 1px solid var(--primary-background);
}

#big-picture .owl-wrapper-outer {
    z-index: 9;
}

#big-picture .owl-controls {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	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 var(--tertiary-color);
}

#big-picture .owl-controls .owl-page.active span {
	background: var(--tertiary-color);
}

.prod-sharebox {
	padding: 0;
}

.prod-sharebox span {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 10px;
	line-height: 20px;
	letter-spacing: 0.65px;
}

.prod-sharebox, .prod-sharebox a {
	color: var(--tertiary-color);
}

.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: var(--tertiary-color);
	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: var(--primary-color);
}

.prod-sharebox a:hover i {
	color: var(--primary-color);
}

.prod-detail-header h3 {
	text-transform: uppercase;
	margin: 0 0 10px;
	font-size: 14px;
}

.prod-detail-header h1, .prod-detail-header h1 a {
	font-size: 36px;
	line-height: 46px;
	color: var(--tertiary-color);
	margin: 0;
	font-weight: 900;
	letter-spacing: 1px;
}

.prod-detail-header h5 {
	font-size: 11px;
	font-weight: 900;
	color: var(--tertiary-color);
	letter-spacing: 1px;
}

.login-box h4 {
	margin: 0 0 15px;
	text-align: center;
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	color: var(--tertiary-color);
}

.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: var(--primary-color);
	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 {
	border-top: 1px solid var(--primary-background);
	margin: 0 0 60px;
	padding: 30px 0;
	color: var(--tertiary-color);
	border-bottom: 1px solid var(--primary-background);
}

.row.description>div {
	padding-left: 0;
}

.row.description h4 {
	margin: 30px 0 0 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--tertiary-color);
}

.row.description p {
	font-size: 15px;
	line-height: 22px;
	color: var(--tertiary-color);
	margin: 0 0 20px 0;
}

.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: var(--primary-color);
	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: var(--quaternary-color);
	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: var(--primary-color);
	font-weight: 700;
	font-size: 10px;
	line-height: 20px;
}

.brand-info .brand-name {
	font-size: 36px;
	line-height: 46px;
	color: var(--tertiary-color);
	margin: 0;
	font-weight: 400;
	letter-spacing: 1px;
}

.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: var(--tertiary-color);
	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: var(--tertiary-color);
	border: 2px solid var(--primary-background);
}

.table-grid>tbody>tr>th {}

.table-grid>tbody>tr>td.highlight {
	background-color: var(--white);
}

.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: var(--tertiary-color);
	font-size: 10px;
	line-height: 10px;
	font-weight: 600;
	letter-spacing: 0.65px
}

.table-grid td .special-price.price {
	color: var(--red);
}

.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: var(--quaternary-color);
	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: var(--primary-color);
	border-radius: 0;
	text-align: center;
	z-index: 0
}

.table-grid .form-group .form-control::-moz-placeholder {
	color: var(--black);
}

.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: var(--tertiary-color);
	padding: 30px 0;
	line-height: 20px;
	display: inline-block;
}

.table-grid td .addnote {
	position: relative;
	color: var(--tertiary-color);
	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: var(--tertiary-color);
	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: var(--primary-background);
}

.table-grid td .addnote:hover:after {
	color: var(--primary-background);
}

.table-grid td .addnote.black-link {
	color: var(--primary-color);
}

.table-grid td .form-group {
	margin-bottom: 0;
}

.table-grid td .form-group .form-control {
	border: 2px solid var(--primary-background);
}

.table-grid td .form-group .form-control::-webkit-input-placeholder {
	font-size: 11px;
	color: var(--quaternary-color);
}

.table-grid td .form-group .form-control:-ms-input-placeholder {
	font-size: 11px;
	color: var(--quaternary-color);
}

.table-grid td .form-group .form-control::placeholder {
	font-size: 11px;
	color: var(--quaternary-color);
}

.btn.addtocart {
	padding: 22px;
	font-size: 15px;
	font-weight: 900;
	margin: 0 0 25px;
	border-radius: 11px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	-ms-border-radius: 11px;
	-o-border-radius: 11px;
}

.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: var(--tertiary-color);
	border: 2px solid var(--primary-background);
	text-align-last: center;
}

.cart-control-wrapper .input-group input {
	height: 50px;
	color: var(--tertiary-color);
	border-top: 2px solid var(--primary-background);
	border-bottom: 2px solid var(--primary-background);
	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: var(--tertiary-color);
	border: 2px solid var(--primary-background);
}

.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: var(--primary-background);
	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 ************************/

.static-page #content {
	margin: 60px 0 80px 0;
	min-height: 520px;
}

p.intro-text {
	font-size: 16px;
	margin: 0 0 60px 0;
	letter-spacing: 0.5px;
}

h2.line-title {
	font-size: 20px;
	font-weight: 600;
	padding: 0 0 15px 0;
	border-bottom: 1px solid var(--primary-color);
	letter-spacing: 0.5px;
	margin: 0 0 40px 0;
}

/**** 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 var(--black);
	border-bottom: 1px solid var(--black);
	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: 33%;
	text-align: left;
	color: var(--gray-medium);
	margin: 0 0 10px 0;
	padding: 0 10px 0 0;
}

.interessi-list li label:hover {
	color: var(--black);
}

.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 var(--quaternary-color);
}

.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: var(--primary-color);
	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: 15px;
	color: var(--tertiary-color);
	font-weight: 600;
}

.table.cart-items h5, .table.orders-table h5 {
	color: var(--tertiary-color);
	font-size: 15px;
	line-height: 15px;
	font-weight: 400;
}

.table.cart-items h6 {
	color: var(--tertiary-color);
	margin: 0 0 5px;
	text-transform: uppercase;
}

.table.cart-items .price {
	font-size: 15px;
	color: var(--primary-color);
	font-weight: 400;
}

.table.cart-items .price strong {
	font-weight: 900;
}

.table.cart-items.form-group .form-control {
	border: 1px solid var(--gray-light);
}

.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: var(--gray-extra-dark);
	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 var(--primary-background);
	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: var(--primary-color);
	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 var(--quaternary-color);
	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 var(--gray-light);
	padding: 10px 2px;
	font-size: 11px;
	color: var(--quaternary-color);
	text-transform: uppercase;
}

.table.cart-items .cart-subitem td .table td strong {
	color: var(--tertiary-color);
}

.table.cart-items .cart-subitem td .table th, .table.cart-items .cart-subitem td .table td:first-of-type {
	text-transform: uppercase;
	color: var(--primary-color);
	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 var(--primary-background);
}

.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 var(--primary-background);
}

.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: var(--primary-background);
	padding: 15px;
	border-radius: 11px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	-ms-border-radius: 11px;
	-o-border-radius: 11px;
}

.cart_summary_cont h3 {
	color: var(--tertiary-color);
	font-size: 20px;
	font-weight: 600;
	margin: 0px 0 20px 0;
	letter-spacing: 1px;
	text-transform: capitalize;
}

.cart_summary_cont>div {
	padding: 10px 0 25px 0;
	border-top: 1px solid var(--quaternary-color);
	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(--tertiary-color);
	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(--primary-color);
}

.cart_summary_cont>div h3 small {
	color: var(--primary-color);
}

.cart_summary_cont>div .price {
	letter-spacing: 0.5px;
	font-size: 20px;
	color: var(--tertiary-color);
	font-weight: 400;
}

.cart_summary_cont>div.cart_total .price {
	font-size: 20px;
	color: var(--primary-color);
	font-weight: 700;
}

.cart_summary_cont>div.cart_minimo h4 {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	color: var(--tertiary-color);
	text-transform: none;
}

.cart_summary_cont>div.cart_minimo .price {
	color: var(--tertiary-color);
	font-size: 13px;
}

.help-menu {
	margin: 20px 0 0 0;
}

.help-menu h4 {
	color: var(--tertiary-color);
	font-size: 15px;
	line-height: 22px;
}

.help-menu p {
	color: var(--tertiary-color);
	font-size: 15px;
	line-height: 22px;
}

.help-menu .black-link {
	display: inline-block;
	margin: 5px 0;
	font-weight: 600;
	color: var(--tertiary-color);
}

.table.cart-items .form-group .form-control.cart-note {
	text-align: left;
	margin: 20px 0;
	width: 100%;
	height: 80px;
	padding: 10px 15px;
	color: var(--tertiary-color);
	background-color: var(--secondary-background);
	border: 2px solid var(--secondary-background);
	border-radius: 11px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	-ms-border-radius: 11px;
	-o-border-radius: 11px;
}

.static-page.cart-page #content {
	margin: 30px 0 80px 0;
}

#carrello-detail {
	float: left;
	padding-top: 80px;
	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: var(--gray-medium);
	font-size: 16px;
	vertical-align: middle;
}

.listview li a.active {
	color: var(--black);
}

.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;
}

.payment-options h3, .ship-options h3, .ord-options h3, .coupon-options h3, .checkout-buttons h3 {
	color: var(--tertiary-color);
	font-size: 20px;
	font-weight: 900;
	margin: 30px 0 30px 0;
	border-top: 1px solid var(--tertiary-color);
	padding: 50px 0 0 0;
}

.payment-options h3 a, .ship-options h3 a {
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
}

label.tipo-pay, label.tipo-spe, label.tipo-ord {
	display: block;
	position: relative;
	height: 100%;
	border: 1px solid var(--quaternary-color);
	border-radius: 11px;
	padding: 15px;
	padding-left: 50px;
	margin: 0;
}

label.tipo-pay.selected, label.tipo-spe.selected, label.tipo-ord.selected {
	border: 1px solid var(--quaternary-color);
	background-color: var(--primary-background);
}

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;
}

.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: var(--primary-color);
}

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 var(--primary-color);
}

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: var(--primary-color);
	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 var(--quaternary-color);
}

.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 var(--quaternary-color);
	border-radius: 11px;
	padding: 15px;
	padding-left: 50px;
}

.ship-options .address.active {
	border: 1px solid var(--quaternary-color);
	background-color: var(--primary-background);
}

.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: var(--primary-color);
}

.ship-options .address label>.iradio_minimal-custom.checked:before {
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	background-color: var(--primary-color);
	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: 20px 0;
	margin: 0 0 30px 0;
	border-top: 1px solid var(--gray-light);
	border-bottom: 1px solid var(--gray-light);
	font-size: 18px;
	font-weight: 300;
	text-transform: capitalize;
}

h1.user-title {
	border-top: 1px solid var(--gray-light);
	border-bottom: 1px solid var(--gray-light);
	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: var(--white);
}

.side-menu-user .altribute ul li {
	display: block;
	border-bottom: 1px solid var(--gray-light);
	padding: 20px 0;
}

.side-menu-user .altribute ul li a {
	font-size: 16px;
	color: var(--gray-medium);
	text-transform: uppercase;
}

.side-menu-user .altribute ul li.active a, .side-menu-user .altribute ul li a:hover {
	color: var(--black);
}

.side-menu-user .altribute ul li:last-child {
	border-bottom: none;
}

.form-label .form-group label {
	text-transform: uppercase;
	color: var(--black);
	margin-bottom: 15px;
	font-size: 12px;
	font-weight: 700;
}

.form-label .form-control {
	border: 1px solid var(--gray-light);
	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 var(--gray-light);
	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 var(--gray-light);
	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 var(--gray-light);
	display: flex;
	justify-content: space-between;
}

.brands-nav li a {
	padding: 5px;
}

.brands-list-container {
	margin: 0 0 40px 0;
	border-bottom: 1px solid var(--gray-light);
	padding: 0 0 40px 0;
}

.alpha-title {
	font-size: 40px;
	font-weight: 900;
	color: var(--tertiary-color);
}

.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: 12px;
	margin: 0 0 5px 0;
	display: inline-block;
}

.main-text {
	color: var(--tertiary-color);
}

.main-text strong {
	font-weight: 900;
}

.brand-article {
	margin-top: 30px;
	margin-bottom: 30px;
	border-top: 1px solid var(--gray-light);
	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;
}

/****** 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: var(--white);
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 40px;
}

.bg-image h5 {
	color: var(--white);
	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 var(--gray-light);
	border-bottom: 1px solid var(--gray-light);
	padding: 50px 0;
}

.servizi-list-container .alpha-title {
	font-size: 20px;
	line-height: normal;
	font-weight: 700;
}

/******* 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;
}

/* POPUP */

.popup-container {
	padding: 0 20px 25px;
	min-width: 560px;
	background: var(--white);
	max-width: 1090px;
}

.popup-container h3 {
	margin: 0 0 25px;
	padding: 15px;
	text-transform: none;
	line-height: normal;
	font-size: 26px;
	font-weight: 600;
}

.popup-container h4 {
	margin: 0 0 20px;
}

.fancybox-container {
	font-family: var(--font-family);
}

.fancybox-close-small {
	top: 15px;
	right: 10px;
}

.newspopup {
	max-width: 542px;
	padding: 15px;
}
.newspopup > .container-fluid {
	padding: 0;
}
.newspopup h2 {
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 1.8px;
	line-height: 46px;
}
.newspopup h5 {
	font-family: var(--font-family);
	font-size: 13px;
	line-height: 26px;
	font-weight: 700;
	color: #333333;
}
.newspopup footer {
	margin: 40px 0 0 0;
}
.popup-container-nohome .newspopup > .container-fluid.container-text {
	position: absolute;
	top: 55px;
	left: 55px;
	width: calc(100% - 110px);
}

.popup-container-home .newspopup > .container-fluid.container-text{
	display: none;
}

.nomore-popup {
	position: absolute;
	right: 10px;
	bottom: 5px;
	display: inline-block;
	background: var(--gray-extra-light);
	padding: 3px 10px;
	font-size: 11px;
	border-radius: 30px;
}

/*******  MAIL *************************/

.newsletter-page p.intro-text {
	font-size: 20px;
	line-height: normal;
}

.newsletter-list {
	border-bottom: 1px solid var(--gray-light);
	margin: 0 0 60px 0;
}

.newsletter-list-highlight {
	text-align: center;
	height: 180px;
	border-bottom: 1px solid var(--gray-light);
	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: var(--tertiary-color);
	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: var(--tertiary-color);
	height: 36px;
	padding: 0 20px;
	font-size: 13px;
	border-top-left-radius: 18px;
	border-bottom-left-radius: 18px;
}

.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(--primary-color);
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.82px;
	text-transform: uppercase;
	border: none;
	border-top-right-radius: 18px;
	border-bottom-right-radius: 18px;
	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;
}

.newsletter-form>form label[for="newsletter-privacy"] a {
	color: var(--white);
	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: var(--white);
	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: var(--white);
}

.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 var(--gray-light);
	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: var(--gray-medium);
}

.wishlist-item-wrapper .btn {
	margin: 20px 0 0 0;
}

/**** LANDING FORNITURE ****/
.section-forniture p.bigger {
	font-size: 22px;
	line-height: 36px;
	font-weight: 100;
	margin-bottom: 20px;
}
.section-forniture ul li {
	font-size: 22px;
	line-height: 36px;
	font-weight: 100;
	margin-bottom: 15px;
}
.banner-forniture-img {
	padding: 0px;
	border-radius: 20px 0px 0px 20px;
	overflow: hidden;
}
.banner-forniture-content {
	border-radius: 0px 20px 20px 0px;
	padding: 15px 70px;
}
.banner-forniture-btn {
		color: var(--primary-color);
		font-weight: 500;
		width: 210px;
		padding-top: 11px;
		padding-bottom: 11px;
		padding-left: 17px;
		padding-right: 22px;
		border: solid 1px var(--white);
		background-color: var(--white);
		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;
}
.banner-forniture-btn:hover {
	background-color: transparent;
	color: var(--white);
}
/**** BLOG ****/
.pagina-blog .widget ul li a {
	margin-bottom: 10px;
	display: inline-block;
	line-height: 20px;
}
.pagina-blog .widget ul li.active a {
	color: var(--primary-color);
}
.pagina-blog .widget.tags-widget li {
	display: inline-block;
	margin: 6px 6px 6px 0;
}
.pagina-blog .widget.tags-widget .blog-tag,
.pagina-blog .blog-detail-info .blog-tag {
	border-radius: 9px;
	padding: 6px 20px;
	font-size: 11px;
	line-height: 16px;
	background-color: var(--gray-extra-light);
	margin:0px;
}
.pagina-blog .blog-detail-info .blog-tag {
	margin-right:6px;
}
.pagina-blog .blog-detail-info {
	margin-top: 35px;
}
.pagina-blog .popular-post {
	margin-top:30px;
	margin-bottom: 45px;
}
.pagina-blog .popular-post h6 {
	color:var(--tertiary-color);
	margin: 0 0 10px 0;
}
.pagina-blog .popular-post h5 {
	font-weight: bold;
	line-height: 20px;
	margin-bottom: 20px;
}
.pagina-blog .popular-post h5 a {
	color: var(--primary-color);
}
.pagina-blog picture {
    display: block;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
    overflow: hidden;
	height: 470px;
	position: relative;
}
.pagina-blog picture img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	overflow: hidden;
}
.pagina-blog .popular-post picture {
	height: 120px;
}
.pagina-blog .blog-detail-slide picture {
	height: 630px;
}
.pagina-blog .a-underlined {
	margin-top: 10px;
	color: var(--primary-color);
}
.pagina-blog .a-underlined:after {
	background-color: var(--primary-color);
}
.pagina-blog .blog-grid-item {
	margin-bottom:80px;
}
.pagina-blog .blog-grid-item-text {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: calc(100% - 30px);
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 45px;
    left: 0;
    color: var(--primary-color);
    padding-top: 120px;
    background: rgb(240, 240, 240);
    background: linear-gradient(180deg, rgba(240, 240, 240, 0) 0%, rgba(240, 240, 240, 0.5) 35%, rgba(240, 240, 240, 0.8) 100%);
    margin: 0px 15px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.pagina-blog .blog-grid-item-text h5,
.pagina-blog .blog-detail-header h5 {
	display: inline-block;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 5px;
	margin-right: 10px;
}
.pagina-blog .blog-grid-item-text h5 a,
.pagina-blog .blog-detail-header h5 a {
	color: var(--white);
	font-size: 16px;
}
.pagina-blog .blog-grid-item-text .blog-grid-item-info,
.pagina-blog .blog-detail-header .blog-post-info {
	display: inline-block;
}
.pagina-blog .blog-grid-item-text h3,
.pagina-blog .blog-grid-item-text h3 a {
	color: var(--primary-color);
}
.pagina-blog .blog-grid-item-text .blog-grid-item-descbreve {
	font-size: 12px;
}
.pagina-blog .blog-detail-text {
	margin-top:60px
}
.pagina-blog .blog-detail-nav {
	border-top:solid 1px var(--primary-background);
	margin-top: 45px;
	padding-top: 55px;
	display: flex;
	justify-content: space-between;
}
.pagina-blog .blog-detail-nav.first {
	justify-content: flex-end;
}
.pagina-blog .blog-detail-nav.last {
	justify-content: flex-start;
}
.pagina-blog .blog-detail-nav a {
	color: var(--white);
	position: relative;
	font-weight: 500;
	min-width: 160px;
	padding-top: 11px;
	padding-bottom: 11px;
	padding-left: 17px;
	padding-right: 22px;
	background-image: var(--linear-gradient);
	line-height: 22px;
	text-align: left;
	border-radius: 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	min-width: 210px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/**** FANCY SELECT ****/

div.fancy-select {
	float: right;
}

div.fancy-select div.trigger {
	color: var(--primary-color);
	background-color: transparent;
	padding: 12px 45px 12px 25px;
	border: 1px solid var(--quaternary-color);
	font-size: 11px;
	line-height: 20px;
	text-transform: uppercase;
	border-radius: 11px;
	-webkit-border-radius: 11px;
	-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: var(--white);
	border-radius: 0px;
	border-top: 0px none;
	box-shadow: none;
	padding: 0;
	z-index: 999;
	border-radius: 11px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	-ms-border-radius: 11px;
	-o-border-radius: 11px;
}

div.fancy-select ul.options.open {
	top: 100%;
}

div.fancy-select ul.options li {
	background: var(--white);
	padding: 0 0 10px;
	text-transform: capitalize;
	line-height: 15px;
	box-sizing: border-box;
}

div.fancy-select ul.options li.disabled {
	color: var(--gray-light) !important;
	cursor: auto !important;
}

div.fancy-select ul.options li.hover {
	color: var(--gray-medium);
}

div.fancy-select div.trigger.open, div.fancy-select ul.options.open {
	background-color: var(--white);
	border: solid 1px var(--gray-extra-light);
	color: var(--black);
	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: var(--white);
}

div.fancy-select ul.options li {
	color: var(--primary-color);
	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: var(--primary-color);
	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: var(--white);
	color: var(--primary-color);
}

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 var(--quaternary-color);
	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 var(--white);
	border-top: 1px dotted var(--gray-light);
	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: var(--gray-light);
	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: var(--gray-extra-dark);
}

/* BLOCK UI */

.blockUI.blockOverlay {
	background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
}

.blockUI.blockMsg .preloader-container {
	background: var(--primary-background) none repeat scroll 0 0;
	border-radius: 60px;
	box-shadow: 0 0 13px var(--gray-medium);
	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: var(--gray-medium);
	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: var(--tertiary-color);
	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 var(--gray-light);
	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: var(--white);
	text-transform: uppercase;
	margin: 15px 10px;
}

/****** HELPER CLASSES *************************/

a.black-link {
	color: var(--black)
}

a.black-link:hover {
	color: var(--secondary-color);
}

.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: var(--black);
	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: var(--secondary-color);
}

/* end General */

/**** form ****/

label.error {
	color: var(--red);
	margin: 5px 0 0 0;
	padding: 0 5px;
	position: absolute;
	bottom: 6px;
	right: 20px;
	z-index: 3;
}

#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: 2px solid var(--primary-background);
	padding-left: 5px;
	box-shadow: none;
	border-radius: 0;
	letter-spacing: 0.5px;
	color: var(--primary-color);
}

.form-control::-webkit-input-placeholder {
	color: var(--quaternary-color);
}

.form-control::-moz-placeholder {
	color: var(--quaternary-color);
}

.form-control:-ms-placeholder {
	color: var(--quaternary-color);
}

.input-group-addon {
	background-color: var(--white);
	border: 2px solid var(--primary-background);
	color: var(--quaternary-color);
}

.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: var(--white);
	filter: none;
	border-radius: inherit;
	transition: all 0.5s ease;
}

.btn-primary {
	background-color: var(--tertiary-color);
	background-image: var(--linear-gradient);
	border-color: var(--linear-gradient);
	border-style: solid;
	border-width: 1px;
	border-color: var(--tertiary-color);
	color: var(--white);
	line-height: 16px;
	font-size: 14px;
	font-weight: 600;
	padding: 15px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-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: var(--tertiary-color);
	color: var(--white);
	background: var(--tertiary-color);
	outline: none;
}

.btn-default {
	border-color: var(--gray-light);
	border-style: solid;
	border-width: 1px;
	color: var(--black);
	line-height: 16px;
	font-size: 14px;
	font-weight: 600;
	padding: 16px;
}

.btn-light {
	background: transparent;
	border-color: var(--tertiary-color);
	border-style: solid;
	border-width: 1px;
	color: var(--tertiary-color);
	line-height: 16px;
	font-size: 14px;
	font-weight: 600;
	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: var(--black);
	color: var(--white);
	background: var(--black);
}

.btn-light:hover, .btn-light:focus, .btn-light:active, .btn-light.active, .dropdown-toggle.btn-light {
	background-position: inherit;
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: transparent;
}

.btn-gradient {
	border-color: var(--tertiary-color);
	border-style: solid;
	border-width: 1px;
	color: var(--white);
	line-height: 16px;
	font-size: 14px;
	font-weight: 600;
	padding: 16px;
	border-radius: 5px;
	background-color: var(--tertiary-color);
	background-image: var(--linear-gradient);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.btn-gradient:hover, .btn-gradient:focus, .btn-gradient:active, .btn-gradient.active, .dropdown-toggle.btn-gradient {
	background-position: inherit;
	border-color: var(--tertiary-color);
	color: var(--white);
	background: var(--tertiary-color);
}

.btn-secondary {
	border-color: var(--quaternary-color);
	border-style: solid;
	border-width: 1px;
	color: var(--primary-color);
	line-height: 16px;
	font-size: 14px;
	font-weight: 600;
	padding: 16px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	-ms-border-radius: 11px;
	-o-border-radius: 11px;
}

.btn-secondary-light {
	background: transparent;
	border-color: var(--gray-medium);
	border-style: solid;
	border-width: 1px;
	color: var(--gray-medium);
	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: var(--gray-extra-light);
	color: var(--primary-color);
	background: var(--white);
}

.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: var(--secondary-color);
	color: var(--secondary-color);
	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: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}

.btn-lg {
	font-size: 16px;
	padding: 35px 15px;
	text-transform: uppercase;
	border-radius: 11px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	-ms-border-radius: 11px;
	-o-border-radius: 11px;
	letter-spacing: 0.7px;
}

/* end Buttons */

/* tooltip */

.tooltip.top .tooltip-arrow {
	border-top-color: var(--secondary-background);
	border-width: 8px 8px 0;
	bottom: -4px;
}

.tooltip-inner {
	background: var(--secondary-background);
	color: var(--tertiary-color);
	font-size: 12px;
	text-align: left;
	padding: 10px;
	box-shadow: 1px 1px 4px var(--gray-medium);
	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 var(--gray-light);
	padding-top: 15px;
	padding-bottom: 15px;
	font-family: var(--font-family) !important;
}

body .cookies-box a {
	color: var(--gray-extra-dark)!important;
	font-family: var(--font-family) !important;
}

body .cookies-box>p {
	padding: 0 10px 0px !important;
	color: var(--gray-extra-dark) !important;
	font-size: 12px !important;
	margin: 0 !important;
	text-align: left !important;
}

body .cookies-box>p a {
	color: var(--gray-extra-dark) !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: var(--font-family)!important;
}

body .cookies-box .box-button {
	float: right;
	font-family: var(--font-family)!important;
	width: 270px;
}

body .cookies-box .btn.cookies-close {
	color: var(--white)!important;
	border: solid 1px var(--gray-light);
	background: var(--white);
	border-radius: 0;
	color: var(--gray-extra-dark)!important;
	text-transform: uppercase;
	font-size: 12px!important;
	letter-spacing: 1px!important;
	font-weight: bold!important;
}

body .cookies-close {
	background-color: var(--white);
	color: var(--gray-extra-dark);
	border: solid 1px var(--gray-light);
}

.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;
}

.banner-full > div  .slide-container.nolink {
 cursor: default;
}
.banner-full > div  .slide-container.nolink:hover img{
	opacity: 1;
}

nav .lang-selector {
	display: none;
}



/******* AREA DOWNLOAD CATALOGHI ************/

.pagina-cataloghi .product-thumb .square-container, .pagina-cataloghi .product-thumb .square-container img {
	border-radius: 0;
}

.pagina-cataloghi .product-thumb .square-container {
	padding-bottom: 142%;
}
.pagina-cataloghi .product-info .badge-season.badge-up {
	position: static;
	width: 100%;
	margin: 0;
	padding: 0;
	transform: none;
	border-radius: 0;
	background: transparent;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gray-medium);
}
.pagina-cataloghi .product-info {
	padding: 10px 0;
	min-height: 140px;
}
.pagina-cataloghi .product-info .product-title {
	color: var(--tertiary-color);
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 28px;
	margin: 2px 0 15px 0;
}
.pagina-cataloghi .product-info a.product-link {
	position: static;
	display: inline-block;
	font-weight: 500;
	margin: 0 0 5px 0;
	transform: none;
	position: relative;
	left: auto;
}

.row-interesse {
	position: relative;
}

.row-interesse label.error {
	display: block;
	position: absolute;
	width: 360px;
	float: none;
	top: -25px;
	left: -10px;
	max-width: none;
	color: var(--red);
	font-weight: normal;
	text-transform: capitalize;
	right: auto;
	margin: 0;
}