
.dragdealer {
    position: relative;
    height: 10px;
    background-color: #d3795e;
    border-radius: 5px;
  }
  
  .dragdealer .drag_track {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-radius: 5px;
    background-color: #272022;
    z-index: 1;
  }
  
  .dragdealer .drag_bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    background-color: #d3795e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
  }
  
  .dragdealer .drag_bar::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f8f8f8;
  }