/* medaillon */
.logo {
	display: block;
	/* position: relative; */
	position: absolute;
	left: 50%;
	/* margin-left: -10%; */
	margin-left: -123px;
	top: 284px;
	/* top: 0%; */
	/* width: 100%; */
	object-fit: contain;
	max-width: 246px;
	z-index: 20;
	transition: transform .4s;
}
.logo:hover {
	-ms-transform: scale(.3) translate(12px);
/* IE 9 */
	-webkit-transform: scale(.3) translate(12px);
/* Safari 3-8 */
	transform: scale(.3) translate(12px);
}

/* zoom */
.image-zoom {
	width: 200px;
	overflow: hidden;
}

/* btn heureux */
.switch-holder {
	display: flex;
	padding: 8px 10px;
	border-radius: 14px;
	box-shadow: -3px -3px 4px rgba(88, 88, 88, .5),        4px 4px 4px rgba(0, 0, 0, .3),        inset 5px 5px 5px rgba(88, 88, 88, .7),        inset -5px -5px 5px rgba(0, 0, 0, .7);
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: 20px;
	left: 20px;
}
.label {
	color: rgb(128, 64, 0);
}
.switch-label {
	padding: 0 8px 0 4px
}
.switch-label i {
	margin-right: 5px;
}
.switch-toggle {
	height: 40px;
}
.switch-toggle input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	z-index: -2;
}
.switch-toggle input[type="checkbox"]+label {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 40px;
	border-radius: 20px;
	margin: 0;
	cursor: pointer;
	box-shadow: inset -3px -3px 3px rgba(88, 88, 88, .6),        inset 4px 4px 4px rgba(0, 0, 0, .6);
}
.switch-toggle input[type="checkbox"]+label::before {
	position: absolute;
	content: 'NON';
	font-size: 13px;
	text-align: center;
	line-height: 25px;
	top: 9px;
	left: 9px;
	width: 43px;
	height: 23px;
	border-radius: 20px;
	background-color: #888888;
	box-shadow: -1px -2px 2px rgba(88, 88, 88, .6),        2px 3px 3px rgba(0, 0, 0, .8);
	transition: .3s ease-in-out;
}
.switch-toggle input[type="checkbox"]:checked+label::before {
	left: 48%;
	top: 8px;
	width: 45px;
	height: 25px;
	content: 'OUI';
	color: #ff0;
	background-color: #00b33c;
	box-shadow: -3px -3px 3px rgba(88, 88, 88, .5),        0px 0px 7px #00b33c;
}

