/*
Theme Name: Academic Education lite Pro
Theme URI: https://www.themagnifico.net/themes/themagnifico-wordpress-theme/
Author: Themagnifico
Author URI: https://www.Themagnifico.net/
Description: 
Version: 0.0.3
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 5.2.4
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: academic-education-lite-pro
Tags: one-column, right-sidebar, custom-menu, editor-style, featured-images, full-width-template, sticky-post, theme-options, threaded-comments
Academic Education lite Pro WordPress Theme has been created by Themagnifico(themagnifico.net), 2025.
Academic Education lite Pro WordPress Theme is released under the terms of GNU GPL

/* Basic Style */


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*--------- Site Loader --------------*/
.preloader {
  background: #4B4AEF;
  display: flex;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  position: fixed;
  z-index: 99999;
  align-items: center;
    justify-content: center;
}


.woocommerce .loader::before{
  background: none !important;
}



/* loader */
.loader {
  width: 50px;
  height: 50px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  animation: rotateSpin 1.2s infinite ease-in-out;

}

.loader span {
  display: block;
  width: 100%;
  height: 100%;
  background: #FFCA1D;
  transform-origin: center;
}

/* Corner radius styling */
.loader span:nth-child(1) {
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.loader span:nth-child(2) {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 0;
}

.loader span:nth-child(3){
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 0;
}

.loader span:nth-child(4) {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 0px;
  border-top-right-radius: 6px;
}

/* Staggered delays */
.loader span:nth-child(1) { animation-delay: 0s; }
.loader span:nth-child(2) { animation-delay: 0.15s; }
.loader span:nth-child(3) { animation-delay: 0.3s; }
.loader span:nth-child(4) { animation-delay: 0.45s; }

/* Animation keyframe */
@keyframes rotateSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
