.alert-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
}

.alert-popup-window {
	position: relative;
	width: 100%;
	max-width: 720px;
	background: #ffffff;
	border-radius: 6px;
	padding: 20px 24px 24px;
	box-sizing: border-box;
}

.alert-popup-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 12px;
}

.alert-popup-logo img {
	max-width: 140px;
	height: auto;
	display: block;
}

.alert-popup-close {
	background: transparent;
	border: 0;
	font-size: 32px;
	line-height: 1;
	color: #333333;
	cursor: pointer;
	padding: 0;
	margin-left: 12px;
}

.alert-popup-content {
	font-size: 20px;
	line-height: 1.5;
	color: #111111;
	max-height: 70vh;
	overflow-y: auto;
}

@media (max-width: 767px) {
	.alert-popup-window {
		padding: 16px;
	}

	.alert-popup-logo img {
		max-width: 110px;
	}

	.alert-popup-content {
		font-size: 18px;
	}
}
