.main_body {
    opacity: 1; /* Make the page fully transparent initially */
    transition: opacity 0.5s ease-in-out; /* Transition effect for fading in */
}
/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-align: center;
    margin: auto;
}

.flipping 
{
    width: 67.2px;
    height: 67.2px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    color: #0f8604;
    --c: #0000 calc(100% - 22.4px),currentColor calc(100% - 21.3px) 98%,#0000;
    background: radial-gradient(farthest-side at left,var(--c)) right /50% 100%,
          radial-gradient(farthest-side at top ,var(--c)) bottom/100% 50%;
    background-repeat: no-repeat;
    animation: flipping-zxgp0smd 2s infinite linear 0.25s;
}

.flipping::before 
{
    content: "";
    width: 50%;
    height: 50%;
    background: radial-gradient(farthest-side at bottom right,var(--c));
    animation: flipping-j90s3cmd 0.5s infinite linear;
}

@keyframes flipping-zxgp0smd 
{
   0%, 12.49% 
   {
      transform: rotate(0deg);
   }

   12.5%, 37.49% 
   {
      transform: rotate(90deg);
   }

   37.5%, 62.49% 
   {
      transform: rotate(180deg);
   }

   62.5%, 87.49% 
   {
      transform: rotate(270deg);
   }

   87.5%, 100% 
   {
      transform: rotate(360deg);
   }
}

@keyframes flipping-j90s3cmd 
{
   0% 
   {
      transform: perspective(168px) rotateY(0)      rotate(0);
   }

   50% 
   {
      transform: perspective(168px) rotateY(180deg) rotate(0);
   }

   80%, 100% 
   {
      transform: perspective(168px) rotateY(180deg) rotate(90deg);
   }
}

.text-right 
{
    text-align : right;
}
.text-center 
{
    text-align : center;
}