.module-loader-container
{
    min-height: 150px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
} 

.module-loader {
    width: 50px;
    height: 50px;
    display: grid;
    animation: s4 4s infinite;
    
  }
  .module-loader::before,
  .module-loader::after {    
    content:"";
    grid-area: 1/1;
    border:8px solid;
    border-radius: 50%;
    border-color:#E50026 #E50026 #0000 #0000;
    mix-blend-mode: darken;
    animation: s4 1s infinite linear;
  }
  .module-loader::after {
    border-color:#0000 #0000 #E4E4ED #E4E4ED;
    animation-direction: reverse;
  }
  
  @keyframes s4{ 
    100%{transform: rotate(1turn)}
  }


/* reserve the space for the module, in case negtively affect CLS score */
.latest_mm-body-top
{
    height:650px;
    width:100%;
}
  

.discover_sidebar
{
    height:503px;
}