.hvr-grow {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
transform : scale(1.1);
}
.hvr-shrink {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
transform : scale(0.9);
}
@keyframes hvr-pulse {
25% {
transform : scale(1.1);
}
75% {
transform : scale(0.9);
}
}
.hvr-pulse {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
animation-name : hvr-pulse;
animation-duration : 1s;
animation-timing-function : linear;
animation-iteration-count : infinite;
}
@keyframes hvr-pulse-grow {
to {
transform : scale(1.1);
}
}
.hvr-pulse-grow {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
animation-name : hvr-pulse-grow;
animation-duration : 0.3s;
animation-timing-function : linear;
animation-iteration-count : infinite;
animation-direction : alternate;
}
@keyframes hvr-pulse-shrink {
to {
transform : scale(0.9);
}
}
.hvr-pulse-shrink {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
animation-name : hvr-pulse-shrink;
animation-duration : 0.3s;
animation-timing-function : linear;
animation-iteration-count : infinite;
animation-direction : alternate;
}
@keyframes hvr-push {
50% {
transform : scale(0.8);
}
100% {
transform : scale(1);
}
}
.hvr-push {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
animation-name : hvr-push;
animation-duration : 0.3s;
animation-timing-function : linear;
animation-iteration-count : 1;
}
@keyframes hvr-pop {
50% {
transform : scale(1.2);
}
}
.hvr-pop {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
animation-name : hvr-pop;
animation-duration : 0.3s;
animation-timing-function : linear;
animation-iteration-count : 1;
}
.hvr-bounce-in {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
transform : scale(1.2);
transition-timing-function : cubic-bezier(0.47,2.02,0.31,-0.36);
}
.hvr-bounce-out {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.5s;
}
.hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
transform : scale(0.8);
transition-timing-function : cubic-bezier(0.47,2.02,0.31,-0.36);
}
.hvr-rotate {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
transform : rotate(4deg);
}
.hvr-grow-rotate {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-grow-rotate:hover, .hvr-grow-rotate:focus, .hvr-grow-rotate:active {
transform : scale(1.1) rotate(4deg);
}
.hvr-float {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
transform : translateY(-8px);
}
.hvr-sink {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
transform : translateY(8px);
}
@keyframes hvr-bob {
0% {
transform : translateY(-8px);
}
50% {
transform : translateY(-4px);
}
100% {
transform : translateY(-8px);
}
}
@keyframes hvr-bob-float {
100% {
transform : translateY(-8px);
}
}
.hvr-bob {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
animation-name : hvr-bob-float, hvr-bob;
animation-duration : 0.3s, 1.5s;
animation-delay : 0s, 0.3s;
animation-timing-function : ease-out, ease-in-out;
animation-iteration-count : 1, infinite;
animation-fill-mode : forwards;
animation-direction : normal, alternate;
}
@keyframes hvr-hang {
0% {
transform : translateY(8px);
}
50% {
transform : translateY(4px);
}
100% {
transform : translateY(8px);
}
}
@keyframes hvr-hang-sink {
100% {
transform : translateY(8px);
}
}
.hvr-hang {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
animation-name : hvr-hang-sink, hvr-hang;
animation-duration : 0.3s, 1.5s;
animation-delay : 0s, 0.3s;
animation-timing-function : ease-out, ease-in-out;
animation-iteration-count : 1, infinite;
animation-fill-mode : forwards;
animation-direction : normal, alternate;
}
.hvr-skew {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
transform : skew(-10deg);
}
.hvr-skew-forward {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : transform;
transform-origin : 0 100%;
}
.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
transform : skew(-10deg);
}
.hvr-skew-backward {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : transform;
transform-origin : 0 100%;
}
.hvr-skew-backward:hover, .hvr-skew-backward:focus, .hvr-skew-backward:active {
transform : skew(10deg);
}
@keyframes hvr-wobble-vertical {
16.65% {
transform : translateY(8px);
}
33.3% {
transform : translateY(-6px);
}
49.95% {
transform : translateY(4px);
}
66.6% {
transform : translateY(-2px);
}
83.25% {
transform : translateY(1px);
}
100% {
transform : translateY(0);
}
}
.hvr-wobble-vertical {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
animation-name : hvr-wobble-vertical;
animation-duration : 1s;
animation-timing-function : ease-in-out;
animation-iteration-count : 1;
}
@keyframes hvr-wobble-horizontal {
16.65% {
transform : translateX(8px);
}
33.3% {
transform : translateX(-6px);
}
49.95% {
transform : translateX(4px);
}
66.6% {
transform : translateX(-2px);
}
83.25% {
transform : translateX(1px);
}
100% {
transform : translateX(0);
}
}
.hvr-wobble-horizontal {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
animation-name : hvr-wobble-horizontal;
animation-duration : 1s;
animation-timing-function : ease-in-out;
animation-iteration-count : 1;
}
@keyframes hvr-wobble-to-bottom-right {
16.65% {
transform : translate(8px,8px);
}
33.3% {
transform : translate(-6px,-6px);
}
49.95% {
transform : translate(4px,4px);
}
66.6% {
transform : translate(-2px,-2px);
}
83.25% {
transform : translate(1px,1px);
}
100% {
transform : translate(0,0);
}
}
.hvr-wobble-to-bottom-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-wobble-to-bottom-right:hover, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:active {
animation-name : hvr-wobble-to-bottom-right;
animation-duration : 1s;
animation-timing-function : ease-in-out;
animation-iteration-count : 1;
}
@keyframes hvr-wobble-to-top-right {
16.65% {
transform : translate(8px,-8px);
}
33.3% {
transform : translate(-6px,6px);
}
49.95% {
transform : translate(4px,-4px);
}
66.6% {
transform : translate(-2px,2px);
}
83.25% {
transform : translate(1px,-1px);
}
100% {
transform : translate(0,0);
}
}
.hvr-wobble-to-top-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {
animation-name : hvr-wobble-to-top-right;
animation-duration : 1s;
animation-timing-function : ease-in-out;
animation-iteration-count : 1;
}
@keyframes hvr-wobble-top {
16.65% {
transform : skew(-12deg);
}
33.3% {
transform : skew(10deg);
}
49.95% {
transform : skew(-6deg);
}
66.6% {
transform : skew(4deg);
}
83.25% {
transform : skew(-2deg);
}
100% {
transform : skew(0);
}
}
.hvr-wobble-top {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transform-origin : 0 100%;
}
.hvr-wobble-top:hover, .hvr-wobble-top:focus, .hvr-wobble-top:active {
animation-name : hvr-wobble-top;
animation-duration : 1s;
animation-timing-function : ease-in-out;
animation-iteration-count : 1;
}
@keyframes hvr-wobble-bottom {
16.65% {
transform : skew(-12deg);
}
33.3% {
transform : skew(10deg);
}
49.95% {
transform : skew(-6deg);
}
66.6% {
transform : skew(4deg);
}
83.25% {
transform : skew(-2deg);
}
100% {
transform : skew(0);
}
}
.hvr-wobble-bottom {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transform-origin : 100% 0;
}
.hvr-wobble-bottom:hover, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:active {
animation-name : hvr-wobble-bottom;
animation-duration : 1s;
animation-timing-function : ease-in-out;
animation-iteration-count : 1;
}
@keyframes hvr-wobble-skew {
16.65% {
transform : skew(-12deg);
}
33.3% {
transform : skew(10deg);
}
49.95% {
transform : skew(-6deg);
}
66.6% {
transform : skew(4deg);
}
83.25% {
transform : skew(-2deg);
}
100% {
transform : skew(0);
}
}
.hvr-wobble-skew {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-wobble-skew:hover, .hvr-wobble-skew:focus, .hvr-wobble-skew:active {
animation-name : hvr-wobble-skew;
animation-duration : 1s;
animation-timing-function : ease-in-out;
animation-iteration-count : 1;
}
@keyframes hvr-buzz {
50% {
transform : translateX(3px) rotate(2deg);
}
100% {
transform : translateX(-3px) rotate(-2deg);
}
}
.hvr-buzz {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
animation-name : hvr-buzz;
animation-duration : 0.15s;
animation-timing-function : linear;
animation-iteration-count : infinite;
}
@keyframes hvr-buzz-out {
10% {
transform : translateX(3px) rotate(2deg);
}
20% {
transform : translateX(-3px) rotate(-2deg);
}
30% {
transform : translateX(3px) rotate(2deg);
}
40% {
transform : translateX(-3px) rotate(-2deg);
}
50% {
transform : translateX(2px) rotate(1deg);
}
60% {
transform : translateX(-2px) rotate(-1deg);
}
70% {
transform : translateX(2px) rotate(1deg);
}
80% {
transform : translateX(-2px) rotate(-1deg);
}
90% {
transform : translateX(1px) rotate(0);
}
100% {
transform : translateX(-1px) rotate(0);
}
}
.hvr-buzz-out {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
animation-name : hvr-buzz-out;
animation-duration : 0.75s;
animation-timing-function : linear;
animation-iteration-count : 1;
}
.hvr-fade {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
overflow : hidden;
transition-duration : 0.3s;
transition-property : color, background-color;
}
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
background-color : #2098d1;
color : white;
}
@keyframes hvr-back-pulse {
50% {
background-color : rgb(32, 152, 209, 0.75);
}
}
.hvr-back-pulse {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
overflow : hidden;
transition-duration : 0.5s;
transition-property : color, background-color;
}
.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
animation-name : hvr-back-pulse;
animation-duration : 1s;
animation-delay : 0.5s;
animation-timing-function : linear;
animation-iteration-count : infinite;
background-color : #2098d1;
background-color : #2098d1;
color : white;
}
.hvr-sweep-to-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-sweep-to-right:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
transform : scaleX(0);
transform-origin : 0 50%;
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
color : white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
transform : scaleX(1);
}
.hvr-sweep-to-left {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-sweep-to-left:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
transform : scaleX(0);
transform-origin : 100% 50%;
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
color : white;
}
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
transform : scaleX(1);
}
.hvr-sweep-to-bottom {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-sweep-to-bottom:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
transform : scaleY(0);
transform-origin : 50% 0;
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
color : white;
}
.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
transform : scaleY(1);
}
.hvr-sweep-to-top {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-sweep-to-top:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
transform : scaleY(0);
transform-origin : 50% 100%;
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
color : white;
}
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
transform : scaleY(1);
}
.hvr-bounce-to-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-property : color;
transition-duration : 0.5s;
}
.hvr-bounce-to-right:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
transform : scaleX(0);
transform-origin : 0 50%;
transition-property : transform;
transition-duration : 0.5s;
transition-timing-function : ease-out;
}
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
color : white;
}
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
transform : scaleX(1);
transition-timing-function : cubic-bezier(0.52,1.64,0.37,0.66);
}
.hvr-bounce-to-left {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-property : color;
transition-duration : 0.5s;
}
.hvr-bounce-to-left:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
transform : scaleX(0);
transform-origin : 100% 50%;
transition-property : transform;
transition-duration : 0.5s;
transition-timing-function : ease-out;
}
.hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
color : white;
}
.hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
transform : scaleX(1);
transition-timing-function : cubic-bezier(0.52,1.64,0.37,0.66);
}
.hvr-bounce-to-bottom {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-property : color;
transition-duration : 0.5s;
}
.hvr-bounce-to-bottom:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
transform : scaleY(0);
transform-origin : 50% 0;
transition-property : transform;
transition-duration : 0.5s;
transition-timing-function : ease-out;
}
.hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
color : white;
}
.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
transform : scaleY(1);
transition-timing-function : cubic-bezier(0.52,1.64,0.37,0.66);
}
.hvr-bounce-to-top {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-property : color;
transition-duration : 0.5s;
}
.hvr-bounce-to-top:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
transform : scaleY(0);
transform-origin : 50% 100%;
transition-property : transform;
transition-duration : 0.5s;
transition-timing-function : ease-out;
}
.hvr-bounce-to-top:hover, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:active {
color : white;
}
.hvr-bounce-to-top:hover:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:active:before {
transform : scaleY(1);
transition-timing-function : cubic-bezier(0.52,1.64,0.37,0.66);
}
.hvr-radial-out {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
background : #e1e1e1;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-radial-out:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
border-radius : 100%;
transform : scale(0);
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
color : white;
}
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
transform : scale(2);
}
.hvr-radial-in {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
background : #2098d1;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-radial-in:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #e1e1e1;
border-radius : 100%;
transform : scale(2);
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
color : white;
}
.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
transform : scale(0);
}
.hvr-rectangle-in {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
background : #2098d1;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-rectangle-in:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #e1e1e1;
transform : scale(1);
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
color : white;
}
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
transform : scale(0);
}
.hvr-rectangle-out {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
background : #e1e1e1;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-rectangle-out:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
transform : scale(0);
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
color : white;
}
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
transform : scale(1);
}
.hvr-shutter-in-horizontal {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
background : #2098d1;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-shutter-in-horizontal:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
bottom : 0;
left : 0;
right : 0;
background : #e1e1e1;
transform : scaleX(1);
transform-origin : 50%;
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
color : white;
}
.hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before {
transform : scaleX(0);
}
.hvr-shutter-out-horizontal {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
background : #e1e1e1;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-shutter-out-horizontal:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
bottom : 0;
left : 0;
right : 0;
background : #2098d1;
transform : scaleX(0);
transform-origin : 50%;
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
color : white;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
transform : scaleX(1);
}
.hvr-shutter-in-vertical {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
background : #2098d1;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-shutter-in-vertical:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
bottom : 0;
left : 0;
right : 0;
background : #e1e1e1;
transform : scaleY(1);
transform-origin : 50%;
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-shutter-in-vertical:hover, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:active {
color : white;
}
.hvr-shutter-in-vertical:hover:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:active:before {
transform : scaleY(0);
}
.hvr-shutter-out-vertical {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
background : #e1e1e1;
transition-property : color;
transition-duration : 0.3s;
}
.hvr-shutter-out-vertical:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
bottom : 0;
left : 0;
right : 0;
background : #2098d1;
transform : scaleY(0);
transform-origin : 50%;
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
color : white;
}
.hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
transform : scaleY(1);
}
.hvr-border-fade {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : box-shadow;
box-shadow : 0 0 0 4px #e1e1e1 inset, 0 0 1px rgb(0, 0, 0, 0);
}
.hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
box-shadow : 0 0 0 4px #2098d1 inset, 0 0 1px rgb(0, 0, 0, 0);
}
.hvr-hollow {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : background;
box-shadow : 0 0 0 4px #e1e1e1 inset, 0 0 1px rgb(0, 0, 0, 0);
}
.hvr-hollow:hover, .hvr-hollow:focus, .hvr-hollow:active {
background : none;
}
.hvr-trim {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-trim:before {
content : '';
position : absolute;
border : white solid 4px;
top : 4px;
left : 4px;
right : 4px;
bottom : 4px;
opacity : 0;
transition-duration : 0.3s;
transition-property : opacity;
}
.hvr-trim:hover:before, .hvr-trim:focus:before, .hvr-trim:active:before {
opacity : 1;
}
@keyframes hvr-ripple-out {
100% {
top : -12px;
right : -12px;
bottom : -12px;
left : -12px;
opacity : 0;
}
}
.hvr-ripple-out {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-ripple-out:before {
content : '';
position : absolute;
border : #e1e1e1 solid 6px;
top : 0;
right : 0;
bottom : 0;
left : 0;
animation-duration : 1s;
}
.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
animation-name : hvr-ripple-out;
}
@keyframes hvr-ripple-in {
100% {
top : 0;
right : 0;
bottom : 0;
left : 0;
opacity : 1;
}
}
.hvr-ripple-in {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-ripple-in:before {
content : '';
position : absolute;
border : #e1e1e1 solid 4px;
top : -12px;
right : -12px;
bottom : -12px;
left : -12px;
opacity : 0;
animation-duration : 1s;
}
.hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
animation-name : hvr-ripple-in;
}
.hvr-outline-out {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-outline-out:before {
content : '';
position : absolute;
border : #e1e1e1 solid 4px;
top : 0;
right : 0;
bottom : 0;
left : 0;
transition-duration : 0.3s;
transition-property : top, right, bottom, left;
}
.hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
top : -8px;
right : -8px;
bottom : -8px;
left : -8px;
}
.hvr-outline-in {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-outline-in:before {

content : '';
position : absolute;
border : #e1e1e1 solid 4px;
top : -16px;
right : -16px;
bottom : -16px;
left : -16px;
opacity : 0;
transition-duration : 0.3s;
transition-property : top, right, bottom, left;
}
.hvr-outline-in:hover:before, .hvr-outline-in:focus:before, .hvr-outline-in:active:before {
top : -8px;
right : -8px;
bottom : -8px;
left : -8px;
opacity : 1;
}
.hvr-round-corners {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : border-radius;
}
.hvr-round-corners:hover, .hvr-round-corners:focus, .hvr-round-corners:active {
border-radius : 1em;
}
.hvr-underline-from-left {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
}
.hvr-underline-from-left:before {
content : "";
position : absolute;
z-index : -1;
left : 0;
right : 100%;
bottom : 0;
background : #2098d1;
height : 4px;
transition-property : right;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
right : 0;
}
.hvr-underline-from-center {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
}
.hvr-underline-from-center:before {
content : "";
position : absolute;
z-index : -1;
left : 50%;
right : 50%;
bottom : 0;
background : #2098d1;
height : 4px;
transition-property : left, right;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
left : 0;
right : 0;
}
.hvr-underline-from-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
}
.hvr-underline-from-right:before {
content : "";
position : absolute;
z-index : -1;
left : 100%;
right : 0;
bottom : 0;
background : #2098d1;
height : 4px;
transition-property : left;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
left : 0;
}
.hvr-overline-from-left {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
}
.hvr-overline-from-left:before {
content : "";
position : absolute;
z-index : -1;
left : 0;
right : 100%;
top : 0;
background : #2098d1;
height : 4px;
transition-property : right;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-overline-from-left:hover:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:active:before {
right : 0;
}
.hvr-overline-from-center {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
}
.hvr-overline-from-center:before {
content : "";
position : absolute;
z-index : -1;
left : 50%;
right : 50%;
top : 0;
background : #2098d1;
height : 4px;
transition-property : left, right;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
left : 0;
right : 0;
}
.hvr-overline-from-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
}
.hvr-overline-from-right:before {
content : "";
position : absolute;
z-index : -1;
left : 100%;
right : 0;
top : 0;
background : #2098d1;
height : 4px;
transition-property : left;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
left : 0;
}
.hvr-reveal {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
}
.hvr-reveal:before {
content : "";
position : absolute;
z-index : -1;
left : 0;
right : 0;
top : 0;
bottom : 0;
border-color : #2098d1;
border-style : solid;
border-width : 0;
transition-property : border-width;
transition-duration : 0.1s;
transition-timing-function : ease-out;
}
.hvr-reveal:hover:before, .hvr-reveal:focus:before, .hvr-reveal:active:before {
transform : translateY(0);
border-width : 4px;
}
.hvr-underline-reveal {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
}
.hvr-underline-reveal:before {
content : "";
position : absolute;
z-index : -1;
left : 0;
right : 0;
bottom : 0;
background : #2098d1;
height : 4px;
transform : translateY(4px);
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
transform : translateY(0);
}
.hvr-overline-reveal {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
overflow : hidden;
}
.hvr-overline-reveal:before {
content : "";
position : absolute;
z-index : -1;
left : 0;
right : 0;
top : 0;
background : #2098d1;
height : 4px;
transform : translateY(-4px);
transition-property : transform;
transition-duration : 0.3s;
transition-timing-function : ease-out;
}
.hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
transform : translateY(0);
}
.hvr-glow {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : box-shadow;
}
.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
box-shadow : 0 0 8px rgb(0, 0, 0, 0.6);
}
.hvr-shadow {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : box-shadow;
}
.hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
box-shadow : 0 10px 10px -10px rgb(0, 0, 0, 0.5);
}
.hvr-grow-shadow {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
box-shadow : 0 10px 10px -10px rgb(0, 0, 0, 0.5);
transform : scale(1.1);
}
.hvr-box-shadow-outset {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : box-shadow;
}
.hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
box-shadow : 2px 2px 2px rgb(0, 0, 0, 0.6);
}
.hvr-box-shadow-inset {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
transition-duration : 0.3s;
transition-property : box-shadow;
box-shadow : 0 0 0 rgb(0, 0, 0, 0.6) inset, 0 0 1px rgb(0, 0, 0, 0);
}
.hvr-box-shadow-inset:hover, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:active {
box-shadow : 2px 2px 2px rgb(0, 0, 0, 0.6) inset, 0 0 1px rgb(0, 0, 0, 0);
}
.hvr-float-shadow {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-float-shadow:before {

position : absolute;
z-index : -1;
content : '';
top : 100%;
left : 5%;
height : 10px;
width : 90%;
opacity : 0;
background : radial-gradient(ellipse at center, rgb(0, 0, 0, 0.35) 0%, rgb(0, 0, 0, 0) 80%);
transition-duration : 0.3s;
transition-property : transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
transform : translateY(-5px);
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
opacity : 1;
transform : translateY(5px);
}
.hvr-shadow-radial {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-shadow-radial:before, .hvr-shadow-radial:after {

position : absolute;
content : '';
left : 0;
width : 100%;
box-sizing : border-box;
background-repeat : no-repeat;
height : 5px;
opacity : 0;
transition-duration : 0.3s;
transition-property : opacity;
}
.hvr-shadow-radial:before {
bottom : 100%;
background : radial-gradient(ellipse at 50% 150%, rgb(0, 0, 0, 0.6) 0%, rgb(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:after {
top : 100%;
background : radial-gradient(ellipse at 50% -50%, rgb(0, 0, 0, 0.6) 0%, rgb(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:hover:before, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:active:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:active:after {
opacity : 1;
}
.hvr-bubble-top {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-bubble-top:before {

position : absolute;
z-index : -1;
content : '';
border-style : solid;
transition-duration : 0.3s;
transition-property : transform;
left : calc(50% - 10px);
top : 0;
border-width : 0 10px 10px 10px;
border-color : transparent transparent #e1e1e1 transparent;
}
.hvr-bubble-top:hover:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:active:before {
transform : translateY(-10px);
}
.hvr-bubble-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-bubble-right:before {

position : absolute;
z-index : -1;
content : '';
border-style : solid;
transition-duration : 0.3s;
transition-property : transform;
top : calc(50% - 10px);
right : 0;
border-width : 10px 0 10px 10px;
border-color : transparent transparent transparent #e1e1e1;
}
.hvr-bubble-right:hover:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:active:before {
transform : translateX(10px);
}
.hvr-bubble-bottom {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-bubble-bottom:before {

position : absolute;
z-index : -1;
content : '';
border-style : solid;
transition-duration : 0.3s;
transition-property : transform;
left : calc(50% - 10px);
bottom : 0;
border-width : 10px 10px 0 10px;
border-color : #e1e1e1 transparent transparent transparent;
}
.hvr-bubble-bottom:hover:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:active:before {
transform : translateY(10px);
}
.hvr-bubble-left {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-bubble-left:before {

position : absolute;
z-index : -1;
content : '';
border-style : solid;
transition-duration : 0.3s;
transition-property : transform;
top : calc(50% - 10px);
left : 0;
border-width : 10px 10px 10px 0;
border-color : transparent #e1e1e1 transparent transparent;
}
.hvr-bubble-left:hover:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:active:before {
transform : translateX(-10px);
}
.hvr-bubble-float-top {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-bubble-float-top:before {
position : absolute;
z-index : -1;
content : '';
left : calc(50% - 10px);
top : 0;
border-style : solid;
border-width : 0 10px 10px 10px;
border-color : transparent transparent #e1e1e1 transparent;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-bubble-float-top:hover, .hvr-bubble-float-top:focus, .hvr-bubble-float-top:active {
transform : translateY(10px);
}
.hvr-bubble-float-top:hover:before, .hvr-bubble-float-top:focus:before, .hvr-bubble-float-top:active:before {
transform : translateY(-10px);
}
.hvr-bubble-float-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-bubble-float-right:before {
position : absolute;
z-index : -1;
top : calc(50% - 10px);
right : 0;
content : '';
border-style : solid;
border-width : 10px 0 10px 10px;
border-color : transparent transparent transparent #e1e1e1;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-bubble-float-right:hover, .hvr-bubble-float-right:focus, .hvr-bubble-float-right:active {
transform : translateX(-10px);
}
.hvr-bubble-float-right:hover:before, .hvr-bubble-float-right:focus:before, .hvr-bubble-float-right:active:before {
transform : translateX(10px);
}
.hvr-bubble-float-bottom {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-bubble-float-bottom:before {
position : absolute;
z-index : -1;
content : '';
left : calc(50% - 10px);
bottom : 0;
border-style : solid;
border-width : 10px 10px 0 10px;
border-color : #e1e1e1 transparent transparent transparent;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-bubble-float-bottom:hover, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:active {
transform : translateY(-10px);
}
.hvr-bubble-float-bottom:hover:before, .hvr-bubble-float-bottom:focus:before, .hvr-bubble-float-bottom:active:before {
transform : translateY(10px);
}
.hvr-bubble-float-left {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-bubble-float-left:before {
position : absolute;
z-index : -1;
content : '';
top : calc(50% - 10px);
left : 0;
border-style : solid;
border-width : 10px 10px 10px 0;
border-color : transparent #e1e1e1 transparent transparent;
transition-duration : 0.3s;
transition-property : transform;
}
.hvr-bubble-float-left:hover, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:active {
transform : translateX(10px);
}
.hvr-bubble-float-left:hover:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:active:before {
transform : translateX(-10px);
}
.hvr-icon-back {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-left : 2.2em;
transition-duration : 0.1s;
}
.hvr-icon-back:before {
content : "\f137";
position : absolute;
left : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.1s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-back:hover:before, .hvr-icon-back:focus:before, .hvr-icon-back:active:before {
transform : translateX(-4px);
}
.hvr-icon-forward {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.1s;
}
.hvr-icon-forward:before {
content : "\f138";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.1s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-forward:hover:before, .hvr-icon-forward:focus:before, .hvr-icon-forward:active:before {
transform : translateX(4px);
}
@keyframes hvr-icon-down {
0%, 50%, 100% {
transform : translateY(0);
}
25%, 75% {
transform : translateY(6px);
}
}
.hvr-icon-down {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-down:before {
content : "\f01a";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-down:hover:before, .hvr-icon-down:focus:before, .hvr-icon-down:active:before {
animation-name : hvr-icon-down;
animation-duration : 0.75s;
animation-timing-function : ease-out;
}
@keyframes hvr-icon-up {
0%, 50%, 100% {
transform : translateY(0);
}
25%, 75% {
transform : translateY(-6px);
}
}
.hvr-icon-up {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-up:before {
content : "\f01b";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-up:hover:before, .hvr-icon-up:focus:before, .hvr-icon-up:active:before {
animation-name : hvr-icon-up;
animation-duration : 0.75s;
animation-timing-function : ease-out;
}
.hvr-icon-spin {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-spin:before {
content : "\f021";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transition-duration : 1s;
transition-property : transform;
transition-timing-function : ease-in-out;
}
.hvr-icon-spin:hover:before, .hvr-icon-spin:focus:before, .hvr-icon-spin:active:before {
transform : rotate(360deg);
}
@keyframes hvr-icon-drop {
0% {
opacity : 0;
}
50% {
opacity : 0;
transform : translateY(-100%);
}
51%, 100% {
opacity : 1;
}
}
.hvr-icon-drop {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-drop:before {
content : "\f041";
position : absolute;
right : 1em;
opacity : 1;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-drop:hover:before, .hvr-icon-drop:focus:before, .hvr-icon-drop:active:before {
opacity : 0;
transition-duration : 0.3s;
animation-name : hvr-icon-drop;
animation-duration : 0.5s;
animation-delay : 0.3s;
animation-fill-mode : forwards;
animation-timing-function : ease-in-out;
animation-timing-function : cubic-bezier(0.52,1.64,0.37,0.66);
}
.hvr-icon-fade {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-fade:before {
content : "\f00c";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.5s;
transition-property : color;
}
.hvr-icon-fade:hover:before, .hvr-icon-fade:focus:before, .hvr-icon-fade:active:before {
color : #0F9E5E;
}
@keyframes hvr-icon-float-away {
0% {
opacity : 1;
}
100% {
opacity : 0;
transform : translateY(-1em);
}
}
.hvr-icon-float-away {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-float-away:before, .hvr-icon-float-away:after {
content : "\f055";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
}
.hvr-icon-float-away:after {
opacity : 0;
animation-duration : 0.5s;
animation-fill-mode : forwards;
}
.hvr-icon-float-away:hover:after, .hvr-icon-float-away:focus:after, .hvr-icon-float-away:active:after {
animation-name : hvr-icon-float-away;
animation-timing-function : ease-out;
}
@keyframes hvr-icon-sink-away {
0% {
opacity : 1;
}
100% {
opacity : 0;
transform : translateY(1em);
}
}
.hvr-icon-sink-away {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-sink-away:before, .hvr-icon-sink-away:after {
content : "\f056";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-sink-away:after {
opacity : 0;
animation-duration : 0.5s;
animation-fill-mode : forwards;
}
.hvr-icon-sink-away:hover:after, .hvr-icon-sink-away:focus:after, .hvr-icon-sink-away:active:after {
animation-name : hvr-icon-sink-away;
animation-timing-function : ease-out;
}
.hvr-icon-grow {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-grow:before {
content : "\f118";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-grow:hover:before, .hvr-icon-grow:focus:before, .hvr-icon-grow:active:before {
transform : scale(1.3) translateZ(0);
}
.hvr-icon-shrink {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-shrink:before {
content : "\f119";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-shrink:hover:before, .hvr-icon-shrink:focus:before, .hvr-icon-shrink:active:before {
transform : scale(0.8);
}
@keyframes hvr-icon-pulse {
25% {
transform : scale(1.3);
}
75% {
transform : scale(0.8);
}
}
.hvr-icon-pulse {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-pulse:before {
content : "\f015";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-timing-function : ease-out;
}
.hvr-icon-pulse:hover:before, .hvr-icon-pulse:focus:before, .hvr-icon-pulse:active:before {
animation-name : hvr-icon-pulse;
animation-duration : 1s;
animation-timing-function : linear;
animation-iteration-count : infinite;
}
@keyframes hvr-icon-pulse-grow {
to {
transform : scale(1.3);
}
}
.hvr-icon-pulse-grow {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-pulse-grow:before {
content : "\f015";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-timing-function : ease-out;
}
.hvr-icon-pulse-grow:hover:before, .hvr-icon-pulse-grow:focus:before, .hvr-icon-pulse-grow:active:before {
animation-name : hvr-icon-pulse-grow;
animation-duration : 0.3s;
animation-timing-function : linear;
animation-iteration-count : infinite;
animation-direction : alternate;
}
@keyframes hvr-icon-pulse-shrink {
to {
transform : scale(0.8);
}
}
.hvr-icon-pulse-shrink {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
}
.hvr-icon-pulse-shrink:before {
content : "\f015";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-timing-function : ease-out;
}
.hvr-icon-pulse-shrink:hover:before, .hvr-icon-pulse-shrink:focus:before, .hvr-icon-pulse-shrink:active:before {
animation-name : hvr-icon-pulse-shrink;
animation-duration : 0.3s;
animation-timing-function : linear;
animation-iteration-count : infinite;
animation-direction : alternate;
}
@keyframes hvr-icon-push {
50% {
transform : scale(0.5);
}
}
.hvr-icon-push {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-push:before {
content : "\f006";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-push:hover:before, .hvr-icon-push:focus:before, .hvr-icon-push:active:before {
animation-name : hvr-icon-push;
animation-duration : 0.3s;
animation-timing-function : linear;
animation-iteration-count : 1;
}
@keyframes hvr-icon-pop {
50% {
transform : scale(1.5);
}
}
.hvr-icon-pop {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-pop:before {
content : "\f005";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-pop:hover:before, .hvr-icon-pop:focus:before, .hvr-icon-pop:active:before {
animation-name : hvr-icon-pop;
animation-duration : 0.3s;
animation-timing-function : linear;
animation-iteration-count : 1;
}
.hvr-icon-bounce {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-bounce:before {
content : "\f087";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-bounce:hover:before, .hvr-icon-bounce:focus:before, .hvr-icon-bounce:active:before {
transform : scale(1.5);
transition-timing-function : cubic-bezier(0.47,2.02,0.31,-0.36);
}
.hvr-icon-rotate {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-rotate:before {
content : "\f0c6";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-rotate:hover:before, .hvr-icon-rotate:focus:before, .hvr-icon-rotate:active:before {
transform : rotate(20deg);
}
.hvr-icon-grow-rotate {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-grow-rotate:before {
content : "\f095";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-grow-rotate:hover:before, .hvr-icon-grow-rotate:focus:before, .hvr-icon-grow-rotate:active:before {
transform : scale(1.5) rotate(12deg);
}
.hvr-icon-float {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-float:before {
content : "\f01b";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-float:hover:before, .hvr-icon-float:focus:before, .hvr-icon-float:active:before {
transform : translateY(-4px);
}
.hvr-icon-sink {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-sink:before {
content : "\f01a";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
transition-duration : 0.3s;
transition-property : transform;
transition-timing-function : ease-out;
}
.hvr-icon-sink:hover:before, .hvr-icon-sink:focus:before, .hvr-icon-sink:active:before {
transform : translateY(4px);
}
@keyframes hvr-icon-bob {
0% {
transform : translateY(-6px);
}
50% {
transform : translateY(-2px);
}
100% {
transform : translateY(-6px);
}
}
@keyframes hvr-icon-bob-float {
100% {
transform : translateY(-6px);
}
}
.hvr-icon-bob {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-bob:before {
content : "\f077";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-bob:hover:before, .hvr-icon-bob:focus:before, .hvr-icon-bob:active:before {
animation-name : hvr-icon-bob-float, hvr-icon-bob;
animation-duration : 0.3s, 1.5s;
animation-delay : 0s, 0.3s;
animation-timing-function : ease-out, ease-in-out;
animation-iteration-count : 1, infinite;
animation-fill-mode : forwards;
animation-direction : normal, alternate;
}
@keyframes hvr-icon-hang {
0% {
transform : translateY(6px);
}
50% {
transform : translateY(2px);
}
100% {
transform : translateY(6px);
}
}
@keyframes hvr-icon-hang-sink {
100% {
transform : translateY(6px);
}
}
.hvr-icon-hang {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-hang:before {
content : "\f078";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-hang:hover:before, .hvr-icon-hang:focus:before, .hvr-icon-hang:active:before {
animation-name : hvr-icon-hang-sink, hvr-icon-hang;
animation-duration : 0.3s, 1.5s;
animation-delay : 0s, 0.3s;
animation-timing-function : ease-out, ease-in-out;
animation-iteration-count : 1, infinite;
animation-fill-mode : forwards;
animation-direction : normal, alternate;
}
@keyframes hvr-icon-wobble-horizontal {
16.65% {
transform : translateX(6px);
}
33.3% {
transform : translateX(-5px);
}
49.95% {
transform : translateX(4px);
}
66.6% {
transform : translateX(-2px);
}
83.25% {
transform : translateX(1px);
}
100% {
transform : translateX(0);
}
}
.hvr-icon-wobble-horizontal {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-wobble-horizontal:before {
content : "\f061";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-wobble-horizontal:hover:before, .hvr-icon-wobble-horizontal:focus:before, .hvr-icon-wobble-horizontal:active:before {
animation-name : hvr-icon-wobble-horizontal;
animation-duration : 1s;
animation-timing-function : ease-in-out;
animation-iteration-count : 1;
}
@keyframes hvr-icon-wobble-vertical {
16.65% {
transform : translateY(6px);
}
33.3% {
transform : translateY(-5px);
}
49.95% {
transform : translateY(4px);
}
66.6% {
transform : translateY(-2px);
}
83.25% {
transform : translateY(1px);
}
100% {
transform : translateY(0);
}
}
.hvr-icon-wobble-vertical {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-wobble-vertical:before {
content : "\f062";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-wobble-vertical:hover:before, .hvr-icon-wobble-vertical:focus:before, .hvr-icon-wobble-vertical:active:before {
animation-name : hvr-icon-wobble-vertical;
animation-duration : 1s;
animation-timing-function : ease-in-out;
animation-iteration-count : 1;
}
@keyframes hvr-icon-buzz {
50% {
transform : translateX(3px) rotate(2deg);
}
100% {
transform : translateX(-3px) rotate(-2deg);
}
}
.hvr-icon-buzz {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-buzz:before {
content : "\f017";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-buzz:hover:before, .hvr-icon-buzz:focus:before, .hvr-icon-buzz:active:before {
animation-name : hvr-icon-buzz;
animation-duration : 0.15s;
animation-timing-function : linear;
animation-iteration-count : infinite;
}
@keyframes hvr-icon-buzz-out {
10% {
transform : translateX(3px) rotate(2deg);
}
20% {
transform : translateX(-3px) rotate(-2deg);
}
30% {
transform : translateX(3px) rotate(2deg);
}
40% {
transform : translateX(-3px) rotate(-2deg);
}
50% {
transform : translateX(2px) rotate(1deg);
}
60% {
transform : translateX(-2px) rotate(-1deg);
}
70% {
transform : translateX(2px) rotate(1deg);
}
80% {
transform : translateX(-2px) rotate(-1deg);
}
90% {
transform : translateX(1px) rotate(0);
}
100% {
transform : translateX(-1px) rotate(0);
}
}
.hvr-icon-buzz-out {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
padding-right : 2.2em;
transition-duration : 0.3s;
}
.hvr-icon-buzz-out:before {
content : "\f023";
position : absolute;
right : 1em;
padding : 0 1px;
font-family : FontAwesome;
transform : translateZ(0);
}
.hvr-icon-buzz-out:hover:before, .hvr-icon-buzz-out:focus:before, .hvr-icon-buzz-out:active:before {
animation-name : hvr-icon-buzz-out;
animation-duration : 0.75s;
animation-timing-function : linear;
animation-iteration-count : 1;
}
.hvr-curl-top-left {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-curl-top-left:before {

position : absolute;
content : '';
height : 0;
width : 0;
top : 0;
left : 0;
background : white;
background : linear-gradient(135deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
z-index : 1000;
box-shadow : 1px 1px 1px rgb(0, 0, 0, 0.4);
transition-duration : 0.3s;
transition-property : width, height;
}
.hvr-curl-top-left:hover:before, .hvr-curl-top-left:focus:before, .hvr-curl-top-left:active:before {
width : 25px;
height : 25px;
}
.hvr-curl-top-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-curl-top-right:before {

position : absolute;
content : '';
height : 0;
width : 0;
top : 0;
right : 0;
background : white;
background : linear-gradient(225deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
box-shadow : -1px 1px 1px rgb(0, 0, 0, 0.4);
transition-duration : 0.3s;
transition-property : width, height;
}
.hvr-curl-top-right:hover:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:active:before {
width : 25px;
height : 25px;
}
.hvr-curl-bottom-right {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-curl-bottom-right:before {

position : absolute;
content : '';
height : 0;
width : 0;
bottom : 0;
right : 0;
background : white;
background : linear-gradient(315deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
box-shadow : -1px -1px 1px rgb(0, 0, 0, 0.4);
transition-duration : 0.3s;
transition-property : width, height;
}
.hvr-curl-bottom-right:hover:before, .hvr-curl-bottom-right:focus:before, .hvr-curl-bottom-right:active:before {
width : 25px;
height : 25px;
}
.hvr-curl-bottom-left {
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgb(0, 0, 0, 0);
backface-visibility : hidden;
position : relative;
}
.hvr-curl-bottom-left:before {

position : absolute;
content : '';
height : 0;
width : 0;
bottom : 0;
left : 0;
background : white;
background : linear-gradient(45deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
box-shadow : 1px -1px 1px rgb(0, 0, 0, 0.4);
transition-duration : 0.3s;
transition-property : width, height;
}
.hvr-curl-bottom-left:hover:before, .hvr-curl-bottom-left:focus:before, .hvr-curl-bottom-left:active:before {
width : 25px;
height : 25px;
}