:root{
  --bubble:rgba(0, 115, 160, 0.5);
  --bubble-activ:rgba(110, 177, 240, 0.8);
  --arrow: rgb(255, 254, 254);
}

body{
    margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--bubble);
  border-radius: 5px;
}

.bubbles{
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: var(--bubble);
}

.arrow-bubble{
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: var(--bubble);
}

.isActiv{
    background-color: var(--bubble-activ) ;
}

.bottom-1{
    bottom: 1rem;
}

.arrow{
  opacity: 10%;
  transition: opacity 1s ease-in-out;
}

.arrow:hover{
  opacity: 100%;
  transition: opacity 1s ease-in-out;
}
