.pl-sn-fictionbar {
  overflow: hidden;
  z-index: 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.25), 0 1px 15px rgba(0, 0, 0, 0.03);
}
.pl-sn-fictionbar .pl-sn-pad {
  padding: 0;
}
.pl-sn-fictionbar .pl-fictionbar-wrap {
  display: flex;
  justify-content: center;
  padding: 15px;
  line-height: 30px;
  font-weight: 600;
}
.pl-sn-fictionbar .pl-fictionbar-wrap .pl-btn {
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 600;
  transform: translateZ(0);
  animation-name: wiggle;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}
@media (max-width: 768px) {
  .pl-sn-fictionbar .pl-fictionbar-wrap {
    text-align: center;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr;
  }
  .pl-sn-fictionbar .pl-fictionbar-wrap .pl-btn {
    margin: 0 auto;
  }
}
@keyframes wiggle {
  2% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  4% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  6% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  8% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  10% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  12% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  14% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  16% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  18% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  20% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
