.pullee {
    width: 100%;
    appearance: none;
    background-color: transparent;
    margin: 0.7rem 0;
}

.pullee:active::-webkit-slider-thumb {
    appearance: none;
    transform: scale(1.1);
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
}

.pullee:active::-moz-range-thumb {
    border: 0;
    transform: scale(1.1);
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
}

.pullee:active::-ms-thumb {
    transform: scale(1.1);
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
}

.pullee:focus {
    outline: none;
}

.pullee::-webkit-slider-thumb {
    appearance: none;
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #FFDD00;
    transform-origin: 50% 50%;
    transform: scale(1);
    transition: transform ease-out 100ms;
    cursor: -webkit-grab;
    cursor: -moz-grab;

    background-image: url("../images/lock-keyhole-sharp-regular.svg");
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
}

.pullee::-moz-range-thumb {
    border: 0;
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #FFDD00;
    transform-origin: 50% 50%;
    transform: scale(1);
    transition: transform ease-out 100ms;
    cursor: -webkit-grab;
    cursor: -moz-grab;
}

.pullee::-ms-thumb {
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #FFDD00;
    transform-origin: 50% 50%;
    transform: scale(1);
    transition: transform ease-out 100ms;
    cursor: -webkit-grab;
    cursor: -moz-grab;
}

.pullee::-moz-range-track {
    height: 4rem;
    padding: 0.25rem;
    box-sizing: content-box;
    border-radius: 4rem;
    background-color: #DDE0E3;
}

.pullee::-moz-focus-outer {
    border: 0;
}

.pullee::-ms-track {
    border: 0;
    height: 4rem;
    padding: 0.25rem;
    box-sizing: content-box;
    border-radius: 4rem;
    background-color: #DDE0E3;
    color: transparent;
}

.pullee::-ms-fill-lower,
.pullee::-ms-fill-upper {
    background-color: transparent;
}

.pullee::-ms-tooltip {
    display: none;
}

.pullee-yellow::-webkit-slider-runnable-track {
    background-color: #FFDD00 !important;
    background-image: url("../images/lock-keyhole-open-sharp-regular_on.svg") !important;
}
.range-container {
    position: relative;
    width: 100%; 
  }
  
  input[type="range"] {
    width: 100%;
    z-index: 1; 
  }
  
  .range-blocker {
    position: absolute;
    top: 0;
    left: 7rem;
    right: 0;
    bottom: 0;
    z-index: 2; 
    pointer-events:all; 
  }