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

.dot_loader-loader {
    position: relative;
    width: 20px;
    height: 20px;
    animation: rotateLoader .8s linear infinite;
}

.dot_loader {
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 1px; 
}

.top-left {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    animation: bounce 1s infinite;
    animation-delay: 0s;

    width: 5px;
    height: 5px;
  
}

.top-right {
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    animation: bounce 1s infinite;
    animation-delay: 0.2s; 
}

.bottom-left {
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
    animation: bounce 1s infinite;
    animation-delay: 0.4s; 
}

.bottom-right {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
    animation: bounce 1s infinite;
    animation-delay: 0.6s;
}


@media (max-width: 1013px) {
    #trinama__posts_my_request_loader {
        position: fixed;
        top: 0;
        right: 0;
        width: calc(100% );
        height: 100%;
        background-color: #2c3e50d4;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9998;
        flex-direction: column;
        gap: 20px;
    }
}


.content {
    position: fixed;
   top: 0;
   right: 0;
   width: calc(100% - 300px);
   height: 100%;
   background-color: #2c3e50d4;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 9998;
   flex-direction: column;
   gap: 20px;
   display: flex;
       }
  
       #trinama__posts_my_request_loader {
   display: flex;
   z-index: 99999999;


}




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

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

/* 1111111111111111111111111111111111111111 */
.submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 2px solid #ffffff;
    border-top: 2px solid #00000000;
    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); }
}
