$thickness: 3px;
$duration: 2500;
$delay: $duration/6;
$color: #CCC;
$contrast: #FFF;
$error: #E4A8A8;

@mixin polka($size, $dot, $base, $accent){
  background: $base;
  background-image: radial-gradient($accent $dot, transparent 0);
  background-size:$size $size;
  background-position: 0 -2.5px;
}

.bookshelf_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}

  .bookshelf_wrapper.paused .book_item,
  .bookshelf_wrapper.paused .shelf:before,
  .bookshelf_wrapper.paused .shelf:after { animation-play-state: paused; }

  .bookshelf_wrapper.paused .book_item,
  .bookshelf_wrapper.paused .book_item:before,
  .bookshelf_wrapper.paused .book_item:after { border-color: $error }

  .bookshelf_wrapper.paused .book_item.first:before,
  .bookshelf_wrapper.paused .book_item.first:after,
  .bookshelf_wrapper.paused .book_item.sixth::before,
  .bookshelf_wrapper.paused .shelf::before,
  .bookshelf_wrapper.paused .shelf::after { background-color: $error }

.books_list {
  margin: 0 auto;
  width: 300px;
  height: 135px;
  padding: 0;
}

.book_item {
  position: absolute;
  bottom: 0px;
  box-sizing: border-box;
  list-style: none;
  width: 40px;
  height: 120px;
  opacity: 0;
  background-color: $contrast;
  border: $thickness solid $color;
  transform-origin: bottom left;
  transform: translateX(300px);
  animation: travel #{$duration}ms linear infinite;
  transition: border-color 0.5s ease-out, background-color 0.5s ease-out, color 0.5s ease-out;
  
  &.first {
    height: 140px;
    
    &:before,
    &:after {
      content:'';
      position: absolute;
      top: 10px;
      left: 0;
      width: 100%;
      height: $thickness;
      background-color: $color;
    }

    &:after {
      top: initial;
      bottom: 10px;
    }
  }
  
  &.second,
  &.fifth {
    &:before,
    &:after {
      box-sizing: border-box;
      content:'';
      position: absolute;
      top: 10px;
      left: 0;
      width: 100%;
      height: $thickness*3.5;
      border-top: $thickness solid $color;
      border-bottom: $thickness solid $color;
    }

    &:after {
      top: initial;
      bottom: 10px;
    }
  }
  
  &.third {
    &:before,
    &:after {
      box-sizing: border-box;
      content:'';
      position: absolute;
      top: 10px;
      left: 9px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: $thickness solid $color;
    }

    &:after {
      top: initial;
      bottom: 10px;
    }
  }
  
  &.fourth {
    height: 130px;
    
    &:before {
      box-sizing: border-box;
      content:'';
      position: absolute;
      top: 46px;
      left: 0;
      width: 100%;
      height: $thickness*3.5;
      border-top: $thickness solid $color;
      border-bottom: $thickness solid $color;
    }
  }
  
  &.fifth {
    height: 100px;
  }
  
  &.sixth {
    height: 140px;
    
    &:before {
      box-sizing: border-box;
      content:'';
      position: absolute;
      bottom: 31px;
      left: 0px;
      width: 100%;
      height: $thickness;
      background-color: $color;
    }

    &:after {
      box-sizing: border-box;
      content:'';
      position: absolute;
      bottom: 10px;
      left: 9px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: $thickness solid $color;
    }
  }
  
  &:nth-child(2) {
    animation-delay: #{$delay*1}ms;
  }
  
  &:nth-child(3) {
    animation-delay: #{$delay*2}ms;
  }
  
  &:nth-child(4) {
    animation-delay: #{$delay*3}ms;
  }
  
  &:nth-child(5) {
    animation-delay: #{$delay*4}ms;
  }
  
  &:nth-child(6) {
    animation-delay: #{$delay*5}ms;
  }
  
}

.shelf {
  width: 320px;
  height: $thickness;
  margin: 0 auto;
  background-color: transparent;
  position: relative;
  
  &:before,
  &:after {
    content:'';
    position : absolute;
    width: 100%;
    height: 100%;
    @include polka(10px, 30%, #D6D6D6, rgba(255,255,255,0.5));
    top: 200%;
    left: 5%;
    animation: move #{$duration/10}ms linear infinite;
  }
  
  &:after {
    top: 400%;
    left: 7.5%;
  }
  
}

@keyframes move {
  
  from {
    background-position-x: 0;
  }
  
  to {
    background-position-x: 10px;
  }
  
}

@keyframes travel {
  
  0% {
    opacity: 0;
    transform: translateX(300px) rotateZ(0deg) scaleY(1);
  }
  
  6.5% {
    transform: translateX(279.5px) rotateZ(0deg) scaleY(1.1);
  }
  
  8.8% {
    transform: translateX(273.6px) rotateZ(0deg) scaleY(1);
  }
  
  10% {
    opacity: 1;
    transform: translateX(270px) rotateZ(0deg);
  }
  
  17.6% {
    transform: translateX(247.2px) rotateZ(-30deg);
  }
  
  45% {
    transform: translateX(165px) rotateZ(-30deg);
  }
  
  49.5% {
    transform: translateX(151.5px) rotateZ(-45deg);
  }
  
  61.5% {
    transform: translateX(115.5px) rotateZ(-45deg);
  }
  
  67% {
    transform: translateX(99px) rotateZ(-60deg);
  }
  
  76% {
    transform: translateX(72px) rotateZ(-60deg);
  }
  
  83.5% {
    opacity: 1;
    transform: translateX(49.5px) rotateZ(-90deg);
  }
  
  90% {
    opacity: 0;
  }
  
  100% {
    opacity: 0;
    transform: translateX(0px) rotateZ(-90deg);
  }
  
}