#replay-view {
  bottom: 0;
  display: flex;
  height: 14%;
  padding: 0 20px;
  position: absolute;
  width: calc(100% - 40px);
}
#replay-container {
  background-color: #30303c;
  border-radius: 18px;
  display: flex;
  height: 36px;
  width: 136px;
}
.replay-fast-forword-container,
.replay-pause-container,
.replay-play-container,
.replay-stop-container {
  align-items: center;
  display: flex;
  height: inherit;
  justify-content: center;
  width: inherit;
}
#replay-fast-forward-btn {
  background-color: #30303c;
  border-radius: 18px 0 0 18px;
  cursor: pointer;
  height: 36px;
  width: 45.5px;
}
#replay-pause-btn,
#replay-play-btn {
  background-color: #30303c;
  cursor: pointer;
  height: 36px;
  width: 45px;
}
#replay-stop-btn {
  border-radius: 0 18px 18px 0;
  height: 36px;
  width: 45.5px;
}
#replay-capture-btn,
#replay-record-btn,
#replay-stop-btn {
  background-color: #30303c;
  cursor: pointer;
}
#replay-capture-btn,
#replay-record-btn,
#replay-record-btn-bg {
  border-radius: 18px;
  height: 36px;
  width: 36px;
}
#replay-capture-btn:active,
#replay-record-btn:active {
  opacity: 0.8;
}
#replay-fast-forward-btn:active,
#replay-pause-btn:active,
#replay-play-btn:active,
#replay-stop-btn:active {
  opacity: 0.5;
}
.loader {
  animation: spin 1s linear infinite;
  border: 2.5px solid #30303c;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 18.75px;
  left: 6px;
  position: relative;
  top: 6px;
  width: 18.75px;
}
@keyframes fading {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
@keyframes expand {
  0% {
    width: 36px;
  }
  to {
    width: 60px;
  }
}
@keyframes condense {
  0% {
    width: 60px;
  }
  to {
    width: 36px;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeAway {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes captureEffect {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  to {
    opacity: 0.5;
    transform: scale(0.95);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes scaling {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hide {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
