.hvr-grow {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  transform: scale(1.1);
}

.hvr-shrink {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  transform: scale(.9);
}

@keyframes hvr-pulse {
  25% {
    transform: scale(1.1);
  }

  75% {
    transform: scale(.9);
  }
}

.hvr-pulse {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
  animation-name: hvr-pulse-grow;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes hvr-pulse-shrink {
  to {
    transform: scale(.9);
  }
}

.hvr-pulse-shrink {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
  animation-name: hvr-pulse-shrink;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes hvr-push {
  50% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1);
  }
}

.hvr-push {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  animation-name: hvr-push;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

@keyframes hvr-pop {
  50% {
    transform: scale(1.2);
  }
}

.hvr-pop {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  animation-name: hvr-pop;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.hvr-bounce-in {
  vertical-align: middle;
  transition-duration: .5s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  transition-timing-function: cubic-bezier(.47, 2.02, .31, -.36);
  transform: scale(1.2);
}

.hvr-bounce-out {
  vertical-align: middle;
  transition-duration: .5s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
  transition-timing-function: cubic-bezier(.47, 2.02, .31, -.36);
  transform: scale(.8);
}

.hvr-rotate {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
  transform: rotate(4deg);
}

.hvr-grow-rotate {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-grow-rotate:hover, .hvr-grow-rotate:focus, .hvr-grow-rotate:active {
  transform: scale(1.1)rotate(4deg);
}

.hvr-float {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  transform: translateY(-8px);
}

.hvr-sink {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  animation-name: hvr-bob-float, hvr-bob;
  animation-duration: .3s, 1.5s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-direction: normal, alternate;
  animation-delay: 0s, .3s;
  animation-fill-mode: forwards;
}

@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 {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
  animation-name: hvr-hang-sink, hvr-hang;
  animation-duration: .3s, 1.5s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-direction: normal, alternate;
  animation-delay: 0s, .3s;
  animation-fill-mode: forwards;
}

.hvr-skew {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
  transform: skew(-10deg);
}

.hvr-skew-forward {
  vertical-align: middle;
  transform-origin: 0 100%;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
  transform: skew(-10deg);
}

.hvr-skew-backward {
  vertical-align: middle;
  transform-origin: 0 100%;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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);
  }
}

.hvr-wobble-to-bottom-right {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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);
  }
}

.hvr-wobble-to-top-right {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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(0deg);
  }
}

.hvr-wobble-top {
  vertical-align: middle;
  transform-origin: 0 100%;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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(0deg);
  }
}

.hvr-wobble-bottom {
  vertical-align: middle;
  transform-origin: 100% 0;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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(0deg);
  }
}

.hvr-wobble-skew {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
  animation-name: hvr-buzz;
  animation-duration: .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 {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  animation-name: hvr-buzz-out;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.hvr-forward {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-forward:hover, .hvr-forward:focus, .hvr-forward:active {
  transform: translateX(8px);
}

.hvr-backward {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-backward:hover, .hvr-backward:focus, .hvr-backward:active {
  transform: translateX(-8px);
}

.hvr-fade {
  vertical-align: middle;
  transition-property: color, background-color;
  transition-duration: .3s;
  display: inline-block;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  color: #fff;
  background-color: #2098d1;
}

@keyframes hvr-back-pulse {
  50% {
    background-color: #2098d1bf;
  }
}

.hvr-back-pulse {
  vertical-align: middle;
  transition-property: color, background-color;
  transition-duration: .5s;
  display: inline-block;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
  color: #fff;
  background-color: #2098d1;
  animation-name: hvr-back-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: .5s;
}

.hvr-sweep-to-right {
  vertical-align: middle;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-sweep-to-right:before {
  content: "";
  z-index: -1;
  transform-origin: 0;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleX(0);
}

.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: #fff;
}

.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 {
  vertical-align: middle;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-sweep-to-left:before {
  content: "";
  z-index: -1;
  transform-origin: 100%;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleX(0);
}

.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
  color: #fff;
}

.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 {
  vertical-align: middle;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-sweep-to-bottom:before {
  content: "";
  z-index: -1;
  transform-origin: 50% 0;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleY(0);
}

.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  color: #fff;
}

.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 {
  vertical-align: middle;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-sweep-to-top:before {
  content: "";
  z-index: -1;
  transform-origin: 50% 100%;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleY(0);
}

.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
  color: #fff;
}

.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 {
  vertical-align: middle;
  transition-property: color;
  transition-duration: .5s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bounce-to-right:before {
  content: "";
  z-index: -1;
  transform-origin: 0;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .5s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleX(0);
}

.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
  color: #fff;
}

.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
  transform: scaleX(1);
}

.hvr-bounce-to-left {
  vertical-align: middle;
  transition-property: color;
  transition-duration: .5s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bounce-to-left:before {
  content: "";
  z-index: -1;
  transform-origin: 100%;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .5s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleX(0);
}

.hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
  color: #fff;
}

.hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
  transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
  transform: scaleX(1);
}

.hvr-bounce-to-bottom {
  vertical-align: middle;
  transition-property: color;
  transition-duration: .5s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bounce-to-bottom:before {
  content: "";
  z-index: -1;
  transform-origin: 50% 0;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .5s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleY(0);
}

.hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
  color: #fff;
}

.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
  transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
  transform: scaleY(1);
}

.hvr-bounce-to-top {
  vertical-align: middle;
  transition-property: color;
  transition-duration: .5s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bounce-to-top:before {
  content: "";
  z-index: -1;
  transform-origin: 50% 100%;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .5s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleY(0);
}

.hvr-bounce-to-top:hover, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:active {
  color: #fff;
}

.hvr-bounce-to-top:hover:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:active:before {
  transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
  transform: scaleY(1);
}

.hvr-radial-out {
  vertical-align: middle;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-radial-out:before {
  content: "";
  z-index: -1;
  background: #2098d1;
  border-radius: 100%;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scale(0);
}

.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
  color: #fff;
}

.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  transform: scale(2);
}

.hvr-radial-in {
  vertical-align: middle;
  background: #2098d1;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-radial-in:before {
  content: "";
  z-index: -1;
  background: #e1e1e1;
  border-radius: 100%;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scale(2);
}

.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
  color: #fff;
}

.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
  transform: scale(0);
}

.hvr-rectangle-in {
  vertical-align: middle;
  background: #2098d1;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-rectangle-in:before {
  content: "";
  z-index: -1;
  background: #e1e1e1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scale(1);
}

.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
  color: #fff;
}

.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
  transform: scale(0);
}

.hvr-rectangle-out {
  vertical-align: middle;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-rectangle-out:before {
  content: "";
  z-index: -1;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scale(0);
}

.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: #fff;
}

.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  transform: scale(1);
}

.hvr-shutter-in-horizontal {
  vertical-align: middle;
  background: #2098d1;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-shutter-in-horizontal:before {
  content: "";
  z-index: -1;
  transform-origin: 50%;
  background: #e1e1e1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleX(1);
}

.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
  color: #fff;
}

.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 {
  vertical-align: middle;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-shutter-out-horizontal:before {
  content: "";
  z-index: -1;
  transform-origin: 50%;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleX(0);
}

.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
  color: #fff;
}

.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 {
  vertical-align: middle;
  background: #2098d1;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-shutter-in-vertical:before {
  content: "";
  z-index: -1;
  transform-origin: 50%;
  background: #e1e1e1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleY(1);
}

.hvr-shutter-in-vertical:hover, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:active {
  color: #fff;
}

.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 {
  vertical-align: middle;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-shutter-out-vertical:before {
  content: "";
  z-index: -1;
  transform-origin: 50%;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
  transform: scaleY(0);
}

.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
  color: #fff;
}

.hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
  transform: scaleY(1);
}

.hvr-border-fade {
  vertical-align: middle;
  transition-property: box-shadow;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px #0000;
}

.hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
  box-shadow: inset 0 0 0 4px #2098d1, 0 0 1px #0000;
}

.hvr-hollow {
  vertical-align: middle;
  transition-property: background;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px #0000;
}

.hvr-hollow:hover, .hvr-hollow:focus, .hvr-hollow:active {
  background: none;
}

.hvr-trim {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-trim:before {
  content: "";
  opacity: 0;
  border: 4px solid #fff;
  transition-property: opacity;
  transition-duration: .3s;
  position: absolute;
  inset: 4px;
}

.hvr-trim:hover:before, .hvr-trim:focus:before, .hvr-trim:active:before {
  opacity: 1;
}

@keyframes hvr-ripple-out {
  100% {
    opacity: 0;
    inset: -12px;
  }
}

.hvr-ripple-out {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-ripple-out:before {
  content: "";
  border: 6px solid #e1e1e1;
  animation-duration: 1s;
  position: absolute;
  inset: 0;
}

.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% {
    opacity: 1;
    inset: 0;
  }
}

.hvr-ripple-in {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-ripple-in:before {
  content: "";
  opacity: 0;
  border: 4px solid #e1e1e1;
  animation-duration: 1s;
  position: absolute;
  inset: -12px;
}

.hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
  animation-name: hvr-ripple-in;
}

.hvr-outline-out {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-outline-out:before {
  content: "";
  border: 4px solid #e1e1e1;
  transition-property: top, right, bottom, left;
  transition-duration: .3s;
  position: absolute;
  inset: 0;
}

.hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
  inset: -8px;
}

.hvr-outline-in {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-outline-in:before {
  pointer-events: none;
  content: "";
  opacity: 0;
  border: 4px solid #e1e1e1;
  transition-property: top, right, bottom, left;
  transition-duration: .3s;
  position: absolute;
  inset: -16px;
}

.hvr-outline-in:hover:before, .hvr-outline-in:focus:before, .hvr-outline-in:active:before {
  opacity: 1;
  inset: -8px;
}

.hvr-round-corners {
  vertical-align: middle;
  transition-property: border-radius;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-round-corners:hover, .hvr-round-corners:focus, .hvr-round-corners:active {
  border-radius: 1em;
}

.hvr-underline-from-left {
  vertical-align: middle;
  padding-bottom: 4px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-underline-from-left:before {
  content: "";
  z-index: -1;
  height: 2px;
  background: #fff;
  transition-property: right;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
}

.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}

.hvr-underline-from-center {
  vertical-align: middle;
  padding-bottom: 4px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-underline-from-center:before {
  content: "";
  z-index: -1;
  height: 4px;
  background: #4a2b82;
  transition-property: left, right;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  bottom: 0;
  left: 51%;
  right: 51%;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-underline-from-right:before {
  content: "";
  z-index: -1;
  height: 4px;
  background: #2098d1;
  transition-property: left;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  bottom: 0;
  left: 100%;
  right: 0;
}

.hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
  left: 0;
}

.hvr-overline-from-left {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-overline-from-left:before {
  content: "";
  z-index: -1;
  height: 4px;
  background: #2098d1;
  transition-property: right;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
}

.hvr-overline-from-left:hover:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:active:before {
  right: 0;
}

.hvr-overline-from-center {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-overline-from-center:before {
  content: "";
  z-index: -1;
  height: 4px;
  background: #2098d1;
  transition-property: left, right;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  top: 0;
  left: 51%;
  right: 51%;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-overline-from-right:before {
  content: "";
  z-index: -1;
  height: 4px;
  background: #2098d1;
  transition-property: left;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  top: 0;
  left: 100%;
  right: 0;
}

.hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
  left: 0;
}

.hvr-reveal {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-reveal:before {
  content: "";
  z-index: -1;
  border: 0 solid #2098d1;
  transition-property: border-width;
  transition-duration: .1s;
  transition-timing-function: ease-out;
  position: absolute;
  inset: 0;
}

.hvr-reveal:hover:before, .hvr-reveal:focus:before, .hvr-reveal:active:before {
  border-width: 4px;
  transform: translateY(0);
}

.hvr-underline-reveal {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-underline-reveal:before {
  content: "";
  z-index: -1;
  height: 2px;
  background: #fff;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(4px);
}

.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  transform: translateY(0);
}

.hvr-overline-reveal {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-overline-reveal:before {
  content: "";
  z-index: -1;
  height: 4px;
  background: #2098d1;
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-4px);
}

.hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
  transform: translateY(0);
}

.hvr-glow {
  vertical-align: middle;
  transition-property: box-shadow;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
  box-shadow: 0 0 8px #0009;
}

.hvr-shadow {
  vertical-align: middle;
  transition-property: box-shadow;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
  box-shadow: 0 10px 10px -10px #00000080;
}

.hvr-grow-shadow {
  vertical-align: middle;
  transition-property: box-shadow, transform;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  transform: scale(1.1);
  box-shadow: 0 10px 10px -10px #00000080;
}

.hvr-box-shadow-outset {
  vertical-align: middle;
  transition-property: box-shadow;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px #0009;
}

.hvr-box-shadow-inset {
  vertical-align: middle;
  transition-property: box-shadow;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: inset 0 0 #0009, 0 0 1px #0000;
}

.hvr-box-shadow-inset:hover, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px #0009, 0 0 1px #0000;
}

.hvr-float-shadow {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-float-shadow:before {
  pointer-events: none;
  z-index: -1;
  content: "";
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, #00000059 0%, #0000 80%);
  background: radial-gradient(#00000059 0%, #0000 80%);
  transition-property: transform, opacity;
  transition-duration: .3s;
  position: absolute;
  top: 100%;
  left: 5%;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-shadow-radial:before, .hvr-shadow-radial:after {
  pointer-events: none;
  content: "";
  width: 100%;
  box-sizing: border-box;
  height: 5px;
  opacity: 0;
  background-repeat: no-repeat;
  transition-property: opacity;
  transition-duration: .3s;
  position: absolute;
  left: 0;
}

.hvr-shadow-radial:before {
  background: -webkit-radial-gradient(50% 150%, ellipse, #0009 0%, #0000 80%);
  background: radial-gradient(at 50% 150%, #0009 0%, #0000 80%);
  bottom: 100%;
}

.hvr-shadow-radial:after {
  background: -webkit-radial-gradient(50% -50%, ellipse, #0009 0%, #0000 80%);
  background: radial-gradient(at 50% -50%, #0009 0%, #0000 80%);
  top: 100%;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bubble-top:before {
  pointer-events: none;
  z-index: -1;
  content: "";
  border: 10px solid #0000;
  border-top-width: 0;
  border-bottom-color: #e1e1e1;
  transition-property: transform;
  transition-duration: .3s;
  position: absolute;
  top: 0;
  left: calc(50% - 10px);
}

.hvr-bubble-top:hover:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:active:before {
  transform: translateY(-10px);
}

.hvr-bubble-right {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bubble-right:before {
  pointer-events: none;
  z-index: -1;
  content: "";
  border: 10px solid #0000;
  border-left-color: #e1e1e1;
  border-right-width: 0;
  transition-property: transform;
  transition-duration: .3s;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
}

.hvr-bubble-right:hover:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:active:before {
  transform: translateX(10px);
}

.hvr-bubble-bottom {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bubble-bottom:before {
  pointer-events: none;
  z-index: -1;
  content: "";
  border: 10px solid #0000;
  border-top-color: #e1e1e1;
  border-bottom-width: 0;
  transition-property: transform;
  transition-duration: .3s;
  position: absolute;
  bottom: 0;
  left: calc(50% - 10px);
}

.hvr-bubble-bottom:hover:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:active:before {
  transform: translateY(10px);
}

.hvr-bubble-left {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bubble-left:before {
  pointer-events: none;
  z-index: -1;
  content: "";
  border: 10px solid #0000;
  border-left-width: 0;
  border-right-color: #e1e1e1;
  transition-property: transform;
  transition-duration: .3s;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
}

.hvr-bubble-left:hover:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:active:before {
  transform: translateX(-10px);
}

.hvr-bubble-float-top {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bubble-float-top:before {
  z-index: -1;
  content: "";
  border: 10px solid #0000;
  border-top-width: 0;
  border-bottom-color: #e1e1e1;
  transition-property: transform;
  transition-duration: .3s;
  position: absolute;
  top: 0;
  left: calc(50% - 10px);
}

.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 {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bubble-float-right:before {
  z-index: -1;
  content: "";
  border: 10px solid #0000;
  border-left-color: #e1e1e1;
  border-right-width: 0;
  transition-property: transform;
  transition-duration: .3s;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
}

.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 {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bubble-float-bottom:before {
  z-index: -1;
  content: "";
  border: 10px solid #0000;
  border-top-color: #e1e1e1;
  border-bottom-width: 0;
  transition-property: transform;
  transition-duration: .3s;
  position: absolute;
  bottom: 0;
  left: calc(50% - 10px);
}

.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 {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: .3s;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-bubble-float-left:before {
  z-index: -1;
  content: "";
  border: 10px solid #0000;
  border-left-width: 0;
  border-right-color: #e1e1e1;
  transition-property: transform;
  transition-duration: .3s;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
}

.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 {
  vertical-align: middle;
  transition-duration: .1s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-back .hvr-icon {
  transition-property: transform;
  transition-duration: .1s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-back:hover .hvr-icon, .hvr-icon-back:focus .hvr-icon, .hvr-icon-back:active .hvr-icon {
  transform: translateX(-4px);
}

.hvr-icon-forward {
  vertical-align: middle;
  transition-duration: .1s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-forward .hvr-icon {
  transition-property: transform;
  transition-duration: .1s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-forward:hover .hvr-icon, .hvr-icon-forward:focus .hvr-icon, .hvr-icon-forward:active .hvr-icon {
  transform: translateX(4px);
}

@keyframes hvr-icon-down {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(6px);
  }
}

.hvr-icon-down {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-down .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-down:hover .hvr-icon, .hvr-icon-down:focus .hvr-icon, .hvr-icon-down:active .hvr-icon {
  animation-name: hvr-icon-down;
  animation-duration: .75s;
  animation-timing-function: ease-out;
}

@keyframes hvr-icon-up {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(-6px);
  }
}

.hvr-icon-up {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-up .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-up:hover .hvr-icon, .hvr-icon-up:focus .hvr-icon, .hvr-icon-up:active .hvr-icon {
  animation-name: hvr-icon-up;
  animation-duration: .75s;
  animation-timing-function: ease-out;
}

.hvr-icon-spin {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-spin .hvr-icon {
  transition-property: transform;
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}

.hvr-icon-spin:hover .hvr-icon, .hvr-icon-spin:focus .hvr-icon, .hvr-icon-spin:active .hvr-icon {
  transform: rotate(360deg);
}

@keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    transform: translateY(-100%);
  }

  51%, 100% {
    opacity: 1;
  }
}

.hvr-icon-drop {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-drop .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-drop:hover .hvr-icon, .hvr-icon-drop:focus .hvr-icon, .hvr-icon-drop:active .hvr-icon {
  opacity: 0;
  transition-duration: .3s;
  animation-name: hvr-icon-drop;
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(.52, 1.64, .37, .66);
  animation-delay: .3s;
  animation-fill-mode: forwards;
}

.hvr-icon-fade {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-fade .hvr-icon {
  transition-property: color;
  transition-duration: .5s;
  transform: translateZ(0);
}

.hvr-icon-fade:hover .hvr-icon, .hvr-icon-fade:focus .hvr-icon, .hvr-icon-fade:active .hvr-icon {
  color: #0f9e5e;
}

@keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-1em);
  }
}

.hvr-icon-float-away {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-float-away .hvr-icon {
  animation-duration: .5s;
  animation-fill-mode: forwards;
  transform: translateZ(0);
}

.hvr-icon-float-away:hover .hvr-icon, .hvr-icon-float-away:focus .hvr-icon, .hvr-icon-float-away:active .hvr-icon {
  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 {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-sink-away .hvr-icon {
  animation-duration: .5s;
  animation-fill-mode: forwards;
  transform: translateZ(0);
}

.hvr-icon-sink-away:hover .hvr-icon, .hvr-icon-sink-away:focus .hvr-icon, .hvr-icon-sink-away:active .hvr-icon {
  animation-name: hvr-icon-sink-away;
  animation-timing-function: ease-out;
}

.hvr-icon-grow {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-grow .hvr-icon {
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-grow:hover .hvr-icon, .hvr-icon-grow:focus .hvr-icon, .hvr-icon-grow:active .hvr-icon {
  transform: scale(1.3)translateZ(0);
}

.hvr-icon-shrink {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-shrink .hvr-icon {
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-shrink:hover .hvr-icon, .hvr-icon-shrink:focus .hvr-icon, .hvr-icon-shrink:active .hvr-icon {
  transform: scale(.8);
}

@keyframes hvr-icon-pulse {
  25% {
    transform: scale(1.3);
  }

  75% {
    transform: scale(.8);
  }
}

.hvr-icon-pulse {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-pulse .hvr-icon {
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-pulse:hover .hvr-icon, .hvr-icon-pulse:focus .hvr-icon, .hvr-icon-pulse:active .hvr-icon {
  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 {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-pulse-grow .hvr-icon {
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-pulse-grow:hover .hvr-icon, .hvr-icon-pulse-grow:focus .hvr-icon, .hvr-icon-pulse-grow:active .hvr-icon {
  animation-name: hvr-icon-pulse-grow;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes hvr-icon-pulse-shrink {
  to {
    transform: scale(.8);
  }
}

.hvr-icon-pulse-shrink {
  vertical-align: middle;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-pulse-shrink .hvr-icon {
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-pulse-shrink:hover .hvr-icon, .hvr-icon-pulse-shrink:focus .hvr-icon, .hvr-icon-pulse-shrink:active .hvr-icon {
  animation-name: hvr-icon-pulse-shrink;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes hvr-icon-push {
  50% {
    transform: scale(.5);
  }
}

.hvr-icon-push {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-push .hvr-icon {
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-push:hover .hvr-icon, .hvr-icon-push:focus .hvr-icon, .hvr-icon-push:active .hvr-icon {
  animation-name: hvr-icon-push;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

@keyframes hvr-icon-pop {
  50% {
    transform: scale(1.5);
  }
}

.hvr-icon-pop {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-pop .hvr-icon {
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-pop:hover .hvr-icon, .hvr-icon-pop:focus .hvr-icon, .hvr-icon-pop:active .hvr-icon {
  animation-name: hvr-icon-pop;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.hvr-icon-bounce {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-bounce .hvr-icon {
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-bounce:hover .hvr-icon, .hvr-icon-bounce:focus .hvr-icon, .hvr-icon-bounce:active .hvr-icon {
  transition-timing-function: cubic-bezier(.47, 2.02, .31, -.36);
  transform: scale(1.5);
}

.hvr-icon-rotate {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-rotate .hvr-icon {
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-rotate:hover .hvr-icon, .hvr-icon-rotate:focus .hvr-icon, .hvr-icon-rotate:active .hvr-icon {
  transform: rotate(20deg);
}

.hvr-icon-grow-rotate {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-grow-rotate .hvr-icon {
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-grow-rotate:hover .hvr-icon, .hvr-icon-grow-rotate:focus .hvr-icon, .hvr-icon-grow-rotate:active .hvr-icon {
  transform: scale(1.5)rotate(12deg);
}

.hvr-icon-float {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-float .hvr-icon {
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-float:hover .hvr-icon, .hvr-icon-float:focus .hvr-icon, .hvr-icon-float:active .hvr-icon {
  transform: translateY(-4px);
}

.hvr-icon-sink {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-sink .hvr-icon {
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transform: translateZ(0);
}

.hvr-icon-sink:hover .hvr-icon, .hvr-icon-sink:focus .hvr-icon, .hvr-icon-sink:active .hvr-icon {
  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 {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-bob .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-bob:hover .hvr-icon, .hvr-icon-bob:focus .hvr-icon, .hvr-icon-bob:active .hvr-icon {
  animation-name: hvr-icon-bob-float, hvr-icon-bob;
  animation-duration: .3s, 1.5s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-direction: normal, alternate;
  animation-delay: 0s, .3s;
  animation-fill-mode: forwards;
}

@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 {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-hang .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-hang:hover .hvr-icon, .hvr-icon-hang:focus .hvr-icon, .hvr-icon-hang:active .hvr-icon {
  animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  animation-duration: .3s, 1.5s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-direction: normal, alternate;
  animation-delay: 0s, .3s;
  animation-fill-mode: forwards;
}

@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 {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-wobble-horizontal .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-wobble-horizontal:hover .hvr-icon, .hvr-icon-wobble-horizontal:focus .hvr-icon, .hvr-icon-wobble-horizontal:active .hvr-icon {
  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 {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-wobble-vertical .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-wobble-vertical:hover .hvr-icon, .hvr-icon-wobble-vertical:focus .hvr-icon, .hvr-icon-wobble-vertical:active .hvr-icon {
  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 {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-buzz .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-buzz:hover .hvr-icon, .hvr-icon-buzz:focus .hvr-icon, .hvr-icon-buzz:active .hvr-icon {
  animation-name: hvr-icon-buzz;
  animation-duration: .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 {
  vertical-align: middle;
  transition-duration: .3s;
  display: inline-block;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-icon-buzz-out .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-buzz-out:hover .hvr-icon, .hvr-icon-buzz-out:focus .hvr-icon, .hvr-icon-buzz-out:active .hvr-icon {
  animation-name: hvr-icon-buzz-out;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.hvr-curl-top-left {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-curl-top-left:before {
  pointer-events: none;
  content: "";
  height: 0;
  width: 0;
  filter: progid:DXImageTransform. Microsoft. gradient(GradientType= 0, startColorstr= "#ffffff", endColorstr= "#000000");
  z-index: 1000;
  background: linear-gradient(135deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%);
  transition-property: width, height;
  transition-duration: .3s;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 1px 1px 1px #0006;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-curl-top-right:before {
  pointer-events: none;
  content: "";
  height: 0;
  width: 0;
  background: linear-gradient(225deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%);
  transition-property: width, height;
  transition-duration: .3s;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: -1px 1px 1px #0006;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-curl-bottom-right:before {
  pointer-events: none;
  content: "";
  height: 0;
  width: 0;
  background: linear-gradient(315deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%);
  transition-property: width, height;
  transition-duration: .3s;
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: -1px -1px 1px #0006;
}

.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 {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  transform: perspective(1px)translateZ(0);
  box-shadow: 0 0 1px #0000;
}

.hvr-curl-bottom-left:before {
  pointer-events: none;
  content: "";
  height: 0;
  width: 0;
  background: linear-gradient(45deg, #fff 45%, #aaa 50%, #ccc 56%, #fff 80%);
  transition-property: width, height;
  transition-duration: .3s;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 1px -1px 1px #0006;
}

.hvr-curl-bottom-left:hover:before, .hvr-curl-bottom-left:focus:before, .hvr-curl-bottom-left:active:before {
  width: 25px;
  height: 25px;
}

/*# sourceMappingURL=index.8ad2bbc6.css.map */
