:root {
	--primary-color: #f1c33c;
	--primary-color-s: #000000;
	--secondary-color: #948159;
	--light-secondary-color: rgb(43, 115, 188);
	--secondary-color-s: #dddddd;
	--link-color: #5db4fb;
	--link-color-2: #66bcf5;
	--link-secondary-color: #9980e5;
	--nav-color: rgb(32, 32, 32);
	--white-color: #ffffff;
	--white-text-color: rgba(255, 255, 255, 0.87);
	--black-color: #333333;
	--gray-color: #909090;
	--dark-grey-color: #242424;
	--dark-grey-color-s: #1a1a1a;
	--light-gray-color: rgb(158, 166, 173);
	--green-color: rgb(67, 187, 65);
	--blue-color: rgb(0, 140, 135);
	--orange-color: rgb(204, 75, 0);
	--red-color: rgb(163, 15, 12);
	--light-red-color: rgb(255, 122, 122);
	--pink-color: rgb(147, 112, 219);
	--pink-color-2: #c1a3ff;

	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;

	color: var(--white-text-color);
	background-color: var(--dark-grey-color);

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

body.prefers-enlarge-text {
	font-size: 20px;
}

[role="alert"]:empty {
	display: none;
}

#search-page .filter-nav .list li.focus {
	background: var(--black-color);
	outline: dotted;
}

#search-page .filter-nav .list li {
	border: none;
}

#search-page .list li:first-child {
	border-top: none;
}

.app span,
.app b,
.app u,
.app i {
	font-size: inherit;
}

.app p,
.app li,
.app a,
.app span,
.app input,
.app label,
.app div,
.app button,
.app textarea,
.app select,
.app option {
	font-family: Montserrat, Verdana, sans-serif;
}

button {
	color: inherit;
}

*:focus,
button:focus,
input:focus {
	outline: 2px solid var(--white-color);
	outline-offset: 2px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
	z-index: 999;
}

/* loading for text  */
[data-translate].text-loading,
[data-placeholder-translate].text-loading {
	color: transparent;
	background: var(--black-color);
	background: linear-gradient(100deg,
			var(--dark-grey-color-s) 30%,
			var(--black-color) 50%,
			var(--dark-grey-color-s) 70%);
	background-size: 400%;

	animation: text-loading 1.2s ease-in-out infinite;
}

@keyframes text-loading {
	0% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0 50%;
	}
}

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

a:hover,
a:focus {
	color: var(--link-secondary-color);
}

a:focus {
	box-shadow: 0 0 5px var(--link-secondary-color);
}

a[onclick] {
	cursor: pointer;
}

a.no-underline {
	text-decoration: none;
}

section.lighter {
	background: rgba(138, 138, 138, 0.45);
}

button,
.button {
	position: relative;
	padding: 10px 15px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
	transition: all 250ms linear;
	font-weight: bold;
	font-size: inherit;
}

button.text-btn,
.button.text-btn {
	color: var(--primary-color);
	background: none;
	transition: all 250ms linear;
}

button.icon,
.button.icon {
	padding: 0px 10px;
	margin: auto 0;
	font-size: 1rem;
	background: none;
}

button.icon:hover,
.button.icon:hover,
button.icon:focus,
.button.icon:focus {
	color: var(--primary-color);
}

button.white,
.button.white {
	background: var(--white-color);
	color: var(--black-color);
}

button.white:hover,
.button.white:hover,
button.white:focus,
.button.white:focus {
	background: #e1e1e1;
	color: var(--black-color);
}

button.white.active,
.button.white.active {
	color: var(--black-color);
}

button[disabled],
button[disabled]:hover,
button[disabled]:focus {
	background: var(--light-gray-color);
	color: var(--gray-color);
	cursor: default;
}

button.loading,
button.loading:hover,
button.loading:focus {
	color: transparent !important;
	display: inline-block;
}

button.loading:before {
	font-family: "Font Awesome 5 Pro";
	content: "\f3f4";
	display: block;
	vertical-align: middle;
	color: var(--black-color);
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 1.5rem;
	animation: loading-spin 1s ease-in-out infinite;
}

.universal-nav-top button {
	padding: initial;
	font-weight: initial;
}

input,
textarea,
select {
	padding: 10px 15px 8px 15px;
	border-radius: 3px;
	border: 2px solid #757575;
	font-size: 1rem;
	font-family: "Montserrat", sans-serif;
}

input::placeholder {
	color: var(--gray-color);
}

input[type="checkbox"],
input[type="radio"] {
	min-width: auto;
}

input:focus,
textarea:focus,
select:focus {
	border: 2px solid var(--primary-color);
}

hr {
	border-color: rgba(255, 255, 255, 0.5);
	margin: 0;
	border-width: 1px 0 0;
	width: 100%;
}

.button.uppercase,
button.uppercase {
	padding: 12px 26px;
}

.uppercase {
	text-transform: uppercase;
}

.m-0 {
	margin: 0 !important;
}

.m-1 {
	margin: 0.75rem !important;
}

.m-2 {
	margin: 1.5rem !important;
}

.p-0 {
	padding: 0 !important;
}

.p-1 {
	padding: 0.75rem !important;
}

.p-2 {
	padding: 1.5rem !important;
}

.p-3 {
	padding: 3rem !important;
}

.p-4 {
	padding: 4.5rem !important;
}

.pl-1 {
	padding-left: 0.75rem !important;
}

.pl-2 {
	padding-left: 1.5rem !important;
}

.pl-3 {
	padding-left: 3rem !important;
}

.pl-4 {
	padding-left: 4.5rem !important;
}

.pr-1 {
	padding-right: 0.75rem !important;
}

.pr-2 {
	padding-right: 1.5rem !important;
}

.pt-1 {
	padding-top: 0.75rem !important;
}

.pt-2 {
	padding-top: 1.5rem !important;
}

.pb-1 {
	padding-bottom: 0.75rem !important;
}

.pb-2 {
	padding-bottom: 1.5rem !important;
}

.px-1 {
	padding-left: 0.75rem !important;
	padding-right: 0.75rem !important;
}

.px-2 {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}

.py-1 {
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
}

.py-2 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.mt-05 {
	margin-top: 0.375rem !important;
}

.mt-1 {
	margin-top: 0.75rem !important;
}

.mt-2 {
	margin-top: 1.5rem !important;
}

.mt-3 {
	margin-top: 3rem !important;
}

.mt-4 {
	margin-top: 4.5rem !important;
}

.mt-5 {
	margin-top: 9rem !important;
}

.mt-auto {
	margin-top: auto !important;
}

.ml-05 {
	margin-left: 0.375rem !important;
}

.ml-1 {
	margin-left: 0.75rem !important;
}

.ml-2 {
	margin-left: 1.5rem !important;
}

.ml-3 {
	margin-left: 3rem !important;
}

.ml-auto {
	margin-left: auto !important;
}

.mr-0 {
	margin-right: 0 !important;
}

.mr-05 {
	margin-right: 0.375rem !important;
}

.mr-1 {
	margin-right: 0.75rem !important;
}

.mr-2 {
	margin-right: 1.5rem !important;
}

.mr-3 {
	margin-right: 3rem !important;
}

.mr-4 {
	margin-right: 4.5rem !important;
}

.my-1 {
	margin-top: 0.75rem !important;
	margin-bottom: 0.75rem !important;
}

.my-2 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

.my-3 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important;
}

.mx-auto {
	margin-left: auto !important;
	margin-right: auto !important;
}

.mx-1 {
	margin-left: 0.75rem !important;
	margin-right: 0.75rem !important;
}

.mx-2 {
	margin-left: 1.5rem !important;
	margin-right: 1.5rem !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: 0.75rem !important;
}

.mb-2 {
	margin-bottom: 1.5rem !important;
}

.mb-3 {
	margin-bottom: 3rem !important;
}

.mb-4 {
	margin-bottom: 4.5rem !important;
}

.mb-5 {
	margin-bottom: 9rem !important;
}

.mb-auto {
	margin-bottom: auto !important;
}

.flex {
	display: flex !important;
}

.overflow-auto {
	overflow: auto;
}

.w-25 {
	width: 25%;
}

.w-33 {
	width: 33.3333%;
}

.w-50 {
	width: 50%;
}

.w-75 {
	width: 75%;
}

.w-100 {
	width: 100%;
}

.min-vh-20 {
	min-height: 20vh;
}

.min-vh-100 {
	min-height: 100vh;
}

.h-25 {
	height: 25%;
}

.h-33 {
	height: 33.3333%;
}

.h-50 {
	height: 50%;
}

.h-75 {
	height: 75%;
}

.h-100 {
	height: 100%;
}

.clear {
	clear: both;
}

.clear::after {
	content: " ";
	display: block;
	clear: both;
}

.black-background {
	background: var(--black-color);
}

.text-white {
	color: var(--white-color) !important;
}

a.text-white:hover {
	color: var(--link-secondary-color) !important;
}

.text-muted {
	color: var(--gray-color) !important;
}

.text-black {
	color: var(--black-color) !important;
}

.text-font-bold {
	font-family:
		"Trade Gothic Bold Condensed No20",
		Arial Narrow,
		sans-serif !important;
}

.text-small {
	font-size: 0.75rem !important;
	line-height: 1rem;
}

.text-small a,
.text-small p,
.text-small span,
.text-small div {
	font-size: 1em;
}

.text-slightly-smaller {
	font-size: 0.9em !important;
	line-height: 1em;
}

.text-reset-size {
	font-size: 1rem !important;
	line-height: 1.25rem;
}

.text-medium {
	font-size: 1.25em !important;
	line-height: 1.5em;
}

.text-medium-2 {
	font-size: 1.1em !important;
	line-height: 2em;
}

.text-large {
	font-size: 1.75em !important;
	line-height: 2em;
}

.text-xl {
	font-size: 2.75em !important;
	line-height: 3.5rem;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-primary-color {
	color: var(--primary-color) !important;
}

.text-green {
	color: var(--green-color) !important;
}

.text-blue {
	color: var(--blue-color) !important;
}

.text-orange {
	color: var(--orange-color) !important;
}

.text-red {
	color: var(--red-color) !important;
}

.text-light-red {
	color: var(--light-red-color) !important;
}

.text-teal-300 {
	color: rgba(0, 208, 200, 1);
}

.text-green-400 {
	color: rgba(0, 207, 99, 1);
}

.text-yellow-600 {
	color: rgba(255, 176, 0, 1);
}

.text-red-700 {
	color: rgba(235, 61, 26, 1);
}

.text-shadow {
	text-shadow: 0 0 3px var(--black-color);
}

.form-group {
	margin-bottom: 2rem;
}

.form-group.required.invalid input,
.form-group.required.invalid textarea,
.form-group.required.invalid select {
	border-color: var(--red-color);
}

.invalid-reason {
	display: none;
}

.form-group.required.invalid [data-focused="true"]:not(:focus)~.invalid-reason {
	color: var(--light-red-color);
}

.form-group.required.invalid[data-invalid-reason="required"][data-focused="true"]:not(:focus) .invalid-reason-required {
	color: var(--light-red-color);
	display: block;
}

.form-group.required.invalid[data-invalid-reason="required"] [data-focused="true"]:not(:focus)~.invalid-reason-required {
	display: block;
}

.form-group.required.invalid[data-invalid-reason="required"] [aria-expanded="true"][data-focused="true"]:not(:focus)~.invalid-reason-required {
	display: none !important;
}

.form-group.required.invalid[data-invalid-reason="required"] [aria-expanded="false"][data-focused="true"]:not(:focus)~.invalid-reason-required {
	display: block;
}

.form-group.required.invalid[data-invalid-reason="email"] [data-focused="true"]:not(:focus)~.invalid-reason-email {
	display: block;
}

.form-group.required.invalid[data-invalid-reason="number"] [data-focused="true"]:not(:focus)~.invalid-reason-number {
	display: block;
}

.checkbox-group.required.invalid input {
	box-shadow: 0px 0px 0px 2px var(--red-color);
}

.form-group .label {
	margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
	width: auto;
}

.form-group input[type="file"]:focus+div label.outline-rounded-btn.primary-color {
	background: var(--primary-color);
	color: var(--primary-color-s);
	box-shadow: 0 0 5px var(--primary-color);
}

.form-group button:last-child,
.form-group .button:last-child,
.form-group input:last-child {
	margin-right: 0;
}

.form-group.right {
	justify-content: flex-end;
}

.form-group.right button,
.form-group.right .button,
.form-group.right input {
	margin-right: 0;
	margin-left: 15px;
}

.form-group .multiselect-scroll {
	max-height: 125px;
	overflow-y: auto !important;
}

.auto-complete-input {
	position: relative;
	display: flex;
	flex-direction: column;
}

.auto-complete-input input {
	padding: 0.5em 1em;
	font-size: 1em;
	line-height: 1.2;
}

.auto-complete-input .result-list {
	list-style: none;
	padding: 0;
	margin: 0;
	min-width: 120px;
	max-height: 200px;
	overflow: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	color: #1a1a1a;
	transform: translate(0, 100%);
	z-index: 9999;
}

.auto-complete-input .result-list li {
	list-style: none;
	padding: 0.5em 1em;
	font-size: 1em;
	line-height: 1.2;
}

.auto-complete-input .result-list li:hover,
.auto-complete-input .result-list li.auto-complete-focus {
	color: #fff;
	background: rgba(0, 0, 0, 0.72);
}

.input-group {
	border: 2px solid #757575;
	display: flex;
	background: var(--dark-grey-color);
}

.input-group div.icon {
	margin: auto 0;
	padding: 0 0 0 16px;
}

.input-group input,
.input-group textarea,
.input-group select {
	border-radius: 0;
	border: none;
	padding: 10px 15px 8px 15px;
	background: transparent;
	min-width: 250px;
	font-size: 1rem;
	font-family: "Montserrat", sans-serif;
	width: 100%;
	color: var(--white-text-color);
}

.input-group input:focus,
.input-group textarea:focus {
	border: none;
}

.input-group:hover,
.input-group:focus {
	border: 2px solid var(--primary-color);
}

.input-group.large input,
.input-group.large textarea,
.input-group.large select {
	font-size: 1.25rem;
}

.input-group.large .icon {
	font-size: 1rem;
}

.headline {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
}

table {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}

table th {
	font-size: 18px;
	color: var(--black-color);
	line-height: 1.4;
	background-color: var(--primary-color);
	padding-top: 16px;
	padding-bottom: 16px;
}

table td {
	padding-top: 16px;
	padding-bottom: 16px;
	padding-right: 16px;
}

table td:nth-child(1) {
	padding-left: 32px;
}

table tr:nth-child(2n) {
	background-color: var(--dark-grey-color-s);
}

.text-normal {
	font-weight: normal;
}

.bold,
.text-bold {
	font-weight: 700;
}

.list {
	line-height: 20px;
}

.list li:first-child {
	border-top: 1px solid #ccc;
}

.list li {
	display: flex;
	border: 1px solid #ccc;
	border-width: 0 1px 1px 1px;
	align-items: center;
}

.list .list-icon {
	display: block;
	font-size: 24px;
	width: 80px;
	height: 80px;
	min-width: 80px;
	min-height: 80px;
	text-align: center;
}

.list .list-icon img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.list .list-meta {
	margin: auto 0 auto auto;
}

.contain-image {
	width: 100%;
	object-fit: contain;
	height: auto !important;
}

ul.unordered-list {
	list-style: disc;
}

ul.unordered-list li {
	margin-left: 1em;
}

/* Utilities - Checkboxes */
.checkbox {
	position: relative;
	display: inline-block;
	padding-left: 30px;
	line-height: 30px;
}

.checkbox::before {
	content: "";
	display: block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 7px;
	left: 7px;
	border: 2px solid var(--gray-color);
	border-radius: 2px;
}

.checkbox.checkbox-round:before {
	border-radius: 100%;
}

.checkbox.active::after {
	font-family: "Font Awesome 5 Pro";
	display: block;
	font-size: 0.8rem;
	content: '\f00c';
	position: absolute;
	top: 0px;
	left: 9px;
	color: var(--white-color);
}

.main-wrapper h2,
.main-wrapper h3,
.main-wrapper h4 {
	text-transform: uppercase;
	overflow-wrap: break-word;
}

.btn-primary {
	background: var(--primary-color);
	color: var(--primary-color-s);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--primary-color);
}

.btn-primary.loading::before {
	color: var(--primary-color-s);
}

.btn-light-primary {
	background: #00d0c8;
}

.btn-light-primary:hover,
.btn-light-primary:focus {
	opacity: 0.75;
}

.btn-white-primary {
	background: var(--white-color);
	color: var(--black-color);
}

.btn-white-primary:hover,
.btn-white-primary:focus {
	opacity: 0.75;
}

.btn-grey-primary {
	background: #e1e1e1;
	color: var(--black-color);
}

.btn-grey-primary:hover,
.btn-grey-primary:focus {
	background: #fff;
}

.outline-rounded-btn {
	background-color: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	border-radius: 999px;
	padding: 8px 20px;
	text-transform: none;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
}

.outline-rounded-btn .icon {
	margin-right: 0.25em;
}

.outline-btn {
	background-color: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	border-radius: 2px;
	text-transform: none;
	display: inline-block;
	cursor: pointer;
	min-width: unset;
}

.outline-btn.primary-color,
.outline-rounded-btn.primary-color {
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

.outline-btn.primary-color:hover,
.outline-rounded-btn.primary-color:hover,
.outline-btn.primary-color:focus,
.outline-rounded-btn.primary-color:focus {
	background: var(--primary-color);
	color: var(--primary-color-s);
	box-shadow: 0 0 5px var(--primary-color);
}

.outline-btn.black-color,
.outline-rounded-btn.black-color {
	border: 1px solid var(--black-color);
	color: var(--black-color);
}

.outline-btn.black-color:hover,
.outline-rounded-btn.black-color:hover,
.outline-btn.black-color:focus,
.outline-rounded-btn.black-color:focus {
	background: var(--black-color) !important;
	color: var(--white-color);
}

.outline-btn.black-color.loading,
.outline-btn.black-color.loading {
	color: transparent !important;
}

.outline-btn.black-color.loading::before,
.outline-rounded-btn.black-color.loading::before {
	color: var(--black-color);
}

.outline-btn.black-color.loading:hover::before,
.outline-btn.black-color.loading:focus::before,
.outline-rounded-btn.black-color.loading:hover::before,
.outline-rounded-btn.black-color.loading:focus::before {
	color: var(--white-color);
}

.outline-btn.gray-color,
.outline-rounded-btn.gray-color {
	border: 1px solid var(--gray-color);
	color: var(--gray-color);
}

.outline-btn.gray-color:hover,
.outline-rounded-btn.gray-color:hover,
.outline-btn.gray-color:focus,
.outline-rounded-btn.gray-color:focus {
	background: var(--gray-color) !important;
	color: var(--white-color);
}

section.header {
	position: relative;
	color: var(--white-color);
	height: 60px;
	flex-shrink: 0;
	overflow: hidden;
}

.result-list {
	position: absolute;
	background: var(--white-color);
	left: 0;
	right: 0;
	z-index: 999;
}

.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.position-top-right {
	right: 0;
	top: 0;
}

.position-top-left {
	left: 0;
	top: 0;
}

div.section {
	padding: 20px 0;
}

div.card-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

a.card {
	color: var(--white-text-color);
	text-decoration: none;
	cursor: pointer;
}

a.card2 {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.card2 {
	position: relative;
	padding: 2em;
	background: var(--dark-grey-color-s);
	border-radius: 0.5em;
	text-align: left;
	border: 1px solid transparent;
	transition: border-color 0.25s;
	display: flex;
	align-content: space-between;
	flex-direction: column;
}

.card2:hover {
	border-color: var(--secondary-color);
}

.card2.no-hover:hover {
	border-color: transparent;
}

.card2-body {
	padding: 2px 16px;
}

.card2-sub-title {
	font-size: 0.75em;
}

.card,
a.card {
	transition: all 0.2s ease-in-out;
	background: var(--dark-grey-color-s);
	border-radius: 5px;
	overflow: hidden;
	display: block;
}

.card.flat {
	border-radius: 0px;
	overflow: hidden;
}

.card.flat-rounded {
	overflow: hidden;
}

.card.outline {
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid var(--gray-color);
}

.card.flat-rounded:hover,
.card.flat-rounded:focus,
.card.flat:hover,
.card.flat:focus,
.card.outline:hover,
.card.outline:focus {
	position: relative;
	transform: none;
	box-shadow: none;
}

.card.outline:focus {
	border: 1px solid var(--primary-color);
}

.card:hover,
.card:focus {
	position: relative;
	transform: translateY(-6px);
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}

.card.slide:hover,
.card.slide:focus {
	position: relative;
	transform: translateX(-6px);
	box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.18);
}

.card.row {
	display: flex;
}

.card>img {
	width: 100%;
}

.card .card-title {
	padding: 10px 15px;
}

.card .card-body {
	padding: 0px 15px 10px;
}

.card .card-content {
	padding: 10px 15px;
}

.card .card-content .card-title {
	padding: 0;
	padding-bottom: 0.25rem;
}

.card .card-content .card-body {
	padding: 0;
}

.loading-text-small {
	background: #e0e0e0;
	background: linear-gradient(270deg, #e0e0e0, var(--white-color));
	background-size: 400% 400%;
	padding: 0;
	height: 20px;
	width: 80%;

	-webkit-animation: loading-card 2s ease infinite;
	-moz-animation: loading-card 2s ease infinite;
	animation: loading-card 2s ease infinite;
}

.card.loading-small .card-title,
.card.loading-small .card-body {
	background: var(--black-color);
	background: linear-gradient(270deg,
			var(--dark-grey-color-s),
			var(--black-color));
	background-size: 400% 400%;

	-webkit-animation: loading-card 2s ease infinite;
	-moz-animation: loading-card 2s ease infinite;
	animation: loading-card 2s ease infinite;
}

.card.loading-small .card-title {
	margin: 10px 15px;
	padding: 0;
	height: 20px;
	width: 80%;
}

.card.loading-small .card-body {
	margin: 0px 15px 10px;
	padding: 0;
	height: 60px;
}

@-webkit-keyframes loading-card {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@-moz-keyframes loading-card {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes loading-card {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.card-menu .product {
	margin: 0;
	padding: 5px;
	flex-grow: 0;
	max-width: calc(100% / 6);
	flex-basis: calc(100% / 6);
}

.card-menu .product .card {
	width: 100%;
	height: 100%;
}

.card-menu .product .card img {
	width: 100%;
	height: 14vw;
	object-fit: cover;
	max-height: 260px;
}

.card-menu .product .card .card-body p {
	font-size: 0.85rem;
}

.secondary-background {
	background: var(--secondary-color);
	color: var(--secondary-color-s);
}

.dark-blue-back {
	background: var(--secondary-color);
	color: var(--secondary-color-s);
}

.btn-group-vertical {
	display: flex;
	flex-direction: column;
}

.btn-group-vertical button,
.btn-group-vertical .button {
	border-radius: 0;
	text-align: left;
	border-bottom: 1px solid var(--gray-color);
	padding: 15px 20px;
	font-weight: normal;
	font-size: 0.85rem;
	line-height: 1.6;
	letter-spacing: 1px;
	background: var(--dark-grey-color-s);
	color: var(--white-text-color);
}

.btn-group-vertical span {
	font-size: 0.85rem;
}

.btn-group-vertical button:first-child,
.btn-group-vertical .button:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.btn-group-vertical button:last-child,
.btn-group-vertical .button:last-child {
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	border-bottom: none;
}

.btn-group-vertical button.active,
.btn-group-vertical .button.active,
.btn-group-vertical[role="tablist"] .button[role="tab"][aria-selected="true"] {
	font-weight: bold;
	border-bottom: solid 2px var(--white-text-color);
}

.btn-group-horizontal {
	display: flex;
	flex-direction: row;
}

.btn-group-horizontal button,
.btn-group-horizontal .button {
	border-radius: 0;
	text-align: center;
	border-bottom: 1px solid var(--gray-color);
	padding: 15px 20px;
	font-weight: normal;
	font-size: 0.85rem;
	line-height: 1.6;
	letter-spacing: 1px;
	background: var(--dark-grey-color-s);
	color: var(--white-text-color);
	flex: 1 1 auto;
}

.btn-group-horizontal span {
	font-size: 0.85rem;
}

.btn-group-horizontal button:first-child,
.btn-group-horizontal .button:first-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.btn-group-horizontal button:last-child,
.btn-group-horizontal .button:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.btn-group-horizontal button.active,
.btn-group-horizontal .button.active,
.btn-group-horizontal[role="tablist"] .button[role="tab"][aria-selected="true"] {
	font-weight: bold;
	border-bottom: solid 2px var(--white-text-color);
}

.tags {
	display: flex;
	margin: 10px 0;
}

.tags .tag,
.pill {
	display: inline-block;
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	font-size: 0.9rem !important;
	font-weight: normal;
	text-transform: none;
	border-radius: 20px;
	padding: 5px 10px;
	margin-right: 10px;
}

.fill-pill {
	display: inline-block;
	background-color: var(--black-color);
	border: 1px solid var(--white-color);
	color: var(--white-color);
	font-size: 0.9rem !important;
	text-transform: none;
	border-radius: 20px;
	padding: 5px 10px;
	margin-right: 10px;
	font-weight: normal;
}

.fill-pill.small {
	border: none;
	font-size: 0.75rem !important;
	padding: 2px 10px;
	margin-right: 0;
	font-weight: normal;
}

.fill-pill>span {
	font-size: 0.9rem !important;
	font-weight: normal;
}

.fill-pill.white {
	background-color: var(--white-color);
	border: 1px solid var(--black-color);
	color: var(--black-color);
}

.pill.white {
	background: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
}

.pill.white.active,
.button.pill.white:hover,
.button.pill.white:focus {
	background-color: var(--white-color);
	border: 1px solid var(--white-color);
	color: var(--black-color);
}

.pill.active,
.button.pill:hover,
.button.pill:focus {
	background-color: var(--primary-color);
	color: var(--black-color);
}

.pill.secondary-color {
	background: transparent;
	border: 1px solid var(--secondary-color-s);
	color: var(--secondary-color-s);
}

.pill.secondary-color.active,
.button.pill.secondary-color:hover,
.button.pill.secondary-color:focus {
	background-color: var(--secondary-color-s);
	border: 1px solid var(--secondary-color-s);
	color: var(--secondary-color);
}

.tags .tag .close,
.pill .close {
	color: var(--black-color);
	margin: 0 0 0 6px;
	padding: 0;
	cursor: pointer;
}

.tab {
	padding: 15px;
	text-align: center;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	color: #606060;
	background: var(--dark-grey-color-s);
	color: var(--white-text-color);
	cursor: pointer;
	border-radius: 0;
}

a.tab {
	text-decoration: none;
}

.tab[aria-selected="true"] {
	background: var(--white-color);
	color: var(--black-color);
	border-bottom: 2px solid var(--white-color);
	font-weight: bold;
}

.tab:hover,
.tab:focus {
	color: var(--dark-grey-color-s);
	background: var(--gray-color);
}

.tab-full {
	display: flex;
}

.tab-full .tab {
	flex: 1 0 auto;
}

#search-bar {
	margin: 30px auto 0;
}

#search .has-results .input-group {
	border-bottom: 2px solid var(--primary-color);
}

#search .has-results .result-list {
	border: 2px solid var(--primary-color);
	border-top: none;
}

#search-bar input {
	width: 100%;
	font-size: 20px;
	padding: 0;
	border: 0;
}

#search-bar .form-group i {
	margin: 0 5px;
	font-size: 22px;
	color: #757575;
}

#search-bar>div {
	padding: 10px;
	display: flex;
}

#search-results {
	position: absolute;
	background: var(--white-color);
	border-width: 0 2px 2px 2px;
	border-radius: 0 0 5px 5px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 1;
	text-align: left;
	overflow: hidden;
}

#search-results li {
	color: var(--black-color);
}

#messages .message .row.title-back {
	background: #175384;
}

#messages .message .title {
	padding: 10px 32px;
	margin: 0 auto;
	max-width: 1680px;
	display: block;
	color: var(--white-color);
	font-size: 1.2em;
}

#messages .message .image {
	min-width: 24px;
}

#messages .message span.icon,
.step-alert .message span.icon {
	display: block;
	width: 32px;
	float: left;
	text-align: center;
	font-size: 1em;
	color: var(--black-color);
	padding: 10px 5px;
}

#messages .message .row.body-back {
	background: var(--white-color);
	border-bottom: solid 4px #175384;
}

#messages .message .card-body {
	font-size: 1rem;
}

#messages .message.warning .row.title-back {
	background: #994f4f;
	color: var(--white-color);
}

#messages .message.warning .row.body-back {
	border-bottom: solid 4px #994f4f;
}

#messages .message.info .row.title-back {
	background: var(--primary-color);
}

#messages .message.info .row.body-back {
	border-bottom: solid 4px var(--primary-color);
}

#answer-window>h2 {
	width: 100%;
}

#answer-window .answer {
	position: relative;
}

#answer-window .answer.active {
	box-shadow: 0px 0px 999px 999px rgba(237, 237, 237, 0.72);
	z-index: 1;
}

a.list-item {
	color: var(--black-color);
	text-decoration: none;
}

.list-item {
	display: flex;
	cursor: pointer;
	padding: 15px;
}

.list-item:hover,
.list-item:focus {
	background-color: #ececec;
}

.list-item>i {
	font-size: 24px;
	padding-right: 10px;
	width: 40px;
	text-align: center;
	margin: auto 0;
}

.list-item .title {
	font-size: 1.2em;
}

.list-item .list-meta .button,
.list-item .list-meta button {
	font-size: 1rem;
}

.float-right {
	float: right;
}

.pagination {
	font-size: 18px;
}

.pagination li {
	list-style: none;
	float: left;
}

.pagination .page-item {
	color: var(--light-gray-color);
	background: transparent;
	font-size: 18px;
	border-radius: 0;
	font-weight: normal;
}

.pagination .page-item:hover,
.pagination .page-item:focus {
	color: var(--white-text-color);
}

.pagination .page-item.active {
	border-bottom: 2.5px solid var(--secondary-color);
	background-color: transparent;
	color: var(--white-text-color);
}

#answer-window .answer .card {
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

.answer .card {
	flex-wrap: nowrap;
	flex-direction: column;
}

#answer-window .answer .card2 {
	padding: 15px;
	display: flex;
	align-content: space-between;
}

.answer .card2 {
	flex-wrap: nowrap;
	flex-direction: column;
}

.answer .answer-body a:visited {
	color: var(--link-secondary-color);
}

/* Loading */
.loading {
	display: none;
}

.loading.active {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 999;
}

section.loading.active {
	position: fixed;
	background: rgba(0, 0, 0, 0.7);
}

.loading.active .icon {
	position: absolute;
	background: url("../img/loading.svg") no-repeat;
	background-size: contain;
	width: 120px;
	height: 120px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: loading-spin 2s ease-in-out infinite;
}

@keyframes loading-spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

#product-background {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -2;
	margin: 0 -15px;
	overflow: hidden;
}

#product-background .image::after {
	position: absolute;
	content: " ";
	display: block;
	inset: 0;
	background: linear-gradient(to bottom, transparent, #242424);
}

#product-background .image {
	height: 100%;
}

#product-background .image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#product-background .filter {
	background: rgba(237, 237, 237, 1);
	background: radial-gradient(circle,
			rgba(237, 237, 237, 0.75) 0%,
			rgba(237, 237, 237, 1) 75%);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

/* Answer-Page */
.answer-response {
	margin: 20px 0;
}

#answer-page p {
	margin-bottom: 0.6em;
}

h2.heading {
	text-transform: unset;
	overflow-wrap: unset;
	font: revert;
	font-size: 1em;
}

#answer-page .answer-body img {
	max-width: 100%;
	object-fit: contain;
	height: auto !important;
}

#answer-page .list {
	font-size: 1rem;
}

#answer-page ol {
	list-style: decimal;
}

#answer-page ul {
	list-style: revert;
}

#answer-page .answer-body {
	line-height: 20px;
}

#answer-page .answer-menu .dropdown-menu {
	position: fixed;
	bottom: 60px;
	left: 0;
	right: 0;
	background: var(--nav-color);
	transform: none;
	max-height: calc(100vh - 60px);
	overflow: auto;
}

spoiler {
	position: relative;
	display: block;
	min-height: 100px;
}

spoiler.hide-spoiler>*:not(overlay) {
	display: none;
}

spoiler.hide-spoiler>overlay {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #4b4b4b;
	text-align: center;
	opacity: 1;
}

spoiler>overlay {
	display: none;
}

#answer-page .back-to-top-wrapper {
	position: relative;
	height: 100%;
	pointer-events: none;
}

#answer-page .back-to-top-link {
	position: fixed;
	position: sticky;
	pointer-events: all;
	top: calc(100% - 7.5rem);
	display: inline-block;
	text-align: center;
	transition: -webkit-transform 80ms ease-in;
}

/* Incident-Page */
#incident-page .incident>label {
	display: block;
	font-size: 16px;
	padding-bottom: 10px;
}

#incident-page .incident .file .content {
	background: var(--dark-grey-color-s);
	display: block;
}

#incident-page .incident .file .triangle {
	display: flex;
	flex-direction: column;
}

#incident-page .incident .file .triangle .fill {
	height: 100%;
	background: var(--dark-grey-color-s);
}

#incident-page .incident .file .triangle::after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-top: 12px solid var(--secondary-color);
	border-right: 12px solid transparent;
}

#incident-list-page tbody tr {
	cursor: pointer;
}

#incident-list-page tr:hover {
	background: lightsteelblue;
}

#incident-list-page tr.warning {
	border-left: solid 2px #f91212;
	color: #f91212;
}

#incident-list-page tr.warning td:nth-child(1) {
	padding-left: 12px;
}

#incident-list-page .list .incident {
	cursor: pointer;
	color: var(--white-text-color);
}

#incident-list-page .list .incident .list-icon {
	margin: auto 0 !important;
}

#incident-list-page .list .incident:hover,
#incident-list-page .list a.row:focus {
	background: var(--dark-grey-color);
}

#incident-list-page .list .incident.warning {
	border-left: solid 2px #f91212;
	color: #f91212;
}

#incident-list-page .list a,
#incident-list-page .list a.warning {
	text-decoration: none;
}

#incident-list-page .list .list-meta {
	text-align: right;
}

#incident-list-page .incident-list {
	margin-bottom: 32px;
}

#incident-list-page .incident-list .list {
	width: 100%;
}

.incident-bar .incident {
	background-color: #f91212;
	padding: 10px;
	text-align: center;
	margin: 20px auto 0;
	border-radius: 2px;
	overflow: hidden;
	display: table;
}

.incident.fixed {
	position: fixed;
	top: 50px;
	left: 50%;
	z-index: 1;
	margin: 0 auto !important;
	border-radius: 0 0 2px 2px !important;
	transform: translate(-50%, 0);
	animation: slide-in 500ms ease-out;
}

.incident-bar .incident label {
	font-size: 16px;
	color: var(--white-color);
}

.incident-thread:not(.messages-shown) {
	margin-top: 20px;
}

.incident-thread.messages-shown {
	position: relative;
	max-height: 720px;
	overflow: auto;
}

.incident-thread.messages-shown::before {
	content: "";
	position: sticky;
	background: linear-gradient(var(--dark-grey-color), rgba(237, 237, 237, 0));
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	width: 100%;
	z-index: 1;
	display: block;
}

.incident-thread .message .header {
	display: flex;
	justify-content: space-between;
	color: var(--white-color);
}

.incident-thread .message :not(.fa) {
	font-family: "Montserrat", sans-serif !important;
}

.incident-thread .message.customer .header {
	background: #242424;
	color: var(--white-color);
}

.incident-thread .message.agent {
	margin-right: auto;
	border-radius: 4px 4px 4px 0;
}

.incident-thread .message.agent .header {
	background: var(--primary-color);
	color: var(--white-color);
}

.incident-thread .message.customer {
	margin-left: auto;
	border-radius: 4px 4px 0 4px;
}

.incident-thread .customer .datetime,
.incident-thread .agent .datetime {
	display: block;
	position: absolute;
	bottom: 0;
	padding: 0.5rem;
	transform: translate(0, -10px);
}

.incident-thread .agent .datetime {
	right: 0;
}

.incident-thread .message.customer::after,
.incident-thread .message.agent::after {
	content: " ";
	display: block;
	position: absolute;
	bottom: 0;
	border-style: solid;
	border-width: 20px 20px 0 0;
	border-color: var(--dark-grey-color-s) transparent transparent;
	transform: translate(0, 100%);
}

.incident-thread .message.customer::after {
	right: 0;
	border-style: solid;
	border-width: 20px 0 0 20px;
	border-color: var(--dark-grey-color-s) transparent transparent;
}

.incident-thread .message {
	position: relative;
	background: var(--dark-grey-color-s);
	margin-bottom: 3rem;
	line-height: 1.5;
	filter: drop-shadow(3px 3px 0px var(--primary-color)) drop-shadow(2px 2px 0px var(--primary-color)) drop-shadow(1px 1px 0px var(--primary-color));
}

.incident-thread .agent.message {
	filter: drop-shadow(3px 3px 0px var(--secondary-color)) drop-shadow(2px 2px 0px var(--secondary-color)) drop-shadow(1px 1px 0px var(--secondary-color));
}

.incident-thread .message p {
	padding: 30px 10px;
}

.incident-thread .icon {
	min-width: 36px;
	min-height: 36px;
	background: #212121;
	border-radius: 50px;
	margin: auto 10px 0;
}

.incident-thread .icon {
	background: url("../img/eso.png") var(--gray-color);
	background-size: cover;
}

.incident-thread .customer .icon {
	background: var(--gray-color);
	color: var(--white-color);
	background-size: cover;
	overflow: hidden;
	font-size: 2.15em;
}

@keyframes slide-in {
	0% {
		transform: translate(-50%, -300%);
	}

	100% {
		transform: translate(-50%, 0);
	}
}

.page .side {
	min-width: 20%;
	max-width: 20%;
	width: 20%;
}

/* search-page */
#search-page .side {
	margin-right: 30px;
}

#search-page .filter-nav .list {
	overflow-y: auto;
	border-radius: 3px;
	background: var(--dark-grey-color-s);
}

#search-product-page-results .product .card {
	height: 100%;
}

#search-product-page-results .product img {
	height: 8vw;
	object-fit: cover;
	max-height: 130px;
}

#search-answer-page-results .card .card-title {
	padding: 10px 15px 0;
}

#search-page .card .card-body {
	font-size: 0.9rem;
}

#search-page .card .card-body>i {
	font-size: 0.9rem;
}

#search-answer-page-results .card.slide .image {
	display: flex;
	align-items: center;
}

#search-answer-page-results .card.slide .image img {
	border: 0;
	width: 80px;
	height: 80px;
	object-fit: cover;
	display: inline-block;
	vertical-align: middle;
}

#platform-list {
	overflow: auto;
	margin: 0 24px;
}

#platform-parent {
	position: relative;
}

#platform-parent .btn-previous {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
}

#platform-parent .btn-next {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
}

#home-page #answer-window .answer .card {
	min-height: 85px;
	justify-content: space-evenly;
}

#home-page #answer-window .answer .card2 {
	min-height: 85px;
	justify-content: space-evenly;
}

#home-page #answer-window .answer-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.25;
}

.product-view #answer-window {
	padding: 0;
	flex-wrap: unset;
	justify-content: unset;
	display: flex;
	flex-direction: column;
}

.product-view #answer-window>h2 {
	width: auto;
}

.product-view #answer-window>h4 {
	width: auto;
}

.product-view .stepper {
	position: relative;
	padding-left: 32px;
}

.product-view .stepper .step .step-content.list.answer img {
	max-width: 100%;
	object-fit: contain;
	height: auto !important;
}

.product-view .step .step-content .description,
.step .step-content .question {
	margin: 0 0 1rem 0;
}

.product-view .step .step-answers {
	margin-left: 32px;
}

.product-view .step .step-answers .answer-title {
	line-height: 1.25;
}

.product-view .stepper>.loading {
	min-height: 350px;
}

.product-view .stepper .step .step-content.list li {
	display: list-item;
	border: none;
}

.product-view span.answer-title {
	font-size: 1.2rem;
}

.product-view .answer-product {
	padding-bottom: 0;
}

.product-view .answer .answer-date {
	font-size: 12px;
}

.breadcrumb {
	position: relative;
}

.breadcrumb::after,
.product-view .stepper::after {
	position: absolute;
	content: " ";
	display: block;
	top: 0;
	left: 0;
	bottom: 0;
	margin-left: 12px;
	border-left: 1px solid var(--secondary-color);
}

.product-view .stepper::after {
	border-left: 1px dashed var(--secondary-color);
}

.breadcrumb .step.disabled {
	color: #a1a1a1;
}

.breadcrumb .step .step-title {
	text-align: left;
	position: relative;
	display: flex;
	padding: 0;
	background: transparent;
}

.breadcrumb .step .step-title::before {
	content: " ";
	display: block;
	background: var(--secondary-color);
	width: 14px;
	height: 14px;
	margin: auto 12px auto 6px;
	border-radius: 100px;
	flex-shrink: 0;
}

.breadcrumb .step::after {
	content: " ";
	display: block;
	height: 2rem;
	margin-left: 12px;
	padding-left: 20px;
	padding-right: 8px;
}

.breadcrumb .step:last-child:after {
	display: none;
}

.breadcrumb .step.active .step-title::before,
.step.done .step-title::before {
	width: 20px;
	height: 20px;
	background: var(--secondary-color);
	border: 2px solid var(--dark-grey-color);
	box-shadow: 0 0 0px 2px var(--secondary-color);
	margin: auto 10px auto 3px;
}

.breadcrumb .step.active::after,
.step.done::after {
	border-left: 1px solid var(--secondary-color);
	height: 0;
}

#product-selector .page {
	display: none !important;
}

#product-selector .page.active {
	display: flex !important;
}

#home-page.home-view .product .product-status .operational,
#home-page.home-view .product .product-status .unavailable {
	display: none !important;
}

.node-card-parent {
	margin: 0;
	flex-grow: 0;
	max-width: calc(100% / 3);
	flex-basis: calc(100% / 3);
}

.second-nav {
	position: relative;
	color: var(--white-color);
	background-color: var(--nav-color);
	height: 60px;
	padding: 0 16px;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	transition: all 175ms ease-in;
}

.second-nav.fixed {
	position: fixed !important;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	transform: translate(0, 0);
}

.second-nav.fixed.hide {
	transform: translate(0, 100%);
}

.second-nav .separator {
	height: 60px;
	width: 1px;
	background-color: var(--white-color);
}

.second-nav .form-group {
	margin-bottom: 0;
}

dialog {
	display: none !important;
}

dialog[open] {
	display: block !important;
}

dialog::backdrop {
	background: rgba(0, 0, 0, 0.65);
}

#router-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 1101;
}

#router-modal {
	overflow: auto;
}

#router-modal .nav {
	margin: 0 -15px;
}

#router-modal.hidden .model {
	transform: translate(0, 100%);
}

#router-modal .modal {
	margin-top: 60px;
	border-radius: 16px 16px 0 0;
	min-height: calc(100vh - 60px);
	background: #ededed;
	overflow: hidden;
	transform: translate(0, 0);
	animation: slide-in-r 250ms ease-out;
}

@keyframes slide-in-r {
	0% {
		transform: translate(0, 200%);
	}

	100% {
		transform: translate(0, 0%);
	}
}

#eso-login-dialog.card,
#modal.card {
	position: fixed;
	padding: 0;
	border: 2px solid var(--secondary-color);
	color: var(--white-text-color);
	overflow-y: auto;
}

#modal.card header {
	background: var(--nav-color);
	padding: 1.5rem;
}

#eso-login-dialog.card .login-error {
	background: var(--red-color);
	color: var(--white-text-color);
}

#modal.card .title,
#eso-login-dialog.card .title {
	text-overflow: ellipsis;
	word-wrap: break-word;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	box-orient: vertical;
	-webkit-box-orient: vertical;
}

#modal.card .body,
#eso-login-dialog.card .body {
	display: flex;
	flex-flow: column;
	width: 845px;
	max-height: 80vh;
}

#modal.card #modal-content {
	padding: 1.5rem;
	overflow: auto;
	flex-grow: 2;
}

#modal.card footer {
	background: var(--nav-color);
	width: 100%;
	padding: 1.5rem;
}

#cp-dialog.card {
	position: fixed;
	padding: 0;
	border: 2px solid var(--secondary-color);
	overflow-y: auto;
	color: var(--text-white-color);
}

#cp-dialog.card header {
	padding: 4rem 4rem 0.75rem 4rem;
}

#cp-dialog.card .body {
	display: flex;
	flex-flow: column;
	width: 630px;
	max-height: 80vh;
}

#cp-dialog.card #dialog-content {
	padding: 0.75rem 4rem 1.5rem 4rem;
	overflow: auto;
	flex-grow: 2;
	line-height: 1.25;
}

#cp-dialog.card footer {
	width: 100%;
	padding: 1.5rem 4rem 4rem 4rem;
}

#cp-dialog.card footer button {
	min-width: 200px;
}

#cp-image-viewer {
	max-width: 100vw;
	max-height: 100vh;
	height: 100%;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
}

#cp-image-viewer::backdrop {
	background: rgba(0, 0, 0, 0.9);
}

#cp-image-viewer header {
	background: var(--nav-color);
	color: var(--white-color);
	padding: 1.5rem;
}

#cp-image-viewer .title {
	text-overflow: ellipsis;
	word-wrap: break-word;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	box-orient: vertical;
	-webkit-box-orient: vertical;
}

#cp-image-viewer .body {
	display: flex;
	flex-flow: column;
	height: 100%;
}

#cp-image-viewer-content {
	display: block;
	height: 100%;
	width: 100%;
	margin: auto;
	overflow: auto;
	text-align: center;
}

#cp-image-viewer-content img {
	display: inline-block;
	transition: all ease-out 275ms;
}

.dropdown-group {
	position: relative;
}

.dropdown-group .dropdown-menu.top {
	position: absolute;
	right: 0;
	background: var(--white-color);
	transform: translate(0%, -140%);
	z-index: 999;
	border: 1px solid var(--black-color);
	min-width: 250px;
}

#snackbar .card {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translate(-50%, 0%);
	width: 344px;
	min-height: 48px;
	background: var(--black-color);
	color: var(--white-color);
	z-index: 9999;
	animation: slide-in-snackbar 250ms ease-out;
}

#snackbar .card .message {
	padding: 16px;
	line-height: 1.35;
	word-break: break-word;
}

@keyframes slide-in-snackbar {
	0% {
		transform: translate(-50%, 200%);
	}

	100% {
		transform: translate(-50%, 0%);
	}
}

#side-answer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	bottom: 2rem;
}

#side-answer .card2 {
	box-shadow:
		0 8px 16px 0 rgba(0, 0, 0, 0.2),
		0px 0px 999px 999px rgba(237, 237, 237, 0.72);
	max-height: 100%;
}

#side-answer .body {
	overflow: auto;
}

#search-header {
	min-height: 225px;
}

.search-header .pill.white {
	background: rgba(0, 0, 0, 0.3);
}

.my-support-header-button.unread[data-unread]::before {
	font-family: "Font Awesome 5 Pro";
	content: "\f12a";
	position: absolute;
	top: -10px;
	right: -10px;
	padding: 5px 8px;
	border-radius: 100%;
	background: var(--red-color);
	color: var(--white-color);
	font-size: 0.9em;
	font-weight: bold;
}

.custom-scrollbar::-webkit-scrollbar {
	width: 15px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
	border-radius: 15px;
	border: 5px solid var(--white-color);
	background-color: var(--gray-color);
}

details.style-2 summary::marker {
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	content: "\f054";
}

details.style-2[open] summary::marker {
	content: "\f078";
}

details.style-2 summary {
	padding: 0.75em;
	cursor: pointer;
}

details.style-2 summary>span {
	margin-left: 0.7em;
}

details.outline-collapsible {
	border: 2px solid #aaa;
	border-radius: 0.5em;
}

details.outline-collapsible[open] {
	padding: 0 0.75em 0.75em 0.75em;
}

details.outline-collapsible[open] summary {
	border-bottom: 2px solid #aaa;
	padding: 0.75em 0;
	margin-bottom: 0.75em;
}

details.outline-collapsible.warning {
	border-color: var(--orange-color);
}

details.outline-collapsible.warning[open] summary {
	border-color: var(--orange-color);
}

details.outline-collapsible.important {
	border-color: var(--red-color);
}

details.outline-collapsible.important[open] summary {
	border-color: var(--red-color);
}

details.gray-collapsible {
	background: rgba(255, 255, 255, 0.075);
	border-radius: 0.5em;
}

details.gray-collapsible:hover {
	background: rgba(255, 255, 255, 0.15);
}

details.gray-collapsible[open] {
	padding: 0 0.75em 0.75em 0.75em;
}

details.gray-collapsible>summary {
	padding: 0.75em;
	cursor: pointer;
}

details.gray-collapsible[open]>summary {
	padding: 0.75em 0;
}

details.link-collapsible>summary>span {
	color: var(--link-color);
	text-decoration: underline;
	cursor: pointer;
}

details.link-collapsible.gray-collapsible>summary>span {
	color: var(--link-color-2);
}

details.link-collapsible>summary>span:hover {
	color: var(--pink-color);
}

details.link-collapsible.gray-collapsible>summary>span:hover {
	color: var(--pink-color-2);
}

.universal-nav-bottom {
	z-index: 1000;
}

.universal-nav-bottom .fa,
.universal-nav-top .fa {
	font-family: "Font Awesome 5 Pro" !important;
}

.progress {
	position: absolute;
	margin: 0 auto;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
}

.progress .progress-bar {
	background: var(--primary-color);
	height: 5px;
	transition: all linear 250ms;
}

#app .node .video {
	display: flex;
	justify-content: center;
	width: 100%;
}

#app .node.info .description {
	max-height: 500px;
	overflow-y: auto;
}

#app .node.question .image-option .img-checkbox {
	padding: 8px 16px;
	margin: 5px;
	min-width: 100px;
	display: flex;
	border: 2px solid var(--secondaryDarkColor);
	cursor: pointer;
}

#app .node.question .image-option .img-checkbox:hover {
	background: rgba(121, 100, 80, 0.35);
}

#app .node.question .image-option .img-checkbox label {
	padding-left: 0;
}

#app .from-group {
	display: flex;
	justify-content: end;
}

#app button.custom-btn {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

#app button.custom-btn:disabled:before {
	position: absolute;
	inset: 0;
	display: block;
	content: " ";
	background: var(--light-gray-color);
	z-index: -2;
}

#app button.custom-btn .t-wrapper {
	width: 1000px;
	height: 1000px;
	position: absolute;
	inset: 50% 0 0 50%;
	clip: rect(0px, 1000px, 1000px, 500px);
	transform: translate(-50%, -50%);
	z-index: -1;
}

#app button.custom-btn .t-circle {
	width: 1000px;
	height: 1000px;
	border-radius: 500px;
	position: absolute;
	clip: rect(0px, 500px, 1000px, 0px);
	background: grey;
}

#app button.custom-btn .t-base {
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
}

#app button.custom-btn .t-wrapper {
	animation-duration: 0.01s;
	animation-delay: 3s;
	animation-name: close-wrapper;
}

#app button.custom-btn .t-circle.t-left {
	animation-duration: 6s;
	animation-name: left-spin;
}

#app button.custom-btn .t-circle.t-right {
	animation-duration: 3s;
	animation-name: right-spin;
}

#app .node .image-option {
	width: 50%;
	display: flex;
	align-items: stretch;
	flex-flow: column wrap;
}

@keyframes right-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(180deg);
	}
}

@keyframes left-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes close-wrapper {
	to {
		clip: rect(auto, auto, auto, auto);
	}
}

/* rn_DevelopmentHeader hide */
#rn_DevelopmentHeader {
	display: none;
}

/* additional icons */
.fab.fa-nintendo-switch {
	display: flex;
	height: 3.5rem;
	align-items: center;
}

.fab.fa-nintendo-switch::before {
	display: block;
	content: " ";
	background: url("../img/switch-dark.svg") no-repeat;
	background-size: contain;
	width: 1em;
	height: 1em;
}

.fab.fa-epic-games {
	display: flex;
	height: 3.5rem;
	align-items: center;
}

.fab.fa-epic-games::before {
	display: block;
	content: " ";
	background: url("../img/epic-games-logo.svg") no-repeat;
	background-size: contain;
	width: 1em;
	height: 1em;
}

.fab.fa-slayer-points {
	display: flex;
	height: 3.5rem;
	align-items: center;
}

.fab.fa-slayer-points::before {
	display: block;
	content: " ";
	background: url("../img/slayer-points-icon.svg") no-repeat;
	background-size: contain;
	width: 1em;
	height: 1em;
}

.fab.fa-stadia-logo {
	display: flex;
	height: 3.5rem;
	align-items: center;
}

.fab.fa-stadia-logo::before {
	display: block;
	content: " ";
	background: url("../img/stadia_logo.svg") no-repeat;
	background-size: contain;
	width: 1em;
	height: 1em;
}

#lesson-viewer {
	font-size: 20px;
}

#lesson-viewer [type="checkbox"] {
	width: 20px;
	height: 20px;
}

#lesson-viewer h4.title {
	text-transform: capitalize;
}

#lesson-viewer h3 {
	text-transform: capitalize;
	margin-top: 10px;
}

/* Fix for icon size */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
	font-size: inherit;
}

.custom-select {
	position: relative;
	display: inline-block;
	width: 100%;
}

.custom-select-button {
	display: flex;
	font-weight: normal;
	background-color: var(--white-color);
	color: var(--black-color);
	border: 2px solid #757575;
	border-radius: 2px;
	cursor: pointer;
	width: 100%;
	word-wrap: ellipsis;
	overflow: hidden;
	align-items: center;
}

.form-group.required.invalid .custom-select-button {
	border-color: var(--red-color);
}

.custom-select-option-list {
	position: absolute;
	background-color: var(--white-color);
	color: var(--black-color);
	border: 2px solid var(--accent-color);
	border-radius: 2px;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
}

/* Full-width dropdown on small screens */
@media (max-width: 640px) {
	.custom-select-option-list {
		position: absolute;
		top: 100%;
		right: auto;
		width: calc(100vw - 16px);
		max-width: 100vw;
		margin-left: 0;
		margin-right: 0;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}
}

.custom-select-button[aria-expanded="true"]~.custom-select-option-list {
	display: block;
}

.custom-select-button .button-icon-down,
.custom-select-button[aria-expanded="true"] .button-icon-up {
	margin-left: auto;
	display: block;
}

.custom-select-button .button-icon-up,
.custom-select-button[aria-expanded="true"] .button-icon-down {
	display: none;
}

.custom-select-option {
	padding: 10px;
	cursor: pointer;
}

.mini-search-item {
	overflow: visible !important;
}
