@keyframes smooth-appear {
  to{
	bottom: 50px;
	opacity:1;
  }
}

 #popup{
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
	z-index: 999999999;
	width: 500px;
	padding: 40px;
	/* height: 200px; */
	background: #fff;
	border-bottom-right-radius: 50px;
	border-top-left-radius: 50px;
	color: #292e34;
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 9999999999;
	bottom: 50px;
	right: 50px;
	top: initial !important;
	animation: .5s forwards smooth-appear;
}  

#popup.

.close{
	position: absolute;
	right: 20px;
	top: 20px;
	color: #A18B72;

}

.closepopup{
	display: none !important;
}