.mae-loader-rotate-image {
    width: 220px;
    height: 200px;
    margin: auto;
    /* margin-top: 5px; */
    animation: rotation 1.5s infinite linear;
}

@keyframes rotation {
    100%{ transform:rotatey(360deg); }
  }

.mae-loader-background {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #23b8e5c5;
    z-index: 11000;
    position: fixed;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.htmx-indicator{
    display:none;
    z-index: 0;
}
.htmx-request .htmx-indicator{
    display:inline;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    z-index: 40999;
}
.htmx-request.htmx-indicator{
    display:inline;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    z-index: 40999;
}

@keyframes fadeInAnimation {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  .test > img {
      float: right;
  }





.htmx-login-indicator{
    display:none;
}
.htmx-request .htmx-login-indicator{
    display:inline;
}
.htmx-request.htmx-login-indicator{
    display:inline;
}