.tutorial-message-box {
  margin: 0;
  width: 100%;
  overflow: hidden;
  /* background-image: url("/assets/devise/bg03-650971eb.jpg");
  background-position: center;
  background-repeat: repeat; */
}

.tutorial-message {
  margin: 0 auto;
  margin-top: 16px;
  width: 100%;
  overflow: hidden;
}

.tutorial-message ul {
  display: inline-block;
  margin: 0;
  padding-left: 100%;
  white-space: nowrap;
  animation: TutorialAnimation 600s linear infinite;
}

.tutorial-message ul li {
  display: inline-block;
  margin: 0 0;
  padding-right: 100vw;
}

@keyframes TutorialAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
