header .h-left .logo {
	max-height: 120px;
}

/* ////////// SECTION-1 ///////// */
.content{
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	justify-content: space-between;
	width: 80%;
	margin: 0 auto;
	padding: 30px 0 30px 0;
}
.cart-list{
	display: flex;
	flex: 1 1 70%;
	flex-direction: column;
	padding-right: 2rem;
}
.cart-vendor{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}
.cart-vendor select {
	font-size: 0.9rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px 5px;
	text-align: left;
	color: var(--sdFgColorDark);
	border: solid 1px var(--sdFgColorBright);
	background-color: var(--mainFgColorBright);
	margin: 0 10px;
}
.cart-line{
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	padding: 10px 20px;
	border-bottom: 1px solid #f7f7f7;
}
.col{
	margin: 0 10px;
	text-align: center;
}
.delete-line{
	/*display: block;*/
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	width: 18px;
	height: 18px;
	cursor: pointer;
	-moz-transition: color 150ms linear;
	-ms-transition: color 150ms linear;
	-o-transition: color 150ms linear;
	-webkit-transition: color 150ms linear;
	transition: color 150ms linear;
	color: #949494;
}
.delete-line:hover{
	color: var(--mainFgColorDark);
}
.product-image{
	width: 70px;
	height: 70px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.product-quantity{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 70px;
}
.product-quantity input[type="number"], .product-shipping select{
	font-size: 0.9rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 10px 5px;
	text-align: left;
	color: var(--sdFgColorDark);
	border: solid 1px var(--sdFgColorBright);
	background-color: var(--mainFgColorBright);
}
.product-quantity .p-stock-infos{
	font-size: .8em;
	position: absolute;
	top: 100%;
	left: 50%;
	margin: 0;
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
}
.product-quantity .p-stock-infos.ls{
	color: orange;
}
.product-quantity .p-stock-infos.oos{
	color: red;
}
.product-description{
	font-size: 0.8rem;
	flex: 1 1 auto;
	color: var(--sdFgColorDark);
}
.product-description a{
	text-decoration: none;
	color: var(--mainBgColor);
}
.product-description h3{
	font-weight: 400;
}
.product-discount{
	text-align: right;
}
.product-discount > *{
	margin: 5px 0;
}
.product-total{
	flex: 0 0 10%;
	text-align: right;
}
.product-total h2{
	margin: 0;
}
.product-total span{
	font-size: 0.7rem;
}
.totalCart{
	/*min-width: 400px;*/
	flex: 0 0 30%;
	padding: 2.5rem;
	background: var(--sdFgColorBright);
	/*margin-top: 90px;*/
}
.totalCart > h1{
	margin-top: 0;
}
.totalCart select{
	overflow: hidden;
	width: 100%;
	padding: 10px 20px 10px 10px;
	text-align: left;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #2f2c2f;
	border: 1px solid var(--sdFgColorBright);
	background-color: var(--mainFgColorBright);
}
.totalCart h4{
	margin: 0;
}
.totalCart p{
	font-size: 0.9rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
	color: #949494;
}
.totalCart hr{
	margin: 40px 0;
}
.errorBillingAddress,
.errorDeliveryAddress{
	display: none;
	color: var(--errorColor);
}
.addAddress,
.updateAddress{
	color: var(--mainLinkColor);
}
.tc-total{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
}
.tc-total .totalCartRight{
	color: var(--mainBgColor);
}
.tc-taxes{
	font-size: 0.7rem;
}
.order{
	font-weight: 700;
	padding: 10px;
	width: fit-content;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	letter-spacing: .131em;
	text-transform: uppercase;
	color: #222222;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 30px auto 0 auto;
	background-color:#55ce63;
	color: var(--mainFgColorDark);
}
.checkout{
	font-size: 1em;
	font-weight: 700;
	padding: 10px;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #222222;
	border: 1px solid #a1a1a1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 30px auto 0 auto;
	width: fit-content;
}
/*///////// LIGHBOX ADDRESS /////////*/
.formAddressLightbox{
	position: fixed;
	z-index: 20;
	top: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.formAddressOverlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(31, 39, 50, 0.4);
	backdrop-filter: blur(3px);
}
.formAddress{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 400px;
	padding: 50px;
	border-radius: .25rem;
	background: #ffffff;
}
.formAddressRow{
	display: flex;
}
.formAddressCell{
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;
	margin: 2px;
}
.formAddress input, .formAddress select, .formAddress textarea{
	font-size: 0.9rem;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 20px;
	padding: .9375rem 2.1875rem .9375rem 1.4375rem;
	text-align: left;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #2f2c2f;
	border: solid .0625rem #ebebeb;
	background-color: #ffffff;
}
.error{
	border-color: #f62d51;
}
.required, .emailInvalid, .emailExist, .pwdLength, .pwdLetter, .pwdNumber, .pwdSpecial, .pwdDifferent, .emailNotification{
	position: relative;
	display: none;
	margin-top: 10px;
	padding: 10px;
	color: #ffffff;
	border-radius: 3px;
	background: #f62d51;
	box-shadow: 1px 1px 1px #aaaaaa;
}
.required:before, .emailInvalid:before, .emailExist:before, .pwdLength:before, .pwdLetter:before, .pwdNumber:before, .pwdSpecial:before, .pwdDifferent:before, .emailNotification:before{
	position: absolute;
	top: -10px;
	width: 0;
	height: 0;
	content: '';
	border-right: 10px solid transparent;
	border-bottom: 10px solid #f62d51;
	border-left: 10px solid transparent;
}
.formAddressActions{
	display: flex;
}
.formAddressActions svg{
	width: 15px;
	height: 15px;
	margin-right: 10px;
	fill: #ffffff;
}
.formAddressBtn{
	font-size: 14px;
	position: relative;
	display: flex;
	align-items: center;
	align-self: normal;
	justify-content: center;
	box-sizing: border-box;
	margin: 0 10px 15px 0;
	padding: 10px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--whiteColor);
	border: none;
	border-radius: 3px;
	background-color: #1d1d1d;
}
.formAddressSubmit{
	margin: 0;
	color: #ffffff;
	background-color: #55ce63;
}
.formAddressCancel{
	margin: 0;
	color: #ffffff;
	background-color: #23272b;
}
/*///////// LIGHBOX FINALIZATION /////////*/
.lightbox{
	position: fixed;
	z-index: 20;
	top: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.lightboxOverlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(31, 39, 50, 0.4);
	backdrop-filter: blur(3px);
}
.lightboxForm{
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 50px;
	border-radius: .25rem;
	background: #ffffff;
}
.lightboxForm h3, .lightboxForm h2{
	text-align: center;
}
.finalAddress{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #000000;
}
.finalBillingAddress, .finalDeliveryAddress{
	flex: 1 1 50%;
	text-align: center;
}
.cgu{
	margin: 10px 0 0 0;
}
.lightboxForm h4{
	margin: 0;
}
.lightboxRow{
	display: flex;
}
.lightboxCell{
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;
	margin: 2px;
}
.lightboxActions{
	display: flex;
}
.lightboxActions svg{
	width: 15px;
	height: 15px;
	margin-right: 10px;
	fill: #ffffff;
}
.lightboxBtn{
	font-size: 14px;
	position: relative;
	display: flex;
	align-items: center;
	align-self: normal;
	justify-content: center;
	box-sizing: border-box;
	margin: 0 10px 15px 0;
	padding: 10px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--whiteColor);
	border: none;
	border-radius: 3px;
	background-color: #1d1d1d;
}
/*.actions-list .btn{*/
/*    margin: 0 10px 0 10px;*/
/*}*/
.lightboxSubmit{
	margin: 0;
	color: #ffffff;
	background-color: #55ce63;
}
.lightboxCancel{
	margin: 0;
	color: #ffffff;
	background-color: #23272b;
}
.login{
	margin: 30px 0 0 0;
}
/*///////// Payement /////////*/
#payment-form{
	align-self: center;
	width: 30vw;
	min-width: 500px;
	padding: 40px;
	border-radius: 7px;
	box-shadow: 0 0 0 0.5px rgba(50, 50, 93, 0.1), 0 2px 5px 0 rgba(50, 50, 93, 0.1), 0 1px 1.5px 0 rgba(0, 0, 0, 0.07);
}
#payment-form input{
	font-size: 16px;
	width: 100%;
	height: 44px;
	margin-bottom: 6px;
	padding: 12px;
	border: 1px solid rgba(50, 50, 93, 0.1);
	border-radius: 6px;
	background: white;
}
#payment-form .result-message{
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 0;
	color: green;
}
#payment-form .result-message a{
	font-weight: 600;
	text-decoration: none;
	color: var(--mainBgColor);
}
#payment-form .hidden{
	display: none;
}
#payment-form #card-error{
	font-size: 13px;
	line-height: 17px;
	margin-top: 12px;
	text-align: left;
	color: red;
}
#payment-form #card-element{
	width: 100%;
	height: 44px;
	padding: 12px;
	border: 1px solid rgba(50, 50, 93, 0.1);
	border-radius: 4px 4px 0 0;
	background: white;
}
#payment-form #payment-request-button{
	margin-bottom: 32px;
}
/* Buttons and links */
#payment-form button{
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	display: block;
	width: 100%;
	padding: 12px 16px;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #ffffff;
	border: 0;
	border-radius: 0 0 4px 4px;
	background: var(--mainBgColor);
	box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.07);
}
#payment-form button:hover{
	filter: contrast(115%);
}
#payment-form button:disabled{
	cursor: default;
	opacity: 0.5;
}
.lightboxForm .cgu.error{
	color: #f62d51;
}
.lightboxForm .cgulink{
	text-decoration: none;
	color: var(--mainBgColor);
}
.lightboxForm .cgulink:hover{
	text-decoration: underline;
}
.lightboxForm .notaBene{
	font-size: 0.7rem;
}
/* spinner/processing state, errors */
#payment-form .spinner,
#payment-form .spinner:before,
#payment-form .spinner:after{
	border-radius: 50%;
}
#payment-form .spinner{
	font-size: 22px;
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 auto;
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	text-indent: -99999px;
	color: #ffffff;
	box-shadow: inset 0 0 0 2px;
}
#payment-form .spinner:before,
#payment-form .spinner:after{
	position: absolute;
	content: "";
}
#payment-form .spinner:before{
	top: -0.2px;
	left: -0.2px;
	width: 10.4px;
	height: 20.4px;
	-webkit-transform-origin: 10.4px 10.2px;
	transform-origin: 10.4px 10.2px;
	-webkit-animation: loading 2s infinite ease 1.5s;
	animation: loading 2s infinite ease 1.5s;
	border-radius: 20.4px 0 0 20.4px;
	background: var(--mainBgColor);
}
#payment-form .spinner:after{
	top: -0.1px;
	left: 10.2px;
	width: 10.4px;
	height: 10.2px;
	-webkit-transform-origin: 0 10.2px;
	transform-origin: 0 10.2px;
	-webkit-animation: loading 2s infinite ease;
	animation: loading 2s infinite ease;
	border-radius: 0 10.2px 10.2px 0;
	background: var(--mainBgColor);
}
@-webkit-keyframes loading{
	0%{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes loading{
	0%{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@media only screen and (max-width: 600px){
	form{
		width: 80vw;
	}
}
/*///////// Media queries /////////*/
@media screen and (max-width: 1400px){
	.content{
		flex-direction: column;
		width: 90%;
	}
	.cart-list{
		width: 100%;
	}
	.totalCart{
		margin: 10px 0 2.5rem;
	}
}
@media screen and (max-width: 800px){
	main{
		padding-top: 50px;
	}
	.content{
		flex-direction: column;
		width: 80%;
	}
	.cart-list{
		width: 100%;
		padding: 0;
		text-align: center;
	}
	.cart-line{
		flex-direction: column;
		margin-bottom: 20px;
		background: #ffffff;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	}
	.delete-line{
		font-size: 24px;
		width: 24px;
		height: 24px;
		margin-right: -15px;
		margin-left: auto;
	}
	.product-image{
		width: 230px;
		height: 230px;
	}
	.product-quantity input[type="number"], .product-shipping select{
		margin: 3px 0;
	}
	.totalCart{
		width: 100%;
		margin: 10px 0 2.5rem;
	}
}