.label-container{
	position:fixed;
	bottom:48px;
	right:105px;
	display:table;
	visibility: hidden;
}

.label-text{
	color:#FFF;
	background:rgba(51,51,51,0.5);
	display:table-cell;
	vertical-align:middle;
	padding:10px;
	border-radius:3px;
}

.label-arrow{
	display:table-cell;
	vertical-align:middle;
	color:#333;
	opacity:0.5;
}

.float{
	display: none;
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:gray;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
	z-index:1000;
	animation: bot-to-top 1s ease-out;
	font-size:24px;
	margin-top:18px;
}

.float.left {
	right:0px !important;
	left: 40px !important;
}

ul.floats{
	position:fixed;
	right:40px;
	padding-bottom:20px;
	bottom:80px;
	z-index:9999;
}

ul.floats li.my-float{
	list-style:none;
	margin-bottom:10px;
}

ul.floats li.my-float a.floating{
	background-color:gray;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
	width:60px;
	height:60px;
	display:block;
}

/*ul.floats:hover{
	visibility:visible!important;
	opacity:1!important;
}*/

ul.floats i:hover{
	animation: rotate-in 0.5s;
}


.my-float{
	font-size:20px;
	margin-top:15px;
}

span.txt-detil {
	font-size: 4px !important;
	display:block !important;
	text-transform:uppercase !important;
	letter-spacing:0.5px !important;
}

a#menu-share + ul.floats{
  /*visibility: hidden;*/
  display: none;
}

/*a#menu-share:hover + ul.floats{
  visibility: visible;
  display: block;
  animation: scale-in 0.5s;
}*/

ul.floats.animate{
	animation: scale-in 0.5s;
}

a.float i{
	animation: rotate-in 0.5s;
}

a.float:hover > i{
	/*animation: rotate-out 0.5s;*/
	color:#FFF !important;
}

a#menu-share:active > i{
	animation: rotate-out 1s;
	/*color:#FFF !important;*/
}

a.float:focus > i{
	color:#FFF !important;
}

@keyframes bot-to-top {
    0%   {bottom:-40px}
    50%  {bottom:40px}
}

@keyframes scale-in {
    from {transform: scale(0);opacity: 0;}
    to {transform: scale(1);opacity: 1;}
}

@keyframes rotate-in {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@keyframes rotate-out {
    from {transform: rotate(360deg);}
    to {transform: rotate(0deg);}
}