.eduFloatButton {
	z-index: 1001;
	margin: 1em;
  	position: fixed;
  	bottom: 0;
  	right: 0;
  	width: 300px;
  	right: -120px;
}
.eduFloatButtonStart {
	cursor: pointer;
	display: block;
	width: 56px;
  	height: 56px;
	margin: 15px auto 0;
	text-decoration: none;
	position: relative;
	border-radius: 50%;
	box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
	background: #f97400;
	background: -moz-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #f97400), color-stop(100%, #f97400));
	background: -webkit-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: -o-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: -ms-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: linear-gradient(to bottom, #f97400 0%, #f97400 100%);
}
.eduFloatButtonStartShow {
	background: #f97400;
	background: -moz-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #f97400), color-stop(100%, #f97400));
	background: -webkit-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: -o-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: -ms-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: linear-gradient(to bottom, #f97400 0%, #f97400 100%);
}
.eduFloatButtonStart i {
	margin: 18px 20px;
}
.eduFloatButtonSub {
	display:none;
	transition: .3s;
	width: 40px;
	height: 40px;
	margin: 20px auto 0;
	text-decoration: none;
	position: relative;
	border-radius: 50%;
	box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
	background: #f97400;
	background: -moz-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #f97400), color-stop(100%, #f97400));
	background: -webkit-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: -o-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: -ms-linear-gradient(top, #f97400 0%, #f97400 100%);
	background: linear-gradient(to bottom, #f97400 0%, #f97400 100%);
}
.eduFloatButtonSubDisable{
	opacity: .35;
	filter: Alpha(Opacity=35);
	background-image: none;
	color: #72828B !important;
	cursor: default;
}
.eduFloatButtonSubLink {
	background: #A6ACAF;
	background: -moz-linear-gradient(top, #A6ACAF 0%, #A9AEBC 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #A6ACAF), color-stop(100%, #A9AEBC));
	background: -webkit-linear-gradient(top, #A6ACAF 0%, #A9AEBC 100%);
	background: -o-linear-gradient(top, #A6ACAF 0%, #A9AEBC 100%);
	background: -ms-linear-gradient(top, #A6ACAF 0%, #A9AEBC 100%);
	background: linear-gradient(to bottom, #A6ACAF 0%, #A9AEBC 100%);
}
.eduFloatButtonSub i {
	width: 20px;
	height: 20px;
	margin-top: 9px;
	margin-left: 10px;
	text-align: center;
}
[tooltip]:before {
	min-width: 100px;
	content: attr(tooltip);
	background: #585858;
	padding: 5px 5px;
	margin-right: 10px;
	border-radius: 2px;
	color: #FFFFFF;
	font-size: 12px;
	white-space: nowrap;
	position: absolute;
	bottom: 20%;
	right: 100%;
	text-align: center;
}
#eduFloatButtonStartUnico[tooltip]:before {
	display:none;
}
#eduFloatButtonStartUnico:hover:before {
	display:block;
}
#eduFloatButtonOverlay {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(220, 220, 220, 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  will-change: opacity;
}
#eduFloatButtonOverlay.show {
  visibility: visible;
  opacity: 1;
}