.secureview-colour-swatches {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
	gap: 10px;
	max-width: 780px;
	margin: 0 auto 20px auto;
}

.secureview-colour-swatch {
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 8px 22px rgba(0,0,0,.14);
	justify-self: center;
	cursor: pointer;
}

.secureview-colour-swatch.is-light {
	border-color: #ddd8ce;
}

.secureview-colour-swatch::after {
	content: attr(data-colour);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 12px);
	transform: translateX(-50%) translateY(6px);
	background: #111;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	padding: 8px 10px;
	border-radius: 6px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: .2s ease;
	z-index: 20;
}

.secureview-colour-swatch:hover::after,
.secureview-colour-swatch:focus::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.secureview-colour-note {
	text-align: center;
	font-size: 14px;
	color: #777;
	margin-top: 24px;
}