
.dot_loader-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 10px;
    height: 10px;
}



/* Animacija taškui */
@keyframes bounce {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Suktukas (spinner) */
.Loder_column_two_items {
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    color: #25262a;
    font-size: 14px;
}

#loader {
    width: 30px;
    height: 30px;
    border: 10px solid #e67e22;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.1s linear infinite;
}

/* Sukimosi animacija */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}










#loaderContainer {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 250px);
    height: 100%;
    background-color: rgb(255 255 255 / 70%);
    display: flex
;
    justify-content: center;
    align-items: center;
    /* z-index: 9998; */
    flex-direction: column;
    gap: 20px;



}

.button-loader {
     display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 20px;
    position: absolute;
    height: 20px;
    border: 2px solid #e67e22;
    border-top-color: #ffffff00;
    right: 137px;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



.pleasewait{
    font-size: 14px;
}



@media (max-width: 768px) {
    #loaderContainer {
        position: fixed;
        top: 0;
        right: 0;
        width: calc(100% );
        height: 100%;

        display: flex;
        justify-content: center;
        align-items: center;
        /* z-index: 9998; */
        flex-direction: column;
        gap: 20px;
    }
}







@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

@keyframes rotateLoader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.sdalhfksdhfddd{
    /* color: #e67e22;
    opacity: 0.6;
    font-size: 12px; */
}
/* 1111111111111111111111111111111111111111 */
.submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.dot_loader {
    background-color:#ffffff;
 
}
.loader_create_one{
    border-top: 8px solid #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 0.01s linear infinite;
    position: absolute;
    left: 70%;
    top: 50%;
    transform: translateY(-50%);
}
.loader {
    border: 2px solid white;
    border-top: 2px solid  white;;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}
