/* Captain Cookie Pickup Times */

.ccpt-original {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.ccpt-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 4px 0;
}

.ccpt-select {
	flex: 1 1 160px;
	min-width: 150px;
	max-width: 260px;
	padding: 8px;
	font-family: inherit;
	font-size: 1em;
	color: #000;
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 3px;
}

.ccpt-select:disabled {
	opacity: 0.6;
}

.ccpt-status {
	flex: 1 1 100%;
	margin: 2px 0 0;
	font-size: 0.85em;
	line-height: 1.3;
	color: #666;
}

.ccpt-status:empty {
	display: none;
}

.ccpt-status--error {
	color: #b3261e;
}

@media (max-width: 480px) {
	.ccpt-select {
		flex: 1 1 100%;
		max-width: none;
	}
}

.ccpt-status--locked {
	color: #6b4e00;
	background: #fff8e1;
	border: 1px solid #f0c36d;
	border-radius: 3px;
	padding: 6px 8px;
}
