.welcome-popup-wrapper {
	position: fixed;
	top: 0; bottom: 0;
	left: 0; right: 0;
	width: 100vw;
	height: 100vh;
	display: grid;
	place-items: center;
	z-index: 50;
}
.welcome-popup_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #FFFFFF80;
}

.welcome-popup {
	position: relative;
	width: 100%;
	max-width: 768px;
	padding: 24px;
	background: #091A50;
	border-radius: 24px;
	overflow: hidden;
}
.welcome-popup_close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
    justify-content: center;
	background: #FFFFFF4D;
	cursor: pointer;
	transition: all .2s ease;
}
.welcome-popup_container {
	position: relative;
	max-width: 495px;
	z-index: 3;
}
.welcome-popup_content-title {
	width: fit-content;
	font-size: 24px;
	line-height: 120%;
}
.welcome-popup_content p {
	margin-top: 10px;
	font-size: 16px;
	line-height: 130%;
}
.welcome-popup_trigger {
	color: var(--white);
	margin-top: 8px;
	font-size: 90px;
	font-weight: 500;
	line-height: 100%;
}
.welcome-popup_subscribe {
	margin-top: 24px;
}
.welcome-popup_subscribe-agreement {
	margin-top: 12px;
	display: flex;
	gap: 10px;
}
.welcome-popup_subscribe-agreement p, .welcome-popup_subscribe-agreement a {
	font-size: 16px;
	line-height: 18px;
	color: #FFFFFFA3
}
.welcome-popup_subscribe-agreement a {
	text-decoration: underline;
}
.welcome-popup_subscribe button {
	margin-top: 12px;
	font-size: 18px;
	font-weight: 600;
	line-height: 140%;
	display: flex;
    align-items: center;
    justify-content: center !important;
}


.welcome-popup_device {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
}
.welcome-popup_shape {
	position: absolute;
	top: 60%;
	left: -10%;
	width: 1100px;
	height: 100px;
	transform: rotate(15deg);
	background: var(--accent);
	filter: blur(80px);
	border-radius: 50%;
}

@media (hover: hover) {
	.welcome-popup_close:hover {
		background: #ffffff54;
	}
}


