/* RESET css */
html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
/*body {
	overflow-x: hidden;
}*/
html {
	overflow: overlay;
}
ol, ul, li {
	list-style: none;
}
* {
	box-sizing: border-box;
	text-decoration: none;
	outline: none !important;
	margin: 0;
	line-height: 1em;
}
*:focus {
	outline: none !important;
}
a:focus, li:focus, ul:focus {
	outline: none;
}
::selection {
	background: rgba(91, 102, 112, 1);
	color: #fff;
}
::-moz-selection {
	background: rgba(91, 102, 112, 1);
	color: #fff;
}
img::selection {
	background: transparent;
}
img::-moz-selection {
	background: transparent;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: white;
}
::-webkit-scrollbar-thumb {
	background: rgba(91, 102, 112, 1);
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(91, 102, 112, 1);
}
body {
	background-color: #fff;
	font-family: 'Work Sans', sans-serif;
	color: #4d4d4d;
	line-height: 1.1em;
}
/* colors */
.red {
	color: #e30521
}
.ottanio {
	color: #41b7b1
}
.dark-grey {
	color: #4d4d4d
}
.bg__dark-grey {
	background-color: #4D4D4D
}
.bg__light-grey {
	background-color: #f5f5f5
}
/* TIPOGRAFIA */
.regular {
	font-weight: 400;
}
.sb {
	font-weight: 600;
}
.bold {
	font-weight: 700;
}
.black {
	font-weight: 900;
}
.f--14 {
	font-size: 14px;
}
h1 {
	font-size: 7vw;
}
h2 {
	font-size: 3vw;
}
h3 {
	font-size: 2vw;
}
p {
	line-height: 1.6em;
	font-size: 21px;
}
a.link, a.link:focus, a.link:visited {
	color: #4D4D4D;
}
a.link {
	font-weight: 700;
	display: inline-block;
	position: relative;
	cursor: pointer;
	font-size: 21px;
}
a.link::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(1);
	height: 2px;
	bottom: -2px;
	border-radius: 50px;
	left: 0;
	background-color: #41B7B1;
	opacity: 1;
	transform-origin: bottom right;
	transition: all 0.25s ease-out;
}
a.link:hover::after {
	transform: scaleX(0);
}
.mt--50 {
	margin-top: 50px;
}
/* HEADER */
header, .header__home {
	height: 100px;
	width: 100%;
	display: flex;
	padding: 0 50px;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 1000;
	pointer-events: none;
	/* background-color: #fff; */
}
.logo {
	background-image: url("../images/logo.svg");
	height: 40px;
	width: 150px;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: all;
	cursor: pointer;
}
nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	width: 100%;
}
.nav__item {
	height: 25px;
	width: 25px;
	margin-left: 40px;
	pointer-events: all;
}
.nav__item--acquista {
	border: 2px solid #4D4D4D;
	border-radius: 50px;
	width: 80px;
	color: #4D4D4D;
	line-height: 24px;
	font-size: 10px;
	z-index: 1;
	overflow: hidden;
	position: relative;
	text-align: center;
	background-color: #fff;
}
.nav__item--acquista::before {
	content: '';
	width: 105%;
	height: 105%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #4D4D4D;
	transition: all .3s ease-out;
	z-index: -1;
	transform-origin: center;
	transform: scaleX(0);
	opacity: 0;
}
.nav__item--acquista:hover::before {
	transform: scaleX(1);
	opacity: 1;
}
.nav__item--acquista:hover {
	color: #fff;
}
.nav__item--profile {
	background-image: url(../images/profile.svg);
	background-size: contain;
	background-repeat: no-repeat;
	transition: all .3s ease-out;
}
/* BAG */
.overlay__closebag {
	height: 100vh;
	width: 100%;
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: all;
}
.nav__item--icon {
	color: #fff;
	text-align: center;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-weight: 700;
	height: 25px;
	width: 25px;
}
.nav__item--icon::before {
	content: "";
	border-radius: 50%;
	background-color: #4D4D4D;
	transform: scale(1);
	transition: all 0.4s ease-out;
	position: absolute;
	left: 0;
	z-index: -1;
	top: 0;
	width: 100%;
	height: 100%;
}
.nav__item--icon:hover::before {
	transform: scale(1.3);
}
.bag {
	position: fixed;
	right: -120%;
	top: 0;
	width: 40%;
	height: 100vh;
	padding-right: 50px;
	background-color: #f5f5f5;
	z-index: 11;
	display: flex;
	flex-direction: column;
	pointer-events: all;
}
.bag__close {
	height: 10vh;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 50px;
}
.bag__close--icon {
	height: 25px;
	width: 25px;
	display: flex;
	position: relative;
	cursor: pointer;
	pointer-events: all;
	transition: all .3s ease;
}
.bag__close--icon:hover {
	transform: scale(1.2) rotate(180deg);
}
.close__line {
	background-color: #4D4D4D;
	height: 2px;
	width: 100%;
	left: 0;
	position: absolute;
}
.close__line1 {
	transform: translateY(12.5px) translateY(-50%) rotate(-45deg);
}
.close__line2 {
	transform: translateY(-12.5px) translateY(50%) rotate(45deg);
	bottom: 0;
}
.bag__items--container {
	position: absolute;
	top: 10vh;
	overflow-y: scroll;
	height: 70vh;
	width: 100%;
	padding: 0 50px;
}
.bag__items {
	display: flex;
	height: auto;
	width: 100%;
	padding: 6% 0;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: 1px solid rgba(91, 102, 112, 0.5);
}
.bag__item {
	overflow: hidden;
}
.bag__item--image {
	width: 10vw;
	height: 10vw;
	background-image: url("../images/bag-memo.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left;
	overflow: hidden;
	background-color: #4D4D4D;
}
.bag__item--description {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}
.bag__item--element {
	display: flex;
	justify-content: space-between;
}
.bag__item--name {
	font-size: 1.5em;
}
.meno, .piu {
	cursor: pointer;
}
.bag__item--price {
	font-size: 1.5em;
	overflow: hidden;
	text-align: right;
}
.price--old {
	text-decoration: line-through;
	font-size: 16px;
	color: rgba(91, 102, 112, .5);
}
.total--price {
	font-size: 1.6em;
}
.bag__item--quantity {
	overflow: hidden;
	user-select: none;
}
.bag__quantity-price {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-direction: column;
	width: 100%;
}
.bag__item--remove {
	overflow: hidden;
	text-align: right;
}
.bag__total {
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: absolute;
	flex-direction: row;
	bottom: 0;
	padding: 20px 50px;
	background-color: #f5f5f5;
	height: auto;
	width: 100%;
}
.bag__total--price {
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 9vh;
}
.bag__azioni {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	width: 90%;
}
.btn.btn--prosegui {
	margin-top: 0%;
}
.back--shopping {
	width: 50%;
	opacity: 0;
	visibility: hidden;
	margin-top: 5%;
}
.btn--pagamento {
	opacity: 0;
	visibility: hidden;
}
/* CART */
.breadcrumbs {
	margin-bottom: 2%;
}
.cart {
	width: 60%;
	position: fixed;
	right: -120%;
	height: 100vh;
	top: 0;
	pointer-events: all;
	z-index: 10;
}
.cart__container {
	min-height: 100vh;
	padding-top: 100px;
	padding: 50px 50px 0 50px;
	background-color: #fff;
	overflow-y: auto;
	overflow-x: hidden;
}
.active {
	font-weight: 700;
}
.payment__container {
	opacity: 0;
	visibility: hidden;
	display: none;
	transform: translateX(5%);
}
.riepilogo__container {
	opacity: 0;
	visibility: hidden;
	display: none;
	transform: translateX(5%);
}
.powered-by-stripe {
	height: 40px;
	width: auto;
	display: block;
	margin-bottom: 2%;
}
.payment__container .label {
	margin-bottom: 5%;
}
.fatturazione__container {
	opacity: 0;
	visibility: hidden;
	transform: translateX(5%);
	display: none;
}
.label .link {
	font-size: inherit;
}
.select-form {
	display: flex;
	justify-content: space-between;
	width: 90%;
}
.select-form select, .form__nome div select {
	width: 100%;
	font-size: 16px;
	color: rgba(91, 102, 112, 0.5);
	border-bottom: 1px solid rgba(91, 102, 112, 0.3);
}
.select-form div {
	width: 48%;
}
.select-form p, .form__nome div p {
	font-size: 12px;
}
.form {
	width: 90%;
	position: relative;
	height: 60px;
	overflow: hidden;
	margin-bottom: 1%;
}
.form input {
	width: 100%;
	height: 100%;
	color: #4D4D4D;
	padding-top: 20px;
	border: none;
	outline: none;
	font-size: 18px;
	text-align: left;
}
.form input[valueText=""] {
	width: 100%;
	height: 100%;
	color: #4D4D4D;
	padding-top: 20px;
	border: none;
	outline: none;
	font-size: 18px;
	text-align: left;
}
.form label {
	position: absolute;
	bottom: 0;
	left: 0%;
	width: 100%;
	height: 100%;
	pointer-events: none;
	border-bottom: 1px solid rgba(91, 102, 112, 0.3);
}
.form label::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	border-bottom: 2px solid #4D4D4D;
	left: 0px;
	bottom: -1px;
	transform: translateX(-100%);
	transition: all .3s ease;
}
.content-name {
	position: absolute;
	bottom: 10px;
	left: 0;
	transition: all 0.3s ease;
	color: rgba(91, 102, 112, 0.5);
	font-weight: 400;
}
.form input:focus + .label-name .content-name, .form input:valid + .label-name .content-name, .form input[valueText=""]:focus + .label-name .content-name {
	transform: translateY(-200%);
	font-size: 12px;
	color: #4D4D4D;
}
.form input:focus + .label-name::after, .form input[valueText=""]:focus + .label-name::after {
	transform: translateX(0%);
}
.form__nome {
	display: flex;
	justify-content: space-between;
	width: 90%;
}
.form__nome .form, .form__nome div {
	width: 48%;
}
.form__nome select {
	width: 100%;
}
.form__indirizzo {
	display: flex;
	justify-content: space-between;
	width: 90%;
}
.form__indirizzo .form {
	width: 30%;
}
.informazioni__checkbox {
	margin: 5% 0 0 0;
}
.informazioni__checkbox .checkmark {
	top: 3px;
}
cart-billing-address-form .checkmark {
	top: 3px;
}
.checkmark--radio {
	top: 4px !important;
}
.riepilogo__content {
	display: flex;
	width: 90%;
	height: auto;
	flex-direction: row;
}
.riepilogo__dati {
	width: 50%;
}
.paypal-button-container {
	max-width: 90%;
}
#paypal-button-container {
	overflow-y: scroll!important;
	height: 50vh!important;
}
.form__container--metodo-pagamento {
	display: flex;
	margin-bottom: 5%;
	flex-direction: row;
}
.form__container--metodo-pagamento .label {
	margin-right: 5%;
}
/******* LOADER *******/
.loader__container {
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	position: fixed;
	background-color: rgba(255, 255, 255, .5);
	z-index: 99999;
}
.loader__container.active {
	display: flex;
}
.sk-chase {
	width: 40px;
	height: 40px;
	position: relative;
	animation: sk-chase 2.5s infinite linear both;
}
.sk-chase-dot {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	animation: sk-chase-dot 2.0s infinite ease-in-out both;
}
.sk-chase-dot:before {
	content: '';
	display: block;
	width: 25%;
	height: 25%;
	background-color: #4D4D4D;
	border-radius: 100%;
	animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}
.sk-chase-dot:nth-child(1) {
	animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2) {
	animation-delay: -1.0s;
}
.sk-chase-dot:nth-child(3) {
	animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4) {
	animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5) {
	animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6) {
	animation-delay: -0.6s;
}
.sk-chase-dot:nth-child(1):before {
	animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2):before {
	animation-delay: -1.0s;
}
.sk-chase-dot:nth-child(3):before {
	animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4):before {
	animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5):before {
	animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6):before {
	animation-delay: -0.6s;
}
@keyframes sk-chase {
	100% {
		transform: rotate(360deg);
	}
}
@keyframes sk-chase-dot {
	80%, 100% {
		transform: rotate(360deg);
	}
}
@keyframes sk-chase-dot-before {
	50% {
		transform: scale(0.4);
	}
	100%, 0% {
		transform: scale(1.0);
	}
}
/****** ASSENZA DI ARTICOLI NEL CARRELLO *****/
.popup__overlay {
	height: 100vh;
	width: 100%;
	background-color: rgba(91, 102, 112, .5);
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	pointer-events: all;
	justify-content: center;
	align-items: center;
}
.popup {
	width: 30%;
	height: auto;
	background-color: #f5f5f5;
	padding: 50px;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	box-shadow: 2px 2px 27px 2px rgba(91, 102, 112, .5);
	position: fixed;
	z-index: 1000;
	pointer-events: all;
	opacity: 0;
	visibility: hidden;
}
.scopripromo__overlay {
	z-index: 99999;
}
.scopripromo__popup {
	z-index: 100000;
	width: 50%;
}
.scopripromo__popup img, .scopripromo__popup h2, .scopripromo__popup p, .scopripromo__popup .label {
	margin-bottom: 20px;
}
.scopripromo__popup img {
	height: 50px;
}
.scopripromo__popup p {
	width: 100%;
}
/* MENU */
.nav__item--menu {
	position: relative;
	height: 18px;
	z-index: 2;
	transition: all .3s ease;
}
.menu-line {
	background-color: #4D4D4D;
	height: 2px;
	width: 100%;
	left: 0;
	transition: all .3s ease-out;
	position: absolute;
	border-right: 50px;
	z-index: 2;
}
.menu-line-2 {
	top: 0;
	bottom: 0;
	margin: auto;
	margin-left: 0%;
	width: 100%;
}
.nav__item--menu:hover .menu-line-2 {
	width: 70%;
	margin-left: 30%;
}
.menu-line-3 {
	bottom: 0;
}
.nav__item--menu.active:hover {
	transform: scale(1.2) rotate(180deg);
}
.nav__item--menu.active .menu-line-1 {
	transform: translateY(9px) translateY(-50%) rotate(-45deg);
	background-color: #fff;
}
.nav__item--menu.active .menu-line-2 {
	opacity: 0
}
.nav__item--menu.active .menu-line-3 {
	transform: translateY(-9px) translateY(50%) rotate(45deg);
	margin-left: 0;
	width: 100%;
	background-color: #fff;
}
.overlay {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: absolute;
	top: 0;
	left: 150%;
	background-color: #4D4D4D;
	pointer-events: all;
	z-index: 1;
}
.menu__items {
	width: 60%;
	height: 75%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.menu__items a {
	font-weight: 700;
	color: #fff;
	font-size: 3vw;
	cursor: pointer;
	position: relative;
	display: inline-block;
}
.menu__item {
	overflow: hidden;
}
.menu__item--links {
	height: 10%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.menu__item--credits {
	width: 40%;
	display: flex;
	justify-content: space-between;
}
a.link__menu, a.link__menu:focus, a.link__menu:visited {
	color: #fff;
}
a.link__menu::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 6px;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	bottom: 0px;
	left: 0;
	background-color: #fff;
	opacity: 1;
	transform-origin: bottom left;
	transition: all 0.25s ease-out;
}
a.link__menu:hover::after {
	transform: scaleX(1);
}
/* HOMEPAGE REGISTRAZIONE */
.home nav, .home footer, .reset-password nav {
	display: none;
}
.main {
	height: 100vh;
	background-image: url("../images/homepage-img.png");
	background-size: cover;
	padding-left: 50px;
	padding-right: 50px;
	display: flex;
	align-items: center;
}
.homepage__main {
	justify-content: center;
}
.main__claim {
	width: 40%;
	margin-right: 10%;
}
.main__claim h1 {
	margin-bottom: 30px;
	line-height: 0.9em;
}
.main__container {
	width: 30%;
	padding: 50px;
	background-color: #fff;
	display: flex;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}
.main__container h2 {
	font-size: 30px;
	margin-bottom: 30px;
	text-align: center;
}
.main__container p {
	text-align: center;
}
.main__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all .2s ease;
	padding: 0 30px;
}
.main__container .login-img {
	width: 80%;
	background-image: url("../images/comfort.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 60px;
	margin-bottom: 20px;
}
home {
	display: block;
	height: auto;
	/*padding-bottom: 3%;*/
}
login-form {
	width: 100%;
}
.registrazione__input {
	width: 60%;
	min-width: 250px;
	height: 40px;
	border: 1px solid rgba(91, 102, 112, 0.5);
	border-radius: 50px;
	margin: 6px 0;
	transition: all .3s ease;
	position: relative;
}
.registrazione__input:focus {
	border: 2px solid #4D4D4D;
}
input {
	font-weight: 400;
	color: #4D4D4D;
	font-size: 16px;
	text-align: center;
}
::-webkit-input-placeholder {
	color: rgba(91, 102, 112, 0.5);
}
:-ms-input-placeholder {
	color: rgba(91, 102, 112, 0.5);
}
::placeholder {
	color: rgba(91, 102, 112, 0.5);
}
.btn {
	user-select: none;
	background-color: #41B7B1;
	border: 2px solid #41B7B1;
	border-radius: 50px;
	color: #FFFFFF;
	font-size: 16px;
	transition: all .3s ease;
	z-index: 1;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	display: inline-block;
	padding: 16px 32px 13px 32px;
	text-decoration: none;
	min-width: 180px;
	text-align: center;
	pointer-events: all;
	outline: none;
}
.btn::before {
	content: '';
	width: 105%;
	height: 105%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	transition: all .3s ease-out;
	z-index: -1;
	transform-origin: center;
	transform: scaleX(0);
	opacity: 0;
	outline: none;
}
.btn:hover::before {
	transform: scaleX(1);
	opacity: 1;
	outline: none;
}
.btn:hover {
	color: #41B7B1;
	outline: none;
}
.checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	font-size: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
}
.checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 12px;
	left: 5px;
	height: 20px;
	width: 20px;
	background-color: #fff;
	border-radius: 50px;
	border: 2px solid #41B7B1;
	transition: all .3s ease;
	cursor: pointer;
}
.checkbox input:checked ~ .checkmark {
	background-color: #41B7B1;
}
.checkbox input:checked ~ .checkmark:after {
	display: block;
}
.accedi {
	display: none;
}
@-webkit-keyframes line {
	from {
		height: 0px;
	}
	to {
		height: 72px;
	}
}
@keyframes line {
	from {
		height: 0px;
	}
	to {
		height: 72px;
	}
}
/* SECTION HOMEPAGE */
section {
	padding: 100px 50px;
	width: 100%;
	height: auto;
	position: relative;
}
.homepage__section {
	display: flex;
	justify-content: flex-start;
	gap: 10%;
	padding-bottom: 0;
}
.section__img, .img__presidio {
	width: 30vw;
	height: 30vw;
	background-repeat: no-repeat;
	position: relative;
}
.section__img {
	background-size: cover;
	object-fit: cover;
}
.img__presidio {
	background-size: contain;
	object-fit: contain;
}
.section__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.video .indent {
	transform: translateX(10%);
}
.anchor__link {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section__card {
	width: 100%;
	padding: 0 10%;
}
.container__cards {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 10vh;
}
.card {
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
}
.card::before {
	content: '';
	border-radius: 50%;
	background-color: rgba(65, 183, 177, 0.4);
	height: 150px;
	width: 150px;
	position: absolute;
	left: -75px;
	top: -75px;
	z-index: -1;
}
.section__text--p {
	width: 60%;
	margin-top: 5vh;
}
.fullwidth__img {
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.fullwidth__img--1 {
	background-image: url("../images/bed.jpg");
	height: 70vh;
	min-height: 500px;
}
.fullwidth__img--2 {
	background-image: url("../images/closeup.png");
	height: 40vh;
	margin: 10% 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 300px;
	position: relative;
	padding: 0 50px;
}
.certificazioni__aletto {
	position: absolute;
	display: flex;
	align-items: center;
	bottom: -70px;
	height: 140px;
	width: 40%;
	left: 50%;
	transform: translateX(-50%);
}
.certificato {
	background-size: contain;
	height: 100%;
	width: 33%;
	background-repeat: no-repeat;
}
.certificato__eco-friendly {
	background-image: url("../images/certificati_eco-friendly.png");
	background-position: left;
}
.certificato__lavorato-a-mano {
	background-image: url("../images/certificati_italy.png");
	background-position: right;
}
.certificato__dispositivo-medico {
	background-image: url("../images/certificati_presidio.svg");
	background-position: center;
}
/******* ABOUT PAGE ******/
.about__main .main__claim {
	width: 80%;
	margin-left: 10%;
}
/******** SOLUZIONI ALETTO ********/
.soluzioni__main {
	height: 100vh;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.soluzioni__main--grey {
	height: 85%;
	width: 85%;
	z-index: -2;
	background-color: #F5F5F5;
	position: absolute;
	bottom: 0;
}
.soluzioni {
	display: flex;
	position: absolute;
	top: 15vh;
	width: 100%;
	flex-direction: column;
	z-index: -1;
}
.soluzioni__lattice {
	font-size: 9vw;
	color: rgba(204, 169, 138, .25);
	transition: all .3s ease;
}
.soluzioni__memory {
	font-size: 9vw;
	line-height: .5;
	color: rgba(138, 159, 176, .25);
	text-align: right;
	transition: all .3s ease;
}
.soluzioni__main--image {
	height: 200px;
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: -1;
	background-color: #EDEDED;
}
.soluzioni__content {
	height: 60%;
	width: 100%;
	padding: 0 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.soluzioni__option {
	width: 45%;
	height: 50%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.soluzioni__option--memo p {
	text-align: right;
}
.bollo-sconto {
	height: 100px;
	width: 100px;
	position: absolute;
	left: 10%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bollo-sconto h3 {
	color: #fff;
}
.bollo-sconto-fiordilattice, .discount__details-fiordilattice {
	background-image: url("../images/scontoazienda-lattice.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.bollo-sconto-memo, .discount__details-memo {
	background-image: url("../images/scontoazienda-memory.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.sconto {
	display: block;
	font-size: 2em;
	font-weight: 700;
	line-height: 2em;
}
.packaging__fiordilattice {
	background-image: url("../images/fiordilattice-packaging.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 45%;
	transition: all .5s ease;
	transform: scale(1.2);
}
.packaging__memo {
	background-image: url("../images/memo-packaging.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 45%;
	transition: all .5s ease;
	transform: scale(1.2);
}
.btn__fiordilattice {
	background-color: #CCA98A;
	border-color: #CCA98A;
}
.btn__fiordilattice:hover {
	color: #CCA98A;
}
.btn__memo:hover {
	color: #8A9FB0;
}
.btn__memo {
	background-color: #8A9FB0;
	border-color: #8A9FB0;
}
/******** CATALOGO *******/
products-list {
	width: 50%;
}
.catalogo__img {
	width: 100%;
}
.catalogo__main {
	height: auto;
	padding-top: 100px;
}
.catalogo__container {
	width: 100%;
	height: 100%;
	position: relative;
	margin-top: 100px;
	padding: 0 50px;
	display: flex;
}
.catalogo__container h3 {
	display: none;
}
.catalogo__title {
	margin-bottom: 5%;
}
.catalogo__prodotti {
	flex-direction: column;
	padding: 0 !important;
}
.catalogo__materassi {
	display: flex;
	width: 100%;
	justify-content: center;
}
.catalogo__title--fiordilattice {
	color: #cca98a;
}
.catalogo__title--memo {
	color: #8a9fb0;
}
.catalogo__item--quantity {
	user-select: none;
}
.catalogo__item--price {
	font-size: 1.5em;
}
.catalogo__add {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
}
.prodotti__img {
	position: relative;
}
.discount {
	position: absolute;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	right: 0px;
	top: 0px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	font-size: 1.2em;
	color: #41B7B1;
}
.discount--fiordilattice {
	background-color: #fff;
}
.materassi__acquisto {
	width: 55%;
	height: auto;
	line-height: 2em;
}
.catalogo__dettagli {
	display: flex;
	align-items: center;
	margin-bottom: 10%;
}
.catalogo__cassa {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: auto;
	position: relative;
	right: 50px;
	pointer-events: none;
}
select {
	outline: 0;
	box-shadow: none;
	border-bottom: 1px solid rgba(91, 102, 112, 0.5);
	border-top: 0;
	border-right: 0;
	border-left: 0;
	color: #4D4D4D;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background-image: url("../images/select.svg");
	background-size: 1.5em;
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-color: transparent;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	display: flex;
	width: 90%;
	height: 40px;
	line-height: 2;
	border-radius: 0;
	margin: 0 0 5% 0;
	cursor: pointer;
	font-size: 16px;
}
select::-ms-expand {
	display: none;
}
/***** AREA RISERVATA *****/
.area-riservata__main {
	min-height: 80vh;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin-top: 150px;
}
.area-riservata__menu {
	background-color: #f5f5f5;
	height: calc(100vh - 150px);
	width: 30%;
	position: fixed;
	left: 0;
	padding: 2% 50px 0 10%;
}
h3 {
	margin-bottom: 3%;
}
.area-riservata__content {
	padding: 2% 5% 0 5%;
	height: auto;
	width: 70%;
}
.area-riservata__menu p {
	font-size: 700;
	font-size: 1.2em;
	color: #4D4D4D;
	margin-top: 5%;
}
.label {
	color: rgba(91, 102, 112, 1);
	font-weight: 400;
	font-size: 12px;
	margin-top: 2%;
}
.azioni {
	margin-top: 2%;
}
.tracciamento {
	background-color: gainsboro;
	width: 100%;
	height: 60px;
	margin: 2% 0;
	padding: 1% 0;
}
textarea {
	margin-top: 1%;
	width: 90%;
	color: #4D4D4D;
	font-weight: 400;
	font-size: 1em;
	border: 1px solid rgba(91, 102, 112, .5);
	height: 150px;
	overflow: auto;
	resize: none;
}
textarea:focus {
	border: 2px solid #4D4D4D;
}
.storico__label--container {
	display: flex;
	width: 90%;
}
.storico__label {
	width: 20%;
}
.accordion {
	border-bottom: 1px solid rgba(91, 102, 112, .5);
	color: #4D4D4D;
	-webkit-appearance: media-slider;
	-moz-appearance: scalethumb-horizontal;
	padding: 2% 0;
	width: 90%;
	text-align: left;
	position: relative;
	outline: none;
	font-size: 1em;
	transition: all 0.4s ease;
	display: flex;
	background-color: white;
}
.panel {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	display: flex;
	width: 90%;
	transition: max-height 0.2s ease-out;
	border: 1px solid rgba(91, 102, 112, .5);
}
.storico__item {
	width: 50%;
	height: auto;
	display: flex;
	justify-content: space-between;
	padding: 1%;
	float: left;
}
.storico__item h3 {
	font-size: 1.2em;
}
.storico__item p {
	font-size: .8em;
}
.storico__item .bag__item--description {
	width: 80%;
}
.storico__item .prodotti__img {
	width: 4vw;
	height: 4vw;
}
/**** FIORDILATTICE ******/
.fiordilattice__main {
	margin-top: 150px;
	width: 100%;
	height: 100vh;
	padding: 0 50px;
	position: relative;
}
.dow__main {
	margin-top: 150px;
	width: 100%;
	;
	padding: 0 50px;
}
.discount__details {
	height: 10vw;
	width: 10vw;
	display: flex;
	align-items: center;
	justify-content: center;
}
.discount__details h3 {
	color: #fff;
}
.title__container {
	padding-left: 10%;
}
.title__container {
	padding-left: 10%;
}
.dow__text {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 5% 30px 10%;
	gap: 10%;
	background-image: url("../images/homepage-img.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.washable-label {
	margin: 20px 0;
	padding: 10px 35px;
	background: #41b7b1;
	border-radius: 50px;
}
.washable-label img {
	height: 40px;
}
.dow__hero--text {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50%;
}
.dow__hero--text h2 {
	margin: 20px 0;
}
.dow__p {
	font-size: 1.2em;
	margin-bottom: 2%;
}
.dow__text .btn {
	margin-top: 3%;
}
.hero-comfort {
	width: 80%;
}
.logo-azienda {
	height: 30px;
	margin: 0 5px;
}
.azienda20 {
	height: 30px;
	margin: 20px 0 5px 0;
}
.soluzioni__option--text {
	display: flex;
	flex-direction: column;
}
.soluzioni__option--memo .soluzioni__option--text {
	align-items: flex-end;
}
.soluzioni__option--text p {
	margin-bottom: 10%;
}
.soluzioni__option--fiordilattice .soluzioni__option--text .btn__memo {
	display: none;
}
.dow__main--img {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.dow__main--img img {
	width: 100%;
}
.grey {
	background-color: #F5F5F5;
	width: 100%;
	padding: 5% 10%;
}
.prodotto__caratteristiche {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-bottom: 2%;
	align-items: center;
	gap: 10%;
}
.prodotto__caratteristiche--p {
	width: 40%;
	margin-top: 5vh;
	margin-left: 20%;
	margin-bottom: 4%;
}
.prodotto__dettaglio--text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 50px;
}
.prodotto__dettaglio--text p {
	font-size: 1.2em;
}
.prodotto__dettaglio--img img {
	width: 100%;
}
.icons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}
.icon-image {
	margin-right: 5%;
}
.icon-prodotto {
	height: auto;
	width: 100px;
}
.icons__caratteristiche {
	margin: 10% 0;
	display: flex;
	align-items: center;
	height: auto;
}
.icon-caratteristiche {
	height: 70px;
	width: 70px;
}
.sconto-icon {
	margin-left: 20%;
	width: 60%;
}
.certificazione--materiale {
	height: 100px;
	width: 100px;
	position: absolute;
	right: -50px;
	top: 50%;
	transform: translateY(-50%);
	background-size: contain;
	background-repeat: no-repeat;
}
.bullet-point {
	position: absolute;
	color: #fff;
	left: 2%;
	font-size: 12vw;
}
.catalogo .container__store {
	right: 0;
	margin-top: 0;
}
.catalogo .catalogo__materassi {
	gap: 50px;
}
.container__store {
	display: flex;
	justify-content: flex-end;
	margin-top: -100px;
	position: relative;
	z-index: 1;
	right: 5%;
}
.store__prodotto {
	width: 100%;
}
.store__prodotto--content {
	padding: 5%;
}
.store__prodotto--img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	margin-bottom: 5%;
}
.store__prodotto select {
	width: 100%;
}
.store__prodotto h2 {
	display: none;
}
.store__prodotto h3 {
	text-align: center;
}
.store__prodotto .catalogo__materassi {
	background-color: #fff;
	width: 40%;
	padding: 30px;
	flex-direction: column;
	min-width: 300px;
	box-shadow: 10px 10px 51px 10px rgba(0, 0, 0, 0.3);
	border-radius: 30px;
}
.store__prodotto .catalogo__materassi .prodotti__img {
	width: 100%;
	object-fit: contain;
	height: 250px;
	margin-bottom: 20px;
}
.store__prodotto .catalogo__materassi .prodotti__img img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}
.store__prodotto .catalogo__dettagli {
	display: none;
}
.store__prodotto .catalogo__prodotti {
	flex-direction: row;
}
.store__prodotto .materassi__acquisto {
	width: 100%;
}
.store__prodotto .catalogo__add {
	display: block;
}
/********************************
******** PAGINE ACCESSORIE *******
*********************************/
/******** CONDIZIONI DI VENDITA ********/
cookie-policy, privacy-policy, condizioni-vendita {
	height: auto;
	padding: 0 50px;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.iub_content {
	width: 70%;
	margin-top: 200px;
	height: auto;
	padding-left: 10%;
}
privacy-policy .iub_content h1, cookie-policy .iub_content h2, condizioni-vendita .iub_content h2 {
	font-size: 2.4vw;
	margin: 5% 0;
}
privacy-policy .iub_content h2 {
	font-size: 2.1vw;
	margin: 5% 0;
	line-height: 1.2em;
}
.iub_content h3 {
	font-size: 1.8vw;
	margin: 3% 0;
}
.iub_content ul li {
	line-height: 1.6em;
	font-size: 18px;
	color: #4D4D4D;
	font-family: 'Work Sans', sans-serif;
}
.iub_content h4 {
	font-size: 1.5vw;
	color: #4D4D4D;
	font-family: 'Work Sans', sans-serif;
	margin: 2% 0;
}
.iub_content a {
	color: #4D4D4D;
	font-family: 'Work Sans', sans-serif;
	border-bottom: 2px solid #4D4D4D;
}
.iub_content #wbars p {
	font-family: 'Work Sans', sans-serif !important;
	color: #4D4D4D;
}
.iub_footer {
	display: none;
}
/******** FOOTER *******/
footer {
	width: 100%;
	margin-top: 100px;
	padding: 50px;
	background-color: #4D4D4D;
}
.footer {
	width: 100%;
	min-height: 240px;
	padding-right: 50px;
	display: flex;
	justify-content: space-around;
	height: 45vh;
	flex-direction: column;
}
.footer__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 30%;
}
.footer__head div {
	width: 50%;
}
.footer__pagamenti img {
	margin-right: 4%;
}
.footer__pagamenti {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 25%;
	padding: 5% 0;
}
.footer__pagamenti div {
	width: 50%;
}
.footer__menu {
	padding: 0 0 5% 0;
	width: 100%;
	justify-content: flex-end;
	display: flex;
}
.footer__menu ul {
	display: flex;
	padding-left: 0;
	width: 50%;
	gap: 20px;
	flex-direction: column;
	justify-content: space-between;
}
.footer p, .footer li {
	color: #fff;
	font-weight: 400;
	font-size: inherit;
}
.logo__footer {
	width: 80px;
	height: 33px;
	background-image: url("../images/logo.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
a.link__footer, a.link__footer:focus, a.link__footer:visited {
	color: #fff;
}
a.link__footer {
	font-weight: 400;
	display: inline-block;
	position: relative;
	cursor: pointer;
	font-size: 16px;
}
a.link__footer::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: -2px;
	border-radius: 50px;
	left: 0;
	background-color: #fff;
	opacity: 1;
	transform-origin: bottom left;
	transition: all 0.25s ease-out;
}
a.link__footer:hover::after {
	transform: scaleX(1);
}
cart {
	position: absolute;
}
#scrollform--anchor {
	position: absolute;
	top: -100px;
}
#scrolllogin--anchor {
	position: absolute;
	top: 0;
}
/******** SWEET ALERT *********/
.swal-overlay {
	background-color: rgba(91, 102, 112, .5);
}
.swal-modal {
	border-radius: 0px;
}
.swal-title {
	font-weight: 700;
	padding: 13px 30px;
}
.swal-text {
	font-weight: 400;
}
.swal-footer {
	text-align: center;
	padding: 13px 30px;
}
.swal-button {}
.swal-button {
	background-color: #4D4D4D;
	margin: 6px 0;
	border: 2px solid #4D4D4D;
	border-radius: 50px;
	color: #FFFFFF;
	font-size: 16px;
	transition: all .3s ease;
	z-index: 1;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	display: inline-block;
	padding: 16px 32px 13px 32px;
	text-decoration: none;
	min-width: 180px;
	text-align: center;
	pointer-events: all;
}
.swal-button::before {
	content: '';
	width: 105%;
	height: 105%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	transition: all .3s ease-out;
	z-index: -1;
	transform-origin: center;
	transform: scaleX(0);
	opacity: 0;
}
.swal-button:hover::before {
	transform: scaleX(1);
	opacity: 1;
}
.swal-button:hover {
	color: #4D4D4D;
}
.swal-button:not([disabled]):hover {
	background-color: #4D4D4D;
}
.swal-button:focus {
	box-shadow: 0 0 0 0;
}
.hide-on-desktop {
	display: none;
}
/* STRIPE */
.StripeElement {
	box-sizing: border-box;
	height: 40px;
	padding: 10px 12px;
	border: 1px solid transparent;
	border-radius: 4px;
	width: 90%;
	background-color: white;
	margin: 3% 0;
	box-shadow: 0 1px 3px 0 #e6ebf1;
	-webkit-transition: box-shadow 150ms ease;
	transition: box-shadow 150ms ease;
}
.StripeElement--focus {
	box-shadow: 0 1px 3px 0 #cfd7df;
}
/******** RESPONSIVE ********/
/*****************************************
            tablet landscape	
****************************************/
@media only screen and (max-width: 1200px) {
	a.link__menu::after {
		height: 5px;
	}
	.prodotto__caratteristiche--p {
		width: 70%;
	}
	.prodotti__img {
		width: 100%;
		height: 250px;
	}
	.catalogo__materassi {
		flex-direction: column;
		width: 90%;
		justify-content: flex-start;
	}
	.catalogo__img {
		height: 100%;
		object-fit: contain;
	}
	.materassi__acquisto select, .catalogo__add {
		width: 100%;
	}
	.StripeElement {
		width: 100%;
	}
	.bag__total {
		flex-direction: column;
	}
	.bag__total--price {
		height: auto;
		text-align: right;
	}
	.section__text {
		width: 65vw;
		margin-right: 0;
	}
	.section__text--p {
		width: 80%;
	}
	.store__prodotto .catalogo__materassi {
		width: 40%;
	}
	.bag__item--element {
		float: left;
	}
	.bag__quantity-price {
		flex-direction: row;
		align-items: center;
	}
	.menu__item--credits {
		width: 50%;
	}
	.riepilogo__content {
		flex-direction: row;
		width: 100%;
	}
	.riepilogo__dati {
		width: 50%;
		margin-bottom: 4%;
	}
	.iub_content {
		width: 80%;
	}
	privacy-policy .iub_content h1, cookie-policy .iub_content h2 {
		transform: translateX(0);
		font-size: 4vw;
	}
	privacy-policy .iub_content h2 {
		font-size: 3.5vw;
		line-height: 1.2em;
	}
	.iub_content h3 {
		font-size: 3vw;
		line-height: 1.2em;
	}
	.iub_content h4 {
		font-size: 2.5vw;
	}
}
/****************************************	
            tablet portrait	
****************************************/
@media only screen and (max-width: 1023px) {
	/* GENERICHE */
	header, .header__home {
		padding: 0 50px;
	}
	.footer li {
		margin: 8% 0;
	}
	a.link__footer {
		font-size: 16px !important;
	}
	.logo__footer {
		height: 28px;
	}
	footer {
		width: 100%;
		padding-left: 0;
		position: relative;
	}
	.footer {
		padding: 0 50px;
		height: auto;
	}
	.footer p {
		font-size: 16px;
	}
	.nav__item {
		margin-left: 10%;
	}
	.menu__items {
		width: 100%;
		padding: 0 50px;
		height: 60%;
	}
	.menu__items a {
		font-size: 6vw;
	}
	.menu__item--credits {
		width: 90%;
	}
	.overlay {
		min-height: auto;
		align-items: center;
	}
	a.link__menu::after {
		height: 4px;
	}
	.menu__item--links {
		height: 15%;
	}
	h1 {
		font-size: 10vw;
	}
	/* PAGINA ACCESSO E ABOUT */
	.homepage__section {
		flex-direction: column-reverse;
	}
	section {
		padding: 20% 50px;
	}
	.section__img {
		width: 100%;
		height: 60vh;
		margin-top: 5vh;
	}
	.section__text {
		width: 100%;
		margin-right: 0%;
	}
	h2 {
		font-size: 5.4vw;
	}
	h3 {
		font-size: 4vw;
	}
	.section__text--p {
		width: 100%;
		margin-left: 0;
	}
	.fullwidth__img--1 {
		height: 30vh;
		min-height: 300px;
	}
	.fullwidth__img h2 {
		text-align: center;
	}
	.fullwidth__img--2 {
		height: 30vh;
		padding: 0 50px;
	}
	.container__cards {
		flex-direction: column;
		margin-top: 0;
	}
	.card {
		width: 100%;
		margin: 10% 0;
	}
	.home.main {
		flex-direction: column;
		min-height: 100vh;
		background-repeat: no-repeat;
		background-size: auto;
	}
	.main {
		padding-left: 0px;
		padding-right: 0px;
	}
	.main__claim {
		width: 100%;
		text-align: center;
		margin-right: 0;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		height: auto;
		padding: 0 30px;
		margin-top: 300px;
	}
	.main__claim h1 {
		font-size: 8vw;
	}
	.main__container {
	min-height: auto;
	width: 60%;
	border-radius: 30px;
	margin-top: 30px;
	padding: 30px;
	}
	.main__content {
		padding: 0;
	}
	.accedi {
		display: none;
	}
	.fullwidth__img {
		background-size: cover;
		width: calc(100% - 60px);
		height: 30vh;
		margin: 20% 30px;
		object-fit: cover;
	}
	.main__claim h1 {
		line-height: 1.4em;
	}
	/* PAGINA FIORDILATTICE E MEMO */
	.dow__main {
		padding: 0 50px;
		width: 100%;
		margin-top: 100px;
		height: 100vh;
	}
	.dow__text {
		padding: 6%;
	}
	.dow__p {
		font-size: 18px;
		width: 100%;
	}
	.scopripromo__popup {
		width: 90%;
	}
	.scopripromo__popup img {
		height: 30px;
	}
	.discount__details {
		width: 20vw;
		height: 20vw;
	}
	.dow__main--img {
		height: 70vw;
		width: 60vw;
	}
	.dow__text .btn {
		margin-top: 10%;
	}
	.prodotto__caratteristiche--p {
		width: 100%;
		margin-top: 5vh;
		margin-left: 0;
		padding: 0 6%;
	}
	.prodotto__caratteristiche {
		flex-direction: column;
	}
	.icons {
		margin-bottom: 4%;
	}
	.icons__caratteristiche {
		height: auto;
	}
	.immagine__materasso {
		width: 80%;
		margin: 5% auto 0 auto;
		right: 0;
	}
	.immagine__guanciale {
		width: 60%;
		margin: 5% auto 0 auto;
	}
	.store__prodotto .catalogo__prodotti {
		flex-direction: column;
		align-items: center;
	}
	.store__prodotto .catalogo__materassi {
		width: 90%;
		padding: 30px;
	}
	/* PAGINA SOLUZIONI ALETTO */
	.soluzioni__main--grey {
		width: calc(100% - 60px);
	}
	.soluzioni__main {
		justify-content: center;
	}
	.soluzioni__option {
		width: 100%;
	}
	.soluzioni__content {
		padding: 0 50px;
		width: 100%;
		flex-direction: row;
		height: 70%;
		align-items: flex-start;
	}
	.soluzioni__main--image {
		display: none;
	}
	.bollo-sconto {
		width: 70px;
		height: 70px;
		left: 30%;
		bottom: 50%;
	}
	.soluzioni__option--memo .soluzioni__option--text {
		display: none;
	}
	.soluzioni__option--fiordilattice .soluzioni__option--text {
		position: absolute;
		bottom: 5vh;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
	}
	.soluzioni__option--fiordilattice .soluzioni__option--text .btn__memo {
		display: block;
	}
	.packaging__dow {
		width: 100%;
		height: 250px;
	}
	.soluzioni {
		width: calc(100% - 30px);
	}
	.bollo-sconto h3 {
		font-size: 3vw;
	}
	/*CATALOGO*/
	.catalogo__container {
		flex-direction: column;
		padding: 0 50px;
		position: relative;
	}
	products-list {
		width: 100%;
	}
	.catalogo__add {
		width: 100%;
	}
	.materassi__acquisto select {
		width: 100%;
	}
	.materassi__acquisto {
		width: 100%;
	}
	.prodotti__img {
		width: 100%;
		height: 300px;
		margin-bottom: 30px;
	}
	.catalogo__main {
		height: auto;
	}
	.catalogo__materassi {
		flex-direction: column;
	}
	.catalogo__cassa {
		position: relative;
		margin: 10% 0;
		right: 50px;
		bottom: -50px;
	}
	.catalogo__dettagli {
		margin: 10% 0;
	}
	/*POP UP*/
	.popup {
		width: 90%;
	}
	/* BAG */
	.bag {
		width: 100%;
		padding-right: 50px;
		min-height: auto;
		right: -120%;
		box-shadow: 0 0 0 0;
	}
	.bag__close {
		padding: 0 50px;
	}
	.bag__items--container {
		padding: 0 50px;
		height: calc(70vh - 120px);
	}
	.bag__total {
		padding: 20px 50px;
		width: 100%;
		align-items: flex-end;
		bottom: 100px;
		height: auto;
	}
	.bag__total--price {
		height: auto;
	}
	.bag__item--image {
		width: 30vw;
		height: 30vw;
	}
	.bag__items {
		height: auto;
		margin-bottom: 10%;
	}
	/* CART */
	.cart__container {
		padding: 50px 50px 0 50px;
	}
	.cart {
		width: 100%;
	}
	.form__nome, .select-form, .form, .bag__azioni {
		width: 100%;
		flex-direction: row;
	}
	.breadcrumbs {
		font-size: inherit;
		margin-bottom: 4%;
	}
	.back--shopping {
		text-align: left;
		width: auto
	}
	.bag__azioni {
		align-items: flex-end;
	}
	.btn.btn--prosegui, .back--shopping {
		margin-top: 5%;
	}
	.form__nome .form, .form__nome div {
		width: 48%;
	}
	.riepilogo__content {
		flex-direction: column;
		width: 100%;
	}
	.riepilogo__dati {
		width: 100%;
		margin-bottom: 4%;
	}
	.StripeElement {
		width: 100%;
	}
	.form__container--metodo-pagamento {
		flex-direction: column;
	}
	/*AREA RISERVATA*/
	.area-riservata__main {
		flex-direction: column;
		min-height: auto;
		margin-top: 100px;
	}
	.area-riservata__menu {
		height: auto;
		padding: 5% 50px 5% 50px;
		width: 100%;
		position: relative;
	}
	.area-riservata__content, .storico__label--container, .panel, .accordion {
		width: 100%;
	}
	.storico__label--container {
		display: none;
	}
	.storico__label:nth-child(1) {
		font-weight: 700;
	}
	.storico__label {
		width: 100%;
	}
	.accordion, .panel {
		flex-direction: column;
	}
	.hide-on-desktop {
		display: inline-block;
	}
	.storico__item {
		width: 100%;
		height: auto;
	}
	.storico__item .prodotti__img {
		width: 15vw;
		height: 15vw;
		margin-bottom: 0;
	}
	textarea {
		width: 100%;
	}
	.effettua-reso select {
		width: 100%;
	}
	/* PAGINE ACCESSORIE */
	#iub-pp-container {
		padding: 0 50px;
		width: 100%;
	}
	.iub_content {
		width: 100%;
		margin-top: 100px;
		padding-left: 0%;
	}
	privacy-policy .iub_content h1, cookie-policy .iub_content h2 {
		transform: translateX(0);
		font-size: 5vw;
	}
	privacy-policy .iub_content h2 {
		font-size: 3.8vw;
	}
	.iub_content h3 {
		font-size: 3vw;
	}
	.iub_content h4 {
		font-size: 2.4vw;
	}
}
/****************************************	

    smartphone portrait e landscape

****************************************/
@media only screen and (max-width: 767px) {
	/* GENERICHE */
	header, .header__home {
		padding: 0 30px;
		height: 70px;
	}
	.footer li {
		margin: 10% 0;
	}
	a.link__footer {
		font-size: 14px !important;
	}
	.logo__footer {
		height: 28px;
	}
	footer {
		width: 100%;
		padding-left: 0;
		position: relative;
	}
	.footer {
		padding: 30px;
		height: auto;
	}
	.footer__pagamenti {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer p {
		font-size: 14px;
	}
	.footer__head div {
		height: 50px;
	}
	.nav__item {
		margin-left: 10%;
	}
	.menu__items {
		width: 100%;
		padding: 0 30px;
		height: 60%;
	}
	.menu__items a {
		font-size: 6vw;
	}
	.menu__item--credits {
		width: 90%;
	}
	.overlay {
		min-height: auto;
		align-items: center;
	}
	a.link__menu::after {
		height: 3px;
	}
	.menu__item--links {
		height: 15%;
	}
	h1 {
		font-size: 10vw;
	}
	/* PAGINA ACCESSO */
	.homepage__section {
		flex-direction: column-reverse;
	}
	section {
		padding: 20% 30px;
	}

	.section__text {
		width: 100%;
		margin-right: 0%;
	}
	h2 {
		font-size: 5.4vw;
	}
	h3 {
		font-size: 5vw;
	}
	.section__text--p {
		width: 100%;
		margin-left: 0;
	}
	.fullwidth__img--1 {
		height: 30vh;
		min-height: 300px;
	}
	.fullwidth__img h2 {
		text-align: center;
	}
	.fullwidth__img--2 {
		height: 30vh;
		padding: 0 30px;
	}
	.container__cards {
		flex-direction: column;
		margin-top: 20PX;
		gap: 50px;
	}
	.card {
		width: 100%;
		margin: 10% 0;
	}
	.home.main {
		flex-direction: column;
		min-height: 100vh;
		background-repeat: no-repeat;
		background-size: auto;
	}
	.main__claim h1 {
		font-size: 8vw;
	}
	.main__container {
		min-height: auto;
		width: 100%;
		border-radius: 30px;
		margin-top: 30px;
		padding: 30px 30px 200px 30px;
	}
	.main__content {
		padding: 0;
	}
	.scroll__info {
		display: none;
	}
	.accedi {
		display: none;
	}
	.fullwidth__img {
		background-size: cover;
		width: calc(100% - 60px);
		height: 30vh;
		margin: 20% 30px;
		object-fit: cover;
	}
	.main__claim h1 {
		line-height: 1.4em;
	}
	.registrazione__input {
		width: 80%;
	}
	/* PAGINA ABOUT */
	.about__main .main__claim {
		width: 100%;
		margin-left: 0;
	}
	/* PAGINA FIORDILATTICE E MEMO */
	.dow__main {
		padding: 0 30px;
		width: 100%;
		margin-top: 100px;
		height: auto;
	}
	.dow__text {
		padding: 6%;
		flex-direction: column;
	}
	.dow__hero--text {
		width: 100%;
	}
	.dow__p {
		font-size: 18px;
		width: 100%;
	}
	.scopripromo__popup {
		width: 90%;
	}
	.scopripromo__popup img {
		height: 30px;
	}
	.discount__details {
		width: 20vw;
		height: 20vw;
	}
	.dow__main--img {
		right: 0;
		bottom: 0;
		background-position: center right;
		height: auto;
		width: auto;
	}
	.dow__text .btn {
		margin-top: 10%;
	}
	.prodotto__caratteristiche {
		grid-template-columns: 1fr;
	}
	.prodotto__dettaglio--img img {
		width: 75%;
	}
	.icons {
		margin: 5%;
		flex-direction: column;
	}
	.container__store {
		right: 0;
		margin-top: 0;
	}
	.qualita {
		margin: 5% 0;
		width: 100%;
		text-align: center;
		align-items: center;
		flex-direction: column;
	}
	.certificazioni__qualita {
		margin-top: 0;
		flex-direction: column;
	}
	.qualita__img {
		width: 20%;
		height: 130px;
		background-position: center;
	}
	.qualita__text {
		width: 100%;
	}
	.icons__caratteristiche {
		height: auto;
		flex-direction: column;
		text-align: center;
	}
	.immagine__materasso {
		width: 80%;
		margin: 5% auto 0 auto;
		right: 0;
	}
	.immagine__guanciale {
		width: 60%;
		margin: 5% auto 0 auto;
	}
	.store__prodotto .catalogo__prodotti {
		flex-direction: column;
		align-items: center;
	}
	.store__prodotto .catalogo__materassi {
		width: 60%;
		padding: 30px;
	}
	/* PAGINA SOLUZIONI ALETTO */
	.soluzioni__main--grey {
		width: calc(100% - 60px);
		height: calc(100% - 70px);
	}
	.soluzioni__main {
		justify-content: center;
	}
	.soluzioni__option {
		width: 100%;
	}
	.soluzioni__content {
		padding: 0 30px;
		width: 100%;
		flex-direction: row;
		height: 70%;
		align-items: flex-start;
	}
	.soluzioni__main--image {
		display: none;
	}
	.bollo-sconto {
		width: 70px;
		height: 70px;
		left: 30%;
		bottom: 50%;
	}
	.soluzioni__option--memo .soluzioni__option--text {
		display: none;
	}
	.soluzioni__option--fiordilattice .soluzioni__option--text {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
	}
	.soluzioni__option--fiordilattice .soluzioni__option--text .btn__memo {
		display: block;
	}
	.packaging__dow {
		width: 100%;
		height: 130px;
	}
	.soluzioni {
		width: calc(100% - 30px);
	}
	/*CATALOGO*/
	.catalogo__container {
		flex-direction: column;
		padding: 0 30px;
		position: relative;
	}
	products-list {
		width: 100%;
	}
	.catalogo__add {
		width: 100%;
	}
	.materassi__acquisto select {
		width: 100%;
	}
	.materassi__acquisto {
		width: 100%;
	}
	.prodotti__img {
		width: 100%;
		height: 200px;
		margin-bottom: 30px;
	}
	.catalogo__main {
		height: auto;
	}
	.catalogo__materassi {
		margin-bottom: 10%;
		flex-direction: column;
	}
	.catalogo__cassa {
		position: relative;
		margin: 10% 0;
		right: 30px;
		bottom: -50px;
	}
	.catalogo__dettagli {
		margin: 10% 0;
	}
	/* BAG */
	.bag {
		width: 100%;
		padding-right: 30px;
		min-height: auto;
		right: -120%;
		box-shadow: 0 0 0 0;
	}
	.bag__close {
		padding: 0 30px;
	}
	.bag__items--container {
		padding: 0 30px;
		height: calc(70vh - 120px);
	}
	.bag__total {
		padding: 20px 30px;
		width: 100%;
		align-items: flex-end;
		flex-direction: column;
		bottom: 100px;
		height: auto;
	}
	.bag__total--price {
		height: auto;
		text-align: right;
	}
	.bag__item--image {
		width: 30vw;
		height: 30vw;
	}
	.bag__items {
		height: auto;
		margin-bottom: 10%;
	}
	.StripeElement {
		width: 100%;
	}
	/* CART */
	.cart__container {
		padding: 30px 30px 100px 30px;
	}
	.cart {
		width: 100%;
		overflow-y: scroll;
	}
	.form__nome, .select-form, .form {
		width: 100%;
		flex-direction: column;
	}
	.breadcrumbs {
		font-size: 14px;
	}
	.back--shopping {
		text-align: right;
		width: 100%;
	}
	.bag__azioni {
		align-items: flex-end;
		flex-direction: column;
		width: 100%;
	}
	.btn.btn--prosegui, .back--shopping {
		margin-top: 5%;
	}
	.form__nome .form, .form__nome div {
		width: 100%;
	}
	.form input {
		padding-top: 20px;
		font-size: 16px;
	}
	.select-form div {
		width: 100%;
	}
	.riepilogo__content {
		flex-direction: column;
		width: 100%;
	}
	.riepilogo__dati {
		width: 100%;
		margin-bottom: 4%;
	}
	.form__container--metodo-pagamento {
		flex-direction: column;
	}
	/*POPUP*/
	.popup {
		width: 90%;
	}
	/*AREA RISERVATA*/
	.area-riservata__main {
		flex-direction: column;
		min-height: auto;
		margin-top: 100px;
	}
	.area-riservata__menu {
		height: auto;
		padding: 5% 30px 5% 30px;
		width: 100%;
		position: relative;
	}
	.area-riservata__content, .storico__label--container, .panel, .accordion {
		width: 100%;
	}
	.storico__label--container {
		display: none;
	}
	.storico__label:nth-child(1) {
		font-weight: 700;
	}
	.storico__label {
		width: 100%;
	}
	.accordion, .panel {
		flex-direction: column;
	}
	.hide-on-desktop {
		display: inline-block;
	}
	.storico__item {
		width: 100%;
		height: auto;
	}
	.storico__item .prodotti__img {
		width: 15vw;
		height: 15vw;
		margin-bottom: 0;
	}
	textarea {
		width: 100%;
	}
	.effettua-reso select {
		width: 100%;
	}
	/* PAGINE ACCESSORIE */
	#iub-pp-container {
		padding: 0 30px;
		width: 100%;
	}
	.iub_content {
		width: 100%;
		margin-top: 100px;
		padding-left: 0%;
	}
	privacy-policy .iub_content h1, cookie-policy .iub_content h2 {
		transform: translateX(0);
		font-size: 6vw;
	}
	privacy-policy .iub_content h2 {
		font-size: 5.8vw;
	}
	.iub_content h3 {
		font-size: 5.5vw;
	}
	.iub_content h4 {
		font-size: 5vw;
	}
}