.measurement {
  overflow: hidden;
}

.measurement__bars {
  margin-top: 100px;
}

.measurement__bar {
  background: #f1f1f1;
  position: relative;
  height: 8px;
  margin-bottom: 2px;
  border-radius: 2px;
}

.measurement__bar_demo {
  width: 66.66%;
  background: #ffd257;
}

.measurement__bar_full {
  background: #6772e5;
}

.measurement__wrapper {
  width: 100%;
  position: relative;
}

.measurement__text {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
}

@media only screen and (max-width : 480px) {
  .measurement__bars {
    display: none;
  }

  .measurement__full-mobile {
    position: relative;
  }

  .measurement__full-mobile:after {
    content: 'Full version only';
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 10px;
    background: #6772e5;
    color: #fff;
    border-radius: 4px;
    padding: 1px 8px;
  }
}