.variant-modal-header {
	padding: 1.5rem;
	background-color: #0381C6;
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	left: 0;
	gap: 1rem;

	h3,
	a,
	.variant-modal-close {
		color: #ffffff !important;
	}

	.variant-modal-close {
		font-size: 3rem;
		padding-right: .5rem;
		cursor: pointer;
	}
}

.variant-modal-table {
	display: grid;
	grid-template-columns: 50% 50%;
}

.variant-spec {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-bottom: 1px solid #CCCCCC;
}

.variant-spec-label {
	padding: .75rem 1.5rem;
	text-align: right;
	background-color: #E2E3EA;
	font-weight: 700;
	color: #4D4E55;
	margin-bottom: 0;
}

.variant-spec-value {
	padding: .75rem 1.5rem;
	color: #4D4E55;
	margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
	.variant-modal-table {
		grid-template-columns: 1fr;
	}
}
