.swirl {
  transform: rotate(340deg);
}

.swirlcontainer {
  right: -130px;
}

.rcontent{
  display: none;
}

.loadingContainer div{
  width: 100%;
  margin: 5px 0px;
  height: 15px;
  display: block;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 80%
    ),
    lightgray;
  background-repeat: repeat-y;
  background-size: 50px 500px;
  background-position: 0 0;
  animation: shine 1s infinite;
}

.loadingContainer div:nth-child(3n+3){
  width: 50%;
}


@keyframes shine {
  to {
    background-position: 100% 0, 0 0;
  }
}