@-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: translateX(70px) scale(0.4);
            transform: translateX(70px) scale(0.4);
    opacity: 0;
  }
  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;
  }
}

.act-btn-container {
    position:relative;
    float: right;
    width: 70px;
    height: 50px;
    bottom: 8em;
    right: 0;
    margin-right: 0px;
    margin-bottom: 0px;
    z-index: 3000;
}
.act-btn-1buttons:hover {
	height: 160px;
	margin-top: -110px;
}
.act-btn-2buttons:hover {
    height: 210px;
	margin-top: -160px;
}
.act-btn-3buttons:hover {
    height: 260px;
	margin-top: -210px;
}
.act-btn-container:hover .act-btn-button {
	-webkit-transform: translatey(5px);
			transform: translatey(5px);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.act-btn-container:hover .element-container .act-btn-element:nth-child(1) {
	-webkit-animation: come-in 0.3s forwards 0.1s;
			animation: come-in 0.3s forwards 0.1s;
}
.act-btn-container:hover .element-container .act-btn-element:nth-child(2) {
	-webkit-animation: come-in 0.3s forwards 0.2s;
			animation: come-in 0.3s forwards 0.2s;
}
.act-btn-container:hover .element-container .act-btn-element:nth-child(3) {
	-webkit-animation: come-in 0.3s forwards 0.3s;
			animation: come-in 0.3s forwards 0.3s;
}
.act-btn-container .act-btn-button {
	position: absolute;
	width: 65px;
	height: 65px;
	bottom: 0;
	border-radius: 50%;
	left: 0;
	right: 0;
	margin: auto;
	color: white;
	line-height: 65px;
	text-align: center;
	font-size: 23px;
	z-index: 100;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.act-btn-container .act-btn-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  z-index: 0;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.act-btn-container .act-btn-element {
  vertical-align: middle;
  font-size: 16px;
}

@media (min-width: 576px) {
    .act-btn-container {
        margin-bottom: 4em;
    }
}
@media (min-width: 768px) {
    .act-btn-container {
        margin-bottom: 7em;
    }
}
@media (min-width: 992px) {
    .act-btn-container {
        margin-bottom: 5em;
    }
}