@keyframes fadein{
	from{opacity: 0;}
	to{opacity: 1;}

}
		html {
			height:100%;
		}
		body {
			background-color:#000000;
			margin:0;
			height:100%;
		}
		div.doctolib{
			position: fixed;
			bottom: 150px;
			right: 50px;
			width: 200px;
			height: 120px;
			z-index: 999;
			animation-name: "fadein";
			animation-duration: 1s;
			background-color: #3C7AB4;
			border-radius: 15px;
			overflow: hidden;
			transition : background-color .25s;
		}
		div.doctolib img{


		}
		div.doctolib:hover, div.myResults:hover{
			background-color: #6BC697;
			transition : background-color .25s;
		}

		div.myResults{
			position: fixed;
			bottom: 150px;
			left: 50px;
			height: 120px;
			width: 200px;
			z-index: 9999;
			animation-name: "fadein";
			animation-duration: 1s;
			background-color: #3C7AB4;
			border-radius: 15px;
			overflow: hidden;
		}