.popup {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.8);
	z-index: 99;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-size: cover;
	display: none;
}

.popup .popup_content .hide_text {
	display: none;
}

.popup.active {
	display: flex;
}

.popup .popup_content {
	background-color: #ffff;
	padding: 20px 30px 30px;
	border-radius: 10px;
}

.popup .popup_content,
.popup .popup_content .popup_btns {
	max-width: 885px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	align-content: center;
}

.popup .popup_content p {
	font-family: "Hammersmith One";
	color: #000;
	font-size: 25px;
	margin: 0;
	line-height: 50px;
}

.popup .popup_content p span {
	color: #ff671f;
	text-decoration: underline;
	cursor: pointer;
}

.popup .popup_content p span.timer {
	cursor: initial;
	text-decoration: none;
}

.popup .popup_content .popup_btns {
	flex-direction: row;
	gap: 30px;
	margin-top: 30px;
}

.popup .popup_content .popup_btns .button1 {
	position: relative;
	top: initial;
	left: initial;
	display: inline-block;
}