.icon_container {
  border: none;
  outline: none;
  backdrop-filter: blur(6px);
  background-color: var(--secondary-bg-rgba);
  right: 0px;
  top: 50%;
  position: fixed;
  margin-top: -24px;
  padding: 4px;
  height: 50px;
  width: 50px;
  z-index: 20;
  border-radius: 24px 0px 20px 24px;
  box-shadow: var(--box-shadow-dark);
}

.icon_container svg {
  color: var(--text-color);
  transform: scale(0.8);
  transition: all 0.2s ease-out;
}

.icon::before {
  position: absolute;
  content: "";
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 200;
  background: #ee4a4d;
}

.icon_container:hover svg {
  transform: scale(1);
  color: var(--component-color);
}
