@keyframes mask-move {
  0%   { 
    transform: translateX(0);
  }
  100% { 
    transform: translateX(250px); /* $componentSize - $maskSize */
  }
}

@keyframes mask-inner-move {
  0%   { 
    transform: translateX(0);
  }
  100% { 
    transform: translateX(-250px); /* -($componentSize - $maskSize) */
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.button-wrap.right.menu.burger-lines{
    padding: 0 30px !important;
    transition: all .3s ease;
}


.inner .focus:before {
  content: 'Frames';
  filter: blur(3px);
}

.inner .focus:after {
  content: '';
  position: absolute;
  width: 50px; /* $maskSize */
  height: calc(100% + 8px); /* 100% + $borderOffset */
  top: -4px; /* -($borderOffset / 2) */
  left: 0;
  /* border-top: 2px solid; */
  /* border-bottom: 2px solid; */
  animation: mask-move 1s linear infinite alternate; /* $animationProps */
}

.focus--mask {
  overflow: hidden;
  position: absolute;
  width: 80px; /* $maskSize */
  height: 100%;
  border-radius: 50%;
  border: 2px solid #FAD644;
  top: 0;
  left: 0;
  background: #5a5a5a; /* $backgroundColor */
  animation: mask-move 1s linear infinite alternate; /* $animationProps */
}

.focus--mask-inner {
  animation: mask-inner-move 1s linear infinite alternate; /* $animationProps */
}

.credits {
  color: #FAD644;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 200;
  letter-spacing: 0.05rem;
  font-style: italic;
  text-align: center;
}

.credits a {
  color: #FAD644;
  text-decoration: none;
  font-weight: normal;
}

.credits a:hover {
  text-decoration: underline;
}
