@import url("https://fonts.googleapis.com/css?family=Roboto");
@-webkit-keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
  }
}
@keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
  }
}


html, body {
  font-family: 'Roboto', sans-serif;
}

.floating-container {
  position: relative;
  width: 100px;
  height: 100px;
  /*
  bottom: 0;
  right: 0;
  */
  margin: 7px -12px;
  z-index: 1000;
  float:right;
}




.floating-container:hover {
  height: 330px;
}
.floating-container:hover .floating-button {
  box-shadow: 0 10px 10px rgba(0,0,0, 0.6);
  -webkit-transform: translatey(-5px);
          transform: translatey(-5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image:none;
	border:3px solid black;
}
.floating-container:hover .element-container .float-element:nth-child(1) {
  -webkit-animation: come-in 0.4s forwards 0.2s;
          animation: come-in 0.4s forwards 0.2s;
}
.floating-container:hover .element-container .float-element:nth-child(2) {
  -webkit-animation: come-in 0.4s forwards 0.4s;
          animation: come-in 0.4s forwards 0.4s;
}
.floating-container:hover .element-container .float-element:nth-child(3) {
  -webkit-animation: come-in 0.4s forwards 0.6s;
          animation: come-in 0.4s forwards 0.6s;
}
.floating-container .floating-button {
  position: absolute;
  width: 65px;
  height: 65px;
  background: orange;
  /*
  background:url(/ASSETS/HELLOGOPHERS_GAME_SITE_ASSETS/Grey_Gophy.png);
  background-size: 85px;
  */
  top: 0;
  border-radius: 50%;
  border:3px solid orange;
  left: 0;
  right: 0;
  margin: auto;
  color: black;
  line-height: 65px;
  text-align: center;
  font-size: 23px;
  z-index: 100;
  box-shadow: 0 10px 10px rgba(0,0,0, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-size: 300% 300%;
	background-image: linear-gradient(
		-90deg, 
		rgba(208,206,206,1) 0%, 
		rgba(242,242,242,1) 33%,
		rgba(208,206,206,1) 66%
	);
	animation: AnimateBackTitle 3s ease infinite;
}

.floating-container .float-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  font-size: .9em;
  text-align: center;
  line-height: 60px;
  z-index: 0;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.floating-container .float-element .material-icons {
  vertical-align: middle;
  font-size: 14px;
}
.floating-container .float-element:nth-child(1) {
  background: #42A5F5;
  box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}
.floating-container .float-element:nth-child(2) {
  background: #4CAF50;
  box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}
.floating-container .float-element:nth-child(3) {
  background: #FF9800;
  box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
}





.floating-container .element-container a:hover {
  background:transparent;
}








