.loader_body {

    background: linear-gradient(to bottom right, #198754, #5ec595);
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
}



.loader_body_transparent {


    position: fixed;
    background: rgba(77, 63, 63, 0.49);
    display: none;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 20;
}


.loader {
    height: 105px;
    width: 105px;
    border: 6px solid;
    border-color: white transparent white transparent;
    border-radius: 50%;
    animation: spin 1.3s linear infinite;
}

.loader2 {
    height: 80px;
    width: 80px;
    border: 6px solid;
    border-color: white transparent white transparent;
    border-radius: 50%;
    animation: spin 1.3s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: absolute;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

.myDiv {

    display: none;






}


.alertt {


    height: 200px;
    width: 500px;
    background-color: white;
    background: white;
    z-index: 21;
    border-radius: 10px;
    padding: 20px;
    display: none;




}