.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid var(--main-color-l1); /* Purple */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    margin: 100px auto 0px auto;
}
.centered-loader {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#dark-bg-loading-container {
    position: fixed;
    background-color: #00000059;
    z-index: 9999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#main-loader {
    display:none;
}
#loading-text {
    font-family: 'Montserrat','Roboto',"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #48486c;
    opacity: 0.8;
}