/* ============================================================
   Online Elállás Funkció – Public CSS
   ============================================================ */

/* Container */
.oef-wrap {
	max-width: 680px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, sans-serif;
	color: #1a1a1a;
	line-height: 1.6;
}

/* Info box */
.oef-info-box {
	background: #f0f6fc;
	border-left: 4px solid #0073aa;
	padding: 14px 18px;
	margin-bottom: 20px;
	border-radius: 0 4px 4px 0;
	font-size: 0.95em;
}

/* Notice boxes */
.oef-notice {
	padding: 12px 16px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-size: 0.93em;
}
.oef-notice--warning {
	background: #fff8e5;
	border-left: 4px solid #dba617;
	color: #5a4300;
}
.oef-notice--info {
	background: #eaf4fb;
	border-left: 4px solid #0073aa;
	color: #004a72;
}

/* ÁSZF links */
.oef-links-box {
	margin-bottom: 20px;
	font-size: 0.9em;
}
.oef-links-box a {
	color: #0073aa;
	text-decoration: underline;
}

/* Messages area */
.oef-messages {
	padding: 12px 16px;
	margin-bottom: 20px;
	border-radius: 4px;
}
.oef-messages--error {
	background: #fef0f0;
	border-left: 4px solid #d63638;
	color: #8b1010;
}
.oef-messages--success {
	background: #edf7ee;
	border-left: 4px solid #00a32a;
	color: #1a4f1a;
}

/* Form */
.oef-form__row {
	margin-bottom: 20px;
}

.oef-form__label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 0.95em;
}

.oef-required {
	color: #d63638;
	margin-left: 3px;
	font-weight: 700;
}

.oef-optional {
	color: #777;
	font-weight: 400;
	font-size: 0.88em;
	margin-left: 4px;
}

.oef-form__input,
.oef-form__textarea {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 1.5px solid #c3c4c7;
	border-radius: 4px;
	font-size: 1em;
	font-family: inherit;
	color: #1a1a1a;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.oef-form__input:focus,
.oef-form__textarea:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.18);
}

.oef-form__input.oef-error,
.oef-form__textarea.oef-error,
.oef-form__checkbox.oef-error {
	border-color: #d63638;
	box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.12);
}

.oef-form__textarea {
	resize: vertical;
	min-height: 90px;
}

.oef-form__input--date {
	max-width: 200px;
}

.oef-form__hint {
	display: block;
	margin-top: 4px;
	font-size: 0.84em;
	color: #666;
}

.oef-form__error {
	display: block;
	margin-top: 5px;
	font-size: 0.87em;
	color: #d63638;
	font-weight: 500;
	min-height: 1.2em;
}

/* Checkbox row */
.oef-form__row--checkbox {
	background: #f9f9f9;
	border: 1.5px solid #ddd;
	border-radius: 4px;
	padding: 14px;
}

.oef-form__checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.oef-form__checkbox {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	accent-color: #0073aa;
	cursor: pointer;
}

.oef-form__checkbox-text {
	font-size: 0.93em;
	line-height: 1.5;
}

/* Honeypot */
.oef-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

/* Buttons */
.oef-form__actions,
.oef-confirm__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 24px;
}

.oef-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	font-size: 1em;
	font-weight: 600;
	font-family: inherit;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s ease, transform 0.1s ease;
	min-width: 160px;
}

.oef-btn:focus-visible {
	outline: 3px solid #0073aa;
	outline-offset: 2px;
}

.oef-btn:active {
	transform: translateY(1px);
}

.oef-btn--primary {
	background: #0073aa;
	color: #fff;
}
.oef-btn--primary:hover {
	background: #005f8e;
}

.oef-btn--secondary {
	background: #f0f0f0;
	color: #333;
	border: 1.5px solid #ccc;
}
.oef-btn--secondary:hover {
	background: #e0e0e0;
}

.oef-btn--danger {
	background: #c0392b;
	color: #fff;
}
.oef-btn--danger:hover {
	background: #a93226;
}

.oef-btn:disabled,
.oef-btn.oef-loading {
	opacity: 0.65;
	cursor: not-allowed;
	pointer-events: none;
}

/* Confirmation step */
.oef-confirm__title {
	font-size: 1.3em;
	font-weight: 700;
	margin-bottom: 8px;
}

.oef-confirm__subtitle {
	color: #555;
	margin-bottom: 20px;
	font-size: 0.95em;
}

.oef-confirm__summary {
	background: #f9f9f9;
	border: 1.5px solid #ddd;
	border-radius: 4px;
	padding: 18px;
	margin-bottom: 20px;
}

.oef-confirm__summary table {
	width: 100%;
	border-collapse: collapse;
}

.oef-confirm__summary td {
	padding: 7px 4px;
	vertical-align: top;
	font-size: 0.95em;
}

.oef-confirm__summary td:first-child {
	font-weight: 600;
	width: 40%;
	color: #555;
	white-space: nowrap;
	padding-right: 16px;
}

.oef-confirm__summary tr + tr td {
	border-top: 1px solid #eee;
}

/* Success step */
.oef-step--success {
	text-align: center;
	padding: 30px 0;
}

.oef-success__icon {
	width: 64px;
	height: 64px;
	background: #00a32a;
	color: #fff;
	font-size: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.oef-success__title {
	font-size: 1.4em;
	font-weight: 700;
	color: #1a4f1a;
	margin-bottom: 10px;
}

.oef-success__message {
	color: #555;
	margin-bottom: 24px;
}

.oef-success__key-box {
	background: #f0f6fc;
	border: 1.5px solid #0073aa;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px;
}

.oef-success__key {
	font-size: 1.5em;
	font-weight: 700;
	color: #0073aa;
	letter-spacing: 2px;
	font-family: monospace;
	margin: 8px 0;
}

.oef-success__key-hint {
	font-size: 0.88em;
	color: #666;
	margin: 0;
}

.oef-success__note {
	font-size: 0.9em;
	color: #666;
}

/* Footer link */
.oef-footer-link {
	position: fixed;
	z-index: 9999;
}

.oef-footer-link--bottom_right {
	bottom: 20px;
	right: 20px;
}

.oef-footer-link--bottom_left {
	bottom: 20px;
	left: 20px;
}

.oef-footer-link--top_right {
	top: 20px;
	right: 20px;
}

.oef-footer-link--top_left {
	top: 20px;
	left: 20px;
}

.oef-footer-link__anchor {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #1a1a1a;
	color: #fff;
	padding: 10px 16px;
	border-radius: 24px;
	font-size: 0.88em;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
	transition: background 0.15s ease;
}

.oef-footer-link__anchor:hover,
.oef-footer-link__anchor:focus {
	background: #333;
	color: #fff;
	text-decoration: none;
}

/* Spinner */
.oef-btn.oef-loading::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 10px;
	border: 2px solid rgba(255,255,255,0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: oef-spin 0.7s linear infinite;
}

@keyframes oef-spin {
	to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 600px) {
	.oef-form__input--date {
		max-width: 100%;
	}
	.oef-confirm__summary td:first-child {
		width: 45%;
	}
	.oef-form__actions,
	.oef-confirm__actions {
		flex-direction: column;
	}
	.oef-btn {
		width: 100%;
		min-width: unset;
	}
	.oef-footer-link {
		bottom: 12px;
		right: 12px;
	}
}

/* ============================================================
   WooCommerce-specifikus kiegészítések
   ============================================================ */

/* Rendelés azonosító sor lookup gombbal */
.oef-order-id-row {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.oef-order-id-row .oef-form__input {
	flex: 1;
}

.oef-btn--outline {
	background: transparent;
	border: 1.5px solid #0073aa;
	color: #0073aa;
	padding: 10px 14px;
	flex-shrink: 0;
}

.oef-btn--outline:hover {
	background: #0073aa;
	color: #fff;
}

.oef-btn--sm {
	padding: 8px 14px;
	font-size: 0.88em;
	min-width: unset;
}

/* WC found / not found badge-k */
.oef-wc-found-badge,
.oef-wc-not-found-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 4px;
	font-size: 0.9em;
	margin-bottom: 16px;
}

.oef-wc-found-badge {
	background: #edf7ee;
	border: 1px solid #00a32a;
	color: #1a4f1a;
}

.oef-wc-found-badge__icon {
	font-size: 1.1em;
	font-weight: 700;
	color: #00a32a;
}

.oef-wc-found-badge__details {
	font-weight: 600;
}

.oef-wc-not-found-badge {
	background: #f0f6fc;
	border: 1px solid #0073aa;
	color: #004a72;
}

/* Rendelés gyors-kiválasztó panel (shortcode módban bejelentkezett usernek) */
.oef-order-lookup-panel {
	border: 1.5px solid #e0e0e0;
	border-radius: 4px;
	margin-bottom: 20px;
	background: #fafafa;
	overflow: hidden;
}

.oef-order-lookup-panel__header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #f0f0f0;
	font-size: 0.93em;
}

.oef-order-lookup-toggle {
	margin-left: auto;
	background: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 4px 10px;
	cursor: pointer;
	font-size: 0.85em;
	color: #333;
}

.oef-order-lookup-toggle:hover {
	background: #e0e0e0;
}

.oef-order-lookup-list {
	padding: 12px 16px;
}

.oef-order-lookup-hint {
	font-size: 0.88em;
	color: #666;
	margin-bottom: 10px;
}

/* Rendelés lista (My Account és shortcode panel) */
.oef-order-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.oef-order-item {
	display: grid;
	grid-template-columns: 80px 1fr 1fr 1fr;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1.5px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: #1a1a1a;
	background: #fff;
	cursor: pointer;
	font-size: 0.9em;
	font-family: inherit;
	text-align: left;
	transition: border-color 0.15s, background 0.15s;
}

.oef-order-item:hover,
.oef-order-item:focus {
	border-color: #0073aa;
	background: #f0f6fc;
	outline: none;
}

.oef-order-item--active {
	border-color: #00a32a;
	background: #edf7ee;
}

.oef-order-item__num {
	font-weight: 700;
	font-family: monospace;
}

.oef-order-item__status {
	color: #666;
	font-size: 0.88em;
}

.oef-order-item__total {
	text-align: right;
	font-weight: 600;
}

/* WC státusz badge-k az order listában */
.oef-wc-status--processing { color: #0073aa; }
.oef-wc-status--completed  { color: #00a32a; }
.oef-wc-status--cancelled  { color: #d63638; }
.oef-wc-status--on-hold    { color: #dba617; }
.oef-wc-status--refunded   { color: #888; }

/* Confirm lépésbeli WC előnézet panel */
.oef-confirm-wc-preview {
	background: #edf7ee;
	border: 1.5px solid #00a32a;
	border-radius: 4px;
	padding: 16px;
	margin-bottom: 20px;
}

.oef-confirm-wc-preview__title {
	margin: 0 0 12px;
	font-size: 1em;
	color: #1a4f1a;
	display: flex;
	align-items: center;
	gap: 6px;
}

.oef-confirm-wc-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9em;
}

.oef-confirm-wc-table td {
	padding: 5px 4px;
}

.oef-confirm-wc-table td:first-child {
	color: #555;
	width: 40%;
}

.oef-confirm-wc-items {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(0, 163, 42, 0.25);
}

.oef-confirm-wc-items__title {
	margin: 0 0 8px;
	font-size: 0.96em;
	color: #1a4f1a;
}

.oef-confirm-wc-items-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9em;
	background: rgba(255, 255, 255, 0.45);
}

.oef-confirm-wc-items-table th,
.oef-confirm-wc-items-table td {
	padding: 8px 6px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	vertical-align: top;
	text-align: left;
}

.oef-confirm-wc-items-table th {
	font-weight: 700;
	color: #1a4f1a;
}

.oef-confirm-wc-items-table th:nth-child(2),
.oef-confirm-wc-items-table td:nth-child(2) {
	text-align: center;
	white-space: nowrap;
}

.oef-confirm-wc-items-table th:nth-child(3),
.oef-confirm-wc-items-table td:nth-child(3) {
	text-align: right;
	white-space: nowrap;
}

.oef-confirm-wc-items-table small {
	color: #666;
}

/* My Account oldal stílus */
.oef-myaccount-wrap .oef-order-quickselect {
	margin-bottom: 28px;
}

.oef-myaccount-wrap .oef-order-list {
	max-height: 280px;
	overflow-y: auto;
}

/* Gutenberg szerkesztő placeholder */
.oef-block-placeholder {
	border: 2px dashed #ccc;
	border-radius: 4px;
	padding: 20px;
}

.oef-block-placeholder__inner {
	text-align: center;
	color: #666;
}

.oef-block-placeholder__inner .dashicons {
	font-size: 2em;
	width: auto;
	height: auto;
	color: #0073aa;
}

/* Reszponzív WC-specifikus */
@media (max-width: 600px) {
	.oef-order-id-row {
		flex-direction: column;
	}

	.oef-order-item {
		grid-template-columns: 70px 1fr;
		grid-template-rows: auto auto;
	}

	.oef-order-item__status {
		grid-column: 2;
	}

	.oef-order-item__total {
		grid-column: 1 / -1;
		text-align: left;
	}
}

/* ============================================================
   14 napos határidő badge – form alatt, élő számítás
   ============================================================ */
.oef-deadline-badge {
	padding: 9px 14px;
	border-radius: 4px;
	font-size: 0.88em;
	margin-top: 8px;
}
.oef-deadline-badge--ok {
	background: #edf7ee;
	border-left: 3px solid #00a32a;
	color: #1a4f1a;
}
.oef-deadline-badge--over {
	background: #fde0e0;
	border-left: 3px solid #d63638;
	color: #7a1010;
}
.oef-deadline-ok  { color: #00a32a; font-weight: 700; }
.oef-deadline-over { color: #d63638; font-weight: 700; }

/* Confirm lépésbeli határidő panel */
.oef-deadline-confirm {
	padding: 10px 16px;
	border-radius: 4px;
	font-size: 0.92em;
}
.oef-deadline-confirm--ok   { background:#edf7ee; border-left:3px solid #00a32a; color:#1a4f1a; }
.oef-deadline-confirm--over { background:#fde0e0; border-left:3px solid #d63638; color:#7a1010; }

/* Siker oldalon határidő panel */
.oef-deadline-success {
	padding: 14px 18px;
	border-radius: 4px;
	font-size: 0.93em;
	margin-bottom: 16px;
}
.oef-deadline-success--ok   { background:#edf7ee; border-left:4px solid #00a32a; color:#1a4f1a; }
.oef-deadline-success--over { background:#fff3cd; border-left:4px solid #dba617; color:#5a4300; }

/* ============================================================
   Duplikáció figyelmeztetés
   ============================================================ */
.oef-dup-warning {
	padding: 12px 16px;
	border-radius: 4px;
	font-size: 0.91em;
	margin-bottom: 16px;
}
.oef-dup-warning--info   { background:#f0f6fc; border-left:4px solid #0073aa; color:#004a72; }
.oef-dup-warning--strong { background:#fff3cd; border-left:4px solid #dba617; color:#5a4300; }

/* v1.4.9 – rendelés tételek kiválasztása */
.oef-order-items-picker {
	margin: 18px 0;
}

.oef-order-items-picker__inner {
	border: 1px solid #16a34a;
	background: #f0fdf4;
	border-radius: 6px;
	padding: 16px;
}

.oef-order-items-picker__title {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.35;
}

.oef-order-items-picker__hint {
	margin: 0 0 12px;
	color: #374151;
}

.oef-order-items-picker__actions {
	margin: 0 0 12px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.oef-order-items-picker__list {
	display: grid;
	gap: 8px;
}

.oef-order-items-picker__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid #bbf7d0;
	border-radius: 6px;
	cursor: pointer;
}

.oef-order-items-picker__item input[type="checkbox"] {
	margin-top: 3px;
}

.oef-order-items-picker__item small {
	color: #4b5563;
}

/* v1.5.0 – jogszabályi megfelelőség: előzetes határidő-figyelmeztetés */
.oef-deadline-badge--warning {
	background: #fff8e5;
	border-left: 3px solid #dba617;
	color: #5a4300;
}
.oef-deadline-confirm--warning {
	background: #fff8e5;
	border-left: 3px solid #dba617;
	color: #5a4300;
}
.oef-deadline-success--warning {
	background: #fff8e5;
	border-left: 4px solid #dba617;
	color: #5a4300;
}


/* v1.5.1 – gombmegjelenítés védelme agresszív sablon/cache CSS ellen */
.oef-wrap button.oef-btn,
.oef-wrap input[type=button].oef-btn,
.oef-wrap input[type=submit].oef-btn,
.oef-wrap .oef-form__actions .oef-btn,
.oef-wrap .oef-confirm__actions .oef-btn,
.oef-wrap #oef-lookup-order-btn,
.oef-wrap #oef-submit-btn,
.oef-wrap #oef-back-btn,
.oef-wrap #oef-final-btn,
.oef-wrap #oef-select-all-items,
.oef-wrap #oef-select-no-items {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative !important;
	z-index: 2 !important;
	appearance: auto;
}

.oef-wrap .oef-order-id-row {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: stretch;
	overflow: visible !important;
}

.oef-wrap .oef-order-id-row .oef-form__input {
	width: 100% !important;
	min-width: 0;
}

.oef-wrap #oef-lookup-order-btn {
	white-space: nowrap;
	min-height: 42px;
}

.oef-wrap .oef-form__actions,
.oef-wrap .oef-confirm__actions {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	overflow: visible !important;
}

@media (max-width: 720px) {
	.oef-wrap .oef-order-id-row {
		grid-template-columns: 1fr;
	}
	.oef-wrap #oef-lookup-order-btn {
		width: 100%;
	}
}


/* v1.5.3 – éles oldali Elementor/téma CSS konfliktus elleni UX-javítás
   A Console alapján a gombok a HTML-ben léteznek és láthatók, de a hosszú űrlap/
   téma miatt a felhasználó nem mindig látja őket. Ezért az űrlap és a megerősítés
   akciósávja sticky, a lebegő link pedig magasabb z-indexet és pointer-events védelmet kap. */
.oef-wrap .oef-form__actions,
.oef-wrap .oef-confirm__actions {
	position: sticky !important;
	bottom: 12px !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 2147482000 !important;
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	gap: 12px !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: flex-start !important;
	padding: 12px !important;
	margin-top: 24px !important;
	background: rgba(255,255,255,0.98) !important;
	border: 1px solid rgba(0,0,0,0.12) !important;
	border-radius: 8px !important;
	box-shadow: 0 8px 28px rgba(0,0,0,0.16) !important;
	clear: both !important;
	overflow: visible !important;
}

.oef-wrap .oef-form__actions::before,
.oef-wrap .oef-confirm__actions::before {
	content: '';
	display: none;
}

.oef-wrap .oef-form__actions .oef-btn,
.oef-wrap .oef-confirm__actions .oef-btn,
.oef-wrap #oef-submit-btn,
.oef-wrap #oef-back-btn,
.oef-wrap #oef-final-btn {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative !important;
	z-index: 2147482001 !important;
	pointer-events: auto !important;
	min-height: 46px !important;
	line-height: 1.25 !important;
	transform: none;
}

.oef-wrap #oef-submit-btn {
	background: #0073aa !important;
	color: #fff !important;
}

.oef-wrap #oef-final-btn {
	background: #c0392b !important;
	color: #fff !important;
}

.oef-footer-link {
	z-index: 2147483000 !important;
	pointer-events: none !important;
}

.oef-footer-link__anchor {
	position: relative !important;
	z-index: 2147483001 !important;
	pointer-events: auto !important;
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
}

@media (max-width: 720px) {
	.oef-wrap .oef-form__actions,
	.oef-wrap .oef-confirm__actions {
		bottom: 8px !important;
		padding: 10px !important;
	}
	.oef-wrap .oef-form__actions .oef-btn,
	.oef-wrap .oef-confirm__actions .oef-btn,
	.oef-wrap #oef-submit-btn,
	.oef-wrap #oef-back-btn,
	.oef-wrap #oef-final-btn {
		width: 100% !important;
		min-width: 0 !important;
	}
}


/* v1.5.3 – rendeléskereső gomb láthatósági javítás éles Elementor/téma konfliktus esetére */
.oef-wrap .oef-order-id-row {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 10px !important;
	align-items: stretch !important;
	overflow: visible !important;
}

.oef-wrap .oef-order-id-row .oef-form__input {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.oef-wrap #oef-lookup-order-btn,
.oef-wrap button#oef-lookup-order-btn,
body .oef-wrap button#oef-lookup-order-btn.oef-btn.oef-btn--outline.oef-btn--sm {
	grid-column: 1 / -1 !important;
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative !important;
	z-index: 50 !important;
	pointer-events: auto !important;
	width: fit-content !important;
	max-width: 100% !important;
	min-width: 190px !important;
	min-height: 48px !important;
	height: auto !important;
	margin: 2px 0 0 0 !important;
	padding: 11px 20px !important;
	border: 2px solid #0073aa !important;
	border-radius: 999px !important;
	background: #0073aa !important;
	background-image: none !important;
	color: #ffffff !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-indent: 0 !important;
	box-shadow: 0 4px 14px rgba(0, 115, 170, .28) !important;
	transform: none !important;
	clip: auto !important;
	clip-path: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	align-items: center !important;
	justify-content: center !important;
}

.oef-wrap #oef-lookup-order-btn::before,
.oef-wrap #oef-lookup-order-btn::after {
	display: none !important;
	content: none !important;
}

.oef-wrap #oef-lookup-order-btn:hover,
.oef-wrap #oef-lookup-order-btn:focus {
	background: #005f8d !important;
	border-color: #005f8d !important;
	color: #ffffff !important;
	outline: 3px solid rgba(0, 115, 170, .25) !important;
	outline-offset: 2px !important;
}


/* v1.5.4: bejelentkezett vásárlói rendeléslista a külön shortcode-os elállási oldalon is */
.oef-wrap .oef-order-quickselect {
	margin: 0 0 22px 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.oef-wrap .oef-order-list {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 8px !important;
	width: 100% !important;
}

.oef-wrap .oef-order-item {
	display: grid !important;
	grid-template-columns: minmax(70px, auto) minmax(100px, auto) minmax(100px, 1fr) minmax(90px, auto) !important;
	gap: 12px !important;
	align-items: center !important;
	text-decoration: none !important;
	box-sizing: border-box !important;
	width: 100% !important;
}

.oef-wrap .oef-order-quickselect--empty {
	background: #fff8e5 !important;
	border-left: 4px solid #dba617 !important;
	padding: 12px 16px !important;
}

@media (max-width: 600px) {
	.oef-wrap .oef-order-item {
		grid-template-columns: 1fr 1fr !important;
	}
}
