@charset "utf-8";
/* CSS Document */

.zp1, .pulse {
    display: inline-block;
    color: #fff;
    background: #1ab744;
    position: fixed;
    bottom: 50px;
    right: 50px;
    font-size: 45px;
    text-align: center;
    z-index: 99;
    border-radius: 90%;
    height: 70px;
    width: 70px;
    line-height: 70px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s
}
.zp1{
	transform: scale(1.0);
	transition: transform .3s;
}
.zp1:hover {	
	transform: scale(1.1);
	transition: transform .3s !important;
}
.zp1 p{
	margin: 2px auto 0 auto;
}
a.zp1:link, a.zp1:visited, a.zp1:focus, a.zp1:hover, a.zp1:active {
  color: #ffffff;
}


@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

.pulse:nth-child(1) {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite
}

.pulse:nth-child(2) {
    -webkit-animation: pulse 2s infinite .3s;
    animation: pulse 2s infinite .3s
}

.pulse:nth-child(3) {
    -webkit-animation: pulse 2s infinite .6s;
    animation: pulse 2s infinite .6s
}