/**
Theme Name: kobilz
Author: Surpluslink
Author URI: https://surpluslink.co.uk
Description: Astra child theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kobilz
Template: astra
*/

@keyframes float {
  0%,
  to {
    transform:translateY(0)
  }
  50% {
    transform:translateY(-10px)
  }
}
.animate-float {
  animation:float 6s ease-in-out infinite
}
@keyframes pulse {
  50% {
    opacity:.5
  }
}
.animate-pulse {
  animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite
}
@keyframes pulse-glow {
  0%,
  to {
    opacity:.4
  }
  50% {
    opacity:.8
  }
}
.animate-pulse-glow {
  animation:pulse-glow 3s ease-in-out infinite
}
@keyframes spin {
  to {
    transform:rotate(360deg)
  }
}
.animate-spin {
  animation:spin 1s linear infinite
}
.cursor-default {
  cursor:default
}