@charset "utf-8";
/* CSS Document */

.range-wrap {
  position: relative;
  margin: 0 auto 4rem;
}
.range {
  width: 100%;
}
.bubble {
  background: #ff6c00;
  color: white;
  padding: 4px 12px;
  position: absolute;
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.bubble::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ff6c00;
  top: -1px;
  left: 50%;
}


