.animationLoading {
    position:relative;
    width:60px;
    height:75px;
    margin:auto;
}

.animationLoadingElement {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #000 #0000;
  animation: l1 1s infinite;
}
.animationLoadingElement01{
    display: none;
}
.animationLoadingElement02{
    display: none;
}
.animationLoadingElement03{
    display: none;
}
.animationLoadingElement04{
    display: none;
}
.animationLoadingElement05{
    display: none;
}
.animationLoadingElement06{
    display: none;
}
.animationLoadingElement07{
    display: none;
}

@keyframes l1 {to{transform: rotate(.5turn)}
}

.centerAbsolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}