.invisible {
  display: none;
}

.cursor__pointer {
  cursor: pointer;
}

.cursor__context__menu {
  cursor: context-menu;
}

.icon__svg__white {
  /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%)
    hue-rotate(104deg) brightness(116%) contrast(93%); */
  height: 15px;
  width: 15px;
}

.tag__container {
  display: flex;
  flex-direction: row;
  align-content: space-between;
}

.tag__text {
  flex-grow: 4;
}

.tag__buttons {
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.tag_tree_child:nth-child(odd) {
  background-color: white;
}
.tag_tree_child:nth-child(even) {
  background-color: rgb(168, 167, 167);
  border-bottom: 1px dashed black;
}
