:root {
	--bg-color: 240, 241, 242;
	--surface-color: 255, 255, 255;
	--primary-text-color: 17, 18, 19;
	--secondary-text-color: 100, 102, 105;
	--border-color: 212, 214, 216;
	--navbar-bg-color: 32, 32, 32;
	--navbar-primary-text-color: 255, 255, 255;
	--navbar-secondary-text-color: 144, 146, 150;
	--navbar-border-color: 64, 65, 68;
	--btn-bg-color: 255, 117, 0;
	--btn-text-color: 255, 255, 255;
	--link-color: 48, 191, 191;
	--success-color: 40, 167, 69;
	--error-color: 220, 53, 69;
	--rating-color: 253, 204, 14;
	--navbar-height: calc(50px + 1rem);
	--primary-border-radius: 1rem;
	--secondary-border-radius: .5rem;
	--box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	--box-shadow-inset: inset 4px 4px 6px rgba(0, 0, 0, 0.06), inset -4px -4px 6px rgba(255, 255, 255, 0.5);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--navbar-height);
}

body {
	background-color: rgb(var(--bg-color));
	color: rgb(var(--secondary-text-color));
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
	color: rgb(var(--primary-text-color));
	overflow: hidden;
	text-overflow: ellipsis
}

a {
	color: rgb(var(--link-color))
}

a:hover {
	color: rgb(var(--link-color))
}

hr {
	border-color: rgb(var(--border-color)) !important;
	width: 100%;
}

.hr {
	border-top: 1px solid rgb(var(--border-color));
	margin: 1rem 0;
	width: 100%;
	display: block;
}

label {
	color: rgb(var(--primary-text-color));
}

input.form-control,
textarea.form-control {
	background-color: rgb(var(--surface-color)) !important;
	color: rgb(var(--primary-text-color)) !important;
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--secondary-border-radius) !important;
	box-shadow: var(--box-shadow-inset) !important;
	transition: none !important;
}

.input-group .input-group-prepend+.form-control {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.input-group .form-control:has(+.input-group-append) {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.input-group-prepend .input-group-text {
	border-top-left-radius: var(--secondary-border-radius) !important;
	border-bottom-left-radius: var(--secondary-border-radius) !important;
}

.input-group-append .input-group-text {
	border-top-right-radius: var(--secondary-border-radius) !important;
	border-bottom-right-radius: var(--secondary-border-radius) !important;
}

.input-group-text {
	background-color: rgb(var(--surface-color));
	color: rgb(var(--primary-text-color));
	border-color: rgb(var(--border-color));
}

input.form-control:focus,
textarea.form-control:focus {
	border-color: rgb(var(--link-color))
}

input.form-control::placeholder,
textarea::placeholder {
	color: rgb(var(--secondary-text-color)) !important
}

summary {
	color: rgb(var(--link-color));
}

summary:hover {
	text-decoration: underline;
}

details[open] summary {
	margin-bottom: .5rem;
}

.container {
	max-width: 1200px !important
}

.custom-bg {
	background-image: linear-gradient(135deg, rgba(128, 128, 128, 0), rgba(128, 128, 128, 0.05) 25%, transparent 25%), linear-gradient(150deg, rgba(128, 128, 128, 0), rgba(128, 128, 128, 0.05) 35%, transparent 35%), linear-gradient(190deg, rgba(128, 128, 128, 0), rgba(128, 128, 128, 0.08) 40%, transparent 40%), linear-gradient(200deg, rgba(128, 128, 128, 0), rgba(128, 128, 128, 0.08) 40%, transparent 40%), linear-gradient(185deg, rgba(128, 128, 128, 0), rgba(128, 128, 128, 0.08) 80%, transparent 80%) !important;
}

.custom-card {
	background-color: rgb(var(--surface-color));
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--primary-border-radius);
	overflow: hidden;
}

.custom-badge {
	text-decoration: none !important;
	font-size: .8rem;
	font-weight: bold;
	background-color: rgba(var(--link-color), .1);
	color: rgb(var(--link-color));
	border-radius: var(--secondary-border-radius);
	padding: .25rem .5rem;
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
}

a.custom-badge:hover {
	background-color: transparent
}

.fa-badge {
	position: relative;
	background-color: rgba(var(--link-color), .05);
	color: rgb(var(--link-color));
	border: 1px solid rgba(var(--link-color), .25);
	border-radius: var(--secondary-border-radius);
	width: 40px;
	min-width: 40px;
	height: 40px;
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fa-badge .fa {
	position: absolute;
}

.btn {
	font-weight: bold;
	border-radius: var(--secondary-border-radius);
	box-shadow: none !important;
	transition: none;
}

.round-btn {
	border: none;
	border-radius: 50%;
	padding: 0;
	width: 40px;
	min-width: 40px;
	height: 40px;
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.round-btn img {
	border-radius: 50%;
	width: calc(40px - 1rem);
	height: calc(40px - 1rem);
}

.primary-btn {
	background-color: rgb(var(--btn-bg-color));
	color: rgb(var(--btn-text-color)) !important;
}

.primary-btn-outline {
	border-color: rgb(var(--btn-bg-color));
}

.primary-btn-outline:not(:hover) {
	background-color: transparent;
	color: rgb(var(--btn-bg-color)) !important;
}

.secondary-btn {
	background-color: rgb(var(--border-color));
	color: rgb(var(--primary-text-color)) !important;
}

.secondary-btn:hover {
	background-color: rgba(var(--border-color), .5);
}

.dropdown-menu {
	background-color: rgb(var(--bg-color));
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--secondary-border-radius);
	padding: .5rem;
	width: 200px;
	z-index: 2;
	box-shadow: var(--box-shadow);
}

.custom-dropdown-item {
	text-decoration: none !important;
	font-size: .8rem;
	background-color: transparent;
	color: rgb(var(--secondary-text-color)) !important;
	border: none;
	border-radius: var(--secondary-border-radius);
	padding: .5rem;
	width: 100%;
	display: flex;
	align-items: center;
}

.custom-dropdown-item:hover {
	background-color: rgba(var(--border-color), .5);
	color: rgb(var(--primary-text-color)) !important;
}

.custom-dropdown-item+.custom-dropdown-item {
	margin-top: .5rem;
}

.custom-dropdown-item.active {
	font-weight: bold;
	background-color: rgba(var(--link-color), .1);
	color: rgb(var(--link-color)) !important;
}

.custom-dropdown-item img {
	border-radius: 50%;
	margin-right: .5rem;
	width: 18px;
	height: 18px;
}

.radio-switch {
	--active-item: 1;
	position: relative;
	border: 1px solid rgb(var(--border-color));
	border-radius: 10rem;
	display: inline-flex;
	vertical-align: top;
}

.radio-switch:not(.on, .off) {
	box-shadow: var(--box-shadow-inset);
}

.radio-switch::before {
	content: '';
	position: absolute;
	top: 0;
	background-color: rgb(var(--btn-bg-color));
	border-radius: 50%;
	margin-left: calc(32px * (var(--active-item) - 1));
	width: 32px;
	height: 32px;
	transition: margin .1s ease-in-out;
}

.radio-switch button {
	background-color: transparent;
	color: rgb(var(--secondary-text-color));
	border: none;
	border-radius: 50%;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

.radio-switch button:hover {
	color: rgb(var(--primary-text-color));
}

.radio-switch button.active {
	color: rgb(var(--btn-text-color));
}

.radio-switch.on {
	background-color: rgb(var(--success-color));
	border-color: transparent;
}

.radio-switch.off {
	background-color: rgb(var(--error-color));
	border-color: transparent;
}

.radio-switch.on::before,
.radio-switch.off::before {
	background-color: #fff;
}

.radio-switch.on button,
.radio-switch.off button {
	color: transparent;
}

.radio-switch.on button.active {
	color: rgb(var(--success-color));
}

.radio-switch.off button.active {
	color: rgb(var(--error-color));
}

.rating-selector {
	gap: .5rem;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.rating-selector button {
	all: unset;
	font-size: 2.5rem;
	color: rgb(var(--border-color));
	cursor: pointer;
}

.rating-selector button:hover,
.rating-selector button:hover~button,
.rating-selector button.active,
.rating-selector button.active~button {
	color: rgb(var(--rating-color));
}

.radio-group {
	gap: 1rem;
	display: flex;
	flex-direction: column;
}

.radio-group button {
	background-color: transparent;
	color: rgb(var(--secondary-text-color));
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
}

.radio-group button:hover,
.radio-group button.active {
	color: rgb(var(--primary-text-color));
}

.radio-group button.active {
	font-weight: bold;
}

.radio-group button::before {
	content: '';
	border: 1px solid rgb(var(--border-color));
	border-radius: 50%;
	margin-right: .5rem;
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: var(--box-shadow-inset);
}

.radio-group button.active::before {
	background-color: rgb(var(--btn-bg-color));
	background-image: radial-gradient(circle, rgb(var(--btn-text-color)) 4px, transparent 4px);
	border: none;
	box-shadow: none;
}

.radio-group.checkboxes button::before {
	border-radius: var(--secondary-border-radius);
}

.radio-group.checkboxes button.active::before {
	content: '✓';
	background-image: none;
	color: rgb(var(--btn-text-color));
}

.profile-picture {
	border: 1px solid rgb(var(--border-color));
	border-radius: 50%;
	width: 50px;
	height: 50px;
}

.username {
	color: rgb(var(--primary-text-color)) !important;
	word-break: break-word
}

.full-width-image {
	--aspect-ratio: 2 / 1;
	aspect-ratio: var(--aspect-ratio);
	object-fit: cover;
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--primary-border-radius);
	width: 100%;
	height: auto;
}

.spaced-content>* {
	margin: 1.5rem 0;
}

.spaced-content>*:first-child {
	margin-top: 0;
}

.spaced-content>*:last-child {
	margin-bottom: 0;
}

.custom-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.custom-list dd {
	margin-bottom: 0 !important;
}

.wrapped-links {
	gap: .5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.columns {
	--column-count: 1;
	--items: var(--column-count);
	--gap: 15px;
	gap: min(var(--gap), 15px);
	display: flex;
	flex-wrap: wrap;
}

.columns>* {
	margin: 0;
	min-width: 0;
	flex: 0 0 auto;
	flex-basis: calc((100% - (var(--column-count) - 1) * var(--gap)) / var(--column-count));
}

.horizontal-scroll {
	position: relative;
}

*::-webkit-scrollbar {
	display: none
}

.horizontal-scroll::before,
.horizontal-scroll::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 15px;
	z-index: 1;
}

.horizontal-scroll::before {
	left: -15px;
	background-image: linear-gradient(to right, rgb(var(--bg-color)), transparent);
}

.horizontal-scroll::after {
	right: -15px;
	background-image: linear-gradient(to right, transparent, rgb(var(--bg-color)));
}

.scroll-content {
	margin-left: -15px;
	padding: 0 15px;
	width: calc(100% + 30px);
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}

.scroll-content.columns {
	scroll-snap-type: x mandatory
}

.scroll-content.columns>* {
	flex-basis: calc((100% - (var(--column-count) - 1) * var(--gap)) / var(--column-count) - min(((var(--gap) * 2) / var(--column-count)), max(0, (var(--items) - var(--column-count))) * ((var(--gap) * 2) / var(--column-count))));
	white-space: normal;
	scroll-snap-align: center;
}

.slider-dots {
	gap: .25rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.slider-dots span {
	background-color: rgb(var(--border-color));
	border-radius: 50%;
	width: 10px;
	height: 10px;
}

.slider-dots span.active {
	background-color: rgb(var(--primary-text-color));
}

.styled-list li {
	counter-increment: item;
	position: relative;
	color: rgb(var(--primary-text-color));
	padding-left: calc(18px + .5rem)
}

.styled-list li+li {
	margin-top: .5rem
}

.styled-list li::before {
	content: '•';
	position: absolute;
	top: 3px;
	left: 0;
	font-size: .8rem;
	background-color: rgb(var(--btn-bg-color));
	color: rgb(var(--btn-bg-color));
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: inline-flex;
	justify-content: center;
	align-items: center
}

ol.styled-list li::before {
	content: counter(item);
	color: rgb(var(--btn-text-color));
}

.check-list li::before {
	content: '✓' !important;
	color: rgb(var(--btn-text-color));
}

.custom-table {
	border-top: 1px solid rgb(var(--border-color));
	width: 100%;
}

.custom-table caption {
	color: rgb(var(--secondary-text-color));
	margin-top: 1rem;
	padding: 0;
}

.custom-table tr {
	border-bottom: 1px solid rgb(var(--border-color));
}

.custom-table tbody tr:hover {
	background-color: rgba(var(--border-color), .5);
}

.custom-table th,
.custom-table td {
	color: rgb(var(--primary-text-color));
	padding: 1rem .5rem;
	word-break: break-word;
}

.custom-table th:first-child,
.custom-table td:first-child {
	padding-left: 0;
}

.custom-table th:last-child,
.custom-table td:last-child {
	padding-right: 0;
}

.custom-table thead th {
	color: rgb(var(--link-color));
}

.faq-list>div+div {
	border-top: 1px solid rgb(var(--border-color));
}

.faq-list dt button {
	text-align: left;
	font-weight: bold;
	background-color: transparent;
	color: rgb(var(--primary-text-color));
	border: none;
	padding: 1rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-list dt button i {
	position: relative;
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--secondary-border-radius);
	margin-left: 1rem;
	width: 40px;
	min-width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: var(--box-shadow);
}

.faq-list dt button[aria-expanded=true] i {
	box-shadow: var(--box-shadow-inset);
}

.faq-list dt button i::before,
.faq-list dt button i::after {
	content: '';
	position: absolute;
	background-color: rgb(var(--primary-text-color));
	border-radius: 10rem
}

.faq-list dt button i::before {
	width: calc(100% - 1rem);
	height: 2px;
}

.faq-list dt button i::after {
	width: 2px;
	height: calc(100% - 1rem);
	transition: transform .1s ease-in-out;
}

.faq-list dt button[aria-expanded=true] i::after {
	transform: rotate(90deg);
}

.faq-list dd {
	border-top: 1px solid rgb(var(--border-color));
	display: none;
}

.stacked-links {
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--primary-border-radius);
	overflow: hidden;
}

.stacked-links li+li {
	border-top: 1px solid rgb(var(--border-color));
}

.stacked-links a {
	text-decoration: none;
	color: rgb(var(--primary-text-color));
	padding: 1rem;
	gap: 1rem;
	display: flex;
	align-items: center;
}

.stacked-links a:hover {
	background-color: rgba(var(--border-color), .5);
}

.stacked-links a:hover .round-btn {
	background-color: transparent;
}

.stacked-links p {
	font-size: .8rem;
	color: rgb(var(--secondary-text-color));
	margin-bottom: 0;
}

.nav-links li+li {
	margin-top: .5rem;
}

.nav-links a {
	text-decoration: none;
	color: rgb(var(--primary-text-color));
	border-radius: var(--secondary-border-radius);
	padding: .5rem;
	display: flex;
	align-items: center;
}

.nav-links a:hover {
	background-color: rgba(var(--border-color), .5);
}

.nav-links a:hover .round-btn {
	background-color: transparent;
}

.nav-links li.active a,
.nav-links li.active .round-btn {
	font-weight: bold;
	background-color: rgb(var(--btn-bg-color));
	color: rgb(var(--btn-text-color)) !important;
}

nav:has(.tab-links) {
	border-bottom: 1px solid rgb(var(--border-color));
}

nav.position-sticky:has(.tab-links) {
	--bg-color: var(--navbar-bg-color);
	--primary-text-color: var(--navbar-primary-text-color);
	--secondary-text-color: var(--navbar-secondary-text-color);
	--border-color: var(--navbar-border-color);
	top: var(--navbar-height);
	background-color: rgb(var(--navbar-bg-color));
	z-index: 3;
}

.tabs-fill li {
	flex-grow: 1;
}

.tab-links a {
	text-align: center;
	text-decoration: none;
	color: rgb(var(--secondary-text-color));
	border-bottom: 2px solid transparent;
	padding: 1rem;
	padding-bottom: calc(1rem - 2px);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tab-links a:hover {
	color: rgb(var(--primary-text-color));
	border-color: rgb(var(--border-color));
}

.tab-links li.active a {
	font-weight: bold;
	background-image: linear-gradient(transparent 50%, rgba(var(--link-color), .1));
	color: rgb(var(--primary-text-color));
	border-color: rgb(var(--link-color));
}

.pagination-links {
	gap: 1rem;
	justify-content: center;
}

.pagination-links a {
	color: rgb(var(--secondary-text-color));
}

.pagination-links a:hover {
	color: rgb(var(--primary-text-color));
}

.pagination-links li.active a {
	font-weight: bold;
	color: rgb(var(--link-color)) !important;
}

.pagination-links li:first-child a,
.pagination-links li:last-child a {
	text-decoration: none;
	background-color: rgba(var(--link-color), .1);
	color: rgb(var(--link-color));
	border-radius: var(--secondary-border-radius);
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination-links a[aria-disabled="true"] {
	display: none !important;
}

#filter-results {
	position: relative;
}

#filter-results.loading::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	animation: loading 1s linear infinite alternate;
}

@keyframes loading {
	0% {
		background-color: rgba(var(--bg-color), .25);
	}

	100% {
		background-color: rgba(var(--bg-color), .75);
	}
}

.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	background-color: rgba(var(--bg-color), .75);
	z-index: 5;
}

.overlay:has(.popup.open) {
	left: 0;
	right: 0;
	padding: 3rem 0;
	overflow: auto;
	z-index: 6;
}

.popup .custom-card {
	box-shadow: var(--box-shadow);
}

.popup:not(.open),
.sidebar:not(.open) {
	display: none;
}

.left-sidebar,
.right-sidebar:has(.sidebar.open) {
	left: 0;
}

.right-sidebar,
.left-sidebar:has(.sidebar.open) {
	right: 0;
}

.right-sidebar {
	direction: rtl;
}

.sidebar {
	--bg-color: var(--navbar-bg-color);
	--primary-text-color: var(--navbar-primary-text-color);
	--secondary-text-color: var(--navbar-secondary-text-color);
	--border-color: var(--navbar-border-color);
	position: absolute;
	top: 0;
	bottom: 0;
	background-color: rgb(var(--navbar-bg-color));
	width: min(300px, 80vw);
	display: flex;
	flex-direction: column;
	transition: left .1s ease-in-out, right .1s ease-in-out;
	box-shadow: var(--box-shadow);
}

.left-sidebar .sidebar {
	left: 0;
	border-right: 1px solid rgb(var(--navbar-border-color));
}

.left-sidebar .sidebar:not(.open) {
	left: max(-300px, -80vw)
}

.right-sidebar .sidebar {
	direction: ltr;
	right: 0;
	border-left: 1px solid rgb(var(--navbar-border-color));
}

.right-sidebar .sidebar:not(.open) {
	right: max(-300px, -80vw)
}

.sidebar-header,
.sidebar-footer {
	padding: 1rem;
	display: flex;
	align-items: center
}

.sidebar-header {
	border-bottom: 1px solid rgb(var(--navbar-border-color));
	min-height: var(--navbar-height);
}

.sidebar-body {
	flex-grow: 1;
	overflow: auto
}

.sidebar-footer {
	border-top: 1px solid rgb(var(--navbar-border-color));
}

.custom-navbar {
	--bg-color: var(--navbar-bg-color);
	--primary-text-color: var(--navbar-primary-text-color);
	--secondary-text-color: var(--navbar-secondary-text-color);
	--border-color: var(--navbar-border-color);
	position: sticky;
	top: 0;
	background-color: rgb(var(--navbar-bg-color));
	border-bottom: 1px solid rgb(var(--navbar-border-color));
	height: var(--navbar-height);
	z-index: 4;
}

.custom-navbar .container {
	height: 100%;
	gap: .5rem;
	display: flex;
	align-items: center;
}

.custom-navbar-brand {
	font-size: 1.5rem;
	line-height: 0;
	color: rgb(var(--navbar-primary-text-color)) !important;
}

.custom-navbar-brand img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 50px
}

.breadcrumb-links {
	gap: 15px;
}

.breadcrumb-links li {
	font-size: .8rem;
	padding: 1rem 0
}

.breadcrumb-links li+li::before {
	content: '›';
	margin-right: 15px
}

footer {
	--bg-color: var(--navbar-bg-color);
	--primary-text-color: var(--navbar-primary-text-color);
	--secondary-text-color: var(--navbar-secondary-text-color);
	--border-color: var(--navbar-border-color);
	background-color: rgb(var(--navbar-bg-color));
	color: rgb(var(--navbar-secondary-text-color));
	border-top: 1px solid rgb(var(--navbar-border-color));
}

.footer-sponsors img {
	width: auto;
	max-width: 150px;
	height: auto;
	max-height: 50px;
}

@media only screen and (max-width: 575px) {
	nav:has(.mobile-links) {
		border-bottom: none;
	}

	.mobile-links {
		--bg-color: var(--navbar-bg-color);
		--primary-text-color: var(--navbar-primary-text-color);
		--secondary-text-color: var(--navbar-secondary-text-color);
		--border-color: var(--navbar-border-color);
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgb(var(--navbar-bg-color));
		border-top: 1px solid rgb(var(--navbar-border-color));
		margin: 0;
		padding: 0;
		width: 100%;
		overflow: hidden;
		z-index: 3;
		box-shadow: var(--box-shadow);
	}

	.mobile-links li {
		flex-grow: 1;
	}

	.mobile-links a {
		border-top: 2px solid transparent;
		border-bottom: none;
		padding: 1rem 0;
		padding-top: calc(1rem - 2px);
	}

	.mobile-links li.active a {
		background-image: linear-gradient(rgba(var(--link-color), .25), transparent 50%);
	}
}

@media only screen and (max-width: 767px) {

	.h1,
	h1 {
		font-size: 2rem
	}

	.h2,
	.h3,
	h2,
	h3 {
		font-size: 1.5rem;
	}

	.h4,
	h4 {
		font-size: 1.25rem
	}
}

@media only screen and (min-width: 992px) {
	.example-columns {
		--column-count: 3;
	}
}

@media only screen and (min-width: 1200px) {

	.left-sidebar:has(.static-sidebar.open) {
		right: unset;
	}

	.right-sidebar:has(.static-sidebar.open) {
		left: unset;
	}

	.static-sidebar {
		width: min(300px, 20vw);
		box-shadow: none;
	}

	.left-sidebar .static-sidebar {
		left: 0 !important;
		display: flex !important;
	}

	.right-sidebar .static-sidebar {
		right: 0 !important;
		display: flex !important;
	}

	body:has(.left-sidebar .static-sidebar) {
		padding-left: min(300px, 20vw);
	}

	body:has(.right-sidebar .static-sidebar) {
		padding-right: min(300px, 20vw);
	}

	body:has(.left-sidebar .static-sidebar) #open-left-sidebar {
		display: none;
	}

	body:has(.right-sidebar .static-sidebar) #open-right-sidebar {
		display: none;
	}

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.example-columns {
		--column-count: 2;
	}
}

/* main.css */

.responsible-gambling-banner {
	text-align: center;
	font-size: .8rem;
	background-image: linear-gradient(rgb(var(--navbar-border-color)), rgb(var(--navbar-bg-color)));
	color: rgb(var(--navbar-primary-text-color));
	border-bottom: 1px solid rgb(var(--navbar-border-color));
	padding: .5rem;
}

.active-badge {
	background-color: rgba(var(--success-color), .1);
	color: rgb(var(--success-color));
}

.inactive-badge {
	background-color: rgba(var(--border-color), .5);
	color: rgb(var(--secondary-text-color));
}

.home-page-header {
	background-image: linear-gradient(#499a9a, #1f5555);
	border-bottom: 1px solid rgb(var(--border-color));
	padding: 3rem 0;
}

.home-page-header h1 {
	color: #fff;
}

.home-page-header p {
	color: #fff;
	opacity: .75;
}

#search-suggestions {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
	box-shadow: var(--box-shadow);
}

#search-suggestions li:first-child {
	border-top: none;
}

#search-suggestions li:last-child {
	border-bottom: none;
}

#search-suggestions a {
	padding-left: calc(50px + 1rem);
	padding-right: .5rem;
}

#search-suggestions .brand-logo {
	left: .5rem;
}

.category-links .custom-card {
	text-decoration: none;
	color: rgb(var(--secondary-text-color));
	border-left: 4px solid transparent;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding: 1rem;
	gap: 1rem;
	display: flex;
	align-items: center;
}

.category-links .custom-card:hover {
	background-color: rgba(var(--surface-color), .5);
}

.category-links .category-name {
	color: rgb(var(--primary-text-color));
	display: block;
}

.category-links .custom-card:hover .category-name {
	text-decoration: underline;
}

.shield-icon {
	background-image: url('https://gamcheck.co.uk/assets/img/shield-icon.webp');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	height: 30px;
}

.brand-logo {
	border: 1px solid rgb(var(--border-color));
	border-radius: 25%;
}

.brand-rating .fa {
	color: rgb(var(--rating-color));
}

.brand-cards .custom-card {
	--theme-color: rgb(var(--border-color));
	position: relative;
	background-image: linear-gradient(var(--theme-color) calc(30px + 1rem), rgb(var(--border-color)) calc(30px + 1rem), rgb(var(--border-color)) calc(30px + 1rem + 1px), transparent calc(30px + 1rem + 1px));
	padding: 1rem;
	gap: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#filter-results .brand-logo {
	width: 60px;
	height: 60px;
}

.brand-name,
.brand-domain {
	max-width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.brand-name {
	color: rgb(var(--primary-text-color));
}

.brand-cards .brand-name,
.brand-cards .brand-domain {
	margin-bottom: -1rem;
}

.brand-cards .custom-list {
	font-size: .8rem;
	width: 100%;
}

.brand-cards .custom-list li {
	border-top: 1px solid rgb(var(--border-color));
	padding: .25rem 0;
}

.brand-cards .custom-list li:last-child {
	border-bottom: 1px solid rgb(var(--border-color));
}

.brand-cards .custom-list strong {
	color: rgb(var(--primary-text-color));
}

.brand-cards .custom-badge {
	position: absolute;
	top: calc(1rem + 30px + .5rem);
	right: .5rem;
}

.brand-cards .shield-icon {
	position: absolute;
	top: calc(1rem + 60px - 20px);
	left: calc(1rem + 60px - 10px);
	width: 20px;
	height: 20px;
}

#filter-results .media {
	text-decoration: none;
	color: rgb(var(--secondary-text-color));
	border-top: 1px solid rgb(var(--border-color));
	padding: .5rem 0;
	gap: 1rem;
	align-items: center;
}

#filter-results .media:hover {
	background-color: rgba(var(--border-color), .5);
}

#filter-results .media:last-child {
	border-bottom: 1px solid rgb(var(--border-color));
}

#filter-results:has(.pagination-links) .media:last-child {
	border-bottom: none;
	margin-bottom: -1rem;
}

#filter-results .media-body {
	overflow: hidden;
}

.brand-list dt {
	margin-bottom: .25rem;
}

.brand-list:not(.columns) dd+dt {
	margin-top: 1rem;
}

.brand-list dd,
.brand-list li {
	border-top: 1px solid rgb(var(--border-color));
}

.brand-list .featured-brand {
	border: 1px solid rgb(var(--link-color)) !important;
	border-radius: var(--primary-border-radius);
	overflow: hidden;
}

.brand-list dd:has(+dt),
.brand-list dd:last-child,
.brand-list li:last-child {
	border-bottom: 1px solid rgb(var(--border-color));
}

.brand-list a {
	position: relative;
	text-decoration: none;
	text-align: left;
	color: rgb(var(--secondary-text-color));
	padding-left: calc(50px + .5rem);
	height: calc(50px + 1rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.brand-list a:hover {
	background-color: rgba(var(--border-color), .5);
}

.brand-list .featured-brand a {
	background-color: rgb(var(--link-color), .1) !important;
	padding: .5rem;
	padding-left: calc(50px + 1rem);
}

.brand-list img {
	position: absolute;
	left: 0;
	width: 50px;
	height: 50px;
}

.brand-list .featured-brand img {
	left: .5rem;
}

.brand-apps {
	--column-count: 3;
	--gap: 10px;
}

.brand-apps a {
	text-decoration: none;
	color: rgb(var(--secondary-text-color));
}

.brand-apps .brand-logo {
	margin-bottom: .5rem;
	width: 100%;
	height: auto;
}

.article-cards .custom-card {
	background-image: none;
}

.article-cards .custom-badge {
	position: unset;
	top: unset;
	right: unset;
}

.article-cards .custom-card>*:has(+.hr) {
	margin-bottom: auto;
}

.brand-page-header {
	background-color: rgb(var(--surface-color));
	border-bottom: 1px solid rgb(var(--border-color));
	padding: 1rem 0;
}

.brand-page-header img {
	width: 100px;
	height: 100px;
}

.brand-page-header .trust-badge {
	background-color: rgba(var(--badge-color), .1);
	color: rgb(var(--badge-color));
	border-radius: var(--secondary-border-radius);
	padding: 1rem;
	gap: .5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.brand-page-header .approval-badge {
	position: absolute;
	top: 0;
	right: 0;
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--secondary-border-radius);
	width: 80px;
	height: auto;
}

.brand-page-header:has(+.brand-page-subheader) {
	border-bottom: none;
}

.brand-page-subheader {
	background-color: rgb(var(--surface-color));
	background-image: linear-gradient(rgba(var(--link-color), .1), rgba(var(--link-color), .1));
	border-top: 1px solid rgb(var(--link-color));
	border-bottom: 1px solid rgb(var(--link-color));
	padding: 1rem 0;
}

.brand-details dd+dt {
	margin-top: 1rem;
}

.brand-details dd {
	color: rgb(var(--primary-text-color));
	word-break: break-word;
}

.payment-methods img {
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--secondary-border-radius);
	width: 40px;
	height: 40px;
}

#faq .custom-card {
	all: unset;
}

#faq .faq-list>div {
	border-top: 1px solid rgb(var(--border-color));
}

#faq .faq-list>div:last-child {
	border-bottom: 1px solid rgb(var(--border-color));
}

#faq .faq-list dt button {
	padding: 1rem 0;
}

#faq .faq-list dd {
	border-top: none;
}

#faq .faq-list dd>div {
	padding: 0 0 1rem 0 !important;
}

.update-list li {
	border-top: 1px solid rgb(var(--border-color));
}

.update-list li:last-child {
	border-bottom: 1px solid rgb(var(--border-color));
}

.update-list button {
	all: unset;
	padding: 1rem 0;
	width: 100%;
	gap: .5rem;
	display: flex;
	align-items: center;
}

.update-list button:hover {
	background-color: rgba(var(--border-color), .5);
}

.update-list time {
	text-align: center;
	font-size: .8rem;
	width: 50px;
	flex-shrink: 0;
}

.review-cards .custom-card {
	position: relative;
	padding: 1rem;
	gap: 1rem;
	display: flex;
	flex-direction: column;
}

.review-cards .review-user {
	background-color: transparent !important;
	height: 50px;
}

.review-cards .review-user:hover .brand-name {
	text-decoration: underline;
}

.review-cards .review-brand {
	border-top: 1px solid rgb(var(--border-color));
	border-bottom: 1px solid rgb(var(--border-color));
	height: calc(50px + 1rem + 2px);
}

.review-cards time {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: .8rem;
}

.rating-stats {
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.rating-stats .brand-rating {
	margin-left: 1rem;
	flex-grow: 1;
}

.rating-stats li {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.rating-stats progress {
	appearance: none;
	margin-left: .5rem;
	width: 100%;
	height: 6px;
}

.rating-stats progress::-webkit-progress-bar {
	background-color: rgba(var(--border-color), .5);
	border-radius: 10rem;
}

.rating-stats progress::-webkit-progress-value {
	background-color: rgb(var(--rating-color));
	border-radius: 10rem;
}

.rating-stats .fa-star-o {
	visibility: hidden;
}

#reviews .review-cards .custom-card {
	border-left: none;
	border-right: none;
	border-radius: 0;
	padding: 1rem 0;
}

#reviews .review-cards .custom-card+.custom-card {
	border-top: none;
}

#reviews .review-cards time {
	right: 0;
}

.search-category-links {
	--column-count: 2;
}

.search-category-links a {
	text-align: center;
	font-weight: bold;
	background-image: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.04) 25%, transparent 25%), linear-gradient(150deg, transparent, rgba(255, 255, 255, 0.03) 35%, transparent 35%), linear-gradient(190deg, transparent, rgba(0, 0, 0, 0.05) 40%, transparent 40%), linear-gradient(200deg, transparent, rgba(0, 0, 0, 0.04) 40%, transparent 40%), linear-gradient(185deg, transparent, rgba(0, 0, 0, 0.03) 80%, transparent 80%);
	color: #fff;
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--secondary-border-radius);
	padding: 1.5rem 0;
	display: block;
}

.ad-row {
	--bg-color: var(--surface-color);
	background-color: rgb(var(--surface-color));
	border-bottom: 1px solid rgb(var(--border-color));
}

.ad-row .brand-list.columns {
	--column-count: 1;
}

.ad-row li {
	border: none !important;
}

.ad-text {
	font-weight: bold;
	color: rgb(var(--link-color));
}

.key-features {
	--column-count: 1.5;
}

@media only screen and (min-width: 414px) {
	.brand-page-header .trust-badge {
		padding: .5rem;
		display: inline-flex;
		flex-direction: row;
	}
}

@media only screen and (min-width: 768px) {
	.home-page-header {
		padding: 5rem 0;
	}

	.category-links {
		--column-count: 4;
	}

	.brand-list.columns {
		--column-count: 2;
	}

	.key-features {
		--column-count: 5;
	}
}

@media only screen and (min-width: 992px) {
	.brand-cards {
		--column-count: 4;
	}

	.article-cards {
		--column-count: 3;
	}

	.ad-row .brand-list.columns {
		--column-count: 4;
	}
}

@media only screen and (min-width: 1200px) {
	.brand-apps {
		--column-count: 10;
	}
}

@media only screen and (min-width: 414px) and (max-width: 575px) {
	.ad-row .brand-list.columns {
		--column-count: 1.5;
	}

	.key-features {
		--column-count: 2;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.category-links {
		--column-count: 2;
	}

	.brand-cards {
		--column-count: 2;
	}

	.brand-apps {
		--column-count: 4;
	}

	.article-cards {
		--column-count: 1;
	}

	.ad-row .brand-list.columns {
		--column-count: 2;
	}

	.key-features {
		--column-count: 3;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.brand-cards {
		--column-count: 3;
	}

	.brand-apps {
		--column-count: 6;
	}

	.article-cards {
		--column-count: 2;
	}

	.ad-row .brand-list.columns {
		--column-count: 3;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.brand-apps {
		--column-count: 8;
	}
}
