/*
Description: loader 
Author: Scorpius XI team
Author URI: https://scorpiusxi.com/
Version: 1.0.4
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

.loader {
    position:relative;
    margin-top:25px;
    justify-content: center;
    display: flex;
    animation: grow-shrink 2s linear infinite;
}

.star {
  background-image: url('/wp-content/uploads/2023/04/logoCircleOnly944dbb.png'); 
  background-repeat: no-repeat;
  background-size: cover;
  height:50px;
  width:50px;
  border-radius:50%;
  animation: rotation 3s infinite linear;
}

@keyframes grow-shrink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
