:root {
	--generic-text-color: #a09b8c;
	--link-color: #0596aa;
	--link-color_hover: #cdfafa;
	--background-color: #000a12;
	--table-border-color: 1px solid #1e2328;
	--header-text-color: #c8aa6e;
	--header-background: rgb(22 34 40);
	--header-border: 1px solid #2a241a;
	--header-shadow-color: rgba(0,0,0,1);
	--spinner-color: #a09b8c;
}

.light-theme {
	--generic-text-color: #000;
	--background-color: #fff;
	--table-border-color: 1px solid rgba(0, 0, 0, 0.15);
	--header-text-color: #000;
	--header-background: #ddd;
	--header-border: 1px solid #ddd;
	--header-shadow-color: rgba(0,0,0,0.3);
	--spinner-color: rgb(141, 141, 141);
}

/* * {
	transition: 0.3s ease background-color, 0.3s ease border;
} */

body {
	font-family: "Spiegel", "Segoe UI", Roboto, "Helvetica Neue", Arial;
	background-color: var(--background-color);
	font-size: 1rem; /* 0.95rem; */
	line-height: 1.25;
	letter-spacing: 0.01em;
	color: var(--generic-text-color);
	overflow-y: scroll;
	margin: 10px 0;
}

a {
	color: var(--link-color);
	transition: 50ms linear;
	text-decoration: none;
}

a:hover {
	color: var(--link-color_hover);
}

a.dotted-link {
	color: var(--generic-text-color);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a.dotted-link:hover {
    text-decoration-style: solid;
}

h3.element-name {
    font-family: "Beaufort for LOL";
    font-size: 1.1rem;
    font-weight: 500;
    color: #f0e6d2;
    margin: 0;
}

hr {
	border-image: linear-gradient(to right, rgba(27, 41, 42, 40%) 0%, rgba(27, 41, 42, 0) 100%) 1;
	border-width: 1px 0 0 0;
	margin: 10px 0;
}

.hr-thick {
    border: none;
    border-top: 2px solid #1e2328;
    margin: 20px 0;
}

input {
	background: rgba(0, 0, 0, 0.7);
	line-height: 15px;
	border-radius: 0%;
	height: 32px;
	box-sizing: border-box;
	padding: 0 10px;
	-webkit-appearance: none;
	outline: none;
	color: #f0e6d2;
	border: thin solid #785a28;
	box-shadow: 0 0 0 1px rgb(0 0 0 / 25%) inset, 0 0 0 1px rgb(0 0 0 / 25%);
	font-size: 12px;
	font-weight: normal;
	letter-spacing: .025em;
	-webkit-font-smoothing: subpixel-antialiased;
	font-kerning: normal;
	-webkit-font-feature-settings: "kern" 1;
}

input:focus {
	background: linear-gradient(to bottom, rgba(7, 16, 25, 0.7), rgba(32, 39, 44, 0.7));
	border-image: linear-gradient(to bottom, #785a28, #c8aa6e) 1 stretch;
}

input::placeholder {
	color: #a09b8d;
}

.dropdown {
	position: relative;
}

select,
.dropdown-btn {
	border-radius: 0;
	background-color: rgba(30, 35, 40, 0.5);
	padding: 7px 5px;
	border: thin solid transparent;
	border-image: linear-gradient(to top, #695625 0%, #a9852d 23%, #b88d35 93%, #c8aa6e 100%) 1;
	color: #a09b8c;
	outline: none;
	box-sizing: border-box;
	line-height: 15px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: .025em;
	-webkit-font-smoothing: subpixel-antialiased;
	font-kerning: normal;
	-webkit-font-feature-settings: "kern" 1;
	height: 32px;
	cursor: pointer;
	transition: 50ms linear;
}

select:hover,
.dropdown-btn:hover {
	background: linear-gradient(to top, rgba(88, 83, 66, 0.5), rgba(30, 35, 40, 0.5));
	border: thin solid transparent;
	border-image: linear-gradient(to top, #c89b3c, #f0e6d2) 1;
}

select option {
	background-color: var(--background-color);
	color: #a09b8c;
}

.dropdown-btn {
	padding: 7px 25px 7px 10px;
    position: relative;
}

.dropdown-btn::after {
    background: url("../img/up-down-arrow.png") center no-repeat;
    width: 13px;
    height: 18px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translate(0, -50%);
    content: '';
}

.dropdown-btn.dropdown-open {
	border: 1px solid #463714 !important;
	background: rgba(30,35,40,.5) !important;
}



.dropdown-content {
	display: none;
	position: absolute;
	border: 1px solid #463714;
	background-color: #010a12;
	z-index: 999;
	min-width: 100%;
    box-sizing: border-box;
	box-shadow: rgba(0, 0, 0, 0.133) 0px 3.2px 7.2px 0px, rgba(0, 0, 0, 0.11) 0px 0.6px 1.8px 0px;
}

/* Style the dropdown elements */
.dropdown-content a {
	padding: 7px 10px;
	color: #cdbf95;
	outline: none;
	box-sizing: border-box;
	line-height: 21px;
	font-family: Arial;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: .025em;
	text-decoration: none;
	height: 33px;
	display: block;
	white-space: nowrap;
}

.dropdown-content a:not(:last-child) {
	border-bottom: 1px solid #1f2123;
}

.dropdown-content a:hover {
	background-color: #1e2328;
	color: #f0e7d3;
}

.dropdown-content a[selected] {
	padding-right: 30px;
	position: relative;
}

.dropdown-content a[selected]::after {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAALCAYAAABPhbxiAAAAsElEQVR42pTQXQoBURTA8ZmbdxuxAi/WgfLmQb4pYgMi36QUJUuxBIvw7FEi/qfOrds0NPfW7+We85+mG95v18DjhGjglPKMNqjibTyilUYTbE3CaIE65ujLZZJQlptYomsvJUyjp1+Oi1pYo+MOjA7GmEWiKdrY6c7HHcqrjpDRpQeGGslv7VGLRjZ8Ii9PjAFyyOKISlxkQzkvFDUu4Izyr8gNA41KuODwL5LzFWAAUJ8mTIVblvcAAAAASUVORK5CYII=);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center center;
	position: absolute;
	content: '';
	width: 20px;
	top: 0;
	bottom: 0;
	right: 5px;
}

.main-header {
    display: flex;
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 15px;
}

footer {
	text-align: center;
	font-size: 0.85rem;
	margin-top: 30px;
}


.lol-db {
	background: url(data:image/png;base64,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);
	background-repeat: repeat-x;
	background-position: left top;
	padding-top: 12px;
}

.lol-db .game-logo {
	text-align: center;
	margin: 30px 5px 10px;
}

.lol-db .game-logo img {
	max-width: 100%;
}

.lol-db .game-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.lol-db .game-row .game-row-block {
	display: block;
	position: relative;
	margin: 10px 10px 20px;
	width: 280px;
	height: 210px;
	background-color: #f6f6f6;
	text-decoration: none;
	z-index: 1;
}

.lol-db .game-row .game-row-block.game-row-block-menu {
	z-index: 0;
}

.lol-db .game-row .game-row-block.game-row-block-menu::before {
	content: '';
	position:absolute;
	top:-50px;
	bottom:-50px;
	left:-30px;
	right:-30px;
}

.lol-db .game-row .game-row-block:after {
	content: "";
	position: absolute;
	top: -5px;
	bottom: -5px;
	left: 5px;
	right: 5px;
	/* border: 1px solid #ababab; */
	background-image: url("../img/border-270x220.svg");
	background-repeat: no-repeat;
	transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.lol-db .game-row .game-row-block .image-container {
	height: 150px;
	overflow: hidden;
}

.lol-db .game-row .game-row-block .inner-image {
	background-size: cover;
	background-position: center;
	display: block;
	height: 150px;
	transform: scale3d(1, 1, 1);
	transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.lol-db .game-row .game-row-block:hover .inner-image {
	transform: scale3d(1.05, 1.05, 1);
}

.lol-db .game-row .text-container {
	display: table;
	height: 60px;
	width: 100%;
	text-align: center;
}

.lol-db .game-row .text-container.multiple-links {
    display: block;
    text-align: center;
    position: absolute;
    bottom: 0;
	background-color: #f6f6f6;
    transition: all 0.3s ease-in-out;
	overflow: hidden;
	animation: animate-on-load 0.6s cubic-bezier(0.42, 0, 0.58, 1);
}

@keyframes animate-on-load {
	0% { height: 60px; }
	25% { height: 77px; }
	50% { height: 60px; }
	75% { height: 65px; }
	100% { height: 60px; }
}

.lol-db .game-row > .game-row-block:hover .text-container.multiple-links {
	height: 180px;
}

.lol-db .game-row .text-container span,
.lol-db .game-row .text-container a {
	display: table-cell;
	vertical-align: middle;
	font-style: italic;
	text-transform: uppercase;
	font-family: "Beaufort for LOL", serif;
	color: rgb(26, 29, 33);
	font-size: 1.375rem;
	font-weight: 800;
}

.lol-db .game-row .text-container.multiple-links a {
    display: block;
    line-height: 60px;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.lol-db .game-row .text-container.multiple-links a:hover {
    background-color: #e3e3e3;
}

.lol-db .game-row .text-container.multiple-links a::before {
	content: '';
	position: absolute;
	top: 0;
	left:  5px;
	right: 5px;
	bottom: 0;
    border-left: 1px solid #ababab;
	border-right: 1px solid #ababab;
	z-index: -1;
}

@media (max-width: 2100px) {
	.lol-db .game-row .game-row-block {
		width: 240px;
		height: 170px;
	}

	.lol-db .game-row .game-row-block:after {
		background-image: url("../img/border-230x180.svg");
	}

	.lol-db .game-row .game-row-block .image-container {
		height: 120px;
	}

	.lol-db .game-row .game-row-block .inner-image {
		height: 120px;
	}

	.lol-db .game-row .text-container {
		height: 50px;
	}

	.lol-db .game-row > .game-row-block:hover .text-container.multiple-links {
		height: 150px;
	}

	.lol-db .game-row .text-container.multiple-links a {
		line-height: 50px;
	}

	@keyframes animate-on-load {
		0% { height: 50px; }
		50% { height: 63px; }
		100% { height: 50px; }
	}

	@keyframes animate-on-load {
		0% { height: 50px; }
		25% { height: 63px; }
		50% { height: 50px; }
		75% { height: 55px; }
		100% { height: 50px; }
	}

	.lol-db .game-logo {
		margin: 1px 5px 0px;
	}
}


table.dataTable {
	border-bottom: 1px black solid;
	width: 100%;
	margin: 0 auto;
	clear: both;
	border-collapse: separate;
	border-spacing: 0;
}


table.dataTable thead {
	position: sticky;
	top: 0;
	background-color: var(--background-color);
	z-index: 2;
	box-shadow: var(--header-shadow-color) 0 0 20px;
	clip-path: inset(0 0 -20px 0);
}

table.dataTable thead tr:nth-child(2) th {
	border-bottom: 2px solid #ce9c4a;
}

table.dataTable thead th {
	color: #757570;
	text-align: center;
	font-family: "Beaufort for LOL";
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.26;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-sizing: content-box;
}

table.dataTable thead th,
table.dataTable thead td {
	padding: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

table.dataTable thead th:active,
table.dataTable thead td:active {
	outline: none;
}

table.dataTable thead .input {
	width: 100%;
}

table.dataTable thead>tr>th.sorting,
table.dataTable thead>tr>th.sorting_asc,
table.dataTable thead>tr>th.sorting_desc,
table.dataTable thead>tr>th.sorting_asc_disabled,
table.dataTable thead>tr>th.sorting_desc_disabled,
table.dataTable thead>tr>th.dt-orderable-asc,
table.dataTable thead>tr>th.dt-orderable-desc {
	cursor: pointer;
	position: relative;
	padding-right: 26px;
}

table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_asc:after,
table.dataTable thead>tr>th.sorting_desc:before,
table.dataTable thead>tr>th.sorting_desc:after,
table.dataTable thead>tr>th.sorting_asc_disabled:before,
table.dataTable thead>tr>th.sorting_asc_disabled:after,
table.dataTable thead>tr>th.sorting_desc_disabled:before,
table.dataTable thead>tr>th.sorting_desc_disabled:after,
table.dataTable thead>tr>th.dt-orderable-asc:before,
table.dataTable thead>tr>th.dt-orderable-desc:before,
table.dataTable thead>tr>th.dt-orderable-asc:after,
table.dataTable thead>tr>th.dt-orderable-desc:after {
	position: absolute;
	display: block;
	opacity: 0.125;
	right: 10px;
	line-height: 9px;
	font-size: 0.8em;
}

table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_desc:before,
table.dataTable thead>tr>th.sorting_asc_disabled:before,
table.dataTable thead>tr>th.sorting_desc_disabled:before,
table.dataTable thead>tr>th.dt-orderable-asc:before,
table.dataTable thead>tr>th.dt-orderable-desc:before {
	bottom: 50%;
	content: "▲";
}

table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting_asc:after,
table.dataTable thead>tr>th.sorting_desc:after,
table.dataTable thead>tr>th.sorting_asc_disabled:after,
table.dataTable thead>tr>th.sorting_desc_disabled:after,
table.dataTable thead>tr>th.dt-orderable-asc:after,
table.dataTable thead>tr>th.dt-orderable-desc:after {
	top: 50%;
	content: "▼";
}

table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_desc:after,
table.dataTable thead>tr>th.dt-ordering-asc:before,
table.dataTable thead>tr>th.dt-ordering-desc:after {
	opacity: 0.6;
}

table.dataTable thead>tr>th.sorting_desc_disabled:after,
table.dataTable thead>tr>th.sorting_asc_disabled:before {
	display: none;
}


table.dataTable tbody tr:hover,
table.dataTable.display>tbody .sorting_1 {
	box-shadow: inset 0 0 0 9999px rgb(0 0 0 / 4%);
}

table.dataTable tbody td {
	padding: 12px 10px;
	box-sizing: content-box;
}

table.dataTable.display tbody td {
	border-top: var(--table-border-color);
}

table.dataTable tr.group,
table.dataTable tr.group:hover {
	background: var(--header-background);
    color: var(--header-text-color);
	font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.05em;
	text-transform: uppercase;
}

table.dataTable tr.group a,
table.dataTable tr.group:hover a {
    color: var(--header-text-color);
}

table.dataTable tr.group td {
	padding: 8px 10px !important;
	font-family: "Beaufort for LOL", serif;
	border-top: var(--header-border);
	border-bottom: var(--header-border);
	text-align: left;
}

table.dataTable tr.group hr,
.h4-skinlines hr {
	display: inline;
	margin: 10px;
	border-image: none;
	border-right: 1px solid var(--header-text-color);
}

.h4-skinlines hr {
	position: relative;
    bottom: -2px;
}

table.dataTable td.dt-left {
  text-align: left;
}

table.dataTable td.dt-center {
  text-align: center;
}

table.dataTable td.dt-right {
  text-align: right;
}

table.dataTable td.dt-justify {
  text-align: justify;
}

table.dataTable td.dt-nowrap {
  white-space: nowrap;
}


.dt-container {
	position: relative;
	clear: both;
}

.dt-container:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
}

.dt-container .dataTables_length,
.dt-container .dataTables_filter,
.dt-container .dt-info,
.dt-container .dataTables_processing,
.dt-container .dt-paging {
	color: rgb(160, 155, 140);
	font-family: "Spiegel", "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.dt-container .dt-info {
	clear: both;
	float: left;
	padding-top: 0.755em;
	margin-left: 10px;
}

.dt-container .dataTables_length {
	float: left;
	margin-left: 10px;
}

.dt-container .dt-buttons {
    float: left;
	display:none;
}

.dt-container .dt-paging {
	float: right;
	text-align: right;
	padding-top: 0.25em;
	margin-right: 10px;
}

.dt-container .dt-search {
	margin-bottom: 15px;
	margin-right: 10px;
	float: right;
	text-align: right;
}

.dt-container .dt-search,
.dt-container .dt-paging {
	margin-right: 10px;
}

.dt-search {
    margin-left:auto;
}

.dt-container .dt-paging .dt-paging-button {
	background: none;
	border: thin solid transparent;
	box-sizing: border-box;
	color: #cdbe91;
	cursor: pointer;
	display: inline-block;
	font-size: 13px;
	height: 32px;
	line-height: 15px;
	margin: 0 2px;
	min-width: 35px;
	outline: none;
	padding: 7px 10px;
	text-align: center;
	text-decoration: none;
	transition: 50ms linear;
}

.dt-container .dt-paging .dt-paging-button.current,
.dt-container .dt-paging .dt-paging-button.current:hover,
.excelButton {
	background: linear-gradient(to bottom, #5a401f 0%, #332717 100%);
	border-image: linear-gradient(to top, #695625 0%, #a9852d 23%, #b88d35 93%, #c8aa6e 100%) 1 !important;
	border-radius: 0;
	border: thin solid transparent;
	box-shadow: 0 0 1px 1px #010a13, inset 0 0 1px 1px #010a13;
	box-sizing: border-box;
	cursor: pointer;
	font-kerning: normal;
	font-size: 12px;
	font-weight: normal;
	-webkit-font-feature-settings: "kern" 1;
	-webkit-font-smoothing: subpixel-antialiased;
	height: 32px;
	letter-spacing: .025em;
	line-height: 15px;
	outline: none;
	padding: 7px 10px;
	text-shadow: black 0px 0px 15px;
	transition: 50ms linear;
}

.dt-container .dt-paging .dt-paging-button.current,
.dt-container .dt-paging .dt-paging-button.current:hover {
	cursor: default;
	color: #cdbe91 !important;
	font-size: 13px;
}

.dt-container .dt-paging .dt-paging-button.disabled,
.dt-container .dt-paging .dt-paging-button.disabled:hover,
.dt-container .dt-paging .dt-paging-button.disabled:active {
	cursor: default;
	color: #666 !important;
	box-shadow: none;
}

.dt-container .dt-paging .dt-paging-button:not(.disabled):hover {
	border-image: linear-gradient(to top, #695625 0%, #a9852d 23%, #b88d35 93%, #c8aa6e 100%) 1;
	outline: none;
	color: #f0e6d2;
}

.excelButton {
	color: #cdbe91;
}

.excelButton:hover {
	background: linear-gradient(to bottom, #604522 0%, #846745 100%);
	border: thin solid transparent;
	border-image: linear-gradient(to top, #c89b3c, #f0e6d2) 1;
	color: #f0e6d2;
}

.excelButton:active {
	color: #cdbe91;
	background: linear-gradient(to bottom, #362715 0%, #17130e 100%);
	border-image: linear-gradient(to top, #695625 0%, #a9852d 23%, #b88d35 93%, #c8aa6e 100%) 1;
	text-shadow: none;
	box-shadow: none;
}


#loading {
	position: fixed;
	z-index: 999;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: var(--background-color);
}

.loader {
	color: var(--spinner-color);
	font-size: 10px;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	text-indent: -9999em;
	animation: mulShdSpin 1.3s infinite linear;
	transform: translateZ(0);
}

@keyframes mulShdSpin {

	0%,
	100% {
		box-shadow: 0 -3em 0 0.2em,
			2em -2em 0 0em, 3em 0 0 -1em,
			2em 2em 0 -1em, 0 3em 0 -1em,
			-2em 2em 0 -1em, -3em 0 0 -1em,
			-2em -2em 0 0;
	}

	12.5% {
		box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
			3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
			-2em 2em 0 -1em, -3em 0 0 -1em,
			-2em -2em 0 -1em;
	}

	25% {
		box-shadow: 0 -3em 0 -0.5em,
			2em -2em 0 0, 3em 0 0 0.2em,
			2em 2em 0 0, 0 3em 0 -1em,
			-2em 2em 0 -1em, -3em 0 0 -1em,
			-2em -2em 0 -1em;
	}

	37.5% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
			3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
			-2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}

	50% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
			3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
			-2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}

	62.5% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
			3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
			-2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
	}

	75% {
		box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
			3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
			-2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
	}

	87.5% {
		box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
			3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
			-2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
	}
}


.lity-hide-center {
	text-align: center;
}

.no-video-found {
	width: 600px; /* 1056px; */
	height: 409px; /* 720px; */
	background-image: url("../img/champ-bg.jpg");
	background-size: contain;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #f0e6d2;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Beaufort for LOL';
    letter-spacing: 0.025em;
}

.rarity {
	display: flex;
	align-items: center;
}

.rarity span {
	margin-left: 5px;
}

.icon-rarity {
	margin-bottom: 5px;
}

.icon-rarity:before {
	width: 18px;
	height: 18px;
	background-size: contain;
	background-position-x: center;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -9px;
	left: calc(50% - 9px);
}

.icon-rarity-1:before {
	width: 16px;
	height: 16px;
	bottom: -8px;
	left: calc(50% - 8px);
	background-image: url("../img/rarity/rare.png");
}

.icon-rarity-2:before {
	background-image: url("../img/rarity/epic.png");
}

.icon-rarity-3:before {
	background-image: url("../img/rarity/legendary.png");
}

.icon-rarity-4:before {
	background-image: url("../img/rarity/mythic.png");
}

.icon-rarity-5:before {
	height: 21px;
	bottom: -10px;
	background-image: url("../img/rarity/ultimate.png");
}

.icon-rarity-6:before {
	background-image: url("../img/rarity/transcendent.png");
}

.icon-rarity-7:before {
	background-image: url("../img/rarity/exalted.png");
}

.icon-rarity-tft:before {
	width: 60px;
	height: 23px;
	background-size: contain;
	background-position-x: center;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -7px;
	left: calc(50% - 30px);
}

.icon-rarity-tft-1:before {
	background-image: url("../img/rarity/tft_standardgem_bot.png");
}

.icon-rarity-tft-2:before {
	background-image: url("../img/rarity/tft_legendarygem_bot.png");
}

.icon-rarity-tft-3:before {
	background-image: url("../img/rarity/tft_mythicgem_bot.png");
}

.icon-rarity-tft-4:before {
	background-image: url("../img/rarity/tft_prestigegem_bot.png");
}

.tippy-box {
    padding: 5px;
    text-align: center;
    border-radius:0;
    border: 2px solid transparent;
    box-sizing: border-box;
    background-color: #1a1c21;
    box-shadow: 0 0 0 1px rgba(1,10,19,0.48), 0 0 10px 1px rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    line-height: 1.24;
    letter-spacing: 0.01em;
    color: #a09b8c;
}

.tippy-box[data-placement^='top'] {
	border-image: linear-gradient(to top, #785a28 0, #463714 50%, #463714 100%) 1 stretch;
}

.tippy-box[data-placement^='bottom'] {
	border-image: linear-gradient(to bottom, #785a28 0, #463714 50%, #463714 100%) 1 stretch;
}

.tippy-box[data-placement^='left'] {
	border-image: linear-gradient(to left, #785a28 0, #463714 50%, #463714 100%) 1 stretch;
}

.tippy-box[data-placement^='right'] {
	border-image: linear-gradient(to right, #785a28 0, #463714 50%, #463714 100%) 1 stretch;
}

.tippy-box > .tippy-arrow::before {
    display: none;
}

.tippy-box > .tippy-arrow {
  background-image: url("../img/tooltip-system-caret.png");
}

.tippy-box[data-placement^='top'] > .tippy-arrow,
.tippy-box[data-placement^='bottom'] > .tippy-arrow {
  width: 16px;
  height: 11px;
}

.tippy-box[data-placement^='left'] > .tippy-arrow,
.tippy-box[data-placement^='right'] > .tippy-arrow {
  width: 11px;
  height: 16px;
}

.tippy-box[data-placement^='top'] > .tippy-arrow {
    bottom: -11px;
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow {
    top: -11px;
    background-position: -16px 0;
}

.tippy-box[data-placement^='right'] > .tippy-arrow {
    left:-11px;
    background-position: -33px 0;
}

.tippy-box[data-placement^='left'] > .tippy-arrow {
    right:-11px;
    background-position: -43px 0;
}

.tippy-box hr {
	display: inline;
	margin: 10px;
	border-image: none;
	border-right: 1px solid #5d4822;
}

.tippy-bg-image .tippy-box {
	width: 250px;
	height: 250px;
}

.tippy-bg-image .tippy-box::before {
	content: '';
	position: absolute;
	top: 1px;
	bottom: 1px;
	left: 1px;
	right: 1px;
	opacity: 0;
	background-image: var(--tippy-bg-image);
	background-size: cover;
	background-position: center;
	transition: opacity 0.5s ease-out;
}

.tippy-bg-image .tippy-box.tippy-image-loaded::before {
	opacity: 100%;
}

.tippy-bg-image .tippy-content {
	position:absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 50px 10px 15px;
	background: linear-gradient(to top, rgba(26, 28, 33, 1) 0%, rgba(26, 28, 33, 0.6) 60%, rgba(26, 28, 33, 0) 100%);
	font-family: "Beaufort for LOL", serif;
	color: #a09b8c;
	font-size: 16px;
	text-shadow: 0 1px 4px rgba(0, 10, 18, 0.8);
}

.tippy-bg-image .tippy-content hr {
	display:block;
	border-image: linear-gradient(to right, rgba(27, 41, 42, 0) 0%, rgba(93, 72, 34, 0.9) 50%, rgba(27, 41, 42, 0) 100%) 1;
	border-width: 1px 0 0 0;
	position: relative;
	overflow: visible;
}

.tippy-bg-image .tippy-content hr::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background-image: var(--tippy-rarity-icon);
	background-size: cover;
	background-position: center;
	top: calc(50% - 8px);
	left: calc(50% - 8px);
}

.h4-skinlines {
	font-family: "Beaufort for LOL", serif;
	color: var(--header-text-color);
	font-weight: bold;
	font-size: 16px;
	margin-top: 0;
	margin-bottom: 5px;
}

.h4-skinlines a {
    color: var(--header-text-color);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.h4-skinlines a:hover {
    text-decoration-style: solid;
}

.chromaIcon {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 2px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #c09646;
}

.chromaImageCont {
	display: inline-block;
	text-align: center;
	position: relative;
}

.chromaImageCont .chromaIcon {
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	bottom: 10px;
}

.chromaIcon div {
	display: inline-block;
	width: 50%;
	height: 20px;
}

row {
    color: gray;
}

.stat-icon {
	vertical-align: middle;
	margin-top: -2px;
	width: 17px;
}

scalingcontainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.9rem;
}

scalingblock {
    margin: 4px 0;
    padding: 0;
    flex: 0 1 auto;
    align-self: flex-start;
}

.item-card rules,
.item-card flavortext {
    display: block;
    margin: 20px 0;
}

.item-card rules:last-child, .item-card flavortext:last-child {
    margin-bottom: 0;
}

.item-card rules:first-child, .item-card flavortext:first-child {
    margin-top: 0;
}

.item-card li:first-of-type {
	margin-top: 20px;
}

.item-card section:not(:first-child) {
    margin-top: 20px;
}

.tft-trait {
	background-image: url("../img/tft-trait-bg.png");
	width: 52px;
	height: 58px;
	margin: 0 auto 5px;
	position: relative;
}

.tft-trait img {
	position: absolute;
	top: 0;
	bottom: 0;
	filter: brightness(0.1);
	left: 0;
	right: 0;
	margin: auto;
}

.tft-champ-icon-link {
	display: inline-block;
	border: 2px solid rgba(0,0,0,0);
	margin: 2px;
	position:relative;
}

.tft-champ-icon-link::before {
	content: '';
	position: absolute;
	top: -2px;
	bottom: -2px;
	left: -2px;
	right: -2px;
	z-index: -1;
}

.tft-champ-icon-link-1::before {
	background: gray;
}
.tft-champ-icon-link-2::before {
	background: #00a741;
}
.tft-champ-icon-link-3::before {
	background: #2c7ffc;
}
.tft-champ-icon-link-4::before {
	background: #ef38ff;
}
.tft-champ-icon-link-5::before {
	background: #f4b71b;
}
.tft-champ-icon-link-6::before {
	background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fff562, #fbc2eb, #a18cd1);
}

.tft-champ-icon {
	width: 50px;
	height: 50px;
	border:1px solid #000a12;
}

.tft-champ-portrait {
	background-size: 208px 121px;
	background-position: 4px 4px;
	background-repeat: no-repeat;
	width: 216px;
	height: 162px;
	display: block;
	position: relative;
}

.tft-champ-portrait .cost {
	position: absolute;
	display: inline-block;
	bottom: 8px;
	right: 12px;
}

.tft-champ-portrait span,
.tft-item-cost span {
	color: white;
	font-family: "Beaufort for LOL";
	font-size: 19px;
	font-weight: 600;
	text-shadow: #222 1px 1px 1px;
}

.tft-champ-portrait .cost img,
.tft-item-cost img {
	vertical-align: middle;
	width: 11px;
	height: 11px;
	margin-top: -4px;
	margin-right: 3px;
	filter: drop-shadow(1px 1px 10px black);
}

.tft-item-cost {
    width:100px;
    text-align:center;
    margin-top: 5px;
}

.tft-champ-traits {
	position: absolute;
	left: 10px;
	bottom: 43px;
}

.tft-champ-traits .trait {
	margin-top: 5px;
	height: 25px;
	display: block;
	text-decoration: none;
}

.tft-champ-traits .trait-icon {
	background-image: url("../img/tft-trait-small-bg.png");
	width: 21px;
	height: 25px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.tft-champ-traits .trait-icon img {
	position: absolute;
	width: 12px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	filter: drop-shadow(0 0 2px black);
	filter: brightness(1);
}

.tft-champ-traits .trait-name {
	display: inline-block;
	vertical-align: middle;
	color: #fef3db;
	text-shadow: black 1px 0 4px;
	line-height: 21px;
}

.tft-champ-traits .trait:hover .trait-name {
	text-shadow: black 1px 0 4px, white 0px 0px 6px;
	color: aliceblue;
}

.champion-title {
	font-style: italic;
	color: rgb(110, 110, 110);
	font-size: 14px;
}

.ability-icon, .ability-icon-static {
	width: 64px;
	height: 64px;
	position: relative;
	display: block;
	border: thin solid #3c3c41;
}

.ability-icon-item {
	width: 88px;
	height: 88px;
}

.ability-icon-ornn::before {
    content: "";
    position: absolute;
    width: 88px;
    height: 88px;
    top:0;
    left:0;
    background-image: url(/assets/img/bordertreatmentornn.png);
    z-index:1;
}

.ability-icon:hover {
    border-style: solid;
    border-image: linear-gradient(to bottom right, #785a28, #c89b3c, #c8aa6e) 1 1;
	text-align: center;
}

.ability-icon::after,
.ability-icon-static::after {
	content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border: thin solid #010a13;
    pointer-events: none;
}

.ability-icon:hover::after {
    background-color: rgba(0,0,0,0.6);
    content: "▶";
    line-height: 64px;
    color: #cdbf95;
    z-index: 0;
	transition: background-color 50ms linear;
    font-size: 20px;
}

.ability-icon-item:hover::after {
    content: "W";
	font-size: 24px;
    line-height: 88px;
    font-family: "Beaufort for LOL", serif;
    font-weight: 600;
    font-style: normal;
    z-index: 2;
}

.ability-icon .ability-key {
	width: 19px;
    height: 20px;
    padding-left: 2px;
	position: absolute;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	line-height: 20px;
	border-top-left-radius: 7px;
	text-decoration: none;
	color: #f0e6d2;
	font-family: "Beaufort for LOL", serif;
    font-size: 13px;
    font-weight: 600;
	z-index: 1;
}

.icon-border {
	display: block;
	position: relative;
	width: 100px;
	height: 100px;
}

.icon-border.icon-ward-border {
	width: 120px;
	height: 143px;
}

.icon-border>img {
	/* clip-path: polygon(0 7%, 5% 4%, 8% 0, 92% 0, 95% 4%, 100% 7%, 100% 92%, 94% 96%, 92% 100%, 8% 100%, 6% 96%, 0 92%); */
	clip-path: polygon(0 7px, 5px 4px, 8px 0, calc(100% - 8px) 0, calc(100% - 5px) 4px, 100% 7px, 100% calc(100% - 8px), calc(100% - 6px) calc(100% - 4px), calc(100% - 8px) 100%, 8px 100%, 6px calc(100% - 4px), 0 calc(100% - 8px));
	/* opacity: 0.8; */
}

.icon-border:hover>img,
a:hover .tft-champ-icon {
	/* opacity: 1; */
	filter: brightness(120%);
}

.icon-border:after {
	position: absolute;
	display: block;
	content: ' ';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-image: url("../img/border-normal-gradient.svg");
	background-repeat: no-repeat; */
	border: 25px solid transparent;
    box-sizing: border-box;
    border-image-source: url(../img/border-normal-gradient.svg);
    border-image-slice: 25% 25%;
}

.icon-ward {
	background-image: url("../img/summoner-rift-background.jpg");
}

.theme-switcher {
	position: relative;
}

.theme-switcher input {
	height: 33px;
	width: 63px;
	position: relative;
	z-index: 2;
	opacity: 0;
	cursor: pointer;
	top: -3px;
	left: -3px;
}

.theme-switcher label {
	display: block;
	text-indent: -9999px;
	height: 30px;
	width: 60px;
	border-radius: 50px;
	background-color: rgb(255, 255, 255);
	border: 2px solid whitesmoke;
	position: absolute;
	top: 0;
	z-index: 1;
}

.theme-switcher input:checked+label {
	background-color: rgb(25, 26, 37);
	border: thin solid #a9852d !important;
}

.theme-switcher label::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50px;
	top: 50%;
	left: 8px;
	transform: translateY(-50%);
	background-color: rgb(46, 42, 68);
	transition: 0.4s ease;
}

.theme-switcher input:checked+label::after {
	/* left: calc(100% - 2.5px); */
	left: calc(100% - 27px);
	background-color: #a9852d;
}

#table_lang1 .dropdown-content img,
#table_lang2 .dropdown-content img {
	vertical-align: middle;
	margin-right:5px;
	position:relative;
	top:-2px;
}

.champ-info-links {
	text-align: center;
	margin-top: 7px;
	display: flex;
    justify-content: center;
    gap: 14px;
}

.champ-info-links a {
	color: #cdbf95;
}

.champ-info-links a:hover {
	color: #f0e7d3;
}

.champ-info-links a i {
	font-size: 16px;
    line-height: 26px;
}

.champ-info-links a i.icon-wiki {
	font-size: 24px;
	font-family: "Beaufort for LOL", serif;
	font-weight: 600;
	font-style: normal;
	line-height: 24px;
}

.tft-item-recipe {
    width:100px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.tft-item-recipe .plus {
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    font-size: 20px;
}

.tft-item-recipe .ability-icon-static {
    width: 38px;
    height: 38px;
}

.tft-item-stats {
    display: flex;
    justify-content: left;
    gap: 14px;
    color: #f0e6d2;
    font-size: 0.9rem;
    text-align: center;
}

showifnot\.tft10_blingactive {
    display: none;
}

.menu-wrapper {
    display: flex;
    clear: both;
    
    margin: 10px 0;
    
    border-top: thin solid hsla(40,50%,88%,.15);
    border-bottom: thin solid hsla(40,50%,88%,.15);
    
    color: #cdbe91;
}

.menu-wrapper .menu-item {
    position: relative;
    padding: 10px 20px;
    cursor: pointer;
    min-width: 28px;
    font-family: "Beaufort for LOL";
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #cdbe91;
}

.menu-wrapper .menu-item:hover,
.menu-wrapper .menu-item.active {
    color: #f0e6d2;
}

.menu-wrapper .menu-item:active {
    color: #c89b3c;
}

.menu-wrapper .menu-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent, #cdbe91, transparent);
}

.back-arrow {
	height: 36px;
    width: 36px;
    background-image: url(/assets/img/button-back-arrow.png);
    background-size: contain;
    position: relative;
    top: -2px;
}

.back-arrow:hover {
	background-image: url(/assets/img/button-back-arrow-over.png);
}

.back-arrow:active {
	background-image: url(/assets/img/button-back-arrow-down.png);
}