.dialog-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.dialog {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	width: 90%;
	border-radius: 8px;
	z-index: 1000;

	max-width: 516px;
	max-height: 375px;
	height: 100%;
	overflow: hidden;
}

.dialog-container {
	width: 100%;
	height: 100%;
	background-image: url("./../images/register-pop/ready-yeti-background.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;

	padding: 26px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.dialog-reg-button {
	width: 200px;
	height: 48px;
	margin-top: 1rem;
	text-align: center;
	font-family: "Open Sans";
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 0.72px;
	transition: all 0.3s ease-in-out 0s;
	border-radius: 25px;
	color: rgb(46, 49, 51) !important;
	border: none !important;
	background: linear-gradient(rgb(237, 190, 46) 0%, rgb(216, 133, 19) 100%);
}

.dialog-reg-button:hover {
	background: linear-gradient(rgb(219, 165, 1) 0%, rgb(219, 128, 0) 100%);
	transform: scale(1.05);
}

.dialog-close-container {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	padding: 0.5rem;
}

.material-symbols-outlined {
	color: white;
}

.dialog-content-container {
	width: 100%;
}

.dialog-bonus-text-title {
	text-align: center;
	font-family: "Open Sans";
	font-size: 66px;
	font-style: normal;
	font-weight: 800;
	line-height: 58px; /* 87.879% */
	letter-spacing: 0.99px;
}

.dialog-bonus-text {
	margin-top: 1rem;
	color: #fff;
	text-align: center;
	font-family: "Open Sans";
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0.36px;
	text-align: center;
}

.bonus-image-container {
	margin-top: 0.5rem;
	width: 100%;
	display: flex;
	justify-content: center;
}

.dialog-actions-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.dialog-terms-link {
	margin-top: 1rem;
	color: #fff;
	text-align: center;
	font-family: "Open Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: 0.21px;
}

@media screen and (max-width: 500px) {
	.dialog-bonus-text-title {
		text-align: center;
		font-family: "Open Sans";
		font-size: 60px;
		font-style: normal;
		font-weight: 800;
		line-height: 54px; /* 90% */
		letter-spacing: 0.9px;
		width: 290px;
	}

	.dialog-bonus-text {
		font-size: 22px;
		letter-spacing: 0.33px;
	}

	.dialog {
		height: 100%;
		width: 100%;
		max-width: 288px;
		max-height: 424px;
	}

	.dialog-container {
		padding: 2rem 0;
	}

	.bonus-image-container {
		margin-top: 0rem;
	}

	.dialog-actions-container {
		margin-top: 0.75rem;
	}

	.bonus-image {
		width: 90%;
		margin-top: 10px;
		margin-bottom: -10px;
	}
}
