/* alog-calc-public.css — Public price calculator widget */

/* ── Wrapper ───────────────────────────────────────────────────────────── */
#alog-pub-calc {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.45;
	color: #333;
	margin-top: 16px;
	width: 100%;
}

/* ── Card ──────────────────────────────────────────────────────────────── */
.apc-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 14px rgba(0,0,0,.08);
	overflow: hidden;
	max-width: 100%;
}

/* ── Header ────────────────────────────────────────────────────────────── */
.apc-header {
	background: #00b2b2;
	padding: 7px 16px;
}

.apc-title {
	display: none;
}

/* ── Body ───────────────────────────────────────────────────────────────── */
.apc-body {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.apc-col-main {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

/* Footer */
.apc-footer {
	padding: 12px 16px;
	border-top: 1px solid #eef0f3;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ── Two-column route row ───────────────────────────────────────────────── */
.apc-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
@media (max-width: 600px) {
	.apc-row { grid-template-columns: 1fr; }
}

.apc-half {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

/* ── Section headers ────────────────────────────────────────────────────── */
.apc-section-hdr {
	font-size: 11px;
	font-weight: 700;
	color: #00b2b2;
	text-transform: uppercase;
	letter-spacing: .6px;
	padding-bottom: 6px;
	border-bottom: 2px solid #e8f7f7;
	margin-bottom: 2px;
}

/* ── Labels ─────────────────────────────────────────────────────────────── */
.apc-lbl {
	font-size: 10px;
	font-weight: 700;
	color: #00b2b2;
	text-transform: uppercase;
	letter-spacing: .5px;
}

/* ── Date group ─────────────────────────────────────────────────────────── */
.apc-date-grp {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

#alog-pub-calc input[type="date"].apc-inp,
#alog-pub-calc input[type="text"].apc-date-inp {
	width: 100% !important;
	box-sizing: border-box !important;
	border: 1.5px solid #dde1e7 !important;
	border-radius: 6px !important;
	padding: 7px 11px !important;
	font-size: 13px !important;
	font-family: inherit !important;
	color: #333 !important;
	outline: none !important;
	background: #fff !important;
	cursor: pointer;
	transition: border-color .15s;
}
#alog-pub-calc input[type="date"].apc-inp:focus,
#alog-pub-calc input[type="text"].apc-date-inp:focus {
	border-color: #00b2b2 !important;
	box-shadow: 0 0 0 3px rgba(0,178,178,.12) !important;
}

/* ── Copy button ─────────────────────────────────────────────────────────── */
.apc-copy-btn {
	margin-left: auto;
	background: rgba(0,178,178,.10);
	border: 1.5px solid #00b2b2;
	border-radius: 5px;
	color: #00b2b2;
	font-size: 12px;
	font-weight: 600;
	font-family: inherit;
	padding: 5px 14px;
	cursor: pointer;
	transition: background .12s;
	white-space: nowrap;
	flex-shrink: 0;
}
.apc-copy-btn:hover { background: rgba(0,178,178,.18); }
.apc-copy-btn:disabled { opacity: .6; cursor: default; }

/* ── Inputs ─────────────────────────────────────────────────────────────── */
#alog-pub-calc input[type="text"].apc-inp,
#alog-pub-calc input[type="number"].apc-inp,
#alog-pub-calc .apc-inp {
	width: 100% !important;
	box-sizing: border-box !important;
	border: 1.5px solid #dde1e7 !important;
	border-radius: 6px !important;
	padding: 8px 11px !important;
	font-size: 13px !important;
	font-family: inherit !important;
	color: #333 !important;
	outline: none !important;
	background: #fff !important;
	box-shadow: none !important;
	transition: border-color .15s, box-shadow .15s;
}
#alog-pub-calc input[type="text"].apc-inp:focus,
#alog-pub-calc input[type="number"].apc-inp:focus,
#alog-pub-calc .apc-inp:focus {
	border-color: #00b2b2 !important;
	box-shadow: 0 0 0 3px rgba(0,178,178,.10) !important;
}
.apc-inp-sm {
	max-width: 160px;
}

/* ── Autocomplete dropdown ──────────────────────────────────────────────── */
.apc-srch {
	position: relative;
}

.apc-drop {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-top: none;
	border-radius: 0 0 5px 5px;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	box-shadow: 0 6px 16px rgba(0,0,0,.09);
}

.apc-drop-item {
	padding: 6px 9px;
	cursor: pointer;
	font-size: 12px;
	border-bottom: 1px solid #f4f4f4;
}
.apc-drop-item:last-child { border-bottom: none; }
.apc-drop-item:hover,
.apc-drop-item--active { background: #f0fafa; color: #00b2b2; }

/* ── Checkboxes ─────────────────────────────────────────────────────────── */
.apc-chk {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-size: 12.5px;
	color: #444;
	user-select: none;
	line-height: 1;
}
.apc-chk input[type=checkbox] {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border: 1.5px solid #c0c7d0;
	border-radius: 3px;
	background: #fff;
	cursor: pointer;
	flex-shrink: 0;
	position: relative;
	margin: 0;
	vertical-align: middle;
	transition: background .12s, border-color .12s;
}
.apc-chk input[type=checkbox]:hover {
	border-color: #00b2b2;
}
.apc-chk input[type=checkbox]:checked {
	background: #00b2b2;
	border-color: #00b2b2;
}
.apc-chk input[type=checkbox]:checked::after {
	content: '';
	display: block;
	position: absolute;
	left: 4px;
	top: 1px;
	width: 5px;
	height: 9px;
	border: 2px solid #fff;
	border-left: none;
	border-top: none;
	transform: rotate(45deg);
}
.apc-chk input[type=checkbox]:focus-visible {
	outline: 2px solid #00b2b2;
	outline-offset: 2px;
}

.apc-deliv-opts {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

/* ── Section wrapper ────────────────────────────────────────────────────── */
.apc-section {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* ── Pallets inner container ────────────────────────────────────────────── */
.apc-pal-box {
	background: #f7f8fa;
	border: 1px solid #e4e7ec;
	border-radius: 7px;
	padding: 10px 12px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
/* ── Date label inside route half ──────────────────────────────────────── */
.apc-date-lbl {
	margin-top: 7px;
}
/* ── Date wrap with calendar icon ──────────────────────────────────────── */
.apc-date-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0;
}
.apc-date-wrap .apc-date-inp {
	flex: 1;
	min-width: 0;
	border-radius: 6px 0 0 6px !important;
}
.apc-date-cal-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 9px;
	background: #f4f8fb;
	border: 1.5px solid #dde1e7;
	border-left: none;
	border-radius: 0 6px 6px 0;
	color: #00a0a0;
	cursor: pointer;
	transition: background .12s, color .12s;
	flex-shrink: 0;
}
.apc-date-cal-btn:hover {
	background: #e0f5f5;
	color: #007a7a;
}
.apc-date-cal-btn i {
	font-size: 14px !important;
	margin: 0 !important;
}

/* ── Additional services — three-column split ───────────────────────── */
.apc-svc-split {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 6px 16px;
}
.apc-svc-col {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
@media (max-width: 480px) {
	.apc-svc-split { grid-template-columns: 1fr; }
}

/* ── Pallets table ──────────────────────────────────────────────────────── */
.apc-pal-head,
.apc-pal-row {
	display: grid;
	grid-template-columns: 110px 38px 1fr 1fr 1fr 1fr 22px;
	gap: 4px;
	align-items: center;
}
@media (max-width: 600px) {
	.apc-pal-head,
	.apc-pal-row { grid-template-columns: 90px 36px 1fr 1fr 1fr 1fr 22px; }
}

.apc-pal-head {
	padding-bottom: 6px;
	border-bottom: 1.5px solid #e0e4e9;
}
.apc-pal-head span {
	font-size: 9.5px;
	font-weight: 700;
	color: #9aa3ae;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}

#alog-pub-calc .apc-pi {
	width: 100% !important;
	box-sizing: border-box !important;
	border: 1.5px solid #dde1e7 !important;
	border-radius: 5px !important;
	padding: 5px 4px !important;
	font-size: 12px !important;
	text-align: center !important;
	outline: none !important;
	background: #fff !important;
	box-shadow: none !important;
	font-family: inherit !important;
	color: #333 !important;
	transition: border-color .15s;
}
#alog-pub-calc .apc-pi:focus {
	border-color: #00b2b2 !important;
	box-shadow: 0 0 0 2px rgba(0,178,178,.10) !important;
}

.apc-rm {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 1.5px solid #f0c0c0;
	border-radius: 4px;
	color: #c44;
	font-size: 11px;
	line-height: 1;
	width: 22px;
	height: 24px;
	padding: 0;
	cursor: pointer;
	transition: background .12s, border-color .12s;
}
.apc-rm:hover {
	background: #fff0f0;
	border-color: #c44;
}

.apc-add-btn {
	align-self: flex-start;
	background: none;
	border: 1.5px dashed #00b2b2;
	border-radius: 5px;
	color: #00b2b2;
	font-size: 11.5px;
	font-weight: 500;
	font-family: inherit;
	padding: 5px 12px;
	cursor: pointer;
	transition: background .12s;
	margin-top: 2px;
}
.apc-add-btn:hover { background: #f0fafa; }

/* ── Type select ────────────────────────────────────────────────────────── */
.apc-type-wrap {
	position: relative;
	min-width: 0;
}

.apc-type-sel {
	width: 100% !important;
	box-sizing: border-box !important;
	border: 1.5px solid #dde1e7 !important;
	border-radius: 5px !important;
	padding: 5px 4px !important;
	font-size: 11.5px !important;
	font-family: inherit !important;
	color: #333 !important;
	background: #fff !important;
	cursor: pointer;
	outline: none !important;
	-webkit-appearance: auto;
	appearance: auto;
}
.apc-type-sel:focus {
	border-color: #00b2b2 !important;
	box-shadow: 0 0 0 2px rgba(0,178,178,.10) !important;
}

/* Locked (preset) dimension inputs */
.apc-pi--locked {
	background: #f4f7fa !important;
	color: #888 !important;
	cursor: default !important;
}

/* Validation error state */
#alog-pub-calc .apc-pi--error {
	border-color: #e53e3e !important;
	box-shadow: 0 0 0 3px rgba(229,62,62,.18) !important;
}

/* ── Additional services grid (legacy, kept for any stray usage) ────────── */
.apc-svc-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
}

/* ── COD row (inline amount when checked) ───────────────────────────────── */
.apc-cod-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 4px;
	border-top: 1px solid #f0f0f0;
	margin-top: 2px;
}

.apc-cod-amount {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	min-width: 130px;
}

.apc-cod-amount input {
	flex: 1;
	min-width: 0;
}

.apc-cod-cur {
	font-size: 12px;
	font-weight: 600;
	color: #666;
	white-space: nowrap;
}

/* ── Divider between sections (legacy, kept for column content) ─────────── */
.apc-col-main > .apc-section + .apc-section,
.apc-col-side > .apc-section + .apc-section {
	padding-top: 4px;
}

/* ── Error / result banners ─────────────────────────────────────────────── */
.apc-error {
	background: #fff3f3;
	border: 1px solid #ffb5b5;
	border-radius: 5px;
	color: #c33;
	padding: 7px 11px;
	font-size: 12px;
}

.apc-result {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #f0fafa;
	border: 1.5px solid #00b2b2;
	border-radius: 7px;
	padding: 10px 14px;
}
.apc-res-lbl {
	font-size: 12px;
	color: #666;
}
.apc-res-val {
	font-size: 20px;
	font-weight: 700;
	color: #00b2b2;
}
.apc-res-cur {
	font-size: 13px;
	color: #888;
	font-weight: 600;
}
.apc-res-transit {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(0, 178, 178, .10);
	color: #007a7a;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 10px 3px 8px;
	border-radius: 20px;
	border: 1px solid rgba(0, 178, 178, .25);
	white-space: nowrap;
}
.apc-transit-icon {
	font-size: 12px !important;
	margin: 0 !important;
	opacity: .85;
}
.apc-transit-info {
	font-size: 11px;
	color: #008080;
	font-weight: 600;
	padding: 3px 0 0 2px;
}

.apc-after-hours-notice {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 8px;
	padding: 8px 12px;
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-left: 4px solid #f59e0b;
	border-radius: 6px;
	color: #7b5300;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.apc-calc-btn {
	width: 100%;
	background: #00b2b2;
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 11px;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	letter-spacing: .5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .18s, box-shadow .18s;
}
.apc-calc-btn:hover:not(:disabled) {
	background: #009898;
	box-shadow: 0 4px 12px rgba(0,178,178,.25);
}
.apc-calc-btn:disabled {
	opacity: .65;
	cursor: not-allowed;
}

/* ── CTA "Request shipment" button ──────────────────────────────────────── */
.apc-cta-btn {
	margin-left: 6px;
	background: #00b2b2;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	padding: 6px 14px;
	cursor: pointer;
	transition: background .15s, box-shadow .15s;
	white-space: nowrap;
	flex-shrink: 0;
	letter-spacing: .3px;
	text-transform: uppercase;
}
.apc-cta-btn:hover {
	background: #008f8f;
	box-shadow: 0 3px 10px rgba(0,178,178,.30);
}

.apc-cta-note {
	background: #eef9f8;
	border: 1px solid #bde9e6;
	border-radius: 6px;
	padding: 7px 10px;
	font-size: 12px;
	font-weight: 700;
	color: #0f7f78;
	line-height: 1.4;
}

.apc-cta-note--error {
	background: #fff3f3;
	border-color: #ffb5b5;
	color: #c33;
}

/* ── CTA request modal ─────────────────────────────────────────────────── */
.apc-rq-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 20, 30, .55);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 18px;
	z-index: 9999;
	box-sizing: border-box;
}

.apc-rq-modal.is-open {
	display: flex;
}

.apc-rq-dialog {
	position: relative;
	width: min(500px, 100%);
	max-height: calc(100vh - 36px);
	overflow: auto;
	background: #fff;
	border-radius: 16px;
	border-top: 5px solid #00b2b2;
	box-shadow: 0 24px 50px rgba(0, 30, 40, .28);
	box-sizing: border-box;
}

.apc-rq-hdr {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 16px 10px;
}

.apc-rq-hdr-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #00b2b2, #007a7a);
	border-radius: 10px;
	flex-shrink: 0;
	color: #fff;
}

.apc-rq-title {
	flex: 1;
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	color: #1a2f3a;
	font-weight: 700;
}

.apc-rq-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 50%;
	background: #ffe8e8;
	color: #cc2222;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0;
	transition: background .15s, transform .12s;
}

.apc-rq-close:hover {
	background: #ffc8c8;
	transform: scale(1.08);
}

.apc-rq-close svg {
	display: block;
}

.apc-rq-body {
	padding: 0 16px 16px;
}

.apc-rq-req-note {
	margin: 0 0 14px;
	font-size: 11.5px;
	color: #8a9baa;
	line-height: 1.4;
}

.apc-rq-req-note .apc-rq-req,
.apc-rq-label .apc-rq-req {
	color: #e05252;
	font-size: 14px;
	line-height: 1;
}

.apc-rq-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}

.apc-rq-label {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	color: #6080a0;
	text-transform: uppercase;
	letter-spacing: .55px;
}

.apc-rq-input {
	width: 100%;
	box-sizing: border-box;
	border: 1.5px solid #c8d4df;
	border-radius: 12px !important;
	padding: 0 16px;
	height: 46px;
	line-height: 46px;
	font-size: 14px;
	font-family: inherit;
	color: #1a2f3a;
	background: #f4f8fb;
	outline: none;
	transition: border-color .15s, box-shadow .15s, background .15s;
}

.apc-rq-input:focus {
	border-color: #00b2b2;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 178, 178, .14);
}

.apc-rq-input--error {
	border-color: #e53e3e;
	background: #fff8f8;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, .12);
}

.apc-rq-phone-row {
	display: flex;
	align-items: stretch;
	height: 46px;
	border: 1.5px solid #c8d4df;
	border-radius: 12px !important;
	overflow: hidden;
	background: #f4f8fb;
	transition: border-color .15s, box-shadow .15s, background .15s;
}

.apc-rq-phone-row:focus-within {
	border-color: #00b2b2;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 178, 178, .14);
}

.apc-rq-phone-row--error {
	border-color: #e53e3e;
	background: #fff8f8;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, .12);
}

.apc-rq-select {
	flex-shrink: 0;
	width: 118px;
	height: 100%;
	border: none;
	border-right: 1.5px solid #c8d4df;
	border-radius: 0;
	padding: 0 6px 0 12px;
	line-height: 44px;
	font-size: 13px;
	font-family: inherit;
	color: #1a2f3a;
	background: transparent;
	outline: none;
	cursor: pointer;
	box-sizing: border-box;
	appearance: auto;
	-webkit-appearance: auto;
	vertical-align: middle;
}

.apc-rq-input--phone {
	flex: 1;
	min-width: 0;
	width: auto;
	height: 100%;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	padding: 0 16px;
	line-height: 44px;
	box-sizing: border-box;
}

.apc-rq-input--phone:focus {
	box-shadow: none !important;
}

.apc-rq-error {
	min-height: 16px;
	font-size: 12px;
	color: #c33;
	line-height: 1.35;
	padding-left: 2px;
}

.apc-rq-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 2px;
	padding-top: 14px;
	border-top: 1px solid #eef2f5;
	flex-wrap: wrap;
}

.apc-rq-btn {
	border-radius: 10px;
	padding: 11px 22px;
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: background .14s, border-color .14s, color .14s, box-shadow .14s;
}

.apc-rq-btn--main {
	background: #00b2b2;
	border-color: #00b2b2;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 178, 178, .28);
}

.apc-rq-btn--main:hover {
	background: #009797;
	border-color: #009797;
	box-shadow: 0 6px 18px rgba(0, 178, 178, .38);
}

.apc-rq-btn--ghost {
	background: #fff;
	border-color: #d0d8e2;
	color: #4a5a6a;
}

.apc-rq-btn--ghost:hover {
	background: #f2f6fa;
	border-color: #b0bcc8;
}

body.apc-rq-lock {
	overflow: hidden;
}

/* ── Responsive: compact header on small screens ────────────────────────── */
@media (max-width: 600px) {
	.apc-header {
		padding: 9px 12px;
	}
	.apc-title {
		font-size: 14px;
	}
	.apc-footer {
		padding: 10px 12px;
	}
	.apc-result {
		flex-wrap: wrap;
		gap: 6px 8px;
	}
	.apc-res-val {
		font-size: 18px;
	}
	.apc-cta-btn {
		width: 100%;
		margin-left: 0;
		text-align: center;
	}
	.apc-copy-btn {
		flex-shrink: 0;
	}
	.apc-rq-modal {
		padding: 10px;
	}
	.apc-rq-dialog {
		width: 100%;
		max-height: calc(100vh - 20px);
		border-radius: 14px;
	}
	.apc-rq-hdr {
		padding: 14px 14px 8px;
	}
	.apc-rq-body {
		padding: 0 14px 14px;
	}
	.apc-rq-title {
		font-size: 16px;
	}
	.apc-rq-actions {
		flex-direction: column-reverse;
		gap: 8px;
	}
	.apc-rq-btn {
		width: 100%;
		text-align: center;
	}
	.apc-rq-select {
		width: 120px;
	}
}

/* ── Custom LP date picker ──────────────────────────────────────────────── */
.apc-date-note {
	margin-top: 4px;
	padding: 5px 10px;
	font-size: 11.5px;
	color: #c44;
	background: #fff3f3;
	border: 1px solid #ffb5b5;
	border-radius: 5px;
	animation: apc-fadein .15s ease;
}
@keyframes apc-fadein { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: none; } }

.apc-lp-picker {
	position: absolute;
	top: calc(100% + 5px);
	right: 0;
	z-index: 1500;
	background: #fff;
	border: 1px solid #d0d9e4;
	border-radius: 10px;
	box-shadow: 0 6px 24px rgba(0,0,0,.13);
	padding: 10px 10px 12px;
	min-width: 210px;
	user-select: none;
}
.apc-lp-picker-hdr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	padding: 0 2px;
}
.apc-lp-title {
	font-size: 12.5px;
	font-weight: 700;
	color: #333;
}
.apc-lp-nav {
	background: none;
	border: none;
	cursor: pointer;
	color: #666;
	font-size: 13px;
	padding: 3px 7px;
	border-radius: 5px;
	line-height: 1;
	transition: background .1s, color .1s;
}
.apc-lp-nav:hover { background: #f0fafa; color: #00b2b2; }
.apc-lp-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}
.apc-lp-dh {
	font-size: 9.5px;
	font-weight: 700;
	text-align: center;
	color: #999;
	padding: 3px 0 5px;
	text-transform: uppercase;
}
.apc-lp-dh.apc-lp-wkend { color: #d8dde5; }
.apc-lp-cell {
	font-size: 12px;
	text-align: center;
	padding: 5px 2px;
	border-radius: 5px;
	cursor: pointer;
	color: #333;
	transition: background .1s, color .1s;
}
.apc-lp-cell:not(.apc-lp-disabled):not(.apc-lp-wkend):not(.apc-lp-empty):not(.apc-lp-sel):hover {
	background: #e0f7f7;
	color: #00b2b2;
}
.apc-lp-cell.apc-lp-wkend {
	color: #d0d8e4;
	cursor: default;
	background: #f9fafb;
}
.apc-lp-cell.apc-lp-disabled {
	color: #ccc;
	cursor: default;
}
.apc-lp-cell.apc-lp-empty { cursor: default; }
.apc-lp-cell.apc-lp-sel {
	background: #00b2b2 !important;
	color: #fff !important;
	font-weight: 700;
}
.apc-lp-cell.apc-lp-today:not(.apc-lp-sel) {
	border: 1.5px solid #00b2b2;
	color: #00b2b2;
	font-weight: 700;
}

