/*Content-Border Animation*/
.seperator-wrapper {
  width: 100%;
}
.seperator-wrapper .seperator {
  width: 100%;
  height: 10px;
  animation: rotate 3s infinite linear;
  -webkit-animation: rotate 3s infinite linear;
}

@media (max-width: 992px) {
.seperator-wrapper .seperator {
  width: 100%;
  height: 5px;
  animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
}
}

.seperator-wrapper .seperator-tiny {
  width: 100%;
  height: 5px;
  animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
}

@-webkit-keyframes rotate {
  from {
    background-position: -3000px;
  }
  to {
    background-position: 0px;
  }
}
@keyframes rotate {
  from {
    background-position: -3000px;
  }
  to {
    background-position: 0px;
  }
}
.gradient {
  background: #FF9901;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ff9901 0%, #FFE501 25%, #ff9901 50%, #ffe501 75%, #ff9901 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ff9901), color-stop(25%, #ffe501), color-stop(50%, #ff9901), color-stop(75%, #ffe501), color-stop(100%, #ff9901));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #ff9901 0%, #ffe501 25%, #ff9901 50%, #ffe501 75%, #ff9901 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #ff9901 0%, #ffe501 25%, #ff9901 50%, #ffe501 75%, #ff9901 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #ff9901 0%, #ffe501 25%, #ff9901 50%, #ffe501 75%, #ff9901 100%);
  /* IE10+ */
  background: linear-gradient(to right, #ff9901 0%, #ffe501 25%, #ff9901 50%, #ffe501 75%, #ff9901 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9901', endColorstr='#ff9901',GradientType=1 );
  /* IE6-9 */
}
/*Content-Border Animation Ende*/


/*Button review*/
.container-border {
    width: 12rem;
    margin-left: auto;
    margin-right: auto;
	display: flex;
	justify-content: center;
}

.container-border-nav {
    width: 13rem;
    margin-left: auto;
    margin-right: auto;
}

.border-animation {
  color: #fff;
  position: relative;
  display: inline-block;
  line-height: 1em;
  transform: scale(1, 0.8);
  border: 0.2em solid transparent;
}
.border-animation .border-animation__inner {
  position: relative;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 10px;
  background-image:linear-gradient(90deg, #637780 0%, #B2CBCE 50%, #637780 100%);
  z-index: 1;
  border: solid 0.2em transparent;
}
.border-animation:before, .border-animation:after {
  content: "";
  position: absolute;
  background: #ff9901;
}
.border-animation:focus:before, .border-animation:hover:before {
  -webkit-animation: beforeBorders 0.5s forwards ease-in-out;
          animation: beforeBorders 0.5s forwards ease-in-out;
}
.border-animation:focus:after, .border-animation:hover:after {
  -webkit-animation: afterBorders 0.5s forwards ease-in-out;
          animation: afterBorders 0.5s forwards ease-in-out;
}
.border-animation:focus, .border-animation:hover {
  -webkit-animation: borderColors 0.5s steps(1) forwards;
          animation: borderColors 0.5s steps(1) forwards;
  outline: none;
}
.border-animation:focus .border-animation__inner, .border-animation:hover .border-animation__inner {
  -webkit-animation: background calc(0.5s / 5 * 3) forwards ease-in-out;
          animation: background calc(0.5s / 5 * 3) forwards ease-in-out;
  -webkit-animation-delay: calc(0.5s / 5 * 2);
          animation-delay: calc(0.5s / 5 * 2);
}

@-webkit-keyframes beforeBorders {
  0% {
    top: calc(0.2em * -1);
    left: 50%;
    bottom: auto;
    right: auto;
    width: 0;
    height: 0.2em;
  }
  33% {
    top: calc(0.2em * -1);
    left: calc(0.2em * -1);
    bottom: auto;
    right: auto;
    width: calc(0.2em + 50%);
    height: 0.2em;
  }
  66% {
    top: calc(0.2em * -1);
    left: calc(0.2em * -1);
    bottom: auto;
    right: auto;
    width: 0.2em;
    height: calc((0.2em * 2) + 100%);
  }
  100% {
    top: auto;
    left: calc(0.2em * -1);
    bottom: calc(0.2em * -1);
    right: auto;
    width: calc(0.2em + 50%);
    height: calc((0.2em * 2) + 100%);
  }
}

@keyframes beforeBorders {
  0% {
    top: calc(0.2em * -1);
    left: 50%;
    bottom: auto;
    right: auto;
    width: 0;
    height: 0.2em;
  }
  33% {
    top: calc(0.2em * -1);
    left: calc(0.2em * -1);
    bottom: auto;
    right: auto;
    width: calc(0.2em + 50%);
    height: 0.2em;
  }
  66% {
    top: calc(0.2em * -1);
    left: calc(0.2em * -1);
    bottom: auto;
    right: auto;
    width: 0.2em;
    height: calc((0.2em * 2) + 100%);
  }
  100% {
    top: auto;
    left: calc(0.2em * -1);
    bottom: calc(0.2em * -1);
    right: auto;
    width: calc(0.2em + 50%);
    height: calc((0.2em * 2) + 100%);
  }
}
@-webkit-keyframes afterBorders {
  0% {
    top: calc(0.2em * -1);
    left: auto;
    bottom: auto;
    right: 50%;
    width: 0;
    height: 0.2em;
  }
  33% {
    top: calc(0.2em * -1);
    left: auto;
    bottom: auto;
    right: calc(0.2em * -1);
    width: calc(0.2em + 50%);
    height: 0.2em;
  }
  66% {
    top: calc(0.2em * -1);
    left: auto;
    bottom: auto;
    right: calc(0.2em * -1);
    width: 0.2em;
    height: calc((0.2em * 2) + 100%);
  }
  100% {
    top: auto;
    left: auto;
    bottom: calc(0.2em * -1);
    right: calc(0.2em * -1);
    width: calc(0.2em + 50%);
    height: calc((0.2em * 2) + 100%);
  }
}
@keyframes afterBorders {
  0% {
    top: calc(0.2em * -1);
    left: auto;
    bottom: auto;
    right: 50%;
    width: 0;
    height: 0.2em;
  }
  33% {
    top: calc(0.2em * -1);
    left: auto;
    bottom: auto;
    right: calc(0.2em * -1);
    width: calc(0.2em + 50%);
    height: 0.2em;
  }
  66% {
    top: calc(0.2em * -1);
    left: auto;
    bottom: auto;
    right: calc(0.2em * -1);
    width: 0.2em;
    height: calc((0.2em * 2) + 100%);
  }
  100% {
    top: auto;
    left: auto;
    bottom: calc(0.2em * -1);
    right: calc(0.2em * -1);
    width: calc(0.2em + 50%);
    height: calc((0.2em * 2) + 100%);
  }
}
@-webkit-keyframes borderColors {
  0% {
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  33% {
    border-top-color: #ff9901;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  66% {
    border-top-color: #ff9901;
    border-right-color: #ff9901;
    border-bottom-color: transparent;
    border-left-color: #ff9901;
  }
  100% {
    border-top-color: #ff9901;
    border-right-color: #ff9901;
    border-bottom-color: #ff9901;
    border-left-color: #ff9901;
  }
}
@keyframes borderColors {
  0% {
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  33% {
    border-top-color: #ff9901;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  66% {
    border-top-color: #ff9901;
    border-right-color: #ff9901;
    border-bottom-color: transparent;
    border-left-color: #ff9901;
  }
  100% {
    border-top-color: #ff9901;
    border-right-color: #ff9901;
    border-bottom-color: #ff9901;
    border-left-color: #ff9901;
  }
}
@-webkit-keyframes background {
  to {
    color: #fff;
    text-shadow: 0 0.1em 0.1em #111;
  }
}
@keyframes background {
  to {
    color: #fff;
    text-shadow: 0 0.1em 0.1em #111;
  }
}
@media (min-width: 850px) {
  body {
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .border-animation {
    line-height: 2em;
  }
}
/*Button review Ende*/