/*
Theme Name: Artistics Child
Template:   artistics
Theme URI: https://themeforest.net/user/awaiken
Description: Artistics Child Theme
Author: Awaiken
Author URI: https://awaiken.com/
Version: 1.0.0
Text Domain: artistics-child
*/

/* Whatsapp link */
#whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  opacity: 0;
  transform: translateX(-40px);
  animation: whatsappSlideIn 2s ease-out 1.2s forwards;
}

@keyframes whatsappSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


#whatsapp-float img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.2s;
}

a#whatsapp-float img:hover {
  transform: scale(1.5);
  transition: 0.5s;
}