.popup{
background-color: #242424;
width: 450px;
padding: 30px 40px;
position: absolute;
left: 55%;
top: 2%;
transform: translate(-50%,-50%);
border-radius: 8px;
font-family: "Poppins",sans-serif;
display: none;
text-align: center;
z-index: 9999999;
}
.popup button{
display: block;
margin: 0 0 20px auto;
font-size: 30px;
color: #c5c5c5;
background-color: transparent;
border: none;
outline: none;
cursor: pointer;
}
.popup p{
font-size: 14px;
text-align: justify;
margin: 20px 0;
line-height: 25px;
}
.btn-view-alternatives{
display: block;
width: 150px;
margin: 10px auto;
position: relative;
text-align: center;
background-color: #0f72e5;
color: #ffffff;
text-decoration: none;
padding: 5px 0;
}

@media only screen and (max-width: 480px) {
	.popup{
		width: 100%;
	}
}