.loading{
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.05em;
    text-align: center;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;

}

.loading .loading-icon{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.loading .loading-text{
    display:flex;
    line-height: 2;

}
.dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: blink 1.5s infinite;
    opacity:0;
}
.dot:nth-child(1) {
    background-color: #edf8e9;
    animation-delay: 0s;
}
.dot:nth-child(2) {
    background-color: #bae4b3;
    animation-delay: 0.2s;
}
.dot:nth-child(3) {
    background-color: #74c476;
    animation-delay: 0.4s;
}
.dot:nth-child(4) {
    background-color: #2FA254;
    animation-delay: 0.6s;
}

@keyframes blink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes blink-half {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.51;
    }
}