.ive-fts-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	align-items: center;
	justify-content: center;
	background: rgba(20, 25, 34, .55);
}

.ive-fts-overlay.is-visible {
	display: flex;
}

.ive-fts-modal {
	position: relative;
	display: flex;
	width: 860px;
	max-width: 94vw;
	box-sizing: border-box;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, .3);
	overflow: hidden;
	text-align: left;
	animation: ive-fts-pop .2s ease-out;
}

@keyframes ive-fts-pop {
	from { opacity: 0; transform: translateY(8px) scale(.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ive-fts-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: 0 0;
	color: #1e9e56;
	cursor: pointer;
	z-index: 1;
}

.ive-fts-close .dashicons {
	font-size: 22px;
	width: 22px;
	height: 22px;
}

.ive-fts-close:hover {
	color: #147a41;
}

.ive-fts-illustration {
	flex: 0 0 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

.ive-fts-illustration img {
	max-width: 100%;
	height: auto;
	display: block;
}

.ive-fts-content {
	flex: 1;
	padding: 48px 48px 48px 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.ive-fts-logo {
	align-self: flex-start;
	flex-shrink: 0;
	height: 26px;
	width: auto;
	margin: 0 0 20px;
}

.ive-fts-modal h2 {
	margin: 0;
	font-size: 26px;
	line-height: 1.3;
	font-weight: 700;
	color: #1d2327;
}

.ive-fts-modal h2 .ive-fts-title-accent {
	display: block;
	color: #1e9e56;
}

.ive-fts-divider {
	width: 48px;
	height: 4px;
	margin: 16px 0 20px;
	background: #1e9e56;
	border-radius: 2px;
}

.ive-fts-desc {
	margin: 0 0 28px;
	max-width: 340px;
	font-size: 15px;
	line-height: 1.6;
	color: #5f6b66;
}

.ive-fts-message {
	display: none;
	margin: 0 0 20px;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 13px;
	line-height: 1.5;
	max-width: 340px;
}

.ive-fts-message.is-success,
.ive-fts-message.is-error {
	display: block;
}

.ive-fts-message.is-success {
	background: #edfaef;
	color: #1e7e34;
}

.ive-fts-message.is-error {
	background: #fcf0f1;
	color: #d63638;
}

.ive-fts-actions {
	display: flex;
}

.ive-fts-btn {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

.ive-fts-btn-primary {
	background: #1e9e56;
	color: #fff;
}

.ive-fts-btn-primary:hover {
	background: #187e45;
}

.ive-fts-btn-primary.is-loading,
.ive-fts-btn-primary:disabled {
	cursor: default;
	opacity: .7;
}

.ive-fts-btn-arrow {
	font-size: 16px;
	line-height: 1;
}

@media (max-width: 640px) {
	.ive-fts-modal {
		flex-direction: column;
		width: 92vw;
	}

	.ive-fts-illustration {
		flex-basis: auto;
		padding: 28px 28px 0;
	}

	.ive-fts-content {
		padding: 24px 28px 32px;
	}

	.ive-fts-desc {
		max-width: none;
	}
}
