﻿
#custom-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.ring-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border: 6px solid transparent;
    border-top: 6px solid #FFD700;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

/*.bee-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
}*/
.bee-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    border-radius: 43%; /* Makes it circular */
   
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

    .loading-text strong {
        font-size: 18px;
        color: #333;
    }

    .loading-text span {
        display: block;
        font-size: 14px;
        color: #666;
    }




