
.toolbar-container {
  width: 38px;
  position: fixed;
  bottom: var(--spacing-ui);
  left: var(--spacing-ui);
  display: block;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  visibility: visible;
}


#btn-open-settings {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  overflow: hidden;
  position: relative;
}

#btn-open-settings svg {
  color: var(--color-primary);
  width: 90%;
  margin-top: 2px;
}

#btn-open-settings span {
  position: absolute;
  left: 100%;
  opacity: 0;
}


#btn-open-help {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  overflow: hidden;
  position: relative;
}

#btn-open-help svg {
  color: var(--color-primary);
  width: 90%;
  margin-top: 2px;
}

#btn-open-help span {
  position: absolute;
  left: 100%;
  opacity: 0;
}


.toolbar-btn-bg{
  width: 35px;
  height: 35px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: block;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  transition: all 0.3s;

  visibility: visible;

  opacity: 0.25;
}
.toolbar-btn-bg:hover {
  opacity: 1;
}
.toolbar-btn-settings{
  margin: 0 0 10px 0;
}
}