*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.popup {
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	display: none;
	z-index: 9999;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
.popup button {
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
}
.popupInner p {
    font-size: 17px;
    text-align: justify;
    margin: 15px 0;
    line-height: 25px;
    color: #ffffff;
}
.popupInner {
    max-width: 600px;
    width: 70%;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background-color: #b30000;
    padding: 0px 30px 30px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
}
