*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.popup{
    background-color: #ffffff;
	background-image: url('../images/popup-bg3.jpg');
	box-shadow: 0 0 0 100vmax rgba(0,0,0,0.7);
    width: 500px;
    padding: 0px 30px 20px 30px;
    position: fixed;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
	z-index: 9000;
}


.column {
	float: left;
	width: 50%;
	padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: #c5c5c5;
    border: none;
    outline: none;
    cursor: pointer;
}
.popup p{
    font-size: 12px;
    text-align: left;
    margin: 20px 0;
    line-height: 20px;
	color: #ffffff;
}

.popup h2{
    font-size: 22px;
	line-height: 25px;
	color: #ffffff;
}
