.slider-container {
    width: 100%;
    padding:0.5rem;
    margin: 20px 0px;
}

.bear-slider{
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    width: 90%;
    outline: none;
    border: 0;
  }
  .bear-slider:focus,
  .bear-slider:active,
  .bear-slider::-moz-focus-inner,
  .bear-slider::-moz-focus-outer {
    border: 0;
    outline: none;
  }
  .bear-slider::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    height: 40px;
    width: 40px;
    background-color: transparent;
    background-image: url("favicon.png");
    background-position: 0 0;
    background-size: cover;
    transform: scale(1.9) rotateZ(var(--thumb-rotate, 10deg));
    cursor: pointer;
  }
  .bear-slider::-moz-range-thumb:active {
    background-position: 100% 0px;
    transform: scale(2) rotateZ(var(--thumb-rotate, 10deg));
  }

  .bear-slider::-moz-range-track {
    width: 100%;
    height: 20px;
    background: #eee;
    border-radius: 10px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    cursor: pointer;
  }

  .bear-slider::-moz-range-progress {
    height: 20px;
    background: #4685d7;
    border-radius: 10px;
    cursor: pointer;
  }


  /* chrome */
  .bear-slider::-webkit-slider-thumb {
    border: none;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border-radius: 15px;
    background-image: url("favicon.png");
    background-position: 0 0;
    background-size: cover;
    transform: scale(1.9) rotateZ(var(--thumb-rotate, 10deg));
    cursor: pointer;
    margin-top: -5px;
    -webkit-appearance: none;
  }

  .bear-slider::-webkit-slider-thumb:active {
    background-position: 100% 0px;
    transform: scale(2) rotateZ(var(--thumb-rotate, 10deg));
  }

  .bear-slider::-webkit-slider-runnable-track {
    /* width: 100%; */
    height: 20px;
    background: linear-gradient(to right, #1D1364, #1D1364), #D7D7D7;
    background-size: var(--background-size, 0%) 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    cursor: pointer;
  }
  