.popup{
  position: fixed;
  width: 550px;
  left: 50%;
  top:50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background: #FEDED6;
  text-align: center;
  padding:5px;
  opacity: 0;
  animation: fadeIn 2s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    animation-timing-function: ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.popup .close{
    position: absolute;
    right:25px;
    top:25px;
}

.popup h4{
  font-size: 30px;
  font-weight: 400;
  margin:1.8rem 0;
}

.popup h5{
  font-size: 18px;
  font-weight: 500;
  margin:1.8rem 0;
  color:#000;
}

.popup p{
  margin-bottom: 20px;
}

@media only screen and (max-width: 580px) {
  .popup{
    width: 90%;
  }

  .popup .km-logo{
    width: 230px;
  }

  .popup h4 {
    font-size: 25px;
  }
}
