/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
.cstmfloatbtncontainer1 {
  margin: 0 auto 0;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  background: transparent;
	position: fixed;
	z-index: 9999;
	display: block;
	left:30px;
	bottom:30px;
}

.cstmfloatbtnpulse-button1 {
	box-shadow: 1px 3px 8px #262626;
  position: relative;
  display: block;
  font-size: 21px;
  font-weight: light;
  font-family: 'Trebuchet MS', sans-serif;
  text-align: center;
  line-height: 60px;
	width:60px;
	height:60px;
  letter-spacing: -1px;
  color: white;
  border: none;
  border-radius: 50%;
  background: #06BFFF;
  cursor: pointer;
  -webkit-animation: cstmfloatbtnpulse1 5s infinite;
	animation: cstmfloatbtnpulse1 5s infinite;
	-moz-animation: cstmfloatbtnpulse1 5s infinite;
	animation-delay:3s;
	-moz-animation-delay:3s;
	-webkit-animation-delay:3s;
}
.cstmfloatbtnpulse-button1:hover{
	color:#ffffff !important;
}
.cstmfloatbtntext1{
	box-shadow: 1px 3px 8px #262626;
	position: absolute;
	display: block;
	background-color: #FF6700;
	width: auto;
	font-size: 12px;
	width: 125px;
	line-height: 23px;
	bottom: 20px;
	left: 56px;
	border: 1px solid #FF6700;
	border-radius: 10px;
	letter-spacing:0.5px;
}
@-webkit-keyframes cstmfloatbtnpulse1{
		0%{-webkit-transform:scale(1);transform:scale(1)}
		4%,8%{-webkit-transform:scale(.9) rotate(-8deg);transform:scale(.9) rotate(-8deg)}
		12%,20%,28%{-webkit-transform:scale(1.3) rotate(8deg);transform:scale(1.3) rotate(8deg)}
		16%,24%{-webkit-transform:scale(1.3) rotate(-8deg);transform:scale(1.3) rotate(-8deg)}
		40%,32%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}
	}
@keyframes cstmfloatbtnpulse1{
	0%{-webkit-transform:scale(1);transform:scale(1)}
		4%,8%{-webkit-transform:scale(.9) rotate(-8deg);transform:scale(.9) rotate(-8deg)}
		12%,20%,28%{-webkit-transform:scale(1.3) rotate(8deg);transform:scale(1.3) rotate(8deg)}
		16%,24%{-webkit-transform:scale(1.3) rotate(-8deg);transform:scale(1.3) rotate(-8deg)}
		40%,32%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}
	}