@keyframes play {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes play_statement_background {
  from {
    background: #ffffff;
  }
  to {
    background: #000000;
  }
}
@keyframes play_statement_value {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes mask_out {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.is_play_statement_value_background {
  animation-name: play_statement_background;
  animation-duration: 0.1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
.is_play_statement_value_background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #000000;
  width: 100%;
  height: 100%;
  animation-name: play;
  animation-duration: 0.1s;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-fill-mode: forwards;
}

.is_play_statement_value_contents {
  animation-name: play_statement_value;
  animation-duration: 0.1s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
}

.is_play_statement_value_contents::before {
  animation-name: mask_out;
  animation-duration: 0.3s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: #000000;
  pointer-events: none;
}

.is_play_white {
  animation-name: play;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}

.is_play_white::before {
  animation-name: mask_out;
  animation-duration: 0.3s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: #ffffff;
  pointer-events: none;
}

.is_play_gray {
  animation-name: play;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
}

.is_play_gray::before {
  animation-name: mask_out;
  animation-duration: 0.3s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #f8f9f9;
  pointer-events: none;
}

.border_top_gray::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: solid 1px rgba(112, 112, 112, 0.6);
  animation: border_top 1.5s linear forwards;
}

.border_top_white::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: solid 1px #ffffff;
  animation: border_top 1.5s linear forwards;
}

@keyframes border_top {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}/*# sourceMappingURL=animation.css.map */