/* - - - T I M O - - - */
.popUp{
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    /*max-width: 25em;*/ /*temporär*/
    /*max-height: 25em;*/ /*temporär*/
    overflow: hidden; /*temporär*/
}

.popUp--animateShow{
    animation: 300ms ease-out 1000ms forwards animateShowKeyframes;
}

.popUp--visible{
    opacity: 1;
}
/*
.popUp--animateHide{
    opacity: 0;
    animation: 300ms ease-out forwards animateHideKeyframes;
    transition: all ease-out 300ms;
}
*/
/* - - - R A Y - - - */
.noTouch .tooltip{
  min-width: 3em;
  max-width: 21em;
}


.noTouch .tooltip__content{
  overflow: hidden;
  text-overflow: ellipsis;
  text-align:start;
  margin: 0.3em;
  padding: 0.5em;
  -webkit-box-shadow: 0.1em 0.1em 0.2em rgba(var(--boxShadow));
  -moz-box-shadow: 0.1em 0.1em 0.2em rgba(var(--boxShadow));
  box-shadow: 0.1em 0.1em 0.2em rgba(var(--boxShadow));
  background: rgb(var(--colUIBack04));
  border-radius: 0.5em;
  color: rgb(var(--colUIText03));
  font-size: 0.8em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* shiftTo: To Top  */
.popUp--animateShow.popUp--top {
  transform: translate(0, -0.5em);
}

/* shiftTo: To Bottom */
.popUp--animateShow.popUp--bottom {
  transform: translate(0, 0.5em);
}

/* shiftTo: To Left */
.popUp--animateShow.popUp--left {
  transform: translate(-0.5em, 0);
}

/* shiftTo: To right */
.popUp--animateShow.popUp--right {
  transform: translate(0.5em, 0);
}


/* .popUp--animateHide.popUp--top {
  transform: translate(0, -0.5em);
}

.popUp--animateHide.popUp--bottom {
  transform: translate(0, 0.5em);
}

.popUp--animateHide.popUp--left {
  transform: translate(-0.5em, 0);
}

.popUp--animateHide.popUp--right {
  transform: translate(0.5em, 0);
} */

/* KEYFRAMES */

@keyframes animateShowKeyframes {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/*
@keyframes animateHideKeyframes {
  to {
    opacity: 0;
  }
} */