.ohtg-row-actions {
	display: flex;
	gap: 6px;
	align-items: center;
}

.ohtg-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    opacity: 0.85;
    transition: 0.2s ease;
}

label.ohtg-field.ohtg-field--compact {
    margin-bottom: 5px;
}

.ohtg-field.ohtg-facet-select {
    margin-top: 20px;
}

label.ohtg-field.ohtg-field--compact {
    margin-top: 20px;
}

.ohtg-compact-check-row {
    margin-bottom: 10px;
}

.ohtg-icon-btn:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.ohtg-icon-btn img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

/* Tooltip */
.ohtg-icon-btn::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 110%;
	left: 50%;
	transform: translateX(-50%);
	background: #111;
	color: #fff;
	font-size: 11px;
	padding: 4px 6px;
	border-radius: 4px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s ease;
}

.ohtg-icon-btn:hover::after {
	opacity: 1;
	transform: translateX(-50%) translateY(-2px);
}

/* красная кнопка удаления (чуть акцент) */
.ohtg-icon-btn--danger:hover {
	filter: brightness(0.8);
}

.ohtg-print-table th {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    padding: 4px 6px;
    white-space: nowrap;
}

.ohtg-print-table td {
    font-size: 11px;
    line-height: 1.3;
    padding: 4px 6px;
}


.ohtg-form th {
    font-size: 10px !important;
}

.ohtg-form {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ohtg-form__header,
.ohtg-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.ohtg-form__header {
	margin-bottom: 24px;
}

.ohtg-form__footer {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #ececec;
}

.ohtg-form__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.ohtg-form__progress {
	font-size: 14px;
	color: #666;
}

.ohtg-step__title {
	margin: 0 0 20px;
	font-size: 24px;
	line-height: 1.2;
}

.ohtg-grid {
	display: grid;
	gap: 16px;
}

.ohtg-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ohtg-fields {
	display: grid;
	gap: 16px;
}

.ohtg-fields--top {
	margin-top: 20px;
}

.ohtg-field {
	display: grid;
	gap: 8px;
}

.ohtg-field span {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.ohtg-field input,
.ohtg-field textarea,
.ohtg-field select {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid #d9d9d9;
	border-radius: 12px;
	background: #fff;
	font-size: 15px;
}

.ohtg-field textarea {
	min-height: 100px;
	resize: vertical;
}

.ohtg-pick {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 14px 18px;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	background: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.ohtg-pick:hover,
.ohtg-pick.is-active {
	border-color: #1A569E;
	background: #f6fff0;
}

.ohtg-btn {
	min-height: 48px;
	padding: 12px 24px;
	border: 0;
	border-radius: 5px;
	background: #1A569E;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.ohtg-btn:hover {
	opacity: 0.92;
}

.ohtg-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.ohtg-btn--ghost {
	background: #f3f3f3;
	color: #333;
}

.ohtg-note {
	font-size: 15px;
	color: #666;
}

.ohtg-summary {
	display: grid;
	gap: 10px;
	font-size: 15px;
}

@media (max-width: 767px) {
	.ohtg-form {
		padding: 18px;
		border-radius: 14px;
	}

	.ohtg-form__header,
	.ohtg-form__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.ohtg-grid--2 {
		grid-template-columns: 1fr;
	}

	.ohtg-form__title {
		font-size: 24px;
	}

	.ohtg-step__title {
		font-size: 22px;
	}



	.ohtg-confirm-table,
	.ohtg-confirm-table tbody,
	.ohtg-confirm-table tr,
	.ohtg-confirm-table th,
	.ohtg-confirm-table td {
		display: block;
		width: 100% !important;
	}

	.ohtg-confirm-table tr {
		border: 1px solid #ddd;
		margin-bottom: 12px;
	}

	.ohtg-confirm-table th,
	.ohtg-confirm-table td {
		padding: 10px 12px;
		border: 0;
		border-bottom: 1px solid #eee;
		white-space: normal !important;
		word-break: break-word;
	}

	.ohtg-confirm-table th {
		background: #f7f7f7;
		font-weight: 700;
	}

	.ohtg-confirm-items-table,
	.ohtg-items-table {
		display: table;
	}

	.ohtg-confirm-items-table thead,
	.ohtg-items-table thead {
		display: table-header-group;
	}

	.ohtg-confirm-items-table tbody,
	.ohtg-items-table tbody {
		display: table-row-group;
	}

	.ohtg-confirm-items-table tr,
	.ohtg-items-table tr {
		display: table-row;
	}

	.ohtg-confirm-items-table th,
	.ohtg-confirm-items-table td,
	.ohtg-items-table th,
	.ohtg-items-table td {
		display: table-cell;
		width: 140px !important;
	}

	.ohtg-confirm-items-table tr,
	.ohtg-items-table tr {
		border: 0;
		margin-bottom: 0;
	}
}

.ohtg-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.ohtg-scroll-hint-inline {
	display: none;
	flex: 0 0 auto;
}

.ohtg-scroll-hint-inline img {
	display: block;
	width: 28px;
	height: 28px;
}

@media (max-width: 767px) {
	.ohtg-scroll-hint-inline {
		display: flex;
		align-items: center;
		opacity: 0.85;
		animation: ohtg-scroll-hint-inline 2.6s ease-in-out infinite;
	}
}

@keyframes ohtg-scroll-hint-inline {
	0%, 100% {
		transform: translateX(0);
		opacity: 0.35;
	}
	50% {
		transform: translateX(6px);
		opacity: 1;
	}
}


.ohtg-scroll-hint-inline {
	flex: 0 0 auto;
	gap: 6px;
	align-items: center;
	font-size: 12px;
	line-height: 1;
	color: #7a7a7a;
	white-space: nowrap;
}

.ohtg-form__steps {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.ohtg-progress-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d8d8d8;
}

.ohtg-progress-dot.is-current {
	background: #1A569E;
	transform: scale(1.15);
}

.ohtg-progress-dot.is-done {
	background: #345e91;
}

.ohtg-step__text {
	margin: 0 0 18px;
	font-size: 15px;
	color: #666;
	line-height: 1.5;
}

.ohtg-step-box {
	
	padding: 10px;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	background: #fafafa;
	display: grid;
	gap: 8px;
}

.ohtg-form-error {
	margin-right: auto;
	padding: 10px 14px;
	border-radius: 12px;
	background: #fff1f0;
	color: #b42318;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid #f5c2c0;
}


.ohtg-spec-layout {
	display: grid;
	gap: 20px;
}

.ohtg-compact-grid {
	display: grid;
	grid-template-columns: minmax(180px, 1.4fr) minmax(130px, 1fr) minmax(90px, 0.7fr) minmax(90px, 0.7fr) minmax(90px, 0.7fr) minmax(80px, 0.55fr) minmax(130px, 0.9fr);
	gap: 8px;
	align-items: end;
}

.ohtg-field--compact {
	gap: 0;
}

.ohtg-field--compact input,
.ohtg-field--compact select {
	min-height: 38px;
	padding: 8px 10px;
	border-radius: 5px;
	font-size: 13px;
}

.ohtg-operations-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 14px;
	margin-top: 14px;
}

.ohtg-edge-facet-block {
	margin-top: 14px;
}

.ohtg-compact-section {
	gap: 6px;
	margin-top: 10px;
	padding: 8px;
	border: 1px solid #e3e3e3;
	border-radius: 8px;
	background: #fff;
}

.ohtg-compact-controls-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	gap: 8px;
}

.ohtg-compact-controls-grid .ohtg-field {
	gap: 4px;
}

.ohtg-compact-controls-grid .ohtg-field span,
.ohtg-compact-check-row span {
	font-size: 13px;
}

.ohtg-compact-controls-grid select,
.ohtg-compact-controls-grid input[type="text"] {
	min-height: 38px;
	padding: 8px 10px;
	border-radius: 5px;
	font-size: 13px;
}

.ohtg-compact-check-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 6px;
	min-height: 38px;
	padding: 8px 10px;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	background: #fff;
	align-content: center;
}

.ohtg-sandblast-control {
	display: grid;
	gap: 6px;
	min-height: 38px;
	margin: 0;
	padding: 8px 10px;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	background: #fff;
	align-content: center;
}

label.ohtg-field.ohtg-field--compact.ohtg-sandblast-control {
	margin-top: 0;
	margin-bottom: 0;
}

.ohtg-extra-controls-grid .ohtg-compact-check-row {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.ohtg-extra-controls-grid .ohtg-sandblast-control {
		grid-column: 1;
	}

	.ohtg-extra-controls-grid .ohtg-compact-control--oracal_641 {
		grid-column: 2;
	}

	.ohtg-extra-controls-grid .ohtg-compact-control--uv_print {
		grid-column: 3;
	}

	.ohtg-extra-controls-grid .ohtg-compact-control--protective_film_112,
	.ohtg-extra-controls-grid .ohtg-compact-control--mirror_film {
		grid-column: 2;
	}
}

.ohtg-compact-check-row.is-disabled {
	opacity: 0.6;
}

.ohtg-compact-check-row input[type="text"] {
	width: 100%;
	min-height: 38px;
	padding: 8px 10px;
	border: 1px solid #d9d9d9;
	border-radius: 5px;
	background: #fff;
	font-size: 13px;
}

.ohtg-edge-facet-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.ohtg-operation-list {
	display: grid;
	gap: 8px;
}

.ohtg-operation-card {
	display: grid;
	gap: 8px;
	padding: 10px 12px;
	border: 1px solid #dcdcdc;
	border-radius: 8px;
	background: #fff;
}

.ohtg-operation-card.is-disabled {
	opacity: 0.6;
}

.ohtg-operation-card__toggle {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ohtg-operation-card__toggle input {
	width: auto;
	min-height: auto;
	margin: 0;
}

.ohtg-operation-card__extra {
	display: grid;
	gap: 8px;
}

.ohtg-operation-card__extra input,
.ohtg-operation-card__extra select,
.ohtg-operation-card__extra textarea {
	min-height: 38px;
	padding: 8px 10px;
	border-radius: 5px;
	font-size: 13px;
}

.ohtg-facet-select {
	align-content: start;
}

.ohtg-compact-textarea {
	min-height: 72px !important;
}

.ohtg-drawing-box {
	display: grid;
	gap: 8px;
	margin-top: 12px;
	padding: 12px;
	border: 1px solid #dcdcdc;
	border-radius: 8px;
	background: #fff;
}

.ohtg-drawing-box.is-required {
	border-color: #f0b35f;
	background: #fff8ed;
}

.ohtg-drawing-box__head {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
}

.ohtg-drawing-box__head span,
.ohtg-muted {
	color: #666;
	font-size: 12px;
}

.ohtg-warning-note,
.ohtg-no-drawing {
	color: #b42318;
}

.ohtg-subtitle {
	margin: 0 0 16px;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
}

.ohtg-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.ohtg-no-drawing-confirm {
	margin-top: 10px;
	padding: 12px;
	border: 1px solid #f0b35f;
	border-radius: 5px;
	background: #fff8ed;
}

.ohtg-no-drawing-confirm__text {
	font-size: 14px;
	font-weight: 600;
}

.ohtg-no-drawing-confirm__actions {
	display: flex;
	gap: 8px;
	margin-top: 10px;
}

.ohtg-items {
	display: grid;
	gap: 14px;
}

.ohtg-item-card {
	padding: 16px;
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	background: #fff;
}

.ohtg-item-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.ohtg-item-card__title {
	font-size: 16px;
	font-weight: 700;
	color: #111;
}

.ohtg-item-card__body {
	display: grid;
	gap: 8px;
	font-size: 14px;
	color: #333;
}

.ohtg-item-card__remove {
	padding: 0;
	border: 0;
	background: transparent;
	color: #b42318;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.ohtg-item-card__remove:hover {
	opacity: 0.8;
}

.ohtg-items-table {
	min-width: 900px;
	font-size: 13px;
}

.ohtg-items-table td,
.ohtg-items-table th {
	white-space: normal;
	vertical-align: top;
}

.ohtg-items-table tr.is-editing td {
	background: #fff8ed;
}

.ohtg-row-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	width: 140px;
}

.ohtg-row-actions button:not(.ohtg-icon-btn) {
	
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	background: #fff;
	color: #1A569E;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
}

.ohtg-empty-box {
	padding: 16px;
	border: 1px dashed #d8d8d8;
	border-radius: 14px;
	background: #fafafa;
	font-size: 14px;
	color: #666;
}

.ohtg-step-box--top {
	margin-top: 20px;
}

.ohtg-tag-box {
	padding: 14px 16px;
	border: 1px solid #d8ead0;
	border-radius: 14px;
	background: #f6fff0;
	font-size: 14px;
	line-height: 1.5;
	color: #2f4f1f;
}


.ohtg-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.ohtg-table th,
.ohtg-table td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

.ohtg-table th {
	background: #f5f5f5;
	font-weight: 600;
}


.ohtg-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.ohtg-table {
    min-width: 800px;
    border-collapse: collapse;
}

.ohtg-col-num { width: 44px; }
.ohtg-col-material { width: 220px; }
.ohtg-col-color { width: 110px; }
.ohtg-col-thickness { width: 80px; }
.ohtg-col-size { width: 100px; }
.ohtg-col-qty { width: 70px; }
.ohtg-col-edge { width: 190px; }
.ohtg-col-extra { width: 300px; }
.ohtg-col-drawing { width: 110px; }
.ohtg-col-comment { width: 140px; }
.ohtg-col-actions { width: 120px; }



.ohtg-table-wrap {
    -webkit-overflow-scrolling: touch;
}


input[type="checkbox"] {
    width: 20px;
}

.ohtg-confirm-sheet {
	display: grid;
	gap: 20px;
}

.ohtg-confirm-section {
	background: #fff;
}

.ohtg-confirm-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
}

.ohtg-confirm-meta div {
	display: grid;
	gap: 4px;
	padding: 10px 12px;
	border: 1px solid #ececec;
	border-radius: 10px;
	background: #fff;
}

.ohtg-confirm-meta strong,
.ohtg-confirm-file-title {
	font-size: 13px;
	font-weight: 700;
	color: #555;
}

.ohtg-confirm-meta span {
	font-size: 15px;
	line-height: 1.5;
	color: #111;
}

.ohtg-confirm-items {
	display: grid;
	gap: 18px;
}

.ohtg-confirm-item {
	display: grid;
	gap: 14px;
	padding: 16px;
	border: 1px solid #e4e4e4;
	border-radius: 12px;
	background: #fff;
}

.ohtg-confirm-item__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.ohtg-confirm-item__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
}

.ohtg-confirm-table {
	min-width: 0;
	table-layout: fixed;
}

.ohtg-confirm-items-table {
	min-width: 1050px;
	font-size: 12px;
}

.ohtg-confirm-table th,
.ohtg-confirm-table td {
	white-space: normal;
	vertical-align: top;
}

.ohtg-confirm-table th {
	width: 18%;
	background: #f7f7f7;
}

.ohtg-confirm-items-table th {
	width: auto;
}

.ohtg-confirm-item__blocks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.ohtg-confirm-item__block,
.ohtg-confirm-files {
	display: grid;
	gap: 10px;
}

.ohtg-confirm-subtitle {
	margin: 0;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 700;
	color: #111;
}

.ohtg-confirm-list {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 6px;
	font-size: 14px;
	line-height: 1.5;
	color: #222;
}

.ohtg-confirm-file-block {
	display: grid;
	gap: 6px;
	padding: 10px 12px;
	border: 1px solid #ececec;
	border-radius: 10px;
	background: #fff;
}

.ohtg-confirm-empty {
	font-size: 14px;
	color: #777;
}

.ohtg-confirm-operation-files {
	display: grid;
	gap: 10px;
}

.ohtg-confirm-consents {
	display: grid;
	gap: 12px;
}

.ohtg-print-host {
	display: none;
}

.ohtg-print-pdf-host {
	background: #fff;
}

.ohtg-print-doc {
	box-sizing: border-box;
	width: 100%;
	padding: 8mm;
	background: #fff;
	color: #000;
	font-family: Arial, sans-serif;
	font-size: 10.5px;
	line-height: 1.25;
}

.ohtg-print-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 6px;
	border-bottom: 1px solid #000;
	padding-bottom: 4px;
}

.ohtg-print-head h1 {
	margin: 0;
	font-size: 18px;
	line-height: 1.1;
}

.ohtg-print-section {
	margin: 0 0 7px;
	padding: 0;
	break-inside: auto;
	page-break-inside: auto;
}

.ohtg-print-section h2 {
	margin: 0 0 3px;
	font-size: 12px;
	line-height: 1.2;
}

.ohtg-print-meta,
.ohtg-print-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.ohtg-print-meta th,
.ohtg-print-meta td,
.ohtg-print-table th,
.ohtg-print-table td {
	border: 1px solid #9d9d9d;
	padding: 2px 4px;
	vertical-align: top;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: normal;
	hyphens: none;
}

.ohtg-print-meta th {
	width: 14%;
	background: #f2f2f2;
	font-weight: 700;
}

.ohtg-print-meta td {
	width: 36%;
}

.ohtg-print-table {
	font-size: 9.5px;
	line-height: 1.22;
}

.ohtg-print-table thead {
	display: table-header-group;
}

.ohtg-print-table th {
	background: #f2f2f2;
	font-weight: 700;
	text-align: left;
	white-space: nowrap;
}

.ohtg-print-table tr {
	break-inside: avoid;
	page-break-inside: avoid;
}

.ohtg-print-col-num { width: 3%; }
.ohtg-print-col-material { width: 16%; }
.ohtg-print-col-color { width: 8%; }
.ohtg-print-col-thickness { width: 5%; }
.ohtg-print-col-size { width: 8%; }
.ohtg-print-col-qty { width: 4%; }
.ohtg-print-col-edge { width: 15%; }
.ohtg-print-col-extra { width: 25%; }
.ohtg-print-col-drawing { width: 7%; }
.ohtg-print-col-comment { width: 9%; }

@media (max-width: 767px) {
	.ohtg-confirm-meta,
	.ohtg-confirm-item__blocks {
		grid-template-columns: 1fr;
	}

	.ohtg-compact-grid,
	.ohtg-operations-grid,
	.ohtg-edge-facet-grid,
	.ohtg-compact-controls-grid {
		grid-template-columns: 1fr;
	}
}

@media print {
	@page {
		size: A4 landscape;
		margin: 8mm;
	}

	html,
	body {
		background: #fff !important;
		color: #000 !important;
		margin: 0 !important;
		padding: 0 !important;
		font-family: Arial, sans-serif;
	}

	body.ohtg-print-mode > :not(.ohtg-print-host) {
		display: none !important;
	}

	body.ohtg-print-mode .ohtg-print-host {
		display: block !important;
		position: static !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.ohtg-print-mode .ohtg-print-doc {
		padding: 0 !important;
		font-size: 10px !important;
		line-height: 1.22 !important;
	}

	body.ohtg-print-mode .ohtg-print-head {
		margin-bottom: 5px !important;
	}

	body.ohtg-print-mode .ohtg-print-section {
		margin-bottom: 6px !important;
	}

	body.ohtg-print-mode .ohtg-print-table {
		font-size: 9px !important;
	}

	body.ohtg-print-mode .ohtg-print-meta th,
	body.ohtg-print-mode .ohtg-print-meta td,
	body.ohtg-print-mode .ohtg-print-table th,
	body.ohtg-print-mode .ohtg-print-table td {
		padding: 2px 3px !important;
		border: 1px solid #777 !important;
	}

	.ohtg-print-page {
		break-before: auto;
		page-break-before: auto;
		break-inside: auto;
		page-break-inside: auto;
		margin: 0 0 10mm 0 !important;
	}

	.ohtg-print-page:first-child {
		break-before: auto;
		page-break-before: auto;
	}

	.ohtg-print-page--item {
		break-before: auto;
		page-break-before: auto;
	}

	.ohtg-confirm-section,
	.ohtg-confirm-item,
	.ohtg-step-box,
	.ohtg-confirm-file-block,
	.ohtg-confirm-meta div {
		background: #fff !important;
		border: 1px solid #cfcfcf !important;
		box-shadow: none !important;
		break-inside: avoid;
		page-break-inside: avoid;
	}

	.ohtg-confirm-section--items {
		break-inside: auto;
		page-break-inside: auto;
	}

	.ohtg-step-box,
	.ohtg-confirm-item {
		padding: 12px !important;
		margin: 0 !important;
		border-radius: 0 !important;
	}

	.ohtg-step__title {
		margin: 0 0 12px !important;
		font-size: 22px !important;
		line-height: 1.2 !important;
	}

	.ohtg-subtitle {
		margin: 0 0 10px !important;
		font-size: 16px !important;
		line-height: 1.3 !important;
		color: #000 !important;
	}

	.ohtg-confirm-subtitle,
	.ohtg-confirm-file-title,
	.ohtg-confirm-meta strong {
		color: #000 !important;
	}

	.ohtg-confirm-meta {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	.ohtg-confirm-meta div {
		padding: 8px 10px !important;
		border-radius: 0 !important;
	}

	.ohtg-table-wrap {
		overflow: visible !important;
		width: 100% !important;
	}

	.ohtg-table,
	.ohtg-confirm-table {
		width: 100% !important;
		min-width: 0 !important;
		table-layout: fixed !important;
		border-collapse: collapse !important;
	}

	.ohtg-confirm-items-table {
		font-size: 9px !important;
	}

	.ohtg-table th,
	.ohtg-table td,
	.ohtg-confirm-table th,
	.ohtg-confirm-table td {
		padding: 6px 8px !important;
		font-size: 11px !important;
		line-height: 1.35 !important;
		word-break: break-word !important;
		white-space: normal !important;
		border: 1px solid #cfcfcf !important;
		vertical-align: top !important;
	}

	.ohtg-confirm-items-table tr {
		break-inside: avoid;
		page-break-inside: avoid;
	}

	.ohtg-confirm-table th {
		width: 18% !important;
		background: #f7f7f7 !important;
	}

	.ohtg-confirm-item__blocks {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	.ohtg-confirm-list {
		margin: 0 !important;
		padding-left: 18px !important;
		display: grid !important;
		gap: 4px !important;
		font-size: 12px !important;
		line-height: 1.4 !important;
	}

	.ohtg-confirm-empty {
		font-size: 12px !important;
		color: #555 !important;
	}

	.ohtg-confirm-file-block {
		padding: 8px 10px !important;
		border-radius: 0 !important;
	}

	.ohtg-confirm-items,
	.ohtg-confirm-sheet,
	.ohtg-confirm-operation-files {
		gap: 12px !important;
	}

	.ohtg-confirm-item__header {
		margin-bottom: 8px !important;
	}

	.ohtg-confirm-item__title {
		font-size: 18px !important;
		margin: 0 !important;
	}

	.page-title.page-title-default.title-size-small.title-design-default.color-scheme-light {
    display: none;
	}
}
