@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;700&display=swap');

*{
	padding:0px;
	border:0px;
	margin:0px;
}

html{
width:100%;
min-width:1000px;
scroll-behavior: smooth;
}

.main_width{
width:1000px;
margin:auto;
}


body{
font-family: 'Inter', sans-serif;
font-weight:400;
width:100%;
background-color: #e8e8e8;
}


/* *********************** COMMON *********************** */

p{
color:#14190b;
line-height:27px;
font-size:16px;
margin-bottom:13px;
}

h1{
color:#14190b;
font-size: 30px;
font-weight: 400;
line-height: 48px;
}

h2{
color:#14190b;
font-size: 35px;
font-weight: 400;
line-height: 40px;
}

h3{
color: #14190b;
font-size: 18px;
font-weight: 400;
line-height: 33px;
}



a.button{
background: rgb(171,199,62);
background: linear-gradient(90deg, rgba(171,199,62,1) 25%, rgba(104,188,69,1) 100%);
display: inline-block;
border-radius: 30px;
background-color: #14190b;
color: white;
padding: 8px 23px;
margin:0;
transition: all 0.5s ease-in-out;
font-size: 15px;
text-decoration:none;
transition:all 0.3s;
}

a.button.button_next{
padding-right: 65px;
position: relative;
}

a.button.button_next:after{
content:"";
width: 30px;
height: 10px;
position: absolute;
top: 50%;
right: 0;
transform: translate(calc( 100% - 55px ),-50%);
background-image: url(images/button-after.svg);
background-size:40px;
background-position: center right;
background-repeat: no-repeat;
transition: all 0.6s;
}

a.button.button_next:hover:after{
width: 40px;
}

a{
color:inherit;
text-decoration:none;
transition: all 0.2s ease-in-out;
}

.clear{
width:100%;
clear:both;
}

#wrapper .main_width{
background-color: white;
padding: 0 70px;
box-sizing: border-box;
}

#wrapper.home-wrapper .main_width{
background-image: url(images/home-background.jpg);
background-size: 100%;
background-repeat: no-repeat;
background-position: top center;
}

/* *********************** HEADING MSG*********************** */
#heading{    
width: 100%;
padding: 15px 0;
text-align: center;
background-color: #00475b;
margin: 30px 0;
border-radius: 15px;
display: inline-block;
}

#heading p{
	color: white;
	font-size: 18px;
	margin: 0;
    padding: 0 20px;
}

/* *********************** BANNER/MENU*********************** */
#banner{
background-color: #e8e8e8;
padding: 10px 0;
}

#banner .main_width{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

#banner .main_width>a{
width: 140px;
height: fit-content;
height: -moz-fit-content;
vertical-align: middle;
transform: translateY(3px);
}

#banner .main_width>a img{
width: 100%;
height: auto;
}

#banner .eshop-actions{
vertical-align: middle;
height: 40px;
}

#banner .eshop-actions form{
display: inline-block;
margin-right: 50px;
vertical-align: middle;
}

#banner .eshop-actions input[type="text"]{
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
border-right: none;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
height: 40px;
box-sizing: border-box;
vertical-align: middle;
width: 200px;
font-size: 17px;
}

#banner .eshop-actions input[type="submit"]{
display: inline-block;
width: 40px;
height: 40px;
vertical-align: middle;
background-color: white;
border: 1px solid #757575;
border-radius: 7px;
border-left: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
cursor: pointer;
background-image: url(images/icon-search.svg);
background-repeat: no-repeat;
background-position: center;
background-size: 18px;
}

#banner .eshop-actions>a{
display: inline-block;
vertical-align: middle;
text-decoration: none;
height: 23px;
}

#banner .eshop-actions>a+a{
margin-left: 20px;
position: relative;
}

#banner .eshop-actions .cart-count{
color: white;
background-color: #68bc45;
position: absolute;
top: -11px;
right: -11px;
width: 20px;
height: 20px;
text-align: center;
border-radius: 20px;
font-size: 12px;
line-height: 20px;
}

#banner .eshop-actions>a img{
width: auto;
height: 23px;
}

#banner .eshop-actions>a span.name{
font-size: 16px;
color: #757575;
font-weight: 500;
display: inline-block;
max-width: 125px;
height: 16px;
line-height: 17px;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}

#banner .eshop-actions .menu-top{
	display: none;
}

#cssmenu .menu-links.open{
font-size: 18px;
color: white;
cursor: pointer;
}

#cssmenu .menu-links.close{
font-size: 18px;
color: white;
padding-left: 17px;
cursor: pointer;
}

#cssmenu .menu-links.open img{
margin-right: 5px;
transform: translateY(3px);
}

div#cssmenu{
background-color: #68bc45;
height: auto;
}

div#cssmenu>.main_width{
line-height: 40px;
}

#cssmenu a{
color: white;
font-size: 16px;
}

#cssmenu .burger{
position: fixed;
top: 0;
left: -400px;
width: 350px;
max-width: 100%;
height: 100vh;
background-color: white;
padding-top: 25px;
margin: 0;
-webkit-box-shadow: 0px 2px 15px 0px #363636;
box-shadow: 0px 2px 15px 0px #363636;
transition: all 0.6s;
overflow-y: auto;
z-index: 20;
}

#cssmenu .burger.open{
left: 0;
}

#cssmenu .burger li:hover > ul{
display: none;
}

#cssmenu .burger li:hover > ul li{
margin-bottom: 3px;
}

#cssmenu .burger li:hover > ul li:last-of-type{
margin-bottom: 0;
}

#cssmenu .burger li:hover > ul a{
padding: 0 20px;
}

#cssmenu .burger a.more{
background-image: url(images/icon-more.svg);
background-size: 15px;
background-repeat: no-repeat;
background-position: center right 20px;
font-weight: 700;
}

#cssmenu .burger > ul {
    text-align: left;
	padding: 75px 0 25px;
}

#cssmenu .burger > ul+ul {
    text-align: left;
	padding: 25px 0;
	border-top: 1px solid #dfdfdf;
}

#cssmenu .burger > ul > li > a {
    font-weight: 500;
    line-height: 64px;
    display: block;
    position: relative;
    color: #14190b;
    padding: 0 20px;
    font-size: 21px;
}
#cssmenu .burger > ul > li > a:after {
    content: " ";
	position: absolute;
	width: 20px;
	height: 20px;
	right: 50px;
	top: 18px;
    background-image: url("images/common/arrow-right-white.svg");
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: all 0.4s;
}
#cssmenu .burger > ul > li > a:hover:after {
	right: 20px;
	opacity: 1;
}
#cssmenu .burger > ul > li > a.selected,
#cssmenu .burger > ul > li > a:hover {
    color: #140000;
} 
#cssmenu .burger > ul > li > a:hover {
	color: white;
    background: #68bc45; 
}


/* *********************** SLIDER *********************** */
#slider-div{
	margin-bottom: 70px;
	width: calc(100% + 140px);
    position: relative;
    left: -70px;
}

#slider-div h1{
	display: none;
}

#slider-div #slider2{
	width: 100%;
	height: 500px;
}

#slider-div #slider2 .item{
	width: 100%;
	height: 500px;
}

#slider-div .image{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#slider-div .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#slider-div .content{
	width: 100%;
	max-width: 550px;
	position: absolute;
	z-index: 5;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 20px 30px;
}

#slider-div .content .title{
	width: fit-content;
	display: block;
	margin: 0 auto;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	font-weight: 600;
	text-shadow: 0px 0px 4px rgb(17 17 17 / 80%);
}

#slider-div .content .button{
	background: linear-gradient(90deg, rgba(171, 199, 62, 1) 25%, rgba(104, 188, 69, 1) 100%);
	padding: 8px 23px;
	text-decoration: none;
	transition: all 0.3s;
	color: white;
	width: fit-content;
	width: -moz-fit-content;
	display: block;
	margin: 20px auto 0;
	border-radius: 20px;
	font-size: 17px;
	text-transform: none;
	position: relative;
	padding-right: 65px;
}

#slider-div .content .button:after {
	content: "";
	width: 30px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(calc(100% - 55px), -50%);
	background-image: url(images/button-after.svg);
	background-size: 40px;
	background-position: center right;
	background-repeat: no-repeat;
	transition: all 0.6s;
}

#slider-div .content .button:hover:after {
	width: 40px;
}

#slider-div .owl-nav button:first-of-type {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-107px);
font-size: 160px;
opacity: 0.3;
}

#slider-div .owl-nav button:last-of-type {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-107px);
font-size: 160px;
opacity: 0.3;
}

/* ***** HOME ***** */
#home{
text-align: center;
}

#home .c1 .c1-title{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin-bottom: 40px;
position: relative;
}

#home .c1 .c1-title:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#home .c1 .items{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 100px
}

#home .c1 .items .item{
width: 23%;
padding-bottom: 20px;
border-bottom: 1px solid #d5d5d5;
margin-bottom: 15px;
}

#home .c1 .items .item:nth-of-type(n+9){
display: none;
}

#home .c1 .items .item .image{
width: 100%;
height: 300px;
overflow: hidden;
}

#home .c1 .items .item .image img{
width: 100%;
height: 100%;
object-fit: contain;
transition: all 0.6s;
}

#home .c1 .items .item:hover .image img{
transform: scale(1.2);
}

#home .c1 .items .item .image .sombre{
position: absolute;
bottom: 50px;
top: 0;
width: 100%;
background-color: #4e4e4e;
opacity: 0.45;
left: 0;
}

#home .c1 .items .item .image .out-of-stock{
position: absolute;
bottom: 35px;
width: 100%;
height: 30px;
line-height: 30px;
background-color: #4e4e4e;
color: white;
font-size: 16px;
left: 0;
}

#home .c1 .items .item .price{
background-color: #68bc45;
color: white;
display: flex;
justify-content: space-between;
margin-top: -35px;
position: relative;
z-index: 1;
padding: 7px 15px;
font-size: 14px;
font-weight: 700;
text-align: left;
}

#home .c1 .items .item .price .shop{
display: inline-block;
width: 22px;
background-image: url(images/icon-cart-white.svg);
background-size: 19px;
background-repeat: no-repeat;
background-position: center;
}

#home .c1 .items .item h3{
text-align: left;
font-size: 18px;
line-height: 22px;
font-weight: 500;
margin-top: 20px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
}

#home .c1 .items .item h3+p{
text-align: left;
color: #757575;
font-size: 15px;
margin-top: 5px;
}

#home .c1 .items a.button{
margin: 50px auto 0;
}

#home .c2{
padding-bottom: 100px;
}

#home .c2 .image{
display: inline-block;
width: 50%;
vertical-align: middle;
}

#home .c2 .image img{
width: 100%;
height: auto;
}

#home .c2 .content{
display: inline-block;
width: 45%;
margin-left: 4%;
text-align: left;
vertical-align: middle;
}

#home .c2 .content h2{
margin-bottom: 30px;
}

#home .c2 .content a.button{
margin-top: 20px;
}

#home .c3{
padding-bottom: 100px;
}

#home .c3 h2{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin-bottom: 40px;
position: relative;
}

#home .c3 h2:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#home .c3 .slider{
width: 100%;
max-width: 800px;
margin: 50px auto 0;
position: relative;
}

#home .c3 .slider .item{
height: 350px;
position: relative;
}

#home .c3 .slider .item img+img{
width: 130px;
height: 75px;
position: absolute;
left: 50%;
transform: translate(-50%, -50%);
top: 50%;
}

#home .c3 .slider .item img:first-of-type{
width: 100%;
height: 100%;
object-fit: cover;
}

#home .c3 .owl-nav button:first-of-type {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-107px);
font-size: 160px;
opacity: 0.7;
}

#home .c3 .owl-nav button:last-of-type {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-107px);
font-size: 160px;
opacity: 0.7;
}

#home .c1 .c1-title+.invisible{
position: absolute;
font-size: 0;
left: -9999px;
opacity: 0;
}

/* ***** SHOP ***** */

#shop{
padding: 90px 10px 100px;
}

#home #shop{
padding: 0;
}

.shop, .eshop{
position: relative;
}

#shop .microdata{ /* toutes les champs sémantiques schema.org*/
display:none;
}

#shop .main_width{
padding-top:85px;
padding-bottom:30px;
}

#shop .c1{ /* affichage des types + cat + produits */
width: 90%;
display: inline-block;
vertical-align: top;
background-color: white;
padding: 0px 4%;
min-height:408px;
text-align:center;
text-align:center;
}

#shop .c1 h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
position: relative;
}

#shop .c1 h1.cat1-h1{
margin: 0;
}

#shop .c1 h1:after {
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#shop .c1 p.fil_rouge{
font-size:13px;
margin-bottom:0px;
margin-top: 10px;
opacity:0.45;
}

#shop .c1 .items{
text-align: center;
display: flex;
justify-content: center;
flex-wrap: wrap;
}

#shop .c1 .item{
width: 45%;
padding-bottom: 20px;
border-bottom: 1px solid #d5d5d5;
margin: 0 1% 40px;
display: inline-block;
}

#shop .c1 .item .photo{
width: 100%;
height: 200px;
overflow: hidden;
}

#shop .c1 .item .photo img{
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.6s;
}

#shop .c1 .item:hover .photo img{
transform: scale(1.1);
}

#shop .c1 .items .item h2 {
text-align: left;
font-size: 18px;
line-height: 22px;
font-weight: 500;
margin-top: 20px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
max-width: 85%;
}

#shop .c1 .items .item h2+p {
text-align: left;
color: #757575;
font-size: 15px;
margin-top: 5px;
}

#shop .c1 .items.list{
text-align: center;
max-width: 600px;
margin: 0 auto;
}

#shop .c1 .items.list .item{
width: 100%;
padding-bottom: 25px;
border-bottom: 1px solid #d5d5d5;
margin: 0 1% 15px;
display: inline-block;
}

#shop .c1 .items.list .item h2 {
text-align: left;
font-size: 18px;
line-height: 22px;
font-weight: 500;
margin-top: 10px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
max-width:100%;
}

#shop .c1 .items.list .item h2 span.title{
display: inline-block;
width: 480px;
padding-left: 20px;
box-sizing: border-box;
}

#shop .c1 .items.list .item h2 span.number{
color: #757575;
font-size: 15px;
margin-top: 5px;
}

#shop .c1 form{
margin: 50px 0 70px;
}

#shop .c1 form label{
display: none;
}

#shop .c1 form input[type="text"] {
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
border-right: none;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
height: 45px;
box-sizing: border-box;
vertical-align: middle;
width: 450px;
font-size: 18px;
}

#shop .c1 form input[type="submit"] {
display: inline-block;
width: 40px;
height: 45px;
vertical-align: middle;
background-color: white;
border: 1px solid #757575;
border-radius: 7px;
border-left: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
cursor: pointer;
background-image: url(images/icon-search.svg);
background-repeat: no-repeat;
background-position: center;
background-size: 18px;
}

/* affichage de la liste des produits */

#shop .c2{
width: 100%;
display: inline-block;
vertical-align: top;
background-color: white;
min-height:408px;
text-align:center;
}

#shop .c2 .subtitle{
margin: 0;
opacity: 0.45;
}

#shop .c2 h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0;
position: relative;
}

#shop .c2 h1:after {
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#shop .c2 p.fil_rouge{
font-size:13px;
margin: 10px 0 50px;
opacity:0.45;
}

#shop .nav{
display: inline-block;
vertical-align: top;
width: 30%;
margin-right: 4%;
padding: 20px;
box-sizing: border-box;
border: 1px solid #cfcfcf;
border-radius: 10px;
}

#shop .c2 .nav .filter a{
padding: 10px 35px;
display: block;
vertical-align: top;
line-height: 19px;
color: #000;
transition: all 0.3s;
font-size: 13px;
text-align: left;
text-decoration: none;
}

#shop .c2 .nav .filter a:hover{
background-color:#ddd;
}

#shop .c2 .nav .filter a.active{
background-color: #e8e8e8;
font-weight: 600;
}

#shop .product_list{
vertical-align:top;
width:100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
}

#shop .nav+.product_list{
width: 65%;
display: inline-flex;
}

#shop .product_list:after{
content:"";
flex: auto;
}

#shop .product_list .item{
width: 27%;
padding-bottom: 20px;
border-bottom: 1px solid #d5d5d5;
margin:0 2.5% 15px;
}

#shop .nav+.product_list .item{
width: 30%;
}

#shop .product_list .item .image{
width: 100%;
height: 300px;
overflow: hidden;
position: relative;
}

#shop .product_list .item .image img{
width: 100%;
height: 100%;
object-fit: contain;
transition: all 0.6s;
}

#shop .product_list .item:hover .image img{
transform: scale(1.2);
}

#shop .product_list .item .image .sombre{
position: absolute;
bottom: 50px;
top: 0;
width: 100%;
background-color: #4e4e4e;
opacity: 0.45;
left: 0;
}

#shop .product_list .item .image .out-of-stock{
position: absolute;
bottom: 35px;
width: 100%;
height: 30px;
line-height: 30px;
background-color: #4e4e4e;
color: white;
font-size: 16px;
left: 0;
}

#shop .product_list .item .price{
background-color: #68bc45;
color: white;
display: flex;
justify-content: space-between;
margin-top: -35px;
position: relative;
z-index: 1;
padding: 7px 15px;
font-size: 16px;
font-weight: 700;
text-align: left;
}

#shop .product_list .item .price .shop{
display: inline-block;
width: 22px;
background-image: url(images/icon-cart-white.svg);
background-size: 22px;
background-repeat: no-repeat;
background-position: center;
}

#shop .product_list .item h3{
text-align: left;
font-size: 18px;
line-height: 22px;
font-weight: 500;
margin-top: 20px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
}

#shop .product_list .item h3+p{
text-align: left;
color: #757575;
font-size: 15px;
margin-top: 5px;
}

/* affichage d'un produit suivant son ID */
#shop .c3{ 
text-align:center;
}

#shop .c3 .c3_c1{
display: inline-block;
width: 50%;
margin-right: 5%;
vertical-align: top;
text-align: left;
}

#shop .c3 .c3_c1 p.fil_rouge{
font-size: 13px;
margin-bottom: 0px;
opacity: 0.45;
padding: 0 0 24px 0;
}

#shop .c3 .c3_c1 h1{
font-size: 38px;
line-height: 50px;
margin-bottom: 20px;
}

#shop .c3 .c3_c1 p.reference{
background-color: #68bc45;
color: white;
width: fit-content;
width: -moz-fit-content;
display: inline-block;
padding: 5px 20px;
border-radius: 20px;
font-size: 13px;
text-transform: uppercase;
margin-bottom: 50px;
}

#shop .c3 .c3_c1 p.reference+p.reference{
margin-top: -40px;
}

#shop .c3 .c3_c1 .ajouter_au_panier{
border: 1px solid #cfcfcf;
border-radius: 10px;
margin-bottom: 10px;
}

#shop .c3 .c3_c1 p.prix{
border-bottom: 1px solid #cfcfcf;
padding: 20px;
color: #68bc45;
font-weight: 600;
font-size: 22px;
margin: 0;
}

#shop .c3 .c3_c1 span{
display: block;
}

#shop .c3 .c3_c1 span:not(.prix){
display: block;
color: #969892;
font-size: 18px;
}

#shop .c3 .c3_c1 span.info_prix{
background: orange;
  font-size: 12px;
  color: white;
  padding: 0px 13px;
  display: inline-block;
  margin-bottom: 11px;
  margin-top: 5px;
  text-transform: uppercase;	
}

#shop .c3 .c3_c1 span.info_tva{
font-size: 15px;
font-weight: 500;
}

#shop .c3 .c3_c1 span.prix_barre{
text-decoration: line-through;
display: inline-block;
}

#shop .c3 .c3_c1 span.prix_commentaire{
display: inline-block;
}

#shop .c3 .devis_button{
margin: 0 0 20px 20px;
}

#shop .c3 .c3_c1 form{
padding: 20px;
}

#shop .c3 .c3_c1 label{
opacity: 0.45;
font-size: 15px;
margin-right: 5px;
}

#shop .c3_c1 input[type="number"]{
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
height: 40px;
box-sizing: border-box;
vertical-align: middle;
width: 200px;
font-size: 17px;
margin-right: 5px;
}

#shop .c3_c1 input[type="submit"]{
display: inline-block;
height: 40px;
vertical-align: middle;
background-color: #68bc45;
border-radius: 7px;
cursor: pointer;
color: white;
position: relative;
padding: 0 20px 0 40px;
background-image: url(images/icon-cart-white.svg);
background-repeat: no-repeat;
background-position: 10px center;
background-size: 18px;
font-size: 18px;
margin-top: 20px;
}

#shop .c3_c1 .out-of-stock{
padding: 20px;
margin: 0;
font-size: 14px;
line-height: 19px;
color: #969892;
}

#shop .c3_c1 form .emballage{
margin: 20px 0 0;
font-size: 14px;
line-height: 19px;
color: #969892;
}

#shop .c3 .c3_c1 .beefup-head{
margin-top: 50px;
margin-bottom: 20px;
text-transform: uppercase;
border-bottom: 1px solid #68bc45;
font-weight: 600;
}

#shop .c3 .c3_c1 .beefup-body .description{
font-size: 17px;
line-height: 24px;
}

#shop .c3 .c3_c1 .contact-infos img{
width: 42px;
margin-right: 7px;
}

#shop .c3 .c3_c2{
display: inline-block;
width: 44%;
vertical-align: top;
}

#shop .c3 .video{
display:block;
width:100%;	
}

#shop .c3 .video iframe{
width:100%;	
}

#shop .c3 .demo-gallery a.item.main_pic{ /*principale*/
width: 100%;
height:auto;
display:block;
position:relative;
overflow: hidden;
}

#shop .c3 .demo-gallery a.item.main_pic img{
width:100%;
height:100%;
object-fit:cover;
transition: all 0.4s;
}

#shop .c3 .demo-gallery a.item.main_pic:hover img{
transform: scale(1.1);
}

#shop .c3 .demo-gallery a.item.other_pics{ /*miniatures*/
width: 18%;
height:100px;
display:inline-block;
position:relative;
border:0.25px solid white;
overflow: hidden;
}

#shop .c3 .demo-gallery a.item.other_pics img{
width:100%;
height:100%;
object-fit:cover;
transition: all 0.4s;
}

#shop .c3 .demo-gallery a.item.other_pics:hover img{
transform: scale(1.1);
}

#shop .c3 .demo-gallery a.item.other_pics.last{
background-color:#68bc45;
background-image:url('images/voir_plus.svg');
background-repeat:no-repeat;
background-size:85%;
background-position:center;
transition:all 0.15s;
}

#shop .c3 .demo-gallery a.item.other_pics.last img,
#shop .c3 .demo-gallery a.item.other_pics.last .arrow{
display:none;
}

#shop .c3 .demo-gallery a.item.other_pics.last:hover{
background-size:90%;	
}

#shop .c3 .demo-gallery a.item.hidden{
display:none;	
}

#shop .c3 .related{
position: relative;
}

#shop .c3 .related:before{
content: "";
position: absolute;
height: 1px;
background-color: #00475b59;
width: 90%;
margin: 0 auto;
text-align: center;
left: 5%;
top: -100px;
}

#shop .c3 .related h2{
margin-top: 200px;
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin-bottom: 40px;
position: relative;
}

#shop .c3 .related h2:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#shop .c3 .related .beefup-body{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

#shop .c3 .related .item{
width: 23%;
/*padding-bottom: 20px;
border-bottom: 1px solid #d5d5d5;*/
}

#shop .c3 .related .item:nth-of-type(n+5){
display: none;
}

#shop .c3 .related .item .image{
width: 100%;
height: 300px;
overflow: hidden;
}

#shop .c3 .related .item .image img{
width: 100%;
height: 100%;
object-fit: contain;
transition: all 0.6s;
}

#shop .c3 .related .item:hover .image img{
transform: scale(1.2);
}

#shop .c3 .related .item .image .sombre{
position: absolute;
bottom: 50px;
top: 0;
width: 100%;
background-color: #4e4e4e;
opacity: 0.45;
left: 0;
}

#shop .c3 .related .item .image .out-of-stock{
position: absolute;
bottom: 35px;
width: 100%;
height: 30px;
line-height: 30px;
background-color: #4e4e4e;
color: white;
font-size: 16px;
left: 0;
}

#shop .c3 .related .item .price{
background-color: #68bc45;
color: white;
display: flex;
justify-content: space-between;
margin-top: -35px;
position: relative;
z-index: 1;
padding: 7px 15px;
font-size: 16px;
font-weight: 700;
text-align: left;
}

#shop .c3 .related .item .price .shop{
display: inline-block;
width: 22px;
background-image: url(images/icon-cart-white.svg);
background-size: 22px;
background-repeat: no-repeat;
background-position: center;
}

#shop .c3 .related .item h3{
text-align: left;
font-size: 18px;
line-height: 22px;
font-weight: 500;
margin-top: 20px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
}

#shop .c3 .related .item h3+p{
text-align: left;
color: #757575;
font-size: 15px;
margin-top: 5px;
}


/* ***** Mentions légales ***** */


#legal{
text-align:center;
padding:90px 50px 100px; /* a recopier pour toutes les pages SAUF home */

}

#legal .main_width{
padding-top:85px;
padding-bottom:30px;
}


#legal h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
text-align: center;
position: relative;
}

#legal h1:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#legal h2{
background-position: 0px 7px;
position: relative;
bottom: 0px;
margin-top: 14px;
margin-bottom: 14px;
font-size:28px;
line-height:30px;
background-position: bottom left;
padding-bottom: 7px;
}

#legal h3{
line-height:23px!important;
padding-bottom: 6px!important;
}

#legal p{
margin-bottom:5px;
}

#legal p span{
display:inline-block;
vertical-align:top;
width:166px;
text-decoration:underline;
}

#legal .c0{
width:600px;
text-align:left;
display:inline-block;
vertical-align:top;
border:1px solid #c0c0c0;
text-align:left;
padding:1%;
margin-bottom:30px;
background-color:white;
border-radius:13px;
}

#legal .c1{
display:inline-block;
vertical-align:top;
width:100%;
padding:1%;
border:1px solid #c0c0c0;
text-align:left;
margin-bottom:30px;
min-height:262px;
background-color:white;
border-radius:13px;
}

#legal .c1.last{
margin-right:0px;
}

#legal .c1 p{
margin-bottom:8px;
font-size:13px;
line-height:22px;
}

#legal .c2{
width:100%;
padding:1%;
text-align:left;
display:inline-block;
vertical-align:top;
border:1px solid #c0c0c0;
margin-bottom:30px;
height:600px;
overflow:auto;
padding-bottom:30px;
background-color:white;
border-radius:13px;
}

#legal .c2 h3{

}

#legal .c2 h4{

}

#legal .c2 p{
margin-bottom:8px;
font-size:13px;
line-height:22px;
}

#legal .c2 ul li{
margin-bottom:5px;
font-size:13px;
line-height:22px;
padding-left:15px;
list-style-type:none;
}

#legal .c2 ul ul li{
padding-left:30px;
}

#legal .c2.last{
margin-right:0px;
}


/* ***** 404 ***** */

#e404{
text-align:center;
padding:90px 50px 100px; /* a recopier pour toutes les pages SAUF home */
}

#e404 .main_width{
padding-top:85px;
padding-bottom:30px;
box-sizing: border-box;
}

#e404 h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
position: relative;
text-align: center;
}

#e404 h1:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}


/* *********************** FOOTER *********************** */

#footer{
overflow: hidden;
}

#footer .main_width{
background-color: white;
padding: 0 70px;
box-sizing: border-box;
}

#footer .footer_logo{
border-top: 1px solid #00475b59;
padding: 100px 0 280px;
width: 100%;
max-width: 1000px;
margin: 0 auto;
text-align: center;
}

#footer .footer_logo img{
width: 500px;
height: auto;
}

#footer .footer-main{
background-color: #00475b;
border-top-left-radius: 50% 15%;
border-top-right-radius: 50% 15%;
width: 110%;
margin-left: -5%;
text-align: center;
transform: translateY(-90px);
margin-bottom: -90px;
}

#footer .footer-main .main_width{
background-color: transparent;
text-align: center;
}

#footer .footer-main .main_width>img{
width: 90%;
height: auto;
position: relative;
top: -110px;
margin-bottom: -65px;
}

#footer .footer-main .c1{
display: inline-block;
width: 38%;
margin: 0 3%;
vertical-align: top;
text-align: left;
}

#footer .footer-main .c2{
display: inline-block;
width: 23%;
margin: 0 3%;
vertical-align: top;
text-align: left;
}

#footer .footer-main .c3{
display: inline-block;
margin: 60px 3% 0;
vertical-align: top;
text-align: left;
display: flex;
justify-content: space-around;
}

#footer .footer-main p, #footer .footer-main a, #footer .footer-main span{
color: white;
}

#footer .footer-main .footer-title{
font-size: 20px;
color: white;
text-decoration: underline;
margin-bottom: 25px;
display: block;
}

#footer .footer-main .c1 .footer-title, #footer .footer-main .c2 .footer-title{
transform: translateX(-20px);
}

#footer .footer-main .c1 a:not(.footer-title), #footer .footer-main .c1 span, #footer .footer-main .c2 a:not(.footer-title), #footer .footer-main .c2 span{
display: block;
padding-left: 40px;
background-image: url(images/button-after.svg);
background-size: 40px;
background-position: -20px 6px;
background-repeat: no-repeat;
transition: all 0.4s;
margin-bottom: 15px;
font-size: 17px;
overflow: hidden;
}

#footer .footer-main a:not(.footer-title):hover, #footer .footer-main span:hover{
background-position: -10px 6px;
}

#footer .footer-main p+.footer-title, #footer .footer-main span+.footer-title{
margin-top: 50px;
}

#footer .footer-main ul{
list-style: none;
}

#footer .ouverture{
margin-bottom: 2px;
}

#footer .c3>div:first-of-type .footer-title+img{
	width: 200px;
}

#footer .c3>div:nth-of-type(2) .footer-title+img{
	width: 75px;
}

#footer .c3 a img{
	width: 32px;
	margin-right: 7px;
}

#footer p.copyright{
color:white;
text-align:center;
font-size:14px;
margin-top:100px;
padding-bottom:15px;
margin-bottom:0px;
}

#footer p.copyright a{
color:white;
text-decoration:underline;
}

#footer p.copyright+a{
width: 100px;
display: block;
margin: 0 auto;
padding-bottom: 30px;
}

#footer p.copyright+a img{
width: 100%;
height: auto;
}

/* ***** CAPTCHA ***** */

.grecaptcha-badge { 
	visibility: hidden; 
}


/* ***** COOKIES ***** */

#cookieChoiceInfo{
	box-sizing: border-box;
}

/* ***** AOS ***** */

.fade_container {
    overflow-x: hidden;
}


/* *************************** ESHOP *** ESHOP *** ESHOP *************************** */


/* ***** CART ***** */
#cart{
padding:90px 50px 100px; /* a recopier pour toutes les pages SAUF home */
text-align:center;
}

#cart h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
position: relative;
}

#cart h1:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#cart .c1{
display:inline-block;
vertical-align:top;
width:69%;
padding-right:4%;
text-align: right;
}

#cart .c2{
display:inline-block;
vertical-align:top;
width:21%;
padding-left:4%;
text-align:left;
}

#cart .c2 .errors p{
font-size: 14px;
line-height: 14px;
margin: 0px;
color: #e10613;
margin-bottom: 20px;
}

#cart table.panier{
width:100%;
border-collapse: collapse;
table-layout: auto;
margin-bottom:60px;
text-align: left;
}

#cart table.panier tr{
border-bottom:1px solid #e1e1e1;
height:60px;
}

#cart table.panier tr:last-child{
border:none;
}

#cart table.panier td a:hover{
text-decoration: underline;
}

#cart table.panier td.image{
width: 50px;
height: 50px;
display: inline-block;
margin-top: 5px;
}

#cart table.panier td.image>div{
width: 100%;
height: 100%;
overflow: hidden;
}

#cart table.panier td.image img{
width: 100%;
height: 100%;
object-fit: cover;
}

#cart table.panier td.titre{
padding:20px;	
vertical-align: middle;
overflow: hidden;
}

#cart table.panier td.titre a{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
}

#cart table.panier td.prix_unitaire{
padding:0px 20px;
width: 85px;
vertical-align: middle;
font-size: 13px;
line-height: 16px;
}


#cart table.panier td.changer_quantite{
width:22px;
text-align:center;
table-layout: auto;
vertical-align: middle;
}

#cart table.panier td.changer_quantite input[type="submit"]{
display:inline-block;
line-height:0px;
color:#7b7a7a;
width:17px;
height:17px;
border:1px solid #e1e1e1;
text-align:center;
background-color:white;
color:#404040;
padding:0px;
margin:0px;
cursor: pointer;
}

#cart table.panier td.changer_quantite input[type="submit"]:hover{
padding:0px;
margin:0px;
}

#cart table.panier td.quantite{
text-align:center;
vertical-align: middle;
}

#cart table.panier td.erreur p{
font-size: 14px;
line-height: 14px;
margin: 0px;
color: #e10613;
}

#cart table.panier td.supprimer{
padding:0px 20px;
vertical-align: middle;
}

#cart table.panier td.supprimer input[type="submit"]{
display:inline-block;
line-height:15px;
color:#7b7a7a;
border:1px solid #e1e1e1;
text-align:center;
background-color:white;
color:#404040;
padding:2px 4px;
margin:0px;
cursor: pointer;
}

#cart table.panier td.supprimer input[type="submit"]:hover{
}

#cart table.panier td.prix{
width:100px;
text-align:right;	
padding-right:13px;
transform: translate(0, 7px);
vertical-align: middle;
}

#cart table.panier td.prix p{
display: inline-block;
font-size: 13px;
}

#cart table.panier+a.button{
background-color: transparent;
color: #14190b;
opacity: 0.45;
border: none;
border-bottom: 1px solid hsl(81deg 39% 7% / 45%);
padding: 5px 0;
background: transparent;
border-radius: 0;
margin-right: 23px;
}

#cart table.panier+a.button+a.button{
}

#cart .recapitulatif{
text-align:right;
margin-top:30px;
}

div#cart p.livraison{
display: inline-block;
padding-right: 0;
}

div#cart p.livraison+div.title_alert{
margin-right: 7px;
margin-left: 5px;
}

div#cart p.livraison span{
width: 97px;
}

#cart p.total,
#cart p.livraison,
#cart p.total_a_payer,
#cart p.livraison_gratuite,
#cart p.livraison_supplementaire{
font-size:15px;
margin-bottom:0px;
padding: 7px 13px;
}

#cart p.total span,
#cart p.livraison span,
#cart p.total_a_payer span,
#cart p.livraison_gratuite span,
#cart p.livraison_supplementaire span{
display:inline-block;
vertical-align:top;
width:120px;
font-weight:900;
}

#cart p.info_livraison_gratuite span{
display:inline-block;
vertical-align:top;
padding-left: 30px;
background-image: url(images/common/arrow-right-green.svg);
background-size: 15px;
background-repeat: no-repeat;
background-position: 3px 10px;
font-size: 15px;
color:#68bc45;
}

#cart p.info_livraison_gratuite{
margin-bottom: 7px;
}

#cart p.total_a_payer{
display:inline-block;
vertical-align:top;
border-top:1px solid #e1e1e1;	
min-width:350px;
}

#cart p.livraison_gratuite{
vertical-align:top;
min-width:300px;
}

#cart p.livraison_supplementaire{
vertical-align:top;
min-width:300px;
}


#cart .tunnel{
border-left:3px solid #e1e1e1;
}

#cart .tunnel p{
padding-left: 45px;
opacity: 0.45;
font-size: 15px;
line-height: 21px;
}

#cart .tunnel p a{
text-decoration: underline;
}

#cart .tunnel .space{
margin-bottom:31px;	
}

.alert_message{
	position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
}

.title_alert{
	display: inline-block;
	position: relative;
	margin-left: 10px;
}

.title_alert img{
	width: 15px;
	margin-right: 5px;
}

.title_alert:hover .alert_message{
	visibility: visible;
    height: 43px;
    overflow: visible;
    position: absolute;
    background-color: #e7e7e7;
    padding: 10px;
    z-index: 10;
    width: 300px;
    left: -152px;
    top: -82px;
    box-shadow: 5px 5px 15px -8px #b0b0b0;
    text-transform: none;
    line-height: 1.2;
    text-align: center;
}

.title_alert:hover .alert_message:after {
	top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: #e7e7e7;
    border-width: 10px;
    margin-left: -10px;
}

#cart .title_alert:hover .alert_message p{
	font-size: 16px;
    line-height: 22px;
}


/* ***** LOGIN ***** */
#login{
padding:90px 50px 100px; /* a recopier pour toutes les pages SAUF home */
text-align:center;
}

#login h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
position: relative;
}

#login h1:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#login .c1{
display:inline-block;
vertical-align:top;
width:40%;
padding-right:4%;
text-align:left;
}

#login .c1 label{
opacity: 0.45;
font-size: 15px;
display: block;
margin-bottom: 10px;
}

#login .c1 input+label{
margin-top: 20px;
}

#login .c1 input{
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
height: 40px;
box-sizing: border-box;
vertical-align: middle;
width: 100%;
font-size: 17px;
margin-right: 5px;
}

#login .c1 input[type="submit"]{
background: rgb(171,199,62);
background: linear-gradient(90deg, rgba(171,199,62,1) 25%, rgba(104,188,69,1) 100%);
display: inline-block;
border-radius: 30px;
background-color: #14190b;
color: white;
padding: 8px 23px;
margin: 0;
transition: all 0.5s ease-in-out;
font-size: 15px;
text-decoration: none;
transition: all 0.3s;
width: fit-content;
border: none;
cursor: pointer;
}

#login .c2{
display:inline-block;
vertical-align:top;
width:30%;
padding-left:4%;
text-align:left;
}

#login .c2 a{
margin-top: 20px;
}

#login h2{
display: block;
color: #969892;
font-size: 18px;
margin-bottom: 30px;
text-transform: uppercase;
border-bottom: 1px solid #68bc45;
font-weight: 600;
}



#login p.new_pass a{
font-size:13px;
opacity:0.45;
transition:all 0.3s;
}

#login p.new_pass a:hover{
opacity:1;	
}

@keyframes error {
	0% {
		opacity: 0;
		transform: translate(-30px, 0);
		height: 0;
		margin-bottom:0;
	}
	3% {
		opacity: 0;
		transform: translate(-30px, 0);
		height: auto;
		margin-bottom:76px;
	}
	10%{
		opacity: 1;
		transform: translate(0, 0);
		height: auto;
		margin-bottom:76px;
	}
	90%{
		opacity: 1;
		transform: translate(0,0);
		height: auto;
		margin-bottom:76px;
	}
	97% {
		opacity: 0;
		transform: translate(-30px, 0);
		height: auto;
		margin-bottom:76px;
	}
	100% {
		opacity: 0;
		transform: translate(-30px, 0);
		height: 0;
		margin-bottom:0;
	}
}

#login .message{
display: block;
opacity: 0;
transform: translate(-30px, 30px);
animation-name: error;
animation-duration: 15s;
animation-delay: 0.3s;
height: 0;
}

#login .message p{
display:inline-block;
vertical-align:top;
background-color: #e10613;
margin-bottom:5px;
font-size:20px;
line-height:55px;
color:white;
padding:0px 30px;
}

#login .message.success p{
background-color: #68bc45;
}

#login p.error{
display: block;
font-size: 15px;
color: red;
font-weight: 900;
margin-top: 10px;
margin-bottom: 0px !important;
opacity: 0;
transform: translate(-30px, 30px);
animation-name: error;
animation-duration: 15s;
animation-delay: 0.3s;
height: 0;
}

#login label{
display: block;
}


/* ***** SIGN IN ***** */
#signin{
padding:90px 50px 100px; /* a recopier pour toutes les pages SAUF home */
text-align:center;
position: relative;
}

#signin h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
position: relative;
margin: 0 0 50px;
}

#signin h1:after {
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#signin .c1{
display:inline-block;
vertical-align:top;
width:51%;
padding-right:6%;
text-align:left;
}

#signin .c2{
display:inline-block;
vertical-align:top;
width:38%;
padding-left:4%;
text-align:left;
}

#signin h2{
margin-bottom: 35px;
text-transform: uppercase;
border-bottom: 1px solid #68bc45;
font-weight: 600;
text-align: left;
}

#signin h2 span{
display: block;
color: #969892;
font-size: 18px;
}

#signin .opt_in_label{
display:inline-block;	
}

#signin .submit{
	background: rgb(171,199,62);
	background: linear-gradient(90deg, rgba(171,199,62,1) 25%, rgba(104,188,69,1) 100%);
	display: inline-block;
	border-radius: 30px;
	background-color: #14190b;
	color: white;
	padding: 8px 23px;
	margin: 30px 0 0;
	transition: all 0.5s ease-in-out;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s;
	width: fit-content;
	border: none;
	cursor: pointer;
}

#signin .c2 p{
font-size: 13px;
opacity: 0.45;
line-height: 19px;
}

#signin .c2 p.connexion_btn, #recuperation_pass p.connexion_btn{
font-size: 13px;
opacity: 0.45;
transition: all 0.3s;
margin-top: 20px;
}

#signin .c2 p.connexion_btn a:hover, #recuperation_pass p.connexion_btn a:hover{
opacity: 1;
}

#signin .form_errors p{
display: block;
font-size: 15px;
color: red;
font-weight: 900;
margin-top: 10px;
margin-bottom: 20px !important;
opacity: 0;
transform: translate(-30px, 30px);
animation-name: error;
animation-duration: 15s;
animation-delay: 0.3s;
height: 0;
}

#signin.eshop label, #signin.eshop .label_input{
display:block;
margin-bottom:4px;
font-size: 17px;
}

#signin.eshop .radio label{
display:inline-block;
}

div#signin input[type="email"]{
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
height: 40px;
box-sizing: border-box;
vertical-align: middle;
width: 100%;
margin-bottom: 20px;
font-size: 17px;
margin-right: 5px;
}

div#signin input[type="password"]{
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
height: 40px;
box-sizing: border-box;
vertical-align: middle;
width: 100%;
margin-bottom: 20px;
font-size: 17px;
margin-right: 5px;
}

div#signin input[type="text"]{
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
height: 40px;
box-sizing: border-box;
vertical-align: middle;
width: 100%;
margin-bottom: 20px;
font-size: 17px;
margin-right: 5px;
}

div#signin input[type="number"]{
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
height: 40px;
box-sizing: border-box;
vertical-align: middle;
width: 100%;
margin-bottom: 20px;
font-size: 17px;
margin-right: 5px;
}


div#signin input[type="tel"]{
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
height: 40px;
box-sizing: border-box;
vertical-align: middle;
width: 100%;
margin-bottom: 20px;
font-size: 17px;
margin-right: 5px;
}

div#signin.eshop .radio{
margin-bottom: 20px;
}

div#signin.eshop input[type="checkbox"]{
display: inline;
margin-top: 2px;
vertical-align: top;
}

div#signin.eshop input[type="checkbox"]+label{
display: inline-block;
width: 90%;
vertical-align: top;
}

div#signin.eshop .space{
display: inline-block;
width: 13px;
}

div#signin.eshop label, div#signin.eshop .label_input{
opacity: 0.45;
font-size: 15px;
line-height: 18px;
margin-bottom: 10px;
}

/* ***** MON COMPTE ***** */
#compte{
padding:90px 50px 100px; /* a recopier pour toutes les pages SAUF home */
text-align:center;
}

#compte h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
position: relative;
}

#compte h1:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#compte h2{
margin-top: 50px;
margin-bottom: 35px;
text-transform: uppercase;
border-bottom: 1px solid #68bc45;
font-weight: 600;
text-align: left;
}

#compte h2 span{
display: block;
color: #969892;
font-size: 18px;
}


#compte .c1{
width:100%;
margin-bottom:60px;
}

#compte .c1a{
display: inline-block;
vertical-align: top;
width: 37%;
padding-left: 2%;
text-align: left;
}

#compte .c1b{
display: inline-block;
vertical-align: top;
width: 38%;
padding-left: 22%;
text-align: left;
font-size: 13px;
}

#compte .c1 p{
font-size:15px;
margin-bottom:8px;
}

#compte .c1 p span{
display: inline-block;
vertical-align: top;
font-weight: 900;
margin-right: 10px;
}

#compte .c1 a.button{
margin-bottom:16px;	
}

#compte .c1 .changer_password{
background-image: url('images/password.png');
background-repeat: no-repeat;
background-position: 0px 3px;
padding-left: 61px;
padding-top: 5px;
padding-bottom: 5px;
display: inline-block;
margin-bottom:16px;
}

#compte .c1 .modifier_info_personnelles{
background-image: url('images/common/update-arrow.png');
background-size:21px;
background-repeat: no-repeat;
background-position: 0px 3px;
padding-left: 32px;
padding-top: 5px;
padding-bottom: 5px;
display: inline-block;
margin-bottom:16px;
}

#compte .c1 .mes-adresses{
background-image: url('images/common/adresses.svg');
background-size:21px;
background-repeat: no-repeat;
background-position: 0px 3px;
padding-left: 32px;
padding-top: 5px;
padding-bottom: 5px;
display: inline-block;
margin-bottom:16px;
}

#compte .c1 .logout{
background-image: url('images/common/logout.png');
background-size:21px;
background-repeat: no-repeat;
background-position: 0px 3px;
padding-left: 28px;
padding-top: 5px;
padding-bottom: 5px;
display: inline-block;
margin-bottom:16px;
}

#compte .commande{
border: 1px solid grey;
border-radius: 5px;
padding: 20px;
text-align: left;
max-width: 1200px;
margin: 0 auto 30px;
font-size: 15px;
}

#compte .commande p{
font-size: 14px;
margin-bottom: 8px;
}

#compte .commande span{
display: inline-block;
vertical-align: top;
min-width: 240px;
font-weight: 900;
}

#compte .commande span.etat_content{
display: inline-block;
vertical-align: top;
min-width: 0;
font-weight: normal;
}

#compte .commande span.etat_content.bg_purple{
background-color: #34209E;
color: white;
padding: 0 10px;
border-radius: 5px;
}

#compte .commande span.etat_content.bg_green{
background-color: #70b580;
color: white;
padding: 0 10px;
border-radius: 5px;
}

#compte .commande span.etat_content.bg_red{
background-color: #E74C3C;
color: white;
padding: 0 10px;
border-radius: 5px;
}

#compte .commande span.etat_content.bg_orange{
background-color: #d89e34;
color: white;
padding: 0 10px;
border-radius: 5px;
}

#compte .commande .infos_paiement{
border: 2px solid #34209E;
border-radius: 5px;
padding: 15px;
margin: 20px 2%;
}

#compte .commande .infos_paiement p:first-of-type{
font-weight: 900;
margin-bottom: 15px;
}

#compte .commande .infos_paiement p:nth-of-type(n+1) span:first-of-type{
font-weight: 900;
min-width: 170px;
}

#compte .commande .infos_paiement p:nth-of-type(n+1) span+span{
font-weight: normal;
}

#compte table{
width: 100%;
margin-top: 30px;
}

#compte table thead{
background-color: #d3d3d3;
}

#compte table th, #compte table td{
padding: 10px;
}

#compte table tr:nth-last-child(-n+3) td:first-of-type{
	font-weight: bold;
	text-align: right;
}

#compte table tr:last-child td+td{
	font-weight: bold;
}

/* ***** MES ADRESSES ***** */

#signin.mes-adresses form .c1{
	width: 100%;
}

#signin.mes-adresses input[name="rue"]{
	width: 300px;
    display: inline-block;
    vertical-align: top;
}

#signin.mes-adresses input[name="numero"]{
	width: 65px;
    margin-right: 0;
    margin-left: 10px;
    display: inline-block;
    vertical-align: top;
}

#signin.mes-adresses select{
	border: 1px solid #757575;
    background-color: white;
    padding: 0 10px;
    border-radius: 7px;
    height: 40px;
    box-sizing: border-box;
    vertical-align: middle;
    width: 100%;
    margin-bottom: 20px;
    font-size: 17px;
    margin-right: 5px;
}

#signin.mes-adresses .c1 input[type="submit"]{
	background: rgb(171,199,62);
	background: linear-gradient(90deg, rgba(171,199,62,1) 25%, rgba(104,188,69,1) 100%);
	background-color: rgba(0, 0, 0, 0);
	display: inline-block;
	border-radius: 30px;
	background-color: #14190b;
	color: white;
	padding: 8px 23px;
	margin: 15px 0 0;
	transition: all 0.5s ease-in-out;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s;
	width: fit-content;
	border: none;
	cursor: pointer;
}

#signin.mes-adresses .adresse{
	width: 100%;
    background-color: white;
    border: 2px solid #cfcece;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    border-radius: 4px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 30px;
}

#signin.mes-adresses .adresse p{
	font-size: 18px;
    opacity: 1;
    line-height: 25px;
    margin: 0;
}

#signin.mes-adresses .adresse span{
	display: block;
}

#signin.mes-adresses .c2 form{
	position: absolute;
	top: 0;
	right: 0;
}

#signin.mes-adresses .c2 input[type="submit"]{
	background-color: transparent;
    color: #231f20;
    text-decoration: underline;
    margin: 5px 10px 0 0;
}


/* ***** RÉCUPÉRATION MOT DE PASSE ***** */
#recuperation_pass{
padding:90px 50px 100px; /* a recopier pour toutes les pages SAUF home */
text-align:center;
position: relative;
}

#recuperation_pass h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
position: relative;
}

#recuperation_pass h1:after {
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#recuperation_pass p.error{
display: block;
font-size: 15px;
color: red;
font-weight: 900;
margin-top: 10px;
margin-bottom: 0px !important;
opacity: 0;
transform: translate(-30px, 30px);
animation-name: error;
animation-duration: 15s;
animation-delay: 0.3s;
height: 0;
}

#recuperation_pass form p{
margin-bottom: 40px;
}

.eshop a.btn_back{
opacity: 0.45;
display: inline-block;
vertical-align: top;
line-height: 16px;
font-size: 16px;
background-color: transparent;
border: 1px solid hsl(0deg 0% 0% / 45%);
position: absolute;
top: 20px;
left: 50px;
padding: 7px 20px 7px 50px;
background-image: url(images/button-back.svg);
background-repeat: no-repeat;
background-position: left 10px center;
background-size: 32px;
border-radius: 18px;
}

#recuperation_pass form {
width: 450px;
margin: 0 auto;
text-align: center;
}

#recuperation_pass label {
opacity: 0.45;
font-size: 15px;
display: block;
margin-bottom: 10px;
}

#recuperation_pass input {
border: 1px solid #757575;
background-color: white;
padding: 10px;
border-radius: 7px;
height: 40px;
box-sizing: border-box;
vertical-align: middle;
width: 100%;
font-size: 17px;
margin-bottom: 10px;
}

#recuperation_pass input[type="submit"] {
background: rgb(171,199,62);
background: linear-gradient(90deg, rgba(171,199,62,1) 25%, rgba(104,188,69,1) 100%);
display: inline-block;
border-radius: 30px;
background-color: #14190b;
color: white;
padding: 8px 23px;
margin: 0;
transition: all 0.5s ease-in-out;
font-size: 15px;
text-decoration: none;
transition: all 0.3s;
width: fit-content;
border: none;
cursor: pointer;
margin-top: 20px;
z-index: 1;
position: relative;
}

/* ***** CHECKOUT ***** */

#checkout{
padding:90px 50px 100px; /* a recopier pour toutes les pages SAUF home */
text-align:center;
position: relative;
}

#checkout .content{
vertical-align: top;
width: 64%;
display: inline-block;
text-align: left;
}

#checkout h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
position: relative;
margin: 0 0 50px;
}

#checkout h1:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#checkout .facturation_form{
position: absolute;
display: inline-block;
height: 0;
opacity: 0;
overflow: hidden;
}

@keyframes opacity {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

#checkout .facturation_form.visible{
position: relative;
display: inline-block;
animation-name: opacity;
animation-duration: 0.6s;
overflow: hidden;
height: auto;
opacity: 1;
width: 100%;
margin-top: 40px;
}

#checkout .resume{
vertical-align: top;
width: 25%;
margin-left: 5%;
padding-left: 5%;
display: inline-block;
border-left: 2px solid #cccccc;
text-align: center;
}

#checkout .resume p{
max-width: 285px;
margin: 0 auto 20px;
display: flex;
justify-content: space-between;
font-size: 14px;
text-align: center;
}

#checkout .resume .total_articles span:first-of-type, #checkout .resume .livraison span:first-of-type{
text-align: left;
}

#checkout .resume .cart{
margin-bottom: 30px;
}

#checkout .resume .cart p:last-of-type{
border-bottom: 1px solid #cccccc;
padding-bottom: 20px;
}

#checkout .resume .adresses{
margin-top: 50px;
margin-bottom: 50px;
}

div#checkout .resume p.produit span{
font-weight: bold;
max-height: 3em;
overflow: hidden;
max-width: 75%;
font-size: 15px;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
}

div#checkout .resume p.produit span+span{
font-weight: normal;
}

#checkout .resume p.produit{
text-align: left;
font-size: 16px;
line-height: 22px;
}

#checkout .resume p.adresse_livraison{
display: block;
}

#checkout .resume p.adresse_livraison span+span{
font-size: 14px;
line-height: 18px;
margin-bottom: 0;
}

#checkout .resume p.adresse_livraison .name,#checkout, .resume p.adresse_livraison .address{
display: block;
text-align: left;
}

#checkout .resume p.adresse_facturation{
display: block;
}

#checkout .resume p.adresse_facturation .name, #checkout .resume p.adresse_facturation .address{
display: block;
text-align: left;
margin-bottom: 5px;
}

#checkout .resume p.adresse_facturation .title, #checkout .resume p.adresse_livraison .title{
display: inline-block;
}

#checkout .resume p.adresse_facturation, #checkout .resume p.adresse_livraison{
text-align: left;
margin-bottom: 20px;
}

#checkout .resume p.adresse_facturation span:nth-child(n+2){
font-size: 14px;
line-height: 18px;
margin-bottom: 0;
}

#checkout .resume p.total{
border-top: 1px solid #cccccc;
padding-top: 15px;
margin-bottom: 35px;
}

#checkout .resume p.tva{
display: block;
text-align: left;
}

#checkout .resume p.tva span{
display: block;
}

#checkout .resume p.tva span+span{
font-size: 14px;
line-height: 18px;
margin-bottom: 0;
}

#checkout .resume p.tva span+span a{
text-decoration: underline;
}

#checkout input[type="submit"]{
background: rgb(171,199,62);
background: linear-gradient(90deg, rgba(171,199,62,1) 25%, rgba(104,188,69,1) 100%);
display: inline-block;
border-radius: 30px;
background-color: #14190b;
color: white;
padding: 8px 23px;
margin: 0;
transition: all 0.5s ease-in-out;
font-size: 15px;
text-decoration: none;
transition: all 0.3s;
width: fit-content;
border: none;
cursor: pointer;
margin-top: 30px;
}

#checkout .resume p.total span, #checkout .resume p.livraison span+span, #checkout .resume p.total_articles span+span{
font-weight: 900;
}

#checkout .resume .adresses .title{
font-weight: 900;
}

div#checkout .resume.checkout-resume span{
	font-weight: normal;
	text-align: left;
}

div#checkout .resume.checkout-resume span+span{
	font-weight: 900;
}

div#checkout .resume.checkout-resume p.total span{
	font-weight: 900;
}

#checkout h1{
margin-bottom: 60px;
text-align: center;
}

#checkout p.label_input{
font-size: 22px;
margin-bottom: 30px;
}

#checkout p.livraison_camion{
font-size: 15px;
line-height: 18px;
color: #e10613;
margin-bottom: 30px;
}

#checkout .choices{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

#checkout .choice{
width: 49%;
background-color: white;
box-sizing: border-box;
border: 1px solid #cccccc;
text-align: left;
margin: 0 0 25px 0;
display: inline-block;
vertical-align: top;
cursor: pointer;
border-radius: 15px;
}

#checkout .paiement .choice{
width: 49%;
display: block;
min-height: auto;
margin: 0 0 20px;
}

#paiement_reception{
padding: 75px 50px 100px 50px;
text-align: center;
}

#paiement_reception>div{
max-width: 1200px;
margin: auto;
}

#paiement_reception>div.align-left{
text-align: left;
}

#paiement_reception h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
position: relative;
text-align: center;
}

#paiement_reception h1:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#paiement_reception>div p.intro{
text-align: center;
}

#paiement_reception div.content p.inline{
display: inline;
}

#paiement_reception div.content p:not(.inline){
margin: 10px 0;
}

#paiement_reception div.content p:not(.inline) span:first-of-type{
font-weight: bold;
}

#paiement_reception .infos_paiement{
padding: 10px 20px;
margin: 30px 0;
box-sizing: border-box;
border: 2px solid #68bc45;
border-radius: 20px;
}

#paiement_reception .content>img{
margin: 30px auto;
width: 200px;
height: auto;
display: block;
}

#checkout .choice.selected{
border: 2px solid #68bc45;
font-weight: 500;
background-color: #efefef;
position: relative;
}

#checkout .choice.selected:after{
content:"";
position: absolute;
display: block;
right: 10px;
top: 10px;
width: 15px;
height: 15px;
background-image: url(../images/icon-selected.svg);
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
}

#checkout .choice label{
display: inline-block;
width: 100%;
padding: 20px;
box-sizing: border-box;
cursor: pointer;
min-height: 106px;
}

#checkout .paiement .choice label{
min-height: auto;
}

#checkout .paiement .choice label img{
width: 30px;
height: 30px;
padding: 0 5px;
vertical-align: middle;
}

#checkout .paiement .choice label span{
display: block;
margin-top: 12px;
}

#checkout .choice span{
display: block;
}

#checkout .form_opener{
margin-top: 20px;
cursor: pointer;
}

#checkout .facturation_form>label{
display: inline-block;
font-weight: 900;
width: 295px;
vertical-align: top;
margin: 10px 30px 10px 0;
}

#checkout .facturation_form .tva-infos{
display: block;
font-size: 12px;
margin-top: 10px;
font-weight: 400;
line-height: 17px;
color: #a9afb3;
margin-bottom: 40px;
}

#checkout .facturation_form>input[type="text"]{
border: 1px solid #bdc3c7;
padding: 10px;
font-size: 16px;
color: #2c3e50;
transition: all 0.2s ease-in-out;
margin-bottom: 20px;
width: 350px;
border-radius: 4px;
vertical-align: top;
margin: 0;
}

#checkout input[type="radio"] {
visibility: hidden;
position: absolute;
}

#checkout .new_address{
width: 49%;
background-color: white;
box-sizing: border-box;
border: 1px solid #cccccc;
text-align: center;
margin: 0 0 25px 0;
display: inline-block;
vertical-align: top;
cursor: pointer;
border-radius: 15px;
padding-bottom: 25px;
}

#checkout .new_address .button{
width: 100%;
padding: 0;
height: 100%;
border-radius: 0;
background: transparent;
color: #14190b;
font-size: 18px;
padding-top: 60px;
box-sizing: border-box;
position: relative;
}

#checkout .new_address .button:before{
content: "";
position: absolute;
top: 25px;
left: 50%;
transform: translateX(-50%);
width: 25px;
height: 25px;
display: block;
background-image: url(../images/icon-more.svg);
background-size: 25px;
background-position: center;
background-repeat: no-repeat;
}

#checkout .new_address_form{
	position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgb(158 158 158 / 42%);
	z-index: 101;
	display: none;
}

#checkout .new_address_form.visible{
	display: block;
}

#checkout .new_address_form .pop-up{
	width: 700px;
    height: fit-content;
    padding: 50px;
    background-color: white;
    opacity: 1;
    margin: 0 auto;
    margin-top: 60px;
	text-align: left;
}

#checkout .new_address_form .pop-up-title{
	text-align: center;
}

#checkout .new_address_form label{
	max-width: 350px;
    margin: 0 auto 4px;
	display: block;
}

#checkout .new_address_form input[type="text"]{
	border: 1px solid #bdc3c7;
    padding: 10px;
    font-size: 16px;
    color: #2c3e50;
    transition: all 0.2s ease-in-out;
    width: 350px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: 10px center;
	display: block;
	margin: 0 auto 20px;
    box-sizing: border-box;
}

#checkout .new_address_form .pop-up_submit{
	text-align: center;
    margin-top: 50px;
}

#checkout .new_address_form .pop-up_close{
	text-align: center;
    margin-top: 35px;
}

#checkout .new_address_form .pop-up_close a{
    background-color: white;
}

#checkout .loader{
  text-align: center;
} 

#checkout .loader p, #checkout .loader div, #checkout .loader input{
  opacity: 0;
  transition : none;
} 

#checkout .loader:before{
content: "";
border: 3px solid #f3f3f3;
border-top: 3px solid #876161;
border-radius: 50%;
width: 35px;
height: 35px;
animation: spin 2s linear infinite;
opacity: 1;
position: absolute;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(550deg); }
}


/* ***** CATALOGUES ***** */

#catalogues{
padding: 90px 50px 100px;
text-align: center;
}

#catalogues h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
position: relative;
}

#catalogues h1:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}

#catalogues p.important{
color: #68bc45;
font-weight: 600;
margin-bottom: 40px;
}

#catalogues a.item{
display: inline-block;
vertical-align: top;
width: 45%;
margin: 25px 2%;
box-sizing: border-box;
text-align: left;
padding: 13px 43px;
text-align: center;
text-decoration: none;
transition: all 0.3s;
border: 1px solid #cfcfcf;
border-radius: 20px;
}

#catalogues a.item:hover{
background-color: #f1f1f1;
}

#catalogues .item h2{
text-align: left;
margin-bottom: 20px;
text-transform: uppercase;
border-bottom: 1px solid #68bc45;
font-weight: 600;
}

#catalogues .item h2 span{
display: block;
color: #969892;
font-size: 18px;
}

#catalogues .item p.texte{
text-align: left;
}


#catalogues .item img{
display:block;
width: 168px;
margin: 20px auto;
padding:13px;
}


#catalogues .item span.button{
background: rgb(171,199,62);
background: linear-gradient(90deg, rgba(171,199,62,1) 25%, rgba(104,188,69,1) 100%);
display: inline-block;
border-radius: 30px;
background-color: #14190b;
color: white;
padding: 8px 23px;
margin: 0;
transition: all 0.5s ease-in-out;
font-size: 15px;
text-decoration: none;
transition: all 0.3s;
padding-right: 65px;
position: relative;
margin-bottom: 20px;
}

#catalogues .item span.button:after {
content: "";
width: 30px;
height: 10px;
position: absolute;
top: 50%;
right: 0;
transform: translate(calc( 100% - 55px ),-50%);
background-image: url(images/button-after.svg);
background-size: 40px;
background-position: center right;
background-repeat: no-repeat;
transition: all 0.6s;
}

#catalogues .item:hover span.button:after {
width: 40px;
}

/* ***** CONTACT ***** */

#contact{
padding: 90px 50px 100px;
text-align: center;
}

#contact h1{
font-size: 30px;
line-height: 35px;
font-weight: 400;
padding-bottom: 30px;
margin: 0 0 50px;
position: relative;
}

#contact h1:after{
content: "";
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 275px;
height: 30px;
background-image: url(images/title-border.svg);
background-size: 275px;
background-position: center;
background-repeat: no-repeat;
}


#contact .c1{
display:inline-block;
width:48%;
margin-right:6%;
text-align:left;
vertical-align: middle;
}

#contact .c1 p span.head{
display: block;
width: 100%;
font-size: 12px;
line-height: 18px;
text-transform: uppercase;
color: #68bc45;
}

#contact .c1 h2{
text-align: left;
margin-bottom: 20px;
text-transform: uppercase;
border-bottom: 1px solid #68bc45;
font-weight: 600;
}

#contact .c1 h2 span{
display: block;
color: #969892;
font-size: 18px;
}

#contact .c1 p.logo img{
display:none;
}

#contact .microdata{
display: none;
}


#contact .c2{
display:inline-block;
vertical-align: middle;
width:45%;
text-align:left;
}

#contact .c2 .streetview{
width:100%;
height:357px;
}

#contact .map{
width:100%;
height:433px;
margin-top: 50px;
}