.v-move,
.v-enter-active,
.v-leave-active {
  transition: opacity 0.3s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
}

.v-leave-active {
  position: absolute;
}

[v-cloak] {
  display: none;
}

.bar-container {
  position: relative;
  width: 100%;
  height: 22px;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 20px;
}

.bar {
  height: 20px;
  background-color: rgb(200, 200, 200);
  border-radius: 10px;
  transition: width ease-in-out 0.5s;
}

.bar-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  font-size: 0.7rem;
  text-align: center;
  color: #555;
}
