a {
	transition: all 300ms ease-in-out;
}
.LCbutton {
	font-family: 'Quicksand', sans-serif;
	/* font-size: 16px; */
	font-weight: 400;
	display: inline-block;
	border-radius: 6px;
	position: relative;
	width: 228px;
	padding: 8px;
	border: 3px solid white;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.LCbutton > a {
	text-decoration: none;
	/* font-size: 2rem; */
}
.LCbutton > a > img,
.LCbutton > a > span {
	display: inline-block;
}
.LCbutton > a > span > span{
	color: white;
}
a .buttonLabel {
	text-transform: uppercase;
	font-size: 16px;
}
a .buttonLabel span {
	font-weight: 800;
}
a .buttonRDV {
	font-size: 12px;
	margin-bottom: 5px;
}
a > span > span {
	display: block;
}
.LCbutton img {
	width: 28px;
	height: 28px;
	margin-right: 8px;
	margin-left: 8px;
	vertical-align: baseline;
	-webkit-animation: LC-heartbeat 2.7s infinite ease-in;
	animation: LC-heartbeat 2.7s infinite ease-in;
}
.LCbuttonPop > img {
	width: 28px;
	height: 28px;
}
.LCbuttonPop {
	position: relative;
}
.LCbuttonPop .LCbuttonPopup {
	visibility: hidden;
	width: 218px;
	position: absolute;
	z-index: 1;
	bottom: 0px;
	right: -5px;
	padding-bottom: 7rem;
	opacity: 0;
	transition: visibility 0 500ms, opacity 500ms ease-in-out;
}
.LCbuttonPop .LCbuttonPopup > div {	
	border-radius: 0px;
}
.LCbuttonPop .LCbuttonPopup > div .header,
.LCbuttonPop .LCbuttonPopup > div .footer {
	text-transform: uppercase;
	color: white; 
	background-color: #2862c1;
	text-align: center;
}
.LCbuttonPop .LCbuttonPopup > div .header {
	padding: 4px 8px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.LCbuttonPop .LCbuttonPopup > div .header span {
	font-weight: 900;
}
.LCbuttonPop .LCbuttonPopup > div .header img {
	display: block;
	max-height: 35px;
	margin: 0 auto 5px auto;
	animation: none;
}
.LCbuttonPop .LCbuttonPopup > div .body {
	text-align: center;
	padding: 1rem;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background: white;
	color: #202020;
	font-size: 1rem;
}
.LCbuttonPop:hover .LCbuttonPopup {
  	visibility: visible;
  	opacity: 1;
  	transition: opacity 500ms ease-in-out;
}
.LCbuttonPop .LCbuttonPopup > div .header,
.LCbuttonPop .LCbuttonPopup > div .body {
	border: 1px solid transparent;
}
#LCbtn {
	position: fixed;
	z-index: 1000;
	bottom: 60px; /* 60px pour éviter de masquer le sub-footer */
	right: 20px;
	background: rgb(40,98,193);
	background: linear-gradient(301deg, rgba(40,98,193,1) 0%, rgba(40,98,193,1) 45%, rgba(117,162,235,1) 45%, rgba(40,98,193,1) 58%, rgba(40,98,193,1) 100%);
	background-size: 250% 100%;
	background-position: right bottom !important;
	transition: all 500ms ease-in-out;
	line-height: 1.5rem;
}
#LCbtn:hover {
	background-position: left bottom !important;
}

/*

CSS pour couleurs thÃƒÆ’Ã‚Â¨mes

.LCbuttonPop .LCbuttonPopup > div .header,
.LCbuttonPop .LCbuttonPopup > div .body {
	border-color: #couleur1;
}

.LCbuttonPop .LCbuttonPopup > div .header,
.LCbuttonPop .LCbuttonPopup > div .footer {
	background: #couleur1;
}

#LCbtn {
	background: #couleur1;
    background: linear-gradient(301deg, #couleur1 0%, #couleur1 45%, #couleur2 45%, #couleur1 58%, #couleur1 100%);
    background-size: 250% 100%;
}

*/

@keyframes LC-heartbeat {
    0% {
        transform: scale(1);
    }
    10% { 
        transform: scale(1.4); 
    }
    20% { 
        transform: scale(1); 
    }
    30% { 
        transform: scale(1.4); 
    }
    40% { 
        transform: scale(1); 
    }
}


