/*
CSS styles for the 'Copied' pop-up message
*/

.copied {
  font-size: 0.9em;/*0.75em;*/
  position: fixed;
  padding: 2px 3px;
  color: #fff;
  background-color: #000000;
  opacity: 0;
  will-change: opacity;
  animation: showcopied 1.5s ease;
  z-index:1000001;
}

@keyframes showcopied {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
