.div-popup {
	height:0px;
}

.label-container{
	position:fixed;
	bottom:38px;
	right:145px;
	display:table;
	visibility: hidden;
    z-index:9999999;
}

.label-text{
	color:#002e6c;
    font-weight:700;
	background-color: #fff;
    border-radius:100px;
    border: none;
    box-shadow:5px 11px 22px;
	display:table-cell;
	vertical-align:middle;
	padding:10px;
	border-radius:3px;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:80px;
	background-color: transparent;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	cursor: pointer;
}

.my-float{
	margin-top:18px;
	height: auto;
	width: 50px;
	cursor: pointer;
	overflow: hidden;
  transition: transform .3s ease;
}

.my-float:hover {
	transform: scale(1.2);
}

a.float + div.label-container {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.5s ease;
}

a.float:hover + div.label-container{
	visibility: visible;
	opacity: 1;
}