.cta {
    position: fixed;
    right: 0;
    bottom: 75px;
    width: 90px;
    z-index: 9999;
}

@media only screen and (max-width: 992px) and (min-width: 320px) {
	.cta {
		display: none;
	}
}

.ctaitem {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 9999;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.ctabg {
    width: 60px;
    height: 60px;
    top: 15px;
    left: 15px;
    position: absolute;
    box-shadow: 0 0 0 0 #d33;
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: zigzag 2.3s infinite ease-in-out;
    animation: zigzag 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

.ctacontent {
    color: #fff;
    padding: 10px 15px;
    border-radius: 99px;
    position: absolute;
    z-index: 0;
    top: 22px;
    transition-duration: 2s;
    display: none;
    margin-left: -180px;
    font-size: 100%;
    width: 250px;
    transition-duration: 2s;
}

.ctaimg {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    -webkit-animation: zigzag 2s infinite ease-in-out;
    animation: zigzag 2s infinite ease-in-out;
}

.ctaimg a {
    display: block;
}

@keyframes zoom {
	0% {
    	transform: scale(.9);
	}
	70% {
        transform: scale(1);
    	box-shadow: 0 0 0 15px transparent;
	}
	100% {
    	transform: scale(.9);
    	box-shadow: 0 0 0 0 transparent;
	}
}

@keyframes zigzag {
	0% {
    	transform: rotate(0) scale(1) skew(1deg);
	}
	10% {
    	transform: rotate(-25deg) scale(1) skew(1deg);
	}
	20% {
    	transform: rotate(25deg) scale(1) skew(1deg);
	}
	30% {
    	transform: rotate(-25deg) scale(1) skew(1deg);
	}
	40% {
    	transform: rotate(25deg) scale(1) skew(1deg);
	}
	50% {
    	transform: rotate(0) scale(1) skew(1deg);
	}
	100% {
    	transform: rotate(0) scale(1) skew(1deg);
	}
}
