.banner-text-wrap > .text-animate {
  display: inline-block;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: textZoom;
  animation-name: textZoom;
  letter-spacing: 0.01em;
}

@-webkit-keyframes textZoom {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes textZoom {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3);
  }

  50% {
    opacity: 1;
  }
}

.banner-text-wrap > .text-animate:first-child {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.banner-text-wrap > .text-animate:nth-child(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.banner-text-wrap > .text-animate:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.banner-text-wrap > .text-animate:nth-child(4) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.banner-text-wrap > .text-animate:nth-child(5) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.banner-text-wrap > span:last-child,
.banner-desc-animate {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.banner-btn-animate {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.custom-pre {
  max-height: 300px;
  padding: 1.5rem;
  overflow: auto;
  background-color: #f7f9f9;
  border: #e7e7e7 solid 1px;
}

.custom-pre-striped {
  padding: 0 5px;
  background-image: -webkit-linear-gradient(#f5f5f5 50%, #e6e6e6 50%);
  background-image: linear-gradient(#f5f5f5 50%, #e6e6e6 50%);
  background-size: 46px 46px;
}

.custom-pre-no-overflow {
  max-height: inherit;
  overflow: inherit;
}

.code-textarea-wrapper {
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.btn-copy-code {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .btn-copy-code {
    right: 40px;
    bottom: 45px;
  }
}
