.slidecontainer {
    width: 100%; /* Width of the outside container */
  }
  
  /* The slider itself */
  .slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
  }
  
  /* Mouse-over effects */
  .slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
  }
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #167d8d;
    cursor: pointer; /* Cursor on hover */
  }
  
  .slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #167d8d;
    cursor: pointer; /* Cursor on hover */
  }

  /*----*/

  #slider{width:80%;margin:15px auto;}

  .ui-slider{
    position:relative;
    text-align:left;
    border: none;
    height:7px;
    background:#ccc;
    margin:10px 0;
  }
  
  .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 50%;
    background: #167d8d;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    height: 5px;
    background: #167d8d;
  }
  
  #slider-value {
    display: block;
    margin: 10px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }

