/* CSS Document */
.slidecontainer {
  width: 100%;
}

.editor_slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  xopacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.editor_slider:hover {
  xopacity: 1;
}

.editor_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}

.editor_slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  xbackground: #04AA6D;
  background: #0dbef8;
  cursor: pointer;
   
  
  
}
