@keyframes shake {
  65% {
    transform: translate3d(0, -6px, 0);
  }

  60%, 70%, 80%, 90% {
    transform: translate3d(0, 0, 0);
  }

  75% {
    transform: translate3d(0, -3px, 0);
  }

  85% {
    transform: translate3d(0, -1px, 0);
  }
}

@keyframes moveUp {
  100% {
    transform: translate3d(0, -6px, 0);
  }
}

.rangeslider,
.rangeslider__fill {
  display: block;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border-color: #fff;
  border-width: 0;
  border-style: solid;
}

.rangeslider {
  background: #fff;
  position: relative;
}

.rangeslider--horizontal {
  height: 18px;
  width: 100%;
}

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
}

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.rangeslider__fill {
  background: #627c99;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  background: #148dea;
  cursor: pointer;
  display: inline-block;
  width: 26px;
  height: 24px;
  margin-top: -3px;
  position: absolute;
}
.rangeslider__handle:after {
  content: "";
  display: block;
  width: 26px;
  height: 24px;
  margin: auto;
  margin-top: -3px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "<>";
  padding: 4px;
  color: #fff;
}
.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {
}
.rangeslider--horizontal .rangeslider__handle {
  top: 0;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}

.rangeslider__handle__value {
  transition: background-color .2s,  box-shadow .1s, transform 0.1s;
  box-sizing: border-box;
  width: 90px;
  text-align: center;
  padding: 5px 10px;
  background-color: #148dea;
  border-radius: 5px;
  color: white;
  left: -36px;
  top: -42px;
  position: absolute;
  white-space: nowrap;
  border-top: 1px solid #85bbd8;
  animation: shake 2.70s cubic-bezier(.00,.00,.00,.00) both;
  animation-iteration-count:infinite;
  display:none;
}
.rangeslider__handle__value:before {
  transition: border-top-color .2s;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid;
  border-top-color: #148dea;
}
.rangeslider__handle__value:after {
  content: " Euro";
}
.rangeslider.rangeslider--active .rangeslider__handle__value {
  animation: moveUp 0.1s cubic-bezier(.00,.00,.00,.00) both;

  xtransform: translateY(-15px);
}
