body.hki-adp-lock {
	overflow: hidden !important;
}

.hki-adp,
.hki-adp * {
	box-sizing: border-box;
}

.hki-adp[hidden],
.hki-adp [hidden] {
	display: none !important;
}

.hki-adp {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	direction: rtl;
	font-family: inherit;
	text-align: right;
	opacity: 0;
	transition: opacity 160ms ease;
}

.hki-adp--visible {
	opacity: 1;
}

.hki-adp__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 24, 35, 0.62);
	backdrop-filter: blur(3px);
}

.hki-adp__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 470px;
	padding: 34px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
	outline: none;
	transform: translateY(8px) scale(0.985);
	transition: transform 160ms ease;
}

.hki-adp--visible .hki-adp__dialog {
	transform: translateY(0) scale(1);
}

.hki-adp__close {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0 0 3px;
	color: #5d6470;
	background: #f3f4f6;
	border: 0;
	border-radius: 50%;
	font: inherit;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	transition: color 140ms ease, background-color 140ms ease;
}

.hki-adp__close:hover,
.hki-adp__close:focus-visible {
	color: #fff;
	background: #ed1c24;
	outline: none;
}

.hki-adp__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 0 18px;
	color: #ed1c24;
	background: rgba(237, 28, 36, 0.09);
	border: 1px solid rgba(237, 28, 36, 0.16);
	border-radius: 50%;
	font-size: 23px;
	font-weight: 700;
	line-height: 1;
}

.hki-adp h2 {
	margin: 0 0 10px !important;
	padding: 0 !important;
	color: #1c2430 !important;
	font-family: inherit !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	line-height: 1.65 !important;
	text-align: right !important;
}

.hki-adp p {
	margin: 0 0 24px !important;
	color: #646b76 !important;
	font-family: inherit !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 2 !important;
	text-align: right !important;
}

.hki-adp__label {
	display: block;
	margin: 0 0 8px;
	color: #2d3440;
	font-size: 14px;
	font-weight: 600;
}

.hki-adp__input {
	display: block;
	width: 100%;
	height: 50px;
	margin: 0;
	padding: 0 15px;
	color: #1c2430;
	background: #fff;
	border: 1px solid #d6dae1;
	border-radius: 10px;
	box-shadow: none;
	font-family: inherit;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 50px;
	text-align: left;
	text-transform: uppercase;
	outline: none;
	transition: border-color 140ms ease, box-shadow 140ms ease;
}

.hki-adp__input:focus {
	border-color: #ed1c24;
	box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

.hki-adp__input--invalid {
	border-color: #d91f2a;
}

.hki-adp p.hki-adp__error {
	margin: 9px 0 0 !important;
	color: #c51f29 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.8 !important;
}

.hki-adp__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 24px;
}

.hki-adp__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.8;
	text-align: center;
	cursor: pointer;
	transition: color 140ms ease, background-color 140ms ease, border-color 140ms ease, transform 100ms ease;
}

.hki-adp__button:active {
	transform: translateY(1px);
}

.hki-adp__button--primary {
	color: #fff;
	background: #ed1c24;
	border-color: #ed1c24;
}

.hki-adp__button--primary:hover,
.hki-adp__button--primary:focus-visible {
	color: #fff;
	background: #cc151c;
	border-color: #cc151c;
	outline: none;
}

.hki-adp__button--secondary {
	color: #343b46;
	background: #fff;
	border-color: #d5d9df;
}

.hki-adp__button--secondary:hover,
.hki-adp__button--secondary:focus-visible {
	color: #ed1c24;
	background: #fff7f7;
	border-color: rgba(237, 28, 36, 0.45);
	outline: none;
}

.hki-adp__button--link {
	min-height: 42px;
	padding: 6px 14px;
	color: #626a75;
	background: transparent;
	border-color: transparent;
}

.hki-adp__button--link:hover,
.hki-adp__button--link:focus-visible {
	color: #ed1c24;
	background: #fff7f7;
	outline: none;
}

@media (max-width: 600px) {
	.hki-adp {
		padding: 12px;
	}

	.hki-adp__dialog {
		max-width: none;
		padding: 30px 22px 24px;
		border-radius: 17px;
	}

	.hki-adp h2 {
		font-size: 20px !important;
	}

	.hki-adp__close {
		top: 11px;
		left: 11px;
		width: 36px;
		height: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hki-adp,
	.hki-adp__dialog,
	.hki-adp__button,
	.hki-adp__close {
		transition: none !important;
	}
}

