.interactive-tile-carousel {
	width: 100%;
	--tile-heading-color: inherit;
	--tile-heading-spacing: 32px;
	--tile-card-radius: 0px;
	--tile-card-padding: 24px;
	--tile-label-color: inherit;
	--tile-title-color: inherit;
	--tile-content-color: inherit;
	--tile-button-color: inherit;
	--tile-dark-bg: #141414;
	--tile-perspective-bg: #e7ddd0;
	--tile-default-bg: #ffffff;
	--tile-overlay-top: rgba(0, 0, 0, 0.28);
	--tile-overlay-middle: rgba(0, 0, 0, 0.1);
	--tile-overlay-bottom: rgba(0, 0, 0, 0.54);
	--tile-overlay-hover-top: rgba(0, 0, 0, 0.44);
	--tile-overlay-hover-middle: rgba(0, 0, 0, 0.28);
	--tile-overlay-hover-bottom: rgba(0, 0, 0, 0.76);
	--tile-image-brightness: 0.92;
	--tile-image-hover-blur: 75px;
	--tile-image-hover-opacity: 0.5;
	--tile-image-hover-width: 800px;
	--tile-slider-track: #d7d7d7;
	--tile-slider-thumb: #111111;
	--tile-slider-track-height: 4px;
	--tile-slider-thumb-size: 18px;
}

.interactive-tile-carousel *,
.interactive-tile-carousel *::before,
.interactive-tile-carousel *::after {
	box-sizing: border-box;
}

.interactive-tile-carousel__mobile {
	display: none !important;
}

.interactive-tile-carousel__stage {
	margin-block: 0;
}

.interactive-tile-carousel__heading-wrap {
	margin-bottom: var(--tile-heading-spacing);
}

.interactive-tile-carousel__heading {
	color: var(--tile-heading-color);
}

.interactive-tile-carousel__desktop-cards,
.interactive-tile-carousel__mobile-cards {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 10px;
}

.interactive-tile-carousel__desktop-cards {
	overflow-x: auto !important;
	overflow-y: hidden !important;
	height: 452px;
	cursor: grab;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: pan-x;
}

.interactive-tile-carousel__desktop-cards.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.interactive-tile-carousel__icon-button {
	display: none !important;
}

.interactive-tile-carousel__desktop-cards::-webkit-scrollbar,
.interactive-tile-carousel__mobile-viewport::-webkit-scrollbar {
	display: none;
}

.interactive-tile-carousel__card {
	position: relative;
	flex: 0 0 300px;
	max-width: none;
	height: 452px;
	overflow: hidden;
	/* background: #ffffff; */
	border-radius: var(--tile-card-radius);
	color: #111111;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.interactive-tile-carousel__card--dark {
	/* background: var(--tile-dark-bg); */
	color: #ffffff;
}

.interactive-tile-carousel__card--perspective {
	/* background: var(--tile-perspective-bg); */
	color: #111111;
}

.interactive-tile-carousel__card--default {
	/* background: var(--tile-default-bg); */
	color: #111111;
}

.interactive-tile-carousel__card-toggle,
.interactive-tile-carousel__card-cover {
	position: absolute;
	inset: 0;
	z-index: 5;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.interactive-tile-carousel__card-cover {
	z-index: 4;
}

.interactive-tile-carousel__card-close {
	display: none;
}

.interactive-tile-carousel__card-image,
.interactive-tile-carousel__card-image .image,
.interactive-tile-carousel__card-image .cmp-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.interactive-tile-carousel .cmp-image__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transform-origin: center center;
	filter: blur(0) brightness(var(--tile-image-brightness));
	transition: transform 420ms ease, filter 420ms ease;
	will-change: transform, filter;
}

.interactive-tile-carousel__card .interactive-tile-carousel__card-image {
	pointer-events: none;
	position: absolute;
	-webkit-transition-duration: 550ms;
	transition-duration: 550ms;
	-webkit-transition-property: opacity, width, -webkit-filter;
	transition-property: opacity, width, -webkit-filter;
	transition-property: filter, opacity, width;
	transition-property: filter, opacity, width, -webkit-filter;
	-webkit-transition-timing-function: cubic-bezier(0.85, 0, 0, 1);
	transition-timing-function: cubic-bezier(0.85, 0, 0, 1);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 100%;
}

.interactive-tile-carousel__card:hover .interactive-tile-carousel__card-image {
	-webkit-filter: blur(75px);
	filter: blur(75px);
	opacity: 0.5;
	width: 800px;
}


.interactive-tile-carousel__card-label,
.interactive-tile-carousel__card-title,
.interactive-tile-carousel__card-panel {
	position: relative;
	z-index: 2;
}

.interactive-tile-carousel__card-label {
	padding: var(--tile-card-padding) var(--tile-card-padding) 0;
	color: var(--tile-label-color);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.interactive-tile-carousel__card-title {
	margin: 0;
	padding: 12px var(--tile-card-padding) 0;
	color: var(--tile-title-color);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.interactive-tile-carousel__card-panel {
	position: absolute;
	inset: 0;
	z-index: 6;
	display: flex !important;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--tile-card-padding);
	opacity: 0;
	pointer-events: none;
	transform: translateY(18px);
	transition: opacity 260ms ease, transform 260ms ease;
}

.interactive-tile-carousel__card-front {
	display: none !important;
}

.interactive-tile-carousel__card-back {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
}

.interactive-tile-carousel__card--open .interactive-tile-carousel__card-panel,
.interactive-tile-carousel__card:hover .interactive-tile-carousel__card-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.interactive-tile-carousel__card-content {
	display: block !important;
	color: var(--tile-content-color);
	font-size: 15px;
	line-height: 1.45;
	padding: 0px !important;
	margin: 0px !important;
}

.interactive-tile-carousel__card-content> :first-child {
	margin-top: 0;
}

.interactive-tile-carousel__card-content> :last-child {
	margin-bottom: 0;
}

.interactive-tile-carousel__button {
	position: relative;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	color: var(--tile-button-color);
	font-weight: 700;
	text-decoration: none;
}

.interactive-tile-carousel__mobile-viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.interactive-tile-carousel__slider-container {
	margin-top: 18px;
}

.interactive-tile-carousel__slider-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.interactive-tile-carousel__slider {
	display: block;
	width: 100%;
	height: 24px;
	margin: 0;
	border: 0;
	background: transparent;
	accent-color: #111111;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}

.interactive-tile-carousel__slider::-webkit-slider-runnable-track {
	height: var(--tile-slider-track-height);
	border-radius: 999px;
	background: var(--tile-slider-track);
}

.interactive-tile-carousel__slider::-moz-range-track {
	height: var(--tile-slider-track-height);
	border-radius: 999px;
	background: var(--tile-slider-track);
}

.interactive-tile-carousel__slider::-webkit-slider-thumb {
	width: var(--tile-slider-thumb-size);
	height: var(--tile-slider-thumb-size);
	margin-top: calc((var(--tile-slider-track-height) - var(--tile-slider-thumb-size)) / 2);
	border-radius: 50%;
	background: var(--tile-slider-thumb);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.interactive-tile-carousel__slider::-moz-range-thumb {
	width: var(--tile-slider-thumb-size);
	height: var(--tile-slider-thumb-size);
	border: 0;
	border-radius: 50%;
	background: var(--tile-slider-thumb);
	cursor: pointer;
}

@media (max-width: 767px) {
	.interactive-tile-carousel__desktop {
		display: none !important;
	}

	.interactive-tile-carousel__mobile {
		display: block !important;
	}

	.interactive-tile-carousel__mobile-cards {
		width: max-content;
	}

	.interactive-tile-carousel__mobile .interactive-tile-carousel__card {
		flex-basis: min(86vw, 330px);
	}
}

@media (min-width: 768px) {
	.interactive-tile-carousel__desktop {
		display: block !important;
	}

	.interactive-tile-carousel__mobile {
		display: none !important;
	}
}

.expandable-content {
	width: 100%;
	--expandable-button-gap: 8px;
	--expandable-button-icon-size: 20px;
	--expandable-content-spacing: 24px;
}

.expandable-content__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--expandable-button-gap);
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	text-decoration: none;
	transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.expandable-content__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.expandable-content__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 220ms ease;
}

.expandable-content__icon svg {
	display: block;
	width: var(--expandable-button-icon-size);
	height: var(--expandable-button-icon-size);
	fill: currentColor;
}

.expandable-content.is-open .expandable-content__icon {
	transform: rotate(90deg);
}

.expandable-content__content {
	margin-top: var(--expandable-content-spacing);
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	opacity: 1;
	text-align: left;
	line-height: 1.65;
	transition: height 360ms ease, opacity 260ms ease, margin-top 260ms ease;
	will-change: height, opacity;
}

.expandable-content__content p {
	margin: 0 0 14px;
}

.expandable-content__content h1,
.expandable-content__content h2,
.expandable-content__content h3,
.expandable-content__content h4,
.expandable-content__content h5,
.expandable-content__content h6 {
	margin: 0 0 14px;
	font-weight: 600;
	line-height: 1.25;
}

.expandable-content__content h1:not(:first-child),
.expandable-content__content h2:not(:first-child),
.expandable-content__content h3:not(:first-child),
.expandable-content__content h4:not(:first-child),
.expandable-content__content h5:not(:first-child),
.expandable-content__content h6:not(:first-child) {
	margin-top: 24px;
}

.expandable-content__content p:last-child {
	margin-bottom: 0;
}

.expandable-content__content ol,
.expandable-content__content ul {
	margin: 0 0 16px;
	padding-left: 1.4em;
	text-align: left;
}

.expandable-content__content li {
	margin-bottom: 10px;
	padding-left: 0.2em;
}

.expandable-content__content li:last-child {
	margin-bottom: 0;
}

.expandable-content__content[hidden] {
	display: none !important;
}

.expandable-content:not(.is-open) .expandable-content__content {
	margin-top: 0;
	opacity: 0;
}

.license-table {
	width: 100%;
}

.license-table *,
.license-table *::before,
.license-table *::after {
	box-sizing: border-box;
}

.license-table__scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.license-table__table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	background-color: #ffffff;
	color: #111111;
	table-layout: fixed;
}

.license-table__table th,
.license-table__table td {
	border-style: solid;
	border-width: 1px;
	padding: 14px 20px;
	text-align: left;
	vertical-align: middle;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
}

.license-table__table thead th,
.license-table__row-heading {
	font-weight: 700;
}

.license-table__table thead th {
	height: 62px;
}

.license-table__table tbody th,
.license-table__table tbody td {
	height: 76px;
}

.license-table__table th:nth-child(1),
.license-table__table td:nth-child(1) {
	width: 19%;
}

.license-table__table th:nth-child(2),
.license-table__table td:nth-child(2) {
	width: 33%;
}

.license-table__table th:nth-child(3),
.license-table__table td:nth-child(3) {
	width: 48%;
}

.license-table__caption {
	margin-bottom: 12px;
	color: inherit;
	font-weight: 700;
	text-align: left;
}

.license-table__caption--screen-reader {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 767px) {
	.license-table__table {
		min-width: 620px;
	}

	.license-table__table th,
	.license-table__table td {
		padding: 12px 14px;
		font-size: 14px;
		line-height: 1.45;
	}
}

@media (prefers-reduced-motion: reduce) {
	.expandable-content__content {
		transition: none;
	}
}
