#wrapper_v{
    position: relative;
    display: flex;
    margin: auto;
    height:5;
  
}

#v{
    position: relative;
    float: left;
    top: 0px;
    left: 0px;
    background-color: rgba(137, 43, 226, 0.61);
}

#chcv{
    float: left;
    position: absolute;
    top: 0px;
    left: 0px;
    visibility: hidden;
}

/* SLIDER STUFF */

/* The slider itself */
.sliders {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%!important; /* Full-width */
    height: 20px; /* 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 */
  .sliders:hover{
    opacity: 1; /* Fully shown on mouse-over */
  }
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .sliders::-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: #8E6C88; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 5px;
  }
  
  .sliders::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #8E6C88; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 5px;
  }
  