:root {
  font-size: 20px;
  --red: #da2c4d;
  --yellow: #f8ab37;
  --grey: #ecedf3;
  --black-blue: #cccccc;
  --black-blue-light-3: #cccccc;
}

.vdw_progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.vdw_progress-wrap.vdw_active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vdw_progress-wrap::after {
  position: absolute;
  font-family: 'unicons';
  content: '\e84b'; /* Het symbool van het pijltje */
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #7072CF; /* Hier verander je de kleur naar #7072CF */
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.vdw_progress-wrap:hover::after {
  color: #7072CF; /* De kleur blijft consistent bij hover */
  opacity: 0; /* Als je het onzichtbaar maakt bij hover, kun je dit behouden */
}

.vdw_progress-wrap svg path {
  fill: none;
  stroke: #7072CF;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.vdw_progress-wrap svg.vdw_progress-circle path {
  stroke: #7072CF;
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #212588;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #AFB0E4;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7072CF;
}
