/* MainLoading */
.MainLoading_container{
    width:100%; 
    background-color:rgba(0, 0, 0, 0.5);
    height:100vh;
    top:0;
    left:0;
    display:flex;
    justify-content:center;
    align-items:center;
    position:fixed;
    z-index:9999;
  }
.MainLoading_content{
  width: 150px;
  height: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
margin: 0 auto; 
}
  .MainLoading_boll {
    width: 30px;
    height: 30px;
    background-color: #BA1320;
    animation: salto .5s alternate infinite;
  border-radius: 50%  
}
.MainLoading_boll:nth-child(2) {
    animation-delay: .18s;
}
.MainLoading_boll:nth-child(3) {
    animation-delay: .37s;
}
.MainLoading_boll:nth-child(4) {
    animation-delay: .56s;
}
.MainLoading_boll:nth-child(5) {
    animation-delay: .74s;
}
@keyframes salto {
    from {
        transform: scaleX(1.25);
    }
    to{
        transform: 
        translateY(-50px) scaleX(1);
    }
}

/*  */