/*
 Theme Name:   Thatha Child
 Theme URI:    https://thatha.wpengine.com/
 Description:  Thatha Child Theme
 Author:       the WeDesignTech team
 Author URI:   https://wedesignthemes.com/
 Template:     thatha
 Version:      1.0.0
 Text Domain:  thatha-child
*/




/* Base styles */
.pre-loader.custom_loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: hideLoader 6s forwards;
}

/* Logo animation */
.pre_loader_image {
  width: 300px;
  transform: scale(1);
  opacity: 1;
  animation: growLogo 10s ease-in-out forwards;
}

/* Keyframes */
@keyframes growLogo {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 1;
  }
}

@keyframes hideLoader {
  0%, 83% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none !important;
  }
}