.seperator {
  animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
}

@-webkit-keyframes rotate {
  from {
    background-position: -100vw;
  }
  to {
    background-position: 0px;
  }
}
@keyframes rotate {
  from {
    background-position: -100vw;
  }
  to {
    background-position: 0px;
  }
}
.gradient {
  background: #b7313c;
  /* Old browsers */
  background: -moz-linear-gradient(left, #b7313c 0%, #f9d370 25%, #72ef93 50%, #5663d3 75%, #b7313c 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #b7313c), color-stop(25%, #f9d370), color-stop(50%, #72ef93), color-stop(75%, #5663d3), color-stop(100%, #b7313c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #b7313c 0%, #f9d370 25%, #72ef93 50%, #5663d3 75%, #b7313c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #b7313c 0%, #f9d370 25%, #72ef93 50%, #5663d3 75%, #b7313c 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #b7313c 0%, #f9d370 25%, #72ef93 50%, #5663d3 75%, #b7313c 100%);
  /* IE10+ */
  background: linear-gradient(to right, #b7313c 0%, #f9d370 25%, #72ef93 50%, #5663d3 75%, #b7313c 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#30ff90", endColorstr="#30ff90",GradientType=1 );
  /* IE6-9 */
}

/*# sourceMappingURL=GradientEffect.css.map */
