.popup-region-confirmation {
	position: fixed;
	top: 85px;
	left: calc((50% - 360px) - 65px);
	z-index: 10020;
	display: none;
	justify-content: center;
	padding: 0 12px;
	background: transparent;
	pointer-events: none;
}

.popup-region-confirmation.is-active {
	display: flex;
}

.popup-region-confirmation__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: min(336px, calc(100vw - 24px));
	min-height: 111px;
	padding: 16px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
	color: #1b1b1b;
	pointer-events: auto;
}

.popup-region-confirmation__title {
	display: flex;
	gap: 2px;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	font-family: "Halvar Breitschrift", "Halvar_Breitschrift", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	color: #1b1b1b;
	white-space: nowrap;
}

.popup-region-confirmation__title-text,
.popup-region-confirmation__title-mark {
	overflow: hidden;
	text-overflow: ellipsis;
}

.popup-region-confirmation__title-text {
	min-width: 0;
}

.popup-region-confirmation__title-mark {
	flex: 0 0 auto;
}

.popup-region-confirmation__actions {
	display: flex;
	gap: 8px;
	align-items: flex-end;
	width: 100%;
	margin-top: 12px;
}

.popup-region-confirmation__button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 16px 20px;
	border: 0;
	border-radius: 16px;
	font-family: "Halvar Breitschrift", "Halvar_Breitschrift", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	color: #1b1b1b;
	white-space: nowrap;
	cursor: pointer;
}

.popup-region-confirmation__button--primary {
	flex: 0 0 63px;
	background: #a7fc00;
}

.popup-region-confirmation__button--secondary {
	flex: 1 1 auto;
	min-width: 0;
	background: #f2f2f2;
}

.popup-region-confirmation__button:focus-visible {
	outline: 2px solid rgba(27, 27, 27, 0.3);
	outline-offset: 2px;
}

@media (max-width: 1100px) {
	.popup-region-confirmation {
		top: 70px;
		left: 15%;
	}
}

@media (max-width: 512px) {
	.popup-region-confirmation {
		top: 70px;
		left: 0;
		right: 0;
	}
}
