﻿.loading-overlay {
    height: 100%;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    background-color: rgba(241, 241, 241, 0.7);
    overflow-x: hidden;
    width: 100%;
    display: none;
  }
  
  .loader {
    width: 120px;
    height: 120px;
    overflow: initial;
    margin: auto;
    position: relative;
    top: 40%;
  }
  
  .loader img {
    border-radius: 15%;
    border: solid 4px rgb(255, 255, 255);
    filter: drop-shadow(2px 4px 6px black);
  }