#popup {
  overflow: hidden;
  box-shadow: 0 0 10px #00d4ff;
  border: 5px solid #37c0f7;
  border-top: none;
  width: 50%;
  top: 0;
  left: calc(25% - 20px);
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  padding: 15px;
  opacity: 0;
  top: -100px;
}
#popup p {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.anim {
  animation: popup 5s ease-in-out;
}

@keyframes popup {
  0% {
    top: -100px;
    opacity: 0;
  }
  10% {
    top: 0;
    opacity: 1;
  }
  90% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -100px;
    opacity: 0;
  }
}
@media (max-width: 767px) {
  #popup {
    padding: 5px;
    left: calc(25% - 10px);
  }
  #popup p {
    font-size: 12px;
  }
}

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