 
  .loaderOuter {
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f800;
    z-index: 11111;
    width: 100%;
}
.loaderouter {
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f800;
    z-index: 11111;
    width: 100%;
}

 
.loader-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
}

 
.logo-loader {
    width: 45px; /* Adjust logo size */
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
 
.circle {
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid #ff5858; /* Change color here */
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}