.loader_main {
    display: none;
    width: 100vw;
    height: 100dvh;
    position: fixed;
    background-color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.htmx-request.htmx-indicator {
    z-index: 1000 !important;
}

/* .htmx-request .htmx-indicator {
    position: fixed;
    
} */

.loader {
    width: 84px;
    height: 84px;
    position: relative;
  }
  .loader:before , .loader:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width:84px;
    height: 84px;
    border-radius: 50%;
    background:var(--primary);
    animation: push 1s infinite linear alternate;
  }
  .loader:after {
    top: auto;
    bottom: 0;
    left: 0;
    background: var(--success);
    animation-direction: alternate-reverse;
  }
  @keyframes push {
      0% {
        width:14px;
        height: 14px;
      }
      100% {
        width:84px;
        height: 84px;
      }
  }
