@keyframes fadeIn {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}



.help:hover .tooltipContCont{
  opacity: 1;
  animation: 0s fadeIn;
  animation-fill-mode: forwards;
  transition: 0.6s opacity 0s;
}
.help{
  position:relative;
  float:right;
  top: var(--space-1);
  margin-right:var(--space-2);
  display:none;
}
.help svg path{
  fill:var(--text-color-light);
}
.help:hover  svg path{
  fill:var(--tooltip-color);
}
.help svg{
  width: var(--space-1);
}

.tooltipContCont{
  position:absolute;
  right:0px;
  top:var(--space-1);
  visibility:hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s opacity 0.2s;
  z-index:50;

}

.tooltipCont{
  position:absolute;
  left:var(--space-1);

}

.tooltip{
    position:fixed;
    background-color: var(--tooltip-color);
    color:var(--text-color-light);
    height:auto;
    font-size:0.7rem;
    padding:10px;
}

.tooltip:before{
}


.tttside{
  max-width:10rem;
  text-align: left;
  font-weight: 400;

}

.tttside:before{
  right:100%;
  top:0px;
  border-top: 1em solid var(--tooltip-color); /*#f6b829; */
  border-bottom: 0.6em solid transparent;
  border-left: 1em solid transparent; /*to push to the left */


  content:"";
  width: 0;
  height: 0;
  box-sizing: border-box;
  position: absolute;
}





.tttop{
  position:absolute;
  background-color: var(--tooltip-color);
  color:var(--highlight-color);
  height:auto;
  width: 3.5rem;
  text-align:center;
  padding:4px;
  margin-left:-1rem;
  bottom:2.4rem;
  display:none;
  font-size:0.7rem;
}

.tttop:before{
  top:100%;
  border-left: 0.4em solid transparent; /*to push to the left */
  border-right: 0.4em solid transparent; /*to push to the left */
	border-bottom: 0.2em solid transparent;
	border-top: 0.6em solid var(--tooltip-color);/*#f6b829; */
  content:"";
	width: 0;
	height: 0;
  box-sizing: border-box;
	position: absolute;
  left: calc(50% - 6px);
}



/*-------------------------------------------------------------------------- LABEL */



.label{
    position:absolute;
    background-color: var(--tooltip-color);
    color:var(--highlight-color);
    height:auto;
    width: 3.5rem;
    text-align:center;
    padding:4px;
    margin-left:-1rem;
    bottom:2.4rem;
    display:none;
    font-size:0.7rem;
}

.label:before{
  top:100%;
  border-left: 0.4em solid transparent; /*to push to the left */
  border-right: 0.4em solid transparent; /*to push to the left */
	border-bottom: 0.2em solid transparent;
	border-top: 0.6em solid var(--tooltip-color); /*#f6b829; */
  content:"";
	width: 0;
	height: 0;
  box-sizing: border-box;
	position: absolute;
  left: calc(50% - 6px);
}

.miniContainerLabel:hover + .label{
  display:block;
}

.miniContainerSVG:hover + .label{
  display:block;
}


.labeled:hover + .label{
  display:block;
}



/* ---------------------------------------------------------------------------*/
.recordingBubble{
  position:absolute;
  bottom:4.8rem;
  width:90px;
  padding:16px;
  padding-bottom:0px;
  color: white;
  background-color: var(--main-color);
  box-shadow: 0px 2px 8px var(--text-color-faded2);
}

.bubble{
  display:inline-block;
  background-color:#db2a16;
  border-radius:100%;
  width:16px;
  height:16px;
  margin-left:0.4rem;
  opacity: 1;
  animation: blink 2s ease-in-out 0s infinite;
 -webkit-animation: blink 2s ease-in-out 0s infinite;
}
.bubbleContainer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

}
.bubbleButton{
  display:flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
}

@keyframes blink {
  50% {
    opacity: 0.2;
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0.2;
  }
}
