.ms2-dots {
    display: flex;
    gap: 0px;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.19);
    margin: 0 15px;
    box-sizing: border-box;
}

.ms2-dot {
  flex: 1;
  height: 3px;
  cursor: pointer;
  background: #ccc;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}

.ms2-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  right: -10px;
  height: 24px;
  z-index: 1; 
}

.ms2-dot.active::after {
  content: '';
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
  background: rgba(115, 115, 115, 0.3);
  border-radius: 50%;
  z-index: 0;
}

.ms2-dot:hover { 
    background: rgba(115, 115, 115, 0.5);
}

.ms2-dot.active { 
    background: rgba(115, 115, 115, 1);
}