/* Demo Styles */
body {
  background: #fdfdfd;
  font-family: 'Roboto', sans-serif;
}

h1 {
  margin-top: 3rem;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 150px auto;
}

.demo__result em {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
}
.demo__result .copy-to-clipboard {
  margin-left: 6px;
  cursor: pointer;
  color: #444444;
  font-size: 14px;
  padding: 6px 8px;
  padding-right: 5px;
  background-color: #ebe9e9;
  border-radius: 5px;
  display: none;
}
.demo__result .copy-to-clipboard svg {
  max-width: 16px;
  vertical-align: middle;
  fill: #444444;
}
.demo__result .copy-to-clipboard span {
  width: 0;
  overflow: hidden;
  transition: 0.5s;
  display: inline-block;
  transform: translateY(3px);
}
.demo__result .copy-to-clipboard span.show {
  width: 50px;
  animation: hideSpan 0.3s ease-in-out 1.2s forwards;
}
@keyframes hideSpan {
  0% {
    width: 50px;
  }
  100% {
    width: 0;
  }
}
.demo__result .copy-to-clipboard:hover {
  background-color: #dddddd;
}
.demo__result .copy-to-clipboard.isComplete {
  display: inline;
}

/* End of Demo Styles */

/*# sourceMappingURL=demo.css.map */
