:root {
	--bg-color: 18, 19, 20;
	--surface-color: 29, 30, 32;
	--primary-text-color: 255, 255, 255;
	--secondary-text-color: 164, 166, 169;
	--border-color: 48, 49, 51;
	--navbar-bg-color: 24, 25, 26;
	--navbar-primary-text-color: 255, 255, 255;
	--navbar-secondary-text-color: 148, 150, 153;
	--navbar-border-color: 55, 56, 58;
	--btn-bg-color: 255, 117, 0;
	--btn-text-color: 255, 255, 255;
	--link-color: 255, 117, 0;
	--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.55);
	--box-shadow-inset: inset 4px 4px 6px rgba(0, 0, 0, .55), inset -4px -4px 6px rgba(70, 70, 70, .15);
}

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;
}

#results {
	position: relative;
}

#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 {
	background-image: linear-gradient(#000, transparent);
	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));
	background-image: linear-gradient(#000, transparent);
	border-bottom: 1px solid rgb(var(--navbar-border-color));
	height: var(--navbar-height);
	z-index: 4;
	box-shadow: var(--box-shadow);
	white-space: nowrap;
}

.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 */

.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));
}

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

.home-page-header {
	background-image: linear-gradient(135deg, rgb(var(--surface-color)) 60%, rgba(var(--surface-color), .25) 60%);
	border-bottom: 1px solid rgb(var(--border-color));
	padding: 3rem 0;
}

.steps-list li {
	counter-increment: item;
	position: relative;
	padding-left: calc(40px + 1rem);
	min-height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.steps-list li::before {
	content: counter(item);
	position: absolute;
	left: 0;
	background-color: rgb(var(--btn-bg-color));
	color: rgb(var(--btn-text-color));
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.chevron {
	position: relative;
	border-top: 1px solid rgb(var(--bg-color));
	margin: -1px auto calc(1rem + 1px);
	width: 60px;
	height: 30px;
	display: block;
}

.chevron::before,
.chevron::after {
	content: '';
	position: absolute;
	top: 29px;
	border-top: 1px solid rgb(var(--border-color));
	width: 30px;
	height: 30px;
}

.chevron::before {
	left: 0;
	transform: skewY(45deg);
	transform-origin: top right;
}

.chevron::after {
	right: 0;
	transform: skewY(-45deg);
	transform-origin: top left;
}

.guide-list a {
	text-align: center;
	font-weight: bold;
	background-color: rgb(var(--btn-bg-color));
	background-image: linear-gradient(transparent 50%, rgba(var(--bg-color), .25));
	color: rgb(var(--btn-text-color));
	border-radius: var(--primary-border-radius);
	padding: 3rem 1rem;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: var(--box-shadow);
}

.glossary-list div,
.domain-list li {
	border-top: 1px solid rgb(var(--border-color));
	padding: 1rem 0;
}

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

.glossary-list div:hover,
.domain-list li:hover {
	background-color: rgba(var(--border-color), .5);
}

.glossary-list dt {
	color: rgb(var(--link-color));
}

.glossary-list dd {
	font-size: .8rem;
	color: rgb(var(--primary-text-color));
}

.story-list .full-width-image {
	width: 40%;
}

.story-list .media {
	border-top: 1px solid rgb(var(--border-color));
	padding: 1rem 0;
	gap: 1rem;
}

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

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

.story-list .media-body {
	align-self: center;
	overflow: hidden;
}

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

.article-cards .article-image {
	text-align: center;
	font-weight: bold;
	background-color: rgb(var(--bg-color));
	background-image: linear-gradient(transparent 50%, rgb(var(--border-color)));
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: rgb(var(--primary-text-color));
	border-bottom: 1px solid rgb(var(--border-color));
	margin-top: -1rem;
	margin-left: -1rem;
	padding: 37.5% 0;
	width: calc(100% + 2rem);
	height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.article-cards .media-body {
	align-self: center;
	overflow: hidden;
}

.article-cards .article-headline {
	color: rgb(var(--primary-text-color));
	margin-bottom: .5rem;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis
}

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

.author-link {
	text-decoration: none !important;
	font-size: .8rem;
	font-weight: bold;
	background-color: rgb(var(--border-color));
	color: rgb(var(--primary-text-color)) !important;
	border-radius: 10rem;
	padding: .5rem 1rem .5rem .5rem;
	gap: .5rem;
	display: inline-flex;
	align-items: center;
}

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

.author-link .profile-picture {
	width: 30px;
	height: 30px;
}

.author-page-header {
	text-align: center;
	background-image: radial-gradient(circle, transparent 200px, rgb(var(--surface-color)));
	border-bottom: 1px solid rgb(var(--border-color));
	padding: 3rem 0 1rem 0;
}

.author-page-header .profile-picture {
	width: 33.33%;
	max-width: 200px;
	height: auto;
}

.author-page-header .social-links img {
	border: 1px solid rgb(var(--border-color));
	border-radius: var(--secondary-border-radius);
	width: 40px;
	height: 40px;
}

.domain-list li {
	gap: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.domain-list .domain-name {
	color: rgb(var(--primary-text-color));
	word-break: break-word;
}

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

.notification-list a {
	position: relative;
	text-decoration: none;
	background-color: rgba(var(--border-color), .5);
	color: rgb(var(--secondary-text-color));
	padding: 1rem;
	gap: .5rem;
	display: flex;
	flex-direction: column;
}

.notification-list li:not(.opened) a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background-color: rgb(var(--link-color));
	width: 2px;
}

.notification-list li.opened a {
	background-color: transparent;
}

.notification-list .notification-title {
	color: rgb(var(--primary-text-color));
}

.notification-list li.opened .notification-title {
	font-weight: normal;
}

.notification-list a:hover .notification-title {
	text-decoration: underline;
}

.notification-list .notification-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#filters .faq-list dd {
	background-color: rgba(var(--border-color), .5);
}

#applied-filters:not(:has(*)) {
	display: none;
}

.pill-btn {
	font-size: .8rem;
	background-color: transparent;
	color: rgb(var(--primary-text-color));
	border: 1px solid rgb(var(--border-color));
	border-radius: 10rem;
	padding: .5rem 1rem;
	gap: .5rem;
	display: flex;
	align-self: stretch;
	align-items: center;
}

.pill-btn img {
	border: 1px solid rgb(var(--border-color));
	border-radius: 10rem;
	margin-right: -.25rem;
	width: 20px;
	height: 20px;
}

.pill-btn:has(img) {
	padding-left: .5rem;
}

.pill-btn:hover,
.pill-btn.active {
	border-color: rgb(var(--link-color));
}

.pill-btn.active {
	font-weight: bold;
	background-color: rgba(var(--link-color), .1);
	box-shadow: var(--box-shadow-inset);
}

.report-stat-cards {
	--column-count: 2;
	--gap: 7.5px;
}

.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;
}

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

.brand-cards .brand-name {
	color: rgb(var(--primary-text-color));
	max-width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.brand-cards .custom-list {
	width: 100%;
}

.brand-cards .custom-list li {
	font-size: .9rem;
	font-weight: bold;
	color: rgb(var(--primary-text-color));
	border-top: 1px solid rgb(var(--border-color));
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.brand-cards .custom-list strong {
	font-size: .8rem;
	font-weight: normal;
	color: rgb(var(--secondary-text-color));
}

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

.brand-cards .flag {
	position: absolute;
	top: calc(1rem + 60px - 20px);
	left: calc(1rem + 60px - 10px);
	border: 1px solid rgb(var(--border-color));
	border-radius: 50%;
	width: 20px;
	height: 20px;
}

.campaign-cards .custom-card {
	padding: 1rem;
	display: flex;
	flex-direction: column;
}

.campaign-cards a.custom-card:first-child {
	text-decoration: none;
	background-color: rgba(var(--surface-color), .25);
	border-style: dashed;
	justify-content: center;
	align-items: center;
}

.campaign-cards a.custom-card:first-child:hover {
	border-color: rgb(var(--link-color));
}

.copy-btn.copied {
	background-color: rgb(var(--success-color));
	border-color: rgb(var(--success-color));
	color: #fff;
}

input.form-control[type=color] {
	padding: 0;
	overflow: hidden;
}

input.form-control[type=color]::-webkit-color-swatch-wrapper {
	padding: 0;
}

.editor-btns {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgb(var(--navbar-bg-color));
	border-top: 1px solid rgb(var(--navbar-border-color));
	padding: 1rem;
	display: flex;
	z-index: 4;
}

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

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

.footer-links a {
	font-size: .9rem;
	padding: .5rem 0;
	display: block;
}

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

@media only screen and (max-width: 575px) {
	.story-list .media {
		flex-direction: column;
	}

	.story-list .full-width-image {
		width: 100%;
	}
}

@media only screen and (min-width: 576px) {
	.service-cards {
		--column-count: 2;
	}

	.guide-list {
		--column-count: 2;
	}
}

@media only screen and (min-width: 768px) {
	.steps-list {
		--column-count: 3;
	}

	.report-stat-cards {
		--column-count: 4;
	}

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

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

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

@media only screen and (min-width: 402px) and (max-width: 575px) {
	.article-cards .custom-card {
		position: relative;
		padding-left: calc(33.33% + 1rem);
	}

	.article-cards .article-image {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		background-image: linear-gradient(to right, transparent, rgb(var(--border-color)));
		border-right: 1px solid rgb(var(--border-color));
		border-bottom: none;
		margin: 0;
		padding: 0;
		width: 33.33%;
		height: 100%;
	}
}

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

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

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

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