.cmf-core-controls-popup-container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000000;
  pointer-events: none;
}
.cmf-core-controls-popup-container .popup-pointer {
  position: absolute;
  bottom: -10px;
  left: 16px;
  width: 0px;
  height: 0px;
  border-right: solid 10px transparent;
  border-left: solid 10px transparent;
}
.cmf-core-controls-popup-container.opened-no-animation {
  opacity: 1;
}
.cmf-core-controls-popup-container.opened {
  -webkit-animation-name: appear;
  -webkit-animation-duration: 2s;
  animation-name: appear;
  animation-duration: 2s;
}
@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
