
html {
	font-size: 62.5%;
}
body {
	background-color: #fff;
	color: #000;
	font-family: "Century Gothic", helvetica, arial, sans-serif;
	font-size:12px;
	line-height: 1.5; /* adapt to your design */
}


p,
ul,
ol,
dl,
blockquote,
pre,
td,
th,
label,
textarea,
caption,
details, 
figure, 
hgroup {
	font-size: 1em; /* equiv 14px */
	line-height: 1.5;
	margin: .75em 0 0;
}
h1, .h1-like {
	font-size: 1.8571em; /* equiv 26px */
	font-weight: normal;
	line-height: 1.6154em;
	margin: .8077em 0 0 0;
}
h2, .h2-like {
	font-size: 1.7143em; /* equiv 24px */
	font-weight: normal;
	line-height: 1.75em;
	margin: .875em 0 0 0;
}
h3, .h3-like {
	font-size: 1.5714em; /* equiv 22px */
	font-weight: normal;
	line-height: 1.909em;
	margin: .9545em 0 0 0;
}
h4, .h4-like {
	font-size: 1.4286em; /* equiv 20px */
	font-weight: normal;
	line-height: 1.05em;
	margin:  1.05em 0 0 0;
}
h5, .h5-like {
	font-size: 1.2857em; /* equiv 18px */
	font-weight: normal;
	line-height: 1.1667em;
	margin:  1.1667em 0 0 0;
}
h6, .h6-like {
	font-size: 1.1429em; /* equiv 16px */
	font-weight: normal;
	line-height: 1.3125em;
	margin:  1.3125em 0 0 0;
}

/* alternate font-sizing */
.smaller {
	font-size: .7143em; /* equiv 10px */
}
.small {
	font-size: .8571em; /* equiv 12px */
}
.big {
	font-size: 1.1429em; /* equiv 16px */
}
.bigger {
	font-size: 1.2857em; /* equiv 18px */
}
.biggest {
	font-size: 1.4286em; /* equiv 20px */
}

.verybig {
    font-size: 2em; /* equiv 20px */
}

.strong {
    font-weight: bold;
}

/* soft reset */
html,
body,
textarea,
figure,
label {
	margin: 0;
	padding: 0;
}
ul,
ol {
	padding-left: 2em;
}
code, 
pre,
samp,
kbd {
	white-space: pre-wrap;
	font-family: consolas, 'DejaVu Sans Mono', courier, monospace;
	line-height: 1em;
}
code, kbd, mark {
	border-radius: 2px;
}
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}
kbd {
	padding: 0 2px;
	border: 1px solid #999;
}
code {
	padding: 2px 4px;
	background: rgba(0,0,0,.04);
	color: #b11; 
}
mark {
	padding:2px 4px;
	background: #ff0;
}

table { margin-bottom: 1.5em; }

/* avoid top margins on first content element */
p:first-child,
ul:first-child,
ol:first-child,
dl:first-child,
blockquote:first-child,
pre:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

/* avoid margins on nested elements */
li p,
li ul,
li ol {
	margin-top: 0;
	margin-bottom: 0;
}

/* max values */
img, table, td, blockquote, code, pre, textarea, input, video {
	max-width: 100%;
}

/* you shall not pass */
div, textarea, table, td, th, code, pre, samp {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	-o-hyphens: auto;
	hyphens: auto;
}

/* pictures */
img {
	height: auto;
	vertical-align: middle;
}
/* Gmap3 max-width bug fix on images */
#map_canvas img,
.gmnoprint img {max-width: none;}

a img { border: 0; }

/* scripts */
body > script {display: none !important;}

/* skip-links */
.skip-links {
	position: absolute;
}
.skip-links a {
	position: absolute;
	left: -7000px;
	padding: 0.5em;
	background: #000;
	color:#fff;
	text-decoration: none;
}
.skip-links a:focus {
	position: static;
}

/* ----------------------------- */
/* ==layout and modules */
/* ----------------------------- */

/* switching box model for all elements */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* float layout */
/* ----------- */

/* module, contains floats (.item is the same) */
.mod, .item { 
	overflow: hidden;
}

/* table layout */
/* ------------------ */
.row {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.row > *,
.col {
	display: table-cell;
	vertical-align: top;
}

/* blocks that needs to be placed under floats */
.clear,
.line,
.row {
	clear: both;
}

/* blocks that must contain floats */
.clearfix:after,
.line:after,
.mod:after {
	content: "";
	display: table;
	clear: both;
}

/* alignments (blocks and inline) */
/* ------------------------------ */

/* left elements */
.left {
	float: left;
}
img.left {
	margin-right: 1em;
}

/* right elements */
.right {
	float: right;
}
/*img.right {
	margin-left: 1em;
}

img.left, img.right {
	margin-bottom: 5px;
}
*/
.center    { margin-left: auto; margin-right: auto; }
.txtleft   { text-align: left; }
.txtright  { text-align: right; }
.txtcenter { text-align: center; }
.txtjustify { text-align: justify; }

/* just inline-block */
.inbl {
	display: inline-block;
	vertical-align: top;
	margin-right: -.25em;
}

/* blocks widths (percentage and pixels) */
.w10    { width: 10%; }
.w20    { width: 20%; }
.w25    { width: 25%; }
.w30    { width: 30%; }
.w33    { width: 33.333%; }
.w40    { width: 40%; }
.w50    { width: 50%; }
.w60    { width: 60%; }
.w66    { width: 66.666%; }
.w70    { width: 70%; }
.w75    { width: 75%; }
.w80    { width: 80%; }
.w90    { width: 90%; }
.w100   { width: 100%; }

.w50p   { width: 50px; }
.w100p  { width: 100px; }
.w150p  { width: 150px; }
.w200p  { width: 200px; }
.w300p  { width: 300px; }
.w400p  { width: 400px; }
.w500p  { width: 500px; }
.w600p  { width: 600px; }
.w700p  { width: 700px; }
.w800p  { width: 800px; }
.w960p  { width: 960px; }
.mw960p { max-width: 960px; }

/* spacing helpers
p,m = padding,margin
a,t,r,b,l = all,top,right,bottom,left
s,m,l,n = small(10px),medium(20px),large(30px),none(0)
source https://github.com/stubbornella/oocss/blob/master/core/spacing/space.css
*/
.m-reset, .ma0 { margin: 0 !important; }
.p-reset, .pa0 { padding: 0 !important; }
.ma1, .mas { margin: 10px !important; }
.ma2, .mam { margin: 20px !important; }
.ma3, .mal { margin: 30px !important; }
.pa1, .pas { padding: 10px; }
.pa2, .pam { padding: 20px; }
.pa3, .pal { padding: 30px; }

.mt0, .mtn { margin-top: 0 !important; }
.mt1, .mts { margin-top: 10px !important; }
.mt2, .mtm { margin-top: 20px !important; }
.mt3, .mtl { margin-top: 30px !important; }
.mr0, .mrn { margin-right: 0; }
.mr1, .mrs { margin-right: 10px; }
.mr2, .mrm { margin-right: 20px; }
.mr3, .mrl { margin-right: 30px; }
.mb0, .mbn { margin-bottom: 0 !important; }
.mb1, .mbs { margin-bottom: 10px !important; }
.mb2, .mbm { margin-bottom: 20px !important; }
.mb3, .mbl { margin-bottom: 30px !important; }
.ml0, .mln { margin-left: 0; }
.ml1, .mls { margin-left: 10px; }
.ml2, .mlm { margin-left: 20px; }
.ml3, .mll { margin-left: 30px; }

.pt0, .ptn { padding-top: 0; }
.pt1, .pts { padding-top: 10px; }
.pt2, .ptm { padding-top: 20px; }
.pt3, .ptl { padding-top: 30px; }
.pr0, .prn { padding-right: 0; }
.pr1, .prs { padding-right: 10px; }
.pr2, .prm { padding-right: 20px; }
.pr3, .prl { padding-right: 30px; }
.pb0, .pbn { padding-bottom: 0; }
.pb1, .pbs { padding-bottom: 10px; }
.pb2, .pbm { padding-bottom: 20px; }
.pb3, .pbl { padding-bottom: 30px; }
.pl0, .pln { padding-left: 0; }
.pl1, .pls { padding-left: 10px; }
.pl2, .plm { padding-left: 20px; }
.pl3, .pll { padding-left: 30px; }
.pl4 { padding-left: 40px; }

/* hiding content */
.visually-hidden {
	position: absolute;
	left: -7000px;
	overflow: hidden;
}
[dir=rtl] .visually-hidden {
	left: auto;
	right: -7000px;
}

.desktop-hidden { display: none; } /* hidden on desktop */

/* ----------------------------- */
/* ==structure */
/* ----------------------------- */

body {
    font-size: 1.5em;
}




.main-header {
	position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    height: 45px;
    z-index: 2;
}

.main-logo {
	margin: 2px 0 0 40px;
	width:175px
}

.main-header ul{
float:right;
margin-right:50px

}


.main-header ul li{
float:left;
width:110px;
text-align:center;
line-height:25px;
position:relative;
overflow:hidden;
height:30px;


}
.main-header ul li a{
font-size:13px;
overflow:hidden;
text-decoration:none;
font-weight:bold
}
.main-header ul li a:hover{
color:#bfa363;
}

.main-header ul li a:hover { 
display:block }



@media (max-width: 800px) {
    .main-header {
        height: 45px;
        overflow: hidden;
        text-align: center;
    }

    .main-logo {
        margin: 5px 0 0 0px;
    }
}
@media (max-height : 400px) {
    .main-header {
        /*height: 25px;*/
        overflow: hidden;
        text-align: center;
    }

    .main-logo {
        margin: 5px 0 0 0px;
    }
}



@media (max-width: 480px) and (min-height: 400px)  {
    .main-header {
        text-align:center;
		height: 45px;
    }

    .main-logo {
        margin: 5px;
    }
}
/*
@media (max-height: 400px) {
    .main-logo {
        margin: 5px 0 0 60px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        margin: 5px;
    }
}
*/
/* ----------------------------- */
/* ==sidebar */
/* ----------------------------- */

/* ----------------------------- */
/* ==footer */
/* ----------------------------- */

.main-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #fff;
    padding: 0.5em 1em;
}

@media (max-width: 480px) {
    .main-footer {
			/*background-color: #FFFFFF;
			bottom: 0;
			left: 0;
			padding: 0.5em 1em;
			position: absolute;
			top: 1200px;*/
            position: relative;
        bottom: auto;
        left: auto;
    }

    .footer-social {
        display: block;
        float: right;
    }
}

.youtube {
    background-position: 0 0;
    width: 45px;
    height: 19px;
}

.twitter {
    background-position: -45px 0;
    width: 15px;
    height: 19px;
}
    
.facebook {
    background-position: -60px 0;
    width: 15px;
    height: 19px;
}

/* ----------------------------- */
/* ==forms */
/* ----------------------------- */
form,
fieldset {
	border: none;
}
input,
button,
select,
label,
.btn {
	vertical-align: middle; /* @bugfix alignment */
	font-family: inherit;
}
textarea {
	resize: vertical;
	font-family: inherit;
}

/* ----------------------------- */
/* ==menu */
/* ----------------------------- */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
@media (max-width: 480px) and (min-height: 400px) {
    .main-nav {
        position: fixed;
        top: 45px;
        z-index: 2;
    }
}
.container-menu {
    width: 320px;
    /*height: 100%;*/
    background: url(../images/bg-white-70.png) transparent repeat top left;
    background: rgba(255,255,255,0.7);
    display: none;
    /*position: relative;*/
    position: absolute;
    top:0; 
    left: 0;
    bottom: 0;
}

@media (max-width: 800px) {
    .container-menu {
        background: #fff;
    }
}

@media (max-width: 480px) {
    .container-menu {
        width: 200px;
        background: #fff;
    }
}

@media (min-width: 481px) and (max-height: 490px) {
    .container-menu {
        background: #fff;
    }
}



.link-main-menu {
    display: inline-block;
    /*width: 80px;*/
    position: absolute;
    top: 50%;
    padding: 9px 12px;
}

/*
@media (min-width: 481px) and (max-height: 490px) {
    .link-main-menu {
        top: 0px;
        z-index: 5;
        padding: 1px 10px;
    }
}
*/

@media (max-width: 800px) {
    .link-main-menu {
        position: fixed;
        top: 5px;
        z-index: 5;
        /*padding: 1px 10px;*/
        margin-left: 10px;
        padding: 5px 10px;
        border: 1px solid #000000;
    }
}

@media (max-width: 480px) and (min-height: 400px) {
    .link-main-menu {
        position: fixed;
        /*top: -40px;*/
        top: 5px;
        margin-left: 10px;
        padding: 5px 10px;
        border: 1px solid #000000;
        z-index: 5;
    }
}





.link-btn {
    background: #fff;
    background: rgba(255,255,255,0.3);
    text-decoration: none;
    color: #000;
}

@media (max-widht: 320px) {
    .link-btn {
        background: #fff;
				background: rgba(255,255,255,0.3);
				text-decoration: none;
				color: #000;
				font-size: 35px;
    }
}

.link-back {
    padding-left: 15px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAANCAYAAABlyXS1AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAROQAAETkBG9mTRgAAAAd0SU1FB9wDGAgMJguO6B0AAABJSURBVBjTfdBBDsAwDALBhf//mR4qRUmK6+tgyUZJaCMpniCJPAGAJzjwhoUNAARUAHASSar/mHe1BtZBLXC8cgc+JewB/XX7AK+vNBPR/whWAAAAAElFTkSuQmCC) transparent no-repeat left center;
    color: #000;
    text-decoration: none;
}

.link-btn:hover {
    background: #fff;
    background: rgba(255,255,255,0.7);
    color: #000; /*#3B3B3A;*/
}

.menu-list {
    list-style: none;
    position: relative;
}

.menu-list > li {
    width: 290px;
}
@media (max-width: 480px) {
    .menu-list > li{
      width: 200px;
			margin-bottom: 7px;
    }
}

.main-menu {
    width: 310px;
    position: absolute;
    top: 200px;
    left: 10px;
    padding-left: 20px;
}
@media (max-height: 490px) {
    .main-menu {
        top: 45px;
    }
}

@media (max-width: 490px) {
    .main-menu {
        padding-left: 0px;
		top: 50px;
        left: 0;
        padding-left: 10px;
        width: auto;
        right: 0;
        background: #fff;
    }
}


.sub-menu {
    padding: 0;
}


.main-menu > li  > ul {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
}

.menu-product {
    text-transform: uppercase;
}
/*.menu-product a {
    color: #3B3B3A;
    text-decoration: none;
}
.menu-product a:hover {
    color: #000;
}*/
.menu-product a.active {
    font-weight: bold;
    color: #000;
}

/* ----------------------------- */
/* ==main */
/* ----------------------------- */

html,
body {
    width: 100%;
    height: 100%;
}

a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.main-home {
    background: url('../images/bg-home.jpg') transparent no-repeat top left;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*width: 100%;*/
    /*max-width: 1042px;*/
}

.menu-right {
	/*float: right;*/
	position: absolute;
	right: 0;
	width: 650px;
	top: 45px;
	bottom: 32px;
	/*height: 100%;*/
	overflow: hidden;
}

@media (max-width: 480px) {
	.menu-right {
		width: 100%;
		top: 320px;
		overflow: visible;
	}
}
.menu-right-elem {
	padding: 20px;
	float: left;
	margin: 0 10px 20px 10px;
	text-align: center;
	color: #fff;
}
@media (max-width: 480px) {
	.menu-right-elem{
		padding: 3%;
		float: left;

		margin: 0 2% 2%;
		text-align: center;
		color: #fff;
		width:46%;
		font-size: 0.8em;
	}
}

@media (max-width: 800px) {
	.menu-right-elem p{
		-webkit-hyphens: none;
		-moz-hyphens: none;
		-ms-hyphens: none;
		-o-hyphens: none;
		hyphens: none;
	}
}

.menu-right-elem a {
	color: #000;
	text-decoration: none;
}

.menu-right-elem-hover:hover {
	background: #000;
	color: #fff;
	cursor: pointer;
}

.menu-right-elem-hover:hover a{
	color: #fff;
}

#wrapper {
	position: absolute;
	top: 0;
	left: 0;
	padding-bottom: 30px;
	background: #fff;
}

.main-conteneur {
	position: absolute;
	top: 45px;
	bottom: 32px;
	left: 0;
	right: 660px;
	overflow: hidden;
    background-image: url('../images/backgrounds/background-home-fr.jpg');
    background-size: cover;
    background-position: center center;
}

@media (max-width: 480px) {
    .menu-right {
        display: none;
    }

	.home .menu-right {
        display: block;
        position: relative;
		width: 100%;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 320px;
	}

    .home #wrapper {
        position: relative;
        top: 0 !important;
    }
}
/* adaptation menu droite */

@media (min-width : 801px) and (max-width: 1500px) {
    .menu-right {
        width: 320px;
    }

    .main-conteneur {
        right: 320px;
    }
}

@media (max-width: 800px) {
    .main-conteneur {
        /*top: 25px;*/
        right: 160px;
    }

    .menu-right {
        /*top: 25px;*/
        width: 160px;
    }

    .menu-right-elem {
        width: 140px;
        margin: 0 10px 10px 10px;
        -webkit-hyphens: none;
        -moz-hyphens: none;
        -ms-hyphens: none;
        -o-hyphens: none;
        hyphens: none;
    }
}



@media (max-width: 480px) {
    .main-conteneur {
        position: relative;
        right: 0;
        bottom: auto;
        margin-bottom: 20px;
    }

    .home .main-conteneur {
        position: absolute;
        height: 250px;
        right: 0;
        width: 100%;
    }

}

/* Gestion des backgrounds */

.conteneur-home {
    background-image: url('../pro_images/backgrounds/background-home-ed-blanche.jpg');
}

.conteneur-1881-femme {
    background-image: url('../pro_images/backgrounds/background-1881-femme.jpg');
}

.conteneur-acqua-forte {
    background-image: url('../pro_images/backgrounds/background-acqua-forte.jpg');
}

.conteneur-bella-notte-femme {
    background-image: url('../pro_images/backgrounds/background-bella-notte-femme.jpg');
}

.conteneur-bella-notte-homme {
    background-image: url('../pro_images/backgrounds/background-bella-notte-homme.jpg');
}

.conteneur-edition-blanche-homme {
    background-image: url('../images/backgrounds/background-edition-blanche-homme.jpg');
}

.conteneur-edition-blanche-femme {
    background-image: url('../images/backgrounds/background-edition-blanche-femme.jpg');
}

.conteneur-campagne {
    background-image: url('../images/backgrounds/background-campagne.jpg');
}

.conteneur-campagne-ed-blanche {
    background-image: url('../images/backgrounds/background-campagne-edition-blanche.jpg');
}

@media (max-width: 800px) {
    .conteneur-campagne {
        background-image: url('../images/backgrounds/background-bella-notte-homme.jpg');
    }
}

.conteneur-black {
    background-image: url('../images/backgrounds/background-black.jpg');
}

.conteneur-cerruti-1881 {
    background-image: url('../images/backgrounds/background-1881-homme.jpg');
}

.conteneur-cerruti-homme {
    background-image: url('../images/backgrounds/background-cerruti-homme.jpg');
}

.conteneur-fairplay {
    background-image: url('../images/backgrounds/background-1881-fairplay.jpg');
}

.conteneur-image {
    background-image: url('../images/backgrounds/background-image.jpg');
}

.conteneur-univers {
    background-image: url('../images/backgrounds/background-univers.jpg');
}


/*
.content {
    display: none;
	position: absolute;
	width: 65%;
	right: 10%;
	min-width: 700px;
	height: 50%;
	top: 50%;
	margin-top: -20%;
	min-height: 400px;
	background: rgba(255,255,255,.8);
	color: #000;
	padding: 20px;
}
*/

.content-conteneur {
    margin: auto;
    position: relative;
    /*min-width: 500px;*/
    min-width: 320px;
    max-width: 800px;
    height: 100%;
}

.content {
    display: none;
    position: absolute;
    left : 50px;
    right: 0;
    top: 50%;
    margin-top: -20%;
    min-height: 400px;
    background : url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABhJREFUeNpi/P///2YGNMDEgAVQKAgQYAB87wO6Vx+PqQAAAABJRU5ErkJggg==) transparent repeat top left;
    background: rgba(255,255,255,.8);
    color: #000;
    padding: 20px;
    text-align: justify;
}

@media (max-width: 800px) {
    .content {
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .content {
        display: block;
        position: relative;
        left: auto;
        top: auto;
        margin-top: 35%;
        background: rgba(255,255,255,.6);
    }
}

@media (min-width: 481px) and (max-width: 800px) {
    .content {
        left: 0;
    }
}


.content-overflow {
    max-height: 90%;
    overflow: auto;
}

@media (max-width: 480px) {
    .content-overflow {
        margin-bottom: 20px;
    }
}

.mobile-link {
    display: none;
}

@media (max-width: 480px) {
    .mobile-link {
        display: block;
        position: absolute;
        width: 30px;
        height: 53px;
        top: 100px;
    }

    .mobile-link-next {
        right: -10px;
        background: url(../images/arrow-right.png);
    }

    .mobile-link-prev {
        left: -10px;
        background: url(../images/arrow-left.png);
    }
}

.content-illustration-bloc {
    float: right;
    width: 40%;
    max-width: 260px;
    margin-left: 25px;
}

@media (min-width: 481px) and (max-height: 490px) {
    .content-illustration-bloc {
        width: 30%;
    }
}

@media (max-width: 480px) {
    .content-illustration-bloc {
        position: relative;
        width: 100%;
        max-width: none;
        float: none;
        text-align: center;
        margin-left: 0;
    }
}


.content-illustration {
	/*margin-left: 25px;*/
    /*width: 40%;*/
    /*max-width: 235px;*/

}

.content-description {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
}

@media (max-width: 800px) {
		.content-description {
        padding-bottom: 10px;
				margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .content-illustration {
        float: none;
        width: auto;
        max-width: 80%;
        margin-left: 0;
    }

    .content-description {
        padding: 20px;
        margin: 0 -20px;
        background: #fff;
    }
}

@media (min-width: 481px) and (max-height: 490px) {
    .content-illustration {
        margin-left: 0px;
        /*width: 30%;*/
    }
}

.mobile-title {
    display: none;
}

@media (max-width: 480px) {
    .mobile-title {
        display: block;
    }

    .mobile-title .h2-like {
        line-height: 1.2em;
    }

    .desktop-title {
        display: none;
    }
}

.subtitle-link {
    color: #5E5E5E;
    text-decoration: none;
    transition: all .5s ease-in-out 0s;
}

.subtitle-link:hover {
    color: #000;
}

/* Social share */

.btn-share {
    position: absolute;
    bottom: 0;
    right: 0;
    text-transform: uppercase;
    color: #5E5E5E;
    padding: 0.2em 0.5em;
    background: #fff;
    cursor: pointer;
}

.share-box {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 0.2em 2em;
}

/*.fb_iframe_widget {*/
#share-fb {
    vertical-align:top;
    margin-right: 10px;
    width: 110px !important;
    overflow: hidden !important;
    float: left !important;
}

/*.fb_iframe_widget iframe {*/
#share-fb iframe {
    left: 0;
    width: 110px;
}

.twitter-share-button {
	margin-top: 2px;
}

.PIN_1391620784420_pin_it_button_en_20_gray {
	margin-top: 2px;
}

.img-pinterest {
    vertical-align: top;
}

@media (max-width: 480px) {
    .btn-share {
        bottom: auto;
        top: 0;
    }

    .share-box {
        bottom: auto;
        top: 0;
        left: 0;
        right: 0;
        padding: 0.2em;
    }

    /*.fb_iframe_widget {
        margin-right: 25px;
    }*/

    .twitter-share-button {
        max-width: 110px;
        width: 110px !important;
    }
}

/*
.new-campain {
    position: absolute;
    bottom: 3em;
    right: 0;
    height: 40%;
    width: 40%;
    min-width: 500px;
    background: url('../images/acqua-forte-pack.png') transparent no-repeat top right;
    background-size: auto 100%;
}

.new-campain > a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    font-size: 150%;
    display: block;
    position: absolute;
    top: 50%;
    right: 25%;
    line-height: 1.2em;
}
*/
.arrow-next {
    display: inline-block;
    margin: 0 10px;
    width: 7px;
    height: 15px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAANCAYAAABlyXS1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEVJREFUeNp0kEkKADAIA2P+/2e7UMS2SU7CDIqJnAEQEOEB6SCcwDZ/Ah/5EihOlaBgCQ7u9+iAWnsVQgc6lBXSgZUhwAABBxAXStpRkQAAAABJRU5ErkJggg==) transparent no-repeat center center;
}


.product-content {
    max-width: 800px;
    padding-left: 10%;
}

.product-menu {
    padding: 10% 0 0 5%;
}

/* Home link */
.home-link {
    position: absolute;
    display: block;
    bottom: 0;
    right: 30px;
    width: 40%;
    height: 50%;
    max-width: 850px;
    max-height: 668px;
}

@media (max-width: 480px) {
	.home-link {
		height: 50%;
    width: 100%;
	}
}

.cerruti-homepage {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 40%;
    max-width: 400px;
}

body[lang=fr] .home-link {
    background: url('../pro_images/home-flacon-ed-blanche.png') transparent no-repeat right bottom;
    background-size: contain;
    -ms-behavior: url('/js/backgroundsize.min.htc');
}

body[lang=en] .home-link {
    background: url('../pro_images/home-flacon-ed-blanche-en.png') transparent no-repeat right bottom;
    background-size: contain;
    -ms-behavior: url('/js/backgroundsize.min.htc');
}

