    .range-slider{
        width: 100%;
        margin: 0 auto;
        position: relative;
        
    }

    #range { -webkit-appearance: none; width: 100%; }
    #range:focus { outline: none; }

    #range::before, #range::after {
        position: absolute;
        top: 2rem; display: none;
        color: #000;
        font-size: 14px;
        line-height: 1;
        padding: 3px 5px;
        background-color: rgba(0,0,0,.1);
        border-radius: 4px;
    }
    #range::before { left: 0; content: attr(data-min); }
    #range::after { right: 0; content: attr(data-max); }

    #range::-webkit-slider-runnable-track {
        width: 100%;
        height:6px;
        cursor: pointer;
        animate: 0.2s;
        background: linear-gradient(90deg, #80a4ed var(--range-progress), #dee4ec var(--range-progress));
        border-radius: 1rem;
    }
    #range::-webkit-slider-thumb {
        -webkit-appearance: none;
         box-shadow: 0 1px 3px rgba(0,0,0,.5);
        border-radius: 6px;
        background: #fff;
        cursor: pointer;
        height: 24px; width: 12px;
        transform: translateY(calc(-50% + 3px));
    }

    #tooltip {
        position: absolute;
        top: -2.25rem;
    }
    #tooltip span {
        position: absolute;
        text-align: center;
        display: block;
        line-height: 1;
        padding:3px 10px;
        color: #fff;
        border-radius:5px;
        background: #000;
        font-size:12px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #tooltip span:before {
        position: absolute;
        content: "";
        left: 50%; bottom: -8px;
        transform: translateX(-50%);
        width: 0; height: 0;
        border: 4px solid transparent;
        border-top-color: #000;
    }



.circle-ripple {
  background-color:#64B131;
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 75px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.5);
  z-index: 999;
  font-weight: 500;
  line-height: 16px;
  height: 75px;
  display: inline-block;
  font-family: "Barlow Semi Condensed", sans-serif;
  border-radius: 50%;
  text-align: center;
  color: #fff !important;
  font-size: 14px;
  animation: ripple 0.7s linear infinite;
  padding: 20px 0px; }
  .circle-ripple:hover {
    color: #fff !important;
    text-decoration: none; }
  .circle-ripple .fa {
    font-size: 34px;
    font-weight: 400; }

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(100, 177, 49, 0.3), 0 0 0 0.3em rgba(100, 177, 49, 0.3), 0 0 0 1em rgba(100, 177, 49, 0.3), 0 0 0 2em rgba(100, 177, 49, 0.3); }
  100% {
    box-shadow: 0 0 0 0.3em rgba(100, 177, 49, 0.3), 0 0 0 1em rgba(100, 177, 49, 0.3), 0 0 0 2em rgba(100, 177, 49, 0.3), 0 0 0 3em rgba(100, 177, 49, 0.3); } }


  

