.pofu-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 99998;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pofu-popup {
	background: #fff;
	border-radius: 8px;
	padding: 40px;
	max-width: 460px;
	width: 90%;
	text-align: center;
	position: relative;
	z-index: 99999;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.pofu-popup-bar {
	width: 48px;
	height: 4px;
	border-radius: 2px;
	margin: 0 auto 20px;
	display: none!important
}

.pofu-popup-bar--success {
	background: #46b450;
}

.pofu-popup-bar--error {
	background: #dc3232;
}

.pofu-popup-message {
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 24px;
	color: #333;
}

.pofu-popup-close {
	padding: 10px 28px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}


.