.dialog {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.dialog-content {
	background: white;
	padding: 20px;
	border-radius: 5px;
	text-align: left;
	max-width: 500px;
	width: 85%;
	height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.dialog.active {
	display: flex;
}

.button-container {
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
}

.dialog-button {
	width: 74px;
	height: 21px;
}

.title {
	font-size: 16px;
	font-weight: 700;
	margin: 5px 0 5px;
}

.text {
	font-size: 14px;
}

@media screen and (max-width: 480px) {
	.dialog-content {
		background: white;
		padding: 15px;
		border-radius: 10px;
		height: 180px;
		max-height: 80vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: relative;
	}

	.title {
		font-size: 14px;
		font-weight: 700;
		margin: 5px 0 5px;
	}

	.text {
		font-size: 12px;
	}
}