*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.popup{
    background-color: #ffffff;
    width: 400px;
    padding: 00px 0px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
	
}
.popup button{
    display: block;
   margin:  0px 0 0px auto;
    background-color: transparent;
    font-size: 30px;
    color: #000000;
    border: none;
    outline: none;
    cursor: pointer;
}
.popup p{
    font-size: 14px;
    text-align: justify;
    margin: 0px 0;
    line-height: 25px;
	
}


 @media (max-width: 700px){
        .popup {
            width: 90%;
		
 z-index: 10000;
        }
    }

	@media (max-width: 300px){
        .popup {
            width: 90%;
		
  height: 100%;
  z-index: 10000;
        }
    }
