.egns-widget-icon::before {
	content: url('../image/pdfconverter-icon.png');
}

.inner-upload-box .inner-progress div {
	width: 0;
	transition: width 0.25s ease;
}

.inner-upload-box.is-converting .inner-progress,
.inner-upload-box.is-converting .inner-progress-text,
.inner-upload-box.is-success .inner-progress,
.inner-upload-box.is-success .inner-progress-text {
	display: block;
}

.inner-upload-success,
.inner-upload-error {
	width: min(360px, 100%);
	margin-top: 16px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.inner-upload-success {
	color: #0f8a43;
}

.inner-upload-error {
	color: var(--red, #ff171f);
}

.inner-upload-box.is-success em {
	background: #0f8a43;
}

.inner-upload-box.is-error em {
	background: #666;
}

.inner-upload-trigger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	cursor: pointer;
	text-align: center;
	margin: 0;
}

.inner-upload-box.is-download-ready .inner-upload-trigger {
	display: none;
}

.inner-upload-box.is-download-ready .inner-progress,
.inner-upload-box.is-download-ready .inner-progress-text,
.inner-upload-box.is-download-ready .upload-file-name {
	display: none !important;
}

.inner-download-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(420px, 100%);
	margin: 0 auto;
	padding: 0 12px;
}

.inner-download-actions[hidden] {
	display: none !important;
}

.inner-download-success-panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 32px 24px 26px;
	border-radius: 18px;
	background: linear-gradient(180deg, #f8fffb 0%, #ffffff 100%);
	border: 1px solid rgba(15, 138, 67, 0.16);
	box-shadow: 0 16px 40px rgba(15, 138, 67, 0.12);
	opacity: 0;
	transform: translateY(18px) scale(0.97);
	transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.inner-download-actions.is-visible .inner-download-success-panel {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.inner-download-success-icon-wrap {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #34d06a 0%, #0f8a43 100%);
	color: #ffffff;
	box-shadow: 0 10px 28px rgba(15, 138, 67, 0.35);
	transform: scale(0.6);
	opacity: 0;
	animation: innerSuccessIconPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s forwards;
}

.inner-download-success-icon {
	width: 52px;
	height: 52px;
	display: block;
}

.inner-download-success-circle {
	opacity: 0.35;
	transform-origin: center;
	transform: scale(0.8);
	animation: innerSuccessCircleIn 0.5s ease 0.2s forwards;
}

.inner-download-success-check {
	stroke-dasharray: 42;
	stroke-dashoffset: 42;
	animation: innerSuccessCheckDraw 0.45s ease 0.55s forwards;
}

.inner-download-ready {
	width: 100%;
	margin: 4px 0 0;
	color: #0f5132;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
	display: block;
}

.inner-download-actions.is-visible .inner-download-ready {
	opacity: 1;
	transform: translateY(0);
}

.inner-download-success-sub {
	width: 100%;
	margin: 0;
	color: #5f6b63;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
	text-align: center;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
	display: block;
}

.inner-download-actions.is-visible .inner-download-success-sub {
	opacity: 1;
	transform: translateY(0);
}

.inner-download-filename-badge {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(15, 138, 67, 0.08);
	border: 1px solid rgba(15, 138, 67, 0.14);
	color: #2f6b47;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease 0.55s, transform 0.4s ease 0.55s;
	box-sizing: border-box;
}

.inner-download-actions.is-visible .inner-download-filename-badge {
	opacity: 1;
	transform: translateY(0);
}

.inner-download-filename-icon {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #0f8a43;
}

.inner-download-filename-icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

.inner-download-filename {
	flex: 1;
	min-width: 0;
	color: #2f6b47;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	text-align: left;
	word-break: break-all;
	overflow-wrap: anywhere;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.inner-download-btn {
	width: min(320px, 100%);
	min-height: 56px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, #1ea154 0%, #0f8a43 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 24px;
	box-shadow: 0 10px 24px rgba(15, 138, 67, 0.28);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease 0.65s, transform 0.4s ease 0.65s, box-shadow 0.2s ease, filter 0.2s ease;
}

.inner-download-actions.is-visible .inner-download-btn {
	opacity: 1;
	transform: translateY(0);
}

.inner-download-btn:hover {
	filter: brightness(1.05);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(15, 138, 67, 0.32);
}

.inner-download-btn:active {
	transform: translateY(0);
}

.inner-convert-again-btn {
	border: 0;
	background: transparent;
	color: #667085;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	padding: 4px 0;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease 0.75s, transform 0.4s ease 0.75s, color 0.2s ease;
}

.inner-download-actions.is-visible .inner-convert-again-btn {
	opacity: 1;
	transform: translateY(0);
}

.inner-convert-again-btn:hover {
	color: #111;
	text-decoration: underline;
}

@keyframes innerSuccessIconPop {
	0% {
		transform: scale(0.4);
		opacity: 0;
	}

	70% {
		transform: scale(1.08);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes innerSuccessCircleIn {
	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes innerSuccessCheckDraw {
	to {
		stroke-dashoffset: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.inner-download-success-panel,
	.inner-download-success-icon-wrap,
	.inner-download-success-circle,
	.inner-download-success-check,
	.inner-download-ready,
	.inner-download-success-sub,
	.inner-download-filename-badge,
	.inner-download-btn,
	.inner-convert-again-btn {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

.inner-upload-box.is-download-ready em,
.inner-upload-box.is-download-ready .inner-upload-drag-text {
	display: none;
}

.inner-upload-wrap.is-download-ready {
	border-color: rgba(15, 138, 67, 0.45);
	box-shadow: 0 18px 42px rgba(15, 138, 67, 0.12);
	transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.inner-upload-box.is-download-ready {
	justify-content: center;
	padding-top: 12px;
	padding-bottom: 12px;
}

.inner-upload-drag-text {
	display: block;
	width: min(360px, 100%);
	margin: -20px auto 28px;
	color: #888;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.inner-upload-box.is-dragover,
.inner-converter-section.is-dragover .inner-upload-box {
	border: 2px solid var(--red, #ff171f);
	background: linear-gradient(180deg, #ffffff 0%, #fff4f5 58%, #ffeef0 100%);
	box-shadow: none;
}

.inner-upload-wrap.is-dragover,
.inner-converter-section.is-dragover .inner-upload-wrap {
	border: 2px dashed var(--red, #ff171f);
	background: #fff7f8;
}

.inner-upload-box.is-dragover .inner-upload-trigger,
.inner-converter-section.is-dragover .inner-upload-box .inner-upload-trigger,
.inner-upload-box.is-dragover .upload-file-name,
.inner-upload-box.is-dragover .inner-progress,
.inner-upload-box.is-dragover .inner-progress-text,
.inner-upload-box.is-dragover .inner-upload-success,
.inner-upload-box.is-dragover .inner-upload-error {
	opacity: 0;
	visibility: hidden;
}

.inner-upload-box.is-dragover em,
.inner-converter-section.is-dragover .inner-upload-box em {
	transform: none;
}

.upload-file-name {
	max-width: min(360px, 100%);
	margin-top: 12px;
	color: #333;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	word-break: break-word;
}

.bottom-editor-upload-box .bottom-editor-progress div {
	width: 0;
	transition: width 0.25s ease;
}

.bottom-editor-progress {
	width: min(360px, 100%);
	height: 9px;
	border-radius: 99px;
	background: #ffe1e3;
	overflow: hidden;
	margin-top: 24px;
	display: none;
}

.bottom-editor-progress div {
	width: 100%;
	height: 100%;
	background: var(--red, #ff171f);
}

.bottom-editor-progress-text {
	display: none;
	width: min(360px, 100%);
	margin-top: 10px;
	color: #666;
	font-size: 14px;
	font-weight: 700;
}

.bottom-editor-upload-box.is-converting .bottom-editor-progress,
.bottom-editor-upload-box.is-converting .bottom-editor-progress-text,
.bottom-editor-upload-box.is-success .bottom-editor-progress,
.bottom-editor-upload-box.is-success .bottom-editor-progress-text {
	display: block;
}

.bottom-editor-upload-success,
.bottom-editor-upload-error {
	width: min(360px, 100%);
	margin-top: 16px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.bottom-editor-upload-success {
	color: #0f8a43;
}

.bottom-editor-upload-error {
	color: var(--red, #ff171f);
}

.bottom-editor-drag-text {
	display: block;
	width: min(520px, 100%);
	margin: -14px auto 22px;
	color: #888;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.bottom-editor-upload-box.is-dragover,
.bottom-editor-section.is-dragover .bottom-editor-upload-box {
	border: 2px solid var(--red, #ff171f);
	background: linear-gradient(180deg, #ffffff 0%, #fff4f5 58%, #ffeef0 100%);
	box-shadow: none;
}

.bottom-editor-upload-wrap.is-dragover,
.bottom-editor-section.is-dragover .bottom-editor-upload-wrap {
	border: 2px dashed var(--red, #ff171f);
	background: #fff7f8;
}

.bottom-editor-upload-box.is-dragover .bottom-editor-upload-trigger,
.bottom-editor-section.is-dragover .bottom-editor-upload-box .bottom-editor-upload-trigger,
.bottom-editor-upload-box.is-dragover .upload-file-name,
.bottom-editor-upload-box.is-dragover .bottom-editor-progress,
.bottom-editor-upload-box.is-dragover .bottom-editor-progress-text,
.bottom-editor-upload-box.is-dragover .bottom-editor-upload-success,
.bottom-editor-upload-box.is-dragover .bottom-editor-upload-error {
	opacity: 0;
	visibility: hidden;
}

.bottom-editor-upload-box.is-success em {
	background: #0f8a43;
}

.bottom-editor-upload-box.is-error em {
	background: #666;
}

.bottom-editor-upload-trigger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	cursor: pointer;
	text-align: center;
	margin: 0;
}

.bottom-editor-upload-box.is-download-ready .bottom-editor-upload-trigger {
	display: none;
}

.bottom-editor-upload-box.is-download-ready .bottom-editor-progress,
.bottom-editor-upload-box.is-download-ready .bottom-editor-progress-text,
.bottom-editor-upload-box.is-download-ready .upload-file-name {
	display: none !important;
}

.bottom-editor-download-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	width: min(360px, 100%);
	margin: 0 auto;
	padding: 0 12px;
}

.bottom-editor-download-actions[hidden] {
	display: none !important;
}

.bottom-editor-download-ready {
	width: 100%;
	margin: 0;
	color: #0f8a43;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
}

.bottom-editor-download-filename {
	width: 100%;
	color: #444;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	word-break: break-word;
}

.bottom-editor-download-btn {
	width: min(320px, 100%);
	min-height: 56px;
	border: 0;
	border-radius: 9px;
	background: #0f8a43;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 24px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bottom-editor-download-btn:hover {
	background: #0c7438;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(15, 138, 67, 0.22);
}

.bottom-editor-download-btn:active {
	transform: translateY(0);
}

.bottom-editor-convert-again-btn {
	border: 0;
	background: transparent;
	color: #666;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: underline;
	padding: 4px 0;
}

.bottom-editor-convert-again-btn:hover {
	color: #111;
}

.bottom-editor-upload-box.is-download-ready em,
.bottom-editor-upload-box.is-download-ready .bottom-editor-drag-text {
	display: none;
}

.bottom-editor-upload-wrap.is-download-ready {
	border-color: #0f8a43;
}

.bottom-editor-upload-box.is-download-ready {
	justify-content: center;
}

.upload-shell.is-dragover {
	border: 2px dashed var(--red, #ff171f);
	background: #fff7f8;
}

.upload-shell.is-dragover .upload-box,
.upload-box.is-dragover {
	border: 2px solid var(--red, #ff171f);
	background: linear-gradient(180deg, #ffffff 0%, #fff4f5 58%, #ffeef0 100%);
	box-shadow: none;
}

.upload-shell.is-dragover .upload-content,
.upload-box.is-dragover .upload-content {
	opacity: 0;
	visibility: hidden;
}

.upload-shell.is-dragover .upload-ghost,
.upload-box.is-dragover .upload-ghost {
	opacity: 0;
}

.upload-box .upload-shell-progress div {
	width: 0;
	transition: width 0.25s ease;
}

.upload-shell-progress {
	width: min(360px, 100%);
	height: 9px;
	border-radius: 99px;
	background: #ffe1e3;
	overflow: hidden;
	margin: 18px auto 0;
	display: none;
}

.upload-shell-progress div {
	width: 100%;
	height: 100%;
	background: var(--red, #ff171f);
}

.upload-shell-progress-text {
	display: none;
	width: min(360px, 100%);
	margin: 10px auto 0;
	color: #666;
	font-size: 14px;
	font-weight: 700;
}

.upload-box.is-converting .upload-shell-progress,
.upload-box.is-converting .upload-shell-progress-text,
.upload-box.is-success .upload-shell-progress,
.upload-box.is-success .upload-shell-progress-text,
.upload-shell.is-converting .upload-shell-progress,
.upload-shell.is-converting .upload-shell-progress-text,
.upload-shell.is-success .upload-shell-progress,
.upload-shell.is-success .upload-shell-progress-text {
	display: block;
}

.upload-shell-success,
.upload-shell-error {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.upload-shell-success {
	color: #0f8a43;
}

.upload-shell-error {
	color: #ff171f;
}

.upload-box.is-converting .upload-btn {
	opacity: 0.85;
	pointer-events: none;
}

.upload-box.is-success .upload-btn {
	background: #0f8a43;
}

.upload-box.is-error .upload-btn {
	background: #666;
}

.screen-reader-text,
.softro-skip-link {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.softro-skip-link:focus {
	background: #111;
	clip: auto;
	clip-path: none;
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 12px;
	line-height: 1.4;
	padding: 12px 18px;
	top: 12px;
	width: auto;
	z-index: 100000;
}

.inner-upload-box,
.bottom-editor-upload-box {
	position: relative;
}

.softro-drop-overlay {
	position: absolute;
	inset: 0;
	z-index: 8;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: inherit;
	background: linear-gradient(180deg, #ffffff 0%, #fff4f5 58%, #ffeef0 100%);
	pointer-events: none;
}

.softro-drop-overlay__content {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 0 24px;
}

.softro-drop-overlay__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.softro-drop-overlay__icon svg {
	width: 34px;
	height: 44px;
	display: block;
}

.softro-drop-overlay__text {
	color: var(--red, #ff171f);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.is-dragover .softro-drop-overlay {
	display: flex;
}