@charset "utf-8";
.start-btn,
.down-btn {
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  background: $theme-color;
  color: white;
  border-radius: $border-s-radius;
  font-size: 14px;
  cursor: pointer;
  &.disabled {
    background: $text-gray-color;
    cursor: default;
  }
}
.down-btn{
  background: $text-gray-color;
  cursor: default;
}
