.cgsd {
	--cgsd-border-color: #d9dde3;
	--cgsd-background: #ffffff;
	--cgsd-muted-background: #f7f8fa;
	--cgsd-text-color: inherit;
	--cgsd-muted-text: #5f6b7a;
	--cgsd-border-radius: 4px;
	--cgsd-cell-padding: 12px;
	--cgsd-card-gap: 16px;
	--cgsd-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
	--cgsd-warning-bg: #fff8e1;
	--cgsd-warning-border: #f0c36d;
	--cgsd-error-bg: #fef3f2;
	--cgsd-error-border: #f5b5ae;
	--cgsd-info-bg: #f4f7fb;
	--cgsd-info-border: #cbd5e1;
	--cgsd-catalog-gap: 48px;
	--cgsd-nav-width: 320px;

	color: var(--cgsd-text-color);
	font: inherit;
}

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

.cgsd,
.cgsd button,
.cgsd input,
.cgsd select,
.cgsd textarea,
.cgsd table,
.cgsd th,
.cgsd td,
.cgsd ul,
.cgsd li,
.cgsd h2,
.cgsd h3,
.cgsd h4,
.cgsd p,
.cgsd span,
.cgsd div {
	font-family: inherit;
	font-size: inherit;
}

.cgsd-message {
	margin: 0 0 16px;
	padding: 12px 14px;
	border: 1px solid transparent;
	border-radius: var(--cgsd-border-radius);
	font: inherit;
}

.cgsd-message p {
	margin: 0;
	font: inherit;
}

.cgsd-message--info {
	background: var(--cgsd-info-bg);
	border-color: var(--cgsd-info-border);
}

.cgsd-message--warning {
	background: var(--cgsd-warning-bg);
	border-color: var(--cgsd-warning-border);
}

.cgsd-message--error {
	background: var(--cgsd-error-bg);
	border-color: var(--cgsd-error-border);
}

/* Table */

.cgsd-table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.cgsd-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--cgsd-background);
	border: 1px solid var(--cgsd-border-color);
	border-radius: var(--cgsd-border-radius);
	overflow: hidden;
	box-shadow: var(--cgsd-shadow);
	font: inherit;
}

.cgsd-table th,
.cgsd-table td {
	padding: var(--cgsd-cell-padding);
	text-align: left;
	vertical-align: top;
	font: inherit;
	border-bottom: 1px solid var(--cgsd-border-color);
}

.cgsd-table thead th {
	background: var(--cgsd-muted-background);
	font-weight: 600;
	color: inherit;
}

.cgsd-table tbody tr:last-child td {
	border-bottom: 0;
}

/* Grid */

.cgsd-grid {
	display: grid;
	grid-template-columns: repeat(var(--cgsd-grid-columns, 3), minmax(0, 1fr));
	gap: var(--cgsd-card-gap);
}

.cgsd-grid--cols-1 { --cgsd-grid-columns: 1; }
.cgsd-grid--cols-2 { --cgsd-grid-columns: 2; }
.cgsd-grid--cols-3 { --cgsd-grid-columns: 3; }
.cgsd-grid--cols-4 { --cgsd-grid-columns: 4; }
.cgsd-grid--cols-5 { --cgsd-grid-columns: 5; }
.cgsd-grid--cols-6 { --cgsd-grid-columns: 6; }

.cgsd-card {
	background: var(--cgsd-background);
	border: 1px solid var(--cgsd-border-color);
	border-radius: var(--cgsd-border-radius);
	box-shadow: var(--cgsd-shadow);
	height: 100%;
}

.cgsd-card__inner {
	padding: var(--cgsd-cell-padding);
}

.cgsd-card__row + .cgsd-card__row {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--cgsd-border-color);
}

.cgsd-card__label {
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1.4;
	color: var(--cgsd-muted-text);
	margin-bottom: 4px;
}

.cgsd-card__value {
	font-size: 1em;
	line-height: 1.5;
	color: inherit;
	word-break: break-word;
}

/* Catalog */

.cgsd-catalog {
	display: grid;
	grid-template-columns: var(--cgsd-nav-width) minmax(0, 1fr);
	column-gap: var(--cgsd-catalog-gap);
	row-gap: 0;
	align-items: start;
	width: 100%;
}

.cgsd-catalog__nav {
	width: 100%;
	min-width: 0;
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
}

.cgsd-catalog__category-block {
	width: 100%;
	display: block;
}

.cgsd-catalog__content {
	min-width: 0;
	width: 100%;
	display: block;
}

.cgsd-catalog__panel {
	display: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	margin: 0;
}

.cgsd-catalog__panel.is-active {
	display: block;
}

.cgsd-catalog__placeholder {
	color: var(--cgsd-muted-text);
	font: inherit;
	line-height: 1.5;
}

/* Accordion */

.cgsd-catalog__subnav-panel {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	overflow: hidden;
	transition: grid-template-rows 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
	margin-top: 0;
	width: 100%;
}

.cgsd-catalog__subnav-panel.is-active {
	grid-template-rows: 1fr;
	opacity: 1;
	margin-top: 8px;
}

.cgsd-catalog__subnav-panel[hidden] {
	display: grid;
}

.cgsd-catalog__subnav-panel-inner {
	min-height: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 10px;
	padding-left: 18px;
}

/* Category buttons */

.cgsd-catalog__nav-button {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 1rem 2rem;
	background-color: var(--global-color-19);
	color: var(--global-color-21);
	border: 0;
	border-radius: 4px;
	box-shadow: none;
	font: inherit;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.45s ease, color 0.45s ease;
}

/*
.cgsd-catalog__nav-button::after {
	content: "";
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	background-color: currentColor;
	transition: transform 0.5s ease;
	-webkit-mask-image: url("https://et.livesolutions.se/wp-content/uploads/2026/04/arrow-right.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("https://et.livesolutions.se/wp-content/uploads/2026/04/arrow-right.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	transform: translate(0, 0);
}
*/

.cgsd-catalog__nav-button:hover,
.cgsd-catalog__nav-button:focus {
	background-color: var(--global-color-10);
	color: var(--global-color-19);
	outline: none;
}

.cgsd-catalog__nav-button:hover::after,
.cgsd-catalog__nav-button:focus::after {
	transform: translate(4px, 0);
}

.cgsd-catalog__nav-button.is-active {
	background-color: var(--global-color-10);
	color: var(--global-color-21);
}

.cgsd-catalog__nav-button.is-active:hover,
.cgsd-catalog__nav-button.is-active:focus {
	background-color: var(--global-color-10);
	color: var(--global-color-21);
}

.cgsd-catalog__nav-button.is-active::after,
.cgsd-catalog__nav-button.is-active:hover::after,
.cgsd-catalog__nav-button.is-active:focus::after {
	transform: translate(4px, 0);
}

/* Subcategory buttons */

.cgsd-catalog__nav-button--sub {
	background: transparent;
	color: var(--global-color-19);
	padding: 0.15rem 0;
	border-radius: 0;
	display: inline-flex;
	width: 100%;
	justify-content: flex-start;
	gap: 0.5rem;
	font-weight: 700;
	letter-spacing: 0;
	box-shadow: none;
}

.cgsd-catalog__nav-button--sub:hover,
.cgsd-catalog__nav-button--sub:focus {
	background: transparent;
	color: var(--global-color-10);
}

.cgsd-catalog__nav-button--sub.is-active {
	background: transparent;
	color: var(--global-color-10);
}

.cgsd-catalog__nav-button--sub.is-active:hover,
.cgsd-catalog__nav-button--sub.is-active:focus {
	background: transparent;
	color: var(--global-color-10);
}

/* Content */

.cgsd-catalog__title {
	margin: 0 0 16px;
	font: inherit;
	font-size: 1.15em;
	font-weight: 700;
	line-height: 1.3;
}

.cgsd-catalog__group-title {
	margin: 16px 0 6px;
	font: inherit;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.4;
	color: var(--global-color-19);
}

.cgsd-catalog__group-title:first-child {
	margin-top: 0;
}

.cgsd-catalog__list {
	margin: 0 0 4px;
	padding-left: 0;
	list-style: none;
}

.cgsd-catalog__item {
	margin: 0;
	line-height: 1.45;
}

.cgsd-catalog__item + .cgsd-catalog__item {
	margin-top: 4px;
}

.cgsd-catalog__item::marker {
	content: "";
}

.cgsd-catalog__list + .cgsd-catalog__group-title {
	margin-top: 14px;
	padding-top: 10px;
	border-top: 1px solid var(--cgsd-border-color);
}

@media (max-width: 1024px) {
	.cgsd-grid--cols-4,
	.cgsd-grid--cols-5,
	.cgsd-grid--cols-6 {
		--cgsd-grid-columns: 3;
	}

	.cgsd {
		--cgsd-catalog-gap: 32px;
		--cgsd-nav-width: 280px;
	}
}

@media (max-width: 768px) {
	.cgsd-grid {
		--cgsd-grid-columns: 2;
	}

	.cgsd-catalog {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.cgsd-catalog__nav {
		position: static;
		width: 100%;
	}

	.cgsd-catalog__nav-button {
		width: 100%;
	}

	.cgsd-catalog__subnav-panel-inner {
		padding-left: 12px;
	}
}

@media (max-width: 480px) {
	.cgsd-grid {
		--cgsd-grid-columns: 1;
	}

	.cgsd-table th,
	.cgsd-table td,
	.cgsd-card__inner {
		padding: 10px;
	}
}

@keyframes cgsd-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cgsd-catalog__panel.is-active {
  display: block;
  animation: cgsd-panel-in 0.35s ease forwards;
}