
	.popup-overlay{
	  top:0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background-color: rgba(0, 0, 0, 0.5);
	  position:fixed;
	  box-sizing: border-box;
	  z-index: 9999;
	}

	.popup-box{
		margin-top:100px;
		margin-bottom: auto;
		margin-left: auto;
		margin-right: auto;
		background-color:white;
		position: relative;
        font-family: Arial, Helvetica, sans-serif;
        width: 30%;
        height:auto;
        border-radius: 22px;
        padding: 45px 35px 35px;
        text-align: center;
        box-shadow:0 25px 60px rgba(0, 0, 0, 0.25);
	}

	.close-button{

		position: absolute;
		right:20px;
		border:0px solid white;
		background-color: white;
		top:15px;
		font-size:30px;

	}

	.popup-icon{
		background: rgba(254, 242, 242, 1.0);
		width:50px;
		height:50px;
		border-radius:50%;
		color:orange;
		font-size:35px;
		margin-bottom:20px;
		position:relative;
	}

	.popup-message{

		width: 100%;
		min-width:70%;
		min-height:50px;
		border-radius:12px;
		border:0.5px solid #FFE0B2;
		background:rgba(37,211,102,.10);
		color: #F5A623;
		font-size:20px;
	}
	.popup-action{

		width:200px;
		margin-top:50px;
		border: none;
		padding: 16px;
		border-radius: 12px;
		background: linear-gradient(135deg,#25D366,#128C7E);
        color: #ffffff;
        font-size: 16px;        
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
        box-shadow:0 8px 20px rgba(37, 211, 102, 0.25);
	}

.popup-action a{
	text-decoration:none;
	color:white;
}

	@media screen and (max-width:930px){

		.popup-box{
			width:70%;
			min-height:350px;
			height:auto;
			position: absolute;
		}
	}