.popup-container {
    align-items: center;
    animation: show-popup 1s forwards;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    max-height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    z-index: 9999999999;
    top: 0px;
    width: 100vw;
    height: 1340px;
}
  
  .popup-container.popup-hide {
	animation: hide-popup 1s forwards;
  }
  
  .popup {
	background: white;
    /* border-radius: 20px; */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    font-family: system-ui;
    font-size: 16px;
    max-width: 100%;
    /* padding: 40px 30px; */
    position: relative;
    /* width: 100%; */
    top: 4px;
}
  
.popup .popup-close-btn {
    align-items: center;
    background-color: #909090;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 20px;
    padding: 0px 0 5px 0;
    height: 50px;
    justify-content: center;
    line-height: 0px;
    position: absolute;
    right: 0%;
    border: 2px solid #ffffff;
    text-decoration: none;
    top: 0%;
    width: 50px;
}
  
  .popup h1 {
	color: peru;
	margin-top: 0;
  }
  
  .popup input,
  .popup textarea {
	border: 1px solid peru;
	box-sizing: border-box;
	min-height: 30px;
	width: 100%;
  }
  .popup textarea {
	height: 80px;
  }
  .popup input[type="submit"] {
	background-color: orange;
	margin-top: 20px;
  }
  
  #elformo_honeypot {
	display: none;
  }
  
  @keyframes show-popup {
	0% {
	  visibility: visible;
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }
  
  @keyframes hide-popup {
	0% {
	  opacity: 1;
	}
	99% {
	  opacity: 0;
	}
	100% {
	  opacity: 0;
	  visibility: hidden;
	}
  }