.loader{
    /*z-index: 1;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EDD9C1;
    transition: opacity 0.75s, visibility 0.75s;
}
.loader-hidden{
    opacity: 0;
    visibility: hidden;
}

.loader::after{
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #0650459f;
    border-top-color: #065045;
    border-radius: 50%;
    animation: loading 0.75s ease-in-out infinite;
    /*z-index: 5;*/
}

@keyframes loading {
    from{
        transform: rotate(0turn);
    } 
    to{
        transform: rotate(1turn);
    }
}

 