MediaWiki:Common.css

From IdleOn MMO Wiki
Revision as of 07:14, 23 February 2023 by Wekhter (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
@import url("/index.php?action=raw&ctype=text/css&title=MediaWiki:UITest.css"); 

/* ------ CUSTOM FONT ------ */

@font-face {
	font-family: 'Idleon';
	src: url('https://idleon.wiki/wiki/resources/assets/Idleon.ttf') format('truetype');
}

/* ------ CSS VARIABLES ------ */

:root{
    --base-0: #EAECF0;
    --base-1: #f8f9fa;
    --base-1: #f3f5f7;
    --base-2: #ffffff;
    --sidebar-base: rgb(243 245 247 / 85%);
    --footer-base: #abb4c4;

	--contrast-1: #000;
	--contrast-2: #a0a9bb;
	--contrast-3: #c3ccd5;
    
    --accent-0: #c25fd3;
    --accent-1: #d38bdf;
    --accent-2: rgb(194 117 219 / 50%);
    --accent-3: rgb(194 117 219 / 25%);
    
    --link: #36c;
    --link-hover: #447ff5;
    --link-new: #d33;
    
    --box-shadow: rgb(0 0 0 / 15%) 0 0 8px;
    --highlight-accent: rgb(190 128 211 / 8%);
    --highlight-contrast: rgb(195 204 213 / 18%);
    --highlight-progressive: rgb(51 102 204 / 25%);
    --modal-overlay: rgb(255 255 255 / 75%);
    --page-background: var(--base-0) url(https://idleon.info/wiki/images/9/9f/Background_Beach.png) no-repeat center center / cover fixed;
    
    --filter: none;
    --filter-ace: none;
    --filter-codemirror: none;
    --filter-link-th: brightness(0.5) saturate(1.5);
    
    --pi-background: var(--base-2);
    --pi-secondary-background: var(--accent-1);
    --pi-border-color: var(--accent-2);
}

:root.client-darkmode{
    --base-0: #101016;
    --base-1: #191924;
    --base-2: #222230;
    --sidebar-base: rgb(25 26 36 / 50%);
    --footer-base: var(--base-1);

	--contrast-1: #fff;
	--contrast-2: #707099;
	--contrast-3: #434360;
    
    --accent-0: #74328f;
    --accent-1: #8c3c9a;
    --accent-2: rgb(140 60 154 / 50%);
    --accent-3: rgb(140 60 154 / 25%);
    
    --link: #4d88fe;
    --link-hover: #6da0ff;
    --link-new: #ff4033;
    
    --box-shadow: rgb(0 0 0 / 15%) 0 0 8px;
    --highlight-accent: rgb(140 60 154 / 8%);
    --highlight-contrast: rgb(67 67 96 / 18%);
    --modal-overlay: rgb(0 0 0 / 75%);
    --page-background: var(--base-0) url(https://idleon.info/wiki/images/2/24/NightDesertBG.png) no-repeat center center / cover fixed;
    
    --filter: invert(1) hue-rotate(180deg);
    --filter-ace: invert(1) hue-rotate(170deg) saturate(3);
    --filter-codemirror: invert(1) hue-rotate(180deg) saturate(2);
    --filter-link-th: brightness(1.5) saturate(1.5);
    
    color-scheme: dark;
}

/* ------ GLOBAL STYLES ------ */

body {
	color: var(--contrast-1);
}

.pixelfont,
.mw-body h1,
.mw-body h2,
.mw-body h3,
.mw-body h4,
.mw-body h5,
.mw-body h6,
.Infobox .Header {
	font-family: 'Idleon';
	font-weight: normal;
	color: var(--contrast-1);
}

a,
a:visited,
.mw-body a,
.mw-body a:visited,
.mw-portlet-body a,
.mw-portlet-body a:visited,
.mw-parser-output a.extiw,
.mw-parser-output a.extiw:active,
.mw-parser-output a.extiw:visited,
.mw-parser-output a.external,
.mw-parser-output a.external:visited {
	color: var(--link);
}

a,
a:hover,
.mw-body a:hover,
.mw-body a:visited:hover,
.mw-portlet-body a:hover,
.mw-portlet-body a:visited:hover,
.mw-parser-output a.extiw:hover,
.mw-parser-output a.extiw:active:hover,
.mw-parser-output a.external:hover,
.mw-parser-output a.extiw:visited:hover,
.mw-parser-output a.external:visited:hover {
	color: var(--link-hover);
}

a.new,
.new a,
a.new:hover,
.new a:hover {
	color: var(--link-new) !important;
}

a.mw-selflink.selflink {
    color: inherit;
}

hr { 
	border-color: var(--accent-2); 
}

.transparent {
	background: transparent;
}

/* --- IMAGES --- */

img {
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

img[src$="Coin.png"] {
	margin-right: 2px;
	vertical-align: text-bottom;
}

.classimg img {
	width: auto;
	height: 50px;
}

.mw-body .mw-parser-output table a>img,
.mw-body .mw-parser-output table .floatnone>img {
	height: auto !important;
	max-width: 100% !important;
}

.thumbinner {
    background: var(--base-2);
    border-color: var(--contrast-3);
}
.thumbinner .thumbimage, .thumbborder{
    border-color: var(--contrast-3);
}

div.magnify a {
    filter: var(--filter);
}

/* --- ALIGNMENT --- */

.left {
	text-align: left;
}

.leftImage img {
	display: block;
	float: left;
}

.center {
	text-align: center;
}

.centerImage img {
	display: block;
	margin: 0 auto;
}

.right {
	text-align: right;
}

.rightImage img {
	display: block;
	float: right;
}

/* ------ TABLES ------ */

table:not([class]) {
	background: transparent;
}

.wikitable, 
.mw_metadata,
.mw-datatable, 
.dataTable,
.cargoTable { 
    background: var(--base-2);
    border: 1px solid var(--accent-1);
    border-radius: 5px; 
    border-collapse: separate; 
    border-spacing: 0;
    box-shadow: var(--box-shadow);
    color: var(--contrast-1);
    padding: 0; 
    overflow: hidden;
    position: relative;
}

.wikitable tr,
.mw_metadata tr, 
.mw-datatable tr,
.dataTable tr,
.cargoTable tr {
    background: transparent;
}

.wikitable tr th,
.mw_metadata tr th, 
.mw-datatable tr th,
.dataTable tr th,
.cargoTable tr th {
	background: var(--accent-1);
    border: 0 solid var(--accent-0);
    border-width: 0 0 1px;
    white-space: nowrap;
}

.wikitable tr th a.mw-collapsible-text,
.mw_metadata tr th a.mw-collapsible-text, 
.mw-datatable tr th a.mw-collapsible-text,
.dataTable tr th a.mw-collapsible-text,
.cargoTable tr th a.mw-collapsible-text {
    filter: var(--filter-link-th);
}

.wikitable tr td,
.mw_metadata tr td, 
.mw-datatable tr td, 
.dataTable tr td,
.cargoTable tr td {
    background: transparent;
    border: 0 solid var(--accent-3);
    border-width: 0 0 1px;
}

table tbody tr:last-of-type > th, 
table tbody tr:last-of-type > td,
table tfoot tr:last-of-type > th, 
table tfoot tr:last-of-type > td {
    border-bottom: 0;
}

.mw_metadata tr:nth-child(odd), 
.mw-datatable tr:nth-child(odd),
.dataTable tr:nth-child(odd),
.cargoTable tr:nth-child(odd),
.alterrows tr:nth-child(odd),
body table.cargoTable.noMerge tr:nth-child(odd),
body table.dataTable.stripe tbody tr.odd, 
body table.dataTable.display tbody tr.odd {
	background: var(--highlight-contrast);
}

.mw_metadata tr:nth-child(even), 
.mw-datatable tr:nth-child(even),
.dataTable tr:nth-child(even),
.cargoTable tr:nth-child(even),
.alterrows tr:nth-child(even),
body table.cargoTable.noMerge tr:nth-child(even),
body table.dataTable.stripe tbody tr.even, 
body table.dataTable.display tbody tr.even {
	background: transparent;
}

.wikitable tr:hover td,
.mw_metadata tr:hover td, 
.mw-datatable tr:hover td,
.dataTable tr:hover td,
.cargoTable tr:hover td { 
    background: var(--highlight-accent); 
}

.content-table caption,
caption.nowrap {
	white-space: nowrap;
}

/* --- COLLAPSIBLE TABLES --- */

.wikitable .mw-collapsible-toggle-default:before {
    padding-left: .1em;
}

.wikitable.mw-collapsed {
    border-collapse: collapse;
    border: 0;
}

/* --- RESPONSIVE TABLES --- */

.content-table-wrapper:not(.overflowed) .content-table-scrollbar {
	display: none;
}

.content-table-wrapper:not(.overflowed) .content-table-left,
.content-table-wrapper:not(.overflowed) .content-table-right {
	height: auto !important
}

.scroll-left.overflowed .content-table-left,
.scroll-right.overflowed .content-table-right{
    box-shadow: var(--box-shadow) 3px;
    border-color: var(--accent-2);
}

.content-table-wrapper.overflowed:has(.mw-collapsed) .content-table-left,
.content-table-wrapper.overflowed:has(.mw-collapsed) .content-table-right {
    display: none;
}

.content-table-wrapper.overflowed:has(.mw-collapsed) .content-table {
    overflow: hidden;
}

/* --- CARGO TABLES --- */

#content .cargoDynamicTable.dataTable thead th, 
#content .cargoDynamicTable.dataTable thead td {
    border-bottom: 1px solid var(--accent-0);
}

#content .cargoDynamicTable.dataTable.row-border tbody th, 
#content .cargoDynamicTable.dataTable.row-border tbody td, 
#content .cargoDynamicTable.dataTable.display tbody th, 
#content .cargoDynamicTable.dataTable.display tbody td {
    border-top: 0;
}

#content .cargoDynamicTable.dataTable tfoot th, 
#content .cargoDynamicTable.dataTable tfoot td {
    border: 0;
}

#content table.dataTable.display tbody tr.odd > .sorting_1, 
#content table.dataTable.order-column.stripe tbody tr.odd > .sorting_1,
#content table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
    background: var(--highlight-contrast);
}

#content table.dataTable.display tbody tr:hover > .sorting_1, 
#content table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
    background: var(--accent-3);
}

#content .dataTables_wrapper .dataTables_length, 
#content .dataTables_wrapper .dataTables_filter, 
#content .dataTables_wrapper .dataTables_info, 
#content .dataTables_wrapper .dataTables_processing, 
#content .dataTables_wrapper .dataTables_paginate {
    color: var(--contrast-1); 
    margin-bottom: .3em;
}

#content .dataTables_wrapper .dataTables_paginate .paginate_button {
    color: var(--link) !important; 
    border: none;
}
#content .dataTables_wrapper .dataTables_paginate .paginate_button:hover, 
#content .dataTables_wrapper .dataTables_paginate .paginate_button:active {
    color: var(--link-hover) !important;
    background: none;
}
#content .dataTables_wrapper .dataTables_paginate .paginate_button.current, 
#content .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    color: var(--contrast-1) !important;
    background: none;
    font-weight: bold;
}

#content .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, 
#content .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, 
#content .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: var(--contrast-2) !important;
}

/* --- SORTABLE TABLES --- */

.jquery-tablesorter th.headerSort,
table.dataTable thead .sorting,
.jquery-tablesorter th.headerSortUp,
table.dataTable thead .sorting_asc,
.jquery-tablesorter th.headerSortDown,
table.dataTable thead .sorting_desc {
	background-image: none;
    position:relative;
}
.jquery-tablesorter th.headerSort:after,
table.dataTable thead .sorting:after,
.jquery-tablesorter th.headerSortUp:after,
table.dataTable thead .sorting_asc:after,
.jquery-tablesorter th.headerSortDown:after,
table.dataTable thead .sorting_desc:after {
    display:inline-block;
    content: "";
    width:21px;
    height:9px;
    position: absolute;
    right:0;
    top: 50%;
    transform: translateY(-50%);
    filter: var(--filter);
}
table.dataTable thead .sorting:after,
.jquery-tablesorter th.headerSort:after {
	background: url(/wiki/resources/src/jquery.tablesorter.styles/images/sort_both.svg) no-repeat center center;
}
.jquery-tablesorter th.headerSortUp:after,
table.dataTable thead .sorting_asc:after {
	background: url(/wiki/resources/src/jquery.tablesorter.styles/images/sort_up.svg) no-repeat center center;
}
.jquery-tablesorter th.headerSortDown:after,
table.dataTable thead .sorting_desc:after {
	background: url(/wiki/resources/src/jquery.tablesorter.styles/images/sort_down.svg) no-repeat center center;
}

/* --- STICKY TABLE HEADER --- */

.stickyHeader.jquery-tablesorter th.headerSort,
.stickyHeader th {
	position: sticky;
	top: 0;
	z-index:100;
}

/* --- CENTER COLUMN TABLE --- */

.CenterColumn1Image tr td:nth-child(1) img {
	display: block;
	margin: 0 auto;
	max-height: 50px;
	width: auto;
}

.CenterColumn2Image tr td:nth-child(1) img {
	display: block;
	margin: 0 auto;
}

.CenterColumn1Image tr td.drop-separator:nth-child(1) img {
	display: inline-block;
}

/* --- FIRSTIMAGE TABLES (BOSS, NPC, BUILDING) --- */

.FirstImage {
	width: 100%;
	background: transparent;
}

.FirstImage td:first-of-type {
	width: 12%;
	min-width: 100px;
}

.FirstImage td:first-of-type img {
	max-height: 100px;
	height: auto;
	width: auto;
	margin: 0 auto;
	display: block;
}

/* --- TOC --- */

.toc {
	padding: 0;
	border-radius: 5px;
	background: var(--base-2);
	border: 1px solid var(--contrast-3);
	box-shadow: var(--box-shadow);
	margin: 0 0 1em;
}

.toc .toctitle {
	padding: .5em 1em;
}

.toc>ul,
.toc .tocUl {
	padding: .3em 1em;
	margin: 0;
	border-top: 1px solid var(--contrast-3);
}

.toc .toctitle {
	text-align: left;
	border: none;
}

.toggleNode {
	position: relative;
	float: right;
	left: unset;
	color: var(--contrast-2);
}

.tocnumber {
	display: none;
}

.toc .toctogglelabel, 
.toc .toggleSymbol {
	color:var(--link);
}

/* --------- MAINPAGE --------- */

.mainpage-body {
	display: flex;
}

.mainpage-left {
	max-width: calc(100% - 270px);
}

.mainpage-right .portable-infobox {
	float: none;
}

.mainpage-container {
	border: 1px solid var(--accent-2);
	background: var(--base-2);
	margin: 0 0 1em;
	padding: .5em .8em 0;
	box-shadow: var(--box-shadow);
	border-radius: 5px;
}

.mainpage-container h3 {
	font-size: 1.4em;
	margin: 0 0 .4em;
}

@media screen and (max-width: 850px) {
	.mainpage-body {
		flex-flow: column wrap;
	}
	.mainpage-left {
		max-width: 100%;
	}
}

.twitter-timeline.twitter-timeline-rendered iframe#twitter-widget-0 {
    max-width: 270px;
}


/* --- MAINPAGE FEATURES + BESTIARY --- */

.tile-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	width: calc(100% + 1em);
}

.mainpage-features .tile-halves {
	display: flex;
	flex: 1 1 auto;
	flex-flow: column;
	margin-right: 1em;
	overflow: hidden;
	margin-bottom: 1em;
	background: var(--accent-3);
	border-radius: 3px;
}

.mainpage-features .tile-halves:hover {
	background: var(--accent-2);
}

.mainpage-features .tile-halves a,
.mainpage-features .tile-halves:hover a {
	color:var(--contrast-1);
}

.mainpage-features .tile-halves h3 {
	font-size: 1em;
	font-weight: 700;
	font-family: inherit;
	margin: 0;
}

.mainpage-features .tile-top {
	height: 6.5em;
	position: relative;
}

.mainpage-features .tile-top-best {
	height: 8rem;
	position: relative;
}

.mainpage-features .tile-top.tile-image,
.mainpage-features .tile-top-best.tile-image-best {
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 0;
	max-height: 60em;
}

.mainpage-features .tile-top-best.tile-image-best {
	align-items: flex-end;
	padding-bottom: 5px;
}

.tile-top.tile-image a,
.tile-top-best.tile-image-best a {
	width: 100%;
}

.tile-top.tile-image img {
	width: 100%;
	object-fit: cover;
}

.tile-top-best.tile-image-best img {
	margin: auto;
	display: block;
}

.tile-halves .tile-bottom,
.tile-halves .tile-bottom-best {
	width: 100%;
	padding: 0;
	background: var(--accent-2); 
	flex-grow:1; 
	display: flex;
    align-items: center;
    justify-content: center;
}

.tile-halves:hover .tile-bottom,
.tile-halves:hover .tile-bottom-best {
	background: var(--accent-1);
}

.tile-bottom.link-button {
	align-content: flex-end;
	padding: 0;
}

.tile-bottom.link-button a {
	display: block;
	text-align: center;
	text-decoration: none;
	padding: .35em 0;
}

@media screen and (max-width: 850px) {
	.tile-row {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		width: calc(100% + 0.3em);
	}
	.mainpage-features .tile-halves {
		margin-right: 0.5em;
		margin-bottom: 0.5em;
	}
}


/* --- MAIN PAGE ITEMS & SKILLS --- */

.mainpage-container .tabber__tabs {
	flex: 0 1 100%;
}

.mainpage-container .tabber__tab {
	font-family: 'Idleon';
	font-weight: normal;
	font-size: 16px;
}

.tabber__panel .mainpage-items {
	margin-top: 1em
}

.mainpage-items,
.mainpage-skills {
	padding-bottom: .3em;
}

.mainpage-items ul,
.mainpage-skills ul {
	flex-flow: row wrap;
	display: flex;
	margin: 0;
}

.mainpage-items li,
.mainpage-skills li {
	display: flex;
	flex: 1 0 32.3%;
	margin: 0 .5% .5em;
	flex-grow: unset;
}

.mainpage-items.col4 li {
	flex: 1 0 24%;
	flex-grow: unset;
}

.mainpage-items li img {
	width:36px;
}

.mainpage-items li:hover img,
.mainpage-skills li:hover img {
	transform: scale(1.2);
	transition: 0.2s ease-out;
}

.mainpage-items li a:first-child,
.mainpage-skills li a:first-child {
	border-radius: 3px;
	width: 48px;
	height: 48px;
	min-width: 48px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mainpage-items li a:last-child,
.mainpage-skills li a:last-child {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	color: var(--contrast-1);
	font-size: 1.1em;
	font-weight: 700;
	padding-left: 0.7em;
	text-decoration: none;
}

.mainpage-items li:hover a:first-child,
.mainpage-skills li:hover a:first-child {
	border-radius: 3px 0 0 3px;
}

.mainpage-items li:hover a:last-child,
.mainpage-skills li:hover a:last-child {
	color: #fff;
	border-radius: 0 3px 3px 0;
}

.mainpage-items li a:first-child,
.mainpage-skills li a:first-child {
	background-color: var(--accent-2);
}

.mainpage-items li:hover a:last-child,
.mainpage-skills li:hover a:last-child {
	background-color: var(--accent-0);
}

@media screen and (max-width: 850px) {
	.mainpage-skills li,
	.mainpage-items li,
	.mainpage-items.col4 li {
		flex: 1 0 49%;
		flex-grow: unset;
	}
	.mainpage-skills li a:first-child,
	.mainpage-items li a:first-child {
		width: 40px;
		height: 40px;
	}
	.mainpage-skills li a:last-child,
	.mainpage-items li a:last-child {
		font-size: .9em;
	}
}

/* --- MAIN PAGE SKILL COLORS --- */

.mainpage-skills .skill-Mining a:first-child {
	background-color: #d2b244;
}
.mainpage-skills .skill-Mining:hover a:last-child {
	background-color: #b69213;
}

.mainpage-skills .skill-Choppin a:first-child {
	background-color: #748d36;
}
.mainpage-skills .skill-Choppin:hover a:last-child {
	background-color: #4c6215;
}

.mainpage-skills .skill-Smithing a:first-child {
	background-color: #878787;
}
.mainpage-skills .skill-Smithing:hover a:last-child {
	background-color: #616161;
}

.mainpage-skills .skill-Fishing a:first-child {
	background-color: #3e8e9a;
}
.mainpage-skills .skill-Fishing:hover a:last-child {
	background-color: #1a6671;
}

.mainpage-skills .skill-Catching a:first-child {
	background-color: #b9863b;
}
.mainpage-skills .skill-Catching:hover a:last-child {
	background-color: #7b5b13;
}

.mainpage-skills .skill-Alchemy a:first-child {
	background-color: #6e88e8;
}
.mainpage-skills .skill-Alchemy:hover a:last-child {
	background-color: #304d91;
}

.mainpage-skills .skill-Worship a:first-child {
	background-color: #b769d6;
}
.mainpage-skills .skill-Worship:hover a:last-child {
	background-color: #803a9c;
}

.mainpage-skills .skill-Construction a:first-child {
	background-color: #e27c5d;
}
.mainpage-skills .skill-Construction:hover a:last-child {
	background-color: #ab4d31;
}

.mainpage-skills .skill-Trapping a:first-child {
	background-color: #859ab3;
}
.mainpage-skills .skill-Trapping:hover a:last-child {
	background-color: #476588;
}

.mainpage-skills .skill-Breeding a:first-child { 
	background-color: #c99f4b; 
}
.mainpage-skills .skill-Breeding:hover a:last-child { 
	background-color: #d7b46e;
}

.mainpage-skills .skill-Cooking a:first-child { 
	background-color: #b55305; 
}
.mainpage-skills .skill-Cooking:hover a:last-child { 
	background-color: #d7813d; 
}

.mainpage-skills .skill-Laboratory a:first-child {
	background-color: #67c5df; 
}
.mainpage-skills .skill-Laboratory:hover a:last-child {
	background-color: #34cdf7;
}

.mainpage-skills .skill-Sailing a:first-child {
	background-color: #80FDFF; 
}
.mainpage-skills .skill-Sailing:hover a:last-child {
	background-color: #66CACC;
}

.mainpage-skills .skill-Divinity a:first-child {
	background-color: #FFFF80; 
}
.mainpage-skills .skill-Divinity:hover a:last-child {
	background-color: #CCCC66;
}

.mainpage-skills .skill-Gaming a:first-child {
	background-color: #FF6B66; 
}
.mainpage-skills .skill-Gaming:hover a:last-child {
	background-color: #FF2119;
}
/* --- MAINPAGE EMBEDS --- */

.twitchplayer,
.youtubeplayer {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 1em
}

.twitchplayer iframe,
.youtubeplayer iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%!important;
	height: 100%!important;
}

.widget-twitter {
	display: block;
	margin: 0 0 1em 1em;
}


/* --- WORLD HEADERS --- */

.worldheader {
	display: block;
	margin-bottom: 1em;
	width: 100%;
}

.worldheader>.mw-collapsible-toggle {
	display: block;
	float: none;
	box-shadow: var(--box-shadow);
	margin-bottom: 1em;
}

.mw-body .headerimg {
	height: 60px !important;
	width: 100%;
	object-fit: cover;
	object-position: 0;
	border-radius: 5px;
}

.mainpage-container .headerimg {
	margin-top: .3em
}

@media screen and (max-width: 850px) {
	.mw-body .headerimg {
		height: 50px !important;
	}
}


/* --- WORLD BANNERS (couldn't make .banner-image work, using style instead) (where?) --- */

.banner-image {
	position: relative;
	border-radius: 0.4em;
	max-width: 100%;
	overflow: hidden;
	float: left;
	margin: 0 0 3px;
}

.banner-text {
	position: absolute;
	bottom: 10px;
	left: 20px;
	color: white;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	font-size: 35px;
	font-weight: bold;
	padding-left: 2px;
	padding-right: 2px;
}

.header-text {
	position: absolute;
	bottom: 2px;
	left: 20px;
	color: white;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	font-size: 18px;
	font-weight: bold;
	padding-left: 2px;
	padding-right: 2px;
}

/* --- GENERIC FLEX LAYOUT --- */

.GenericFlex {
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
}

.GenericChild {
	display: block;
	flex: 0 1 48%;
	margin: 1em 0;
}

.ThreeCol .GenericChild {
	flex: 0 1 32%;
}

@media screen and (max-width: 850px) {
	.ThreeCol .GenericChild {
		flex: 0 1 48%;
	}
}

@media screen and (max-width: 650px) {
	.GenericChild,
	.ThreeCol .GenericChild {
		flex: 1 1 100%;
	}
}

.GenericChild h2,
.GenericChild h3 {
	margin-top: 0;
}

.GenericChild h3:after {
	content: '';
	display: block;
	border-bottom: solid 2px var(--accent-3);
	overflow: hidden;
}

.GenericChild .valInput {
	display: inline-block;
}

/* --- ALCHEMY TABLES --- */

.bubble-table {
	border: 1px solid var(--accent-2);
	border-radius: 5px;
	background: var(--base-2);
	width: 100%;
	margin: auto;
	box-shadow: var(--box-shadow);
}

.bubble-table th,
.bubble-table td {
	padding: 5px 10px;
}

.bubble-table th.name {
	text-align: center;
}

.bubble-table th.icon {
	padding: 0;
}

.bubble-table td img {
	width: 24px;
}

.bubble-table tr:first-child th:nth-child(1) {
	width: 5%;
	border-top-left-radius: 3px;
}

.bubble-table tr:first-child th:nth-child(2) {
	width: 15%;
}

.bubble-table tr:first-child th:nth-child(3) {
	width: 20%;
}

.bubble-table tr:first-child th:nth-child(4) {
	width: 55%;
	border-top-right-radius: 3px
}

.bubbleDiv table {
	width: 100%;
	background: var(--base-2);
	border-radius: 5px;
	border: 1px solid var(--accent-2);
	box-shadow: var(--box-shadow);
}

.bubbleDiv .bubbleDesc td {
	background: var(--accent-1);
	text-align: center;
	border-radius: 3px 3px 0 0;
	padding: .5em;
}

.bubbleDiv .bubbleDesc h3 {
	margin: 0;
}

.bubbleDiv .bubbleDesc h3:after {
	display: none;
}

.bubbleDiv .bubbleDesc p {
	margin: 0
}

.orange-cauldron, 
.orange .bubbleDiv table {
	border-color: rgb(177 88 0 / 60%);
}

.orange-cauldron tr:first-child, 
.orange .bubbleDiv tr.bubbleDesc td {
    background-color: rgb(255 148 32 / 50%);
}

.orange-cauldron tr:nth-child(2n+3) {
	background-color: rgb(255 148 32 / 15%);
}

.orange-cauldron tr.big {
	background-color: rgb(255 148 32 / 35%);
}

.green-cauldron, 
.green .bubbleDiv table {
	border-color: rgb(49 147 52 / 60%);
}

.green-cauldron tr:first-child, 
.green .bubbleDiv tr.bubbleDesc td {
    background-color: rgb(71 219 90 / 50%);
}

.green-cauldron tr:nth-child(2n+3) {
	background-color: rgb(71 219 90 / 15%);
}

.green-cauldron tr.big {
	background-color: rgb(71 219 90 / 35%);
}

.purple-cauldron tr:first-child, 
.purple .bubbleDiv tr.bubbleDesc td {
    background-color: rgb(208 89 240 / 50%);
}

.purple-cauldron tr:nth-child(2n+3) {
	background-color: rgb(208 89 240 / 15%);
}

.purple-cauldron tr.big {
	background-color: rgb(208 89 240 / 35%);
}

.yellow-cauldron, 
.yellow .bubbleDiv table {
	border-color: rgb(190 131 0 / 60%);
}

.yellow-cauldron tr:first-child, 
.yellow .bubbleDiv tr.bubbleDesc td {
    background-color: rgb(250 208 10 / 50%);
}

.yellow-cauldron tr:nth-child(2n+3) {
	background-color: rgb(250 208 10 / 15%);
}

.yellow-cauldron tr.big {
	background-color: rgb(250 208 10 / 35%);
}

.cauldInput {
	min-width: 50%;
	background: transparent;
}

.cauldInput td:first-child {
	text-align: right;
}

/* --- ACHIEVEMENTS --- */

.secret-achievement,
.steam-exclusive {
	display:block;
	font-size:.8em;
	padding:0 .2em;
	text-transform:uppercase;
	font-weight: 700;
	width:fit-content;
	text-align:center;
	margin-bottom: .3em;
}

.steam-exclusive {
	background: rgb(35 179 172 / 35%);
	border: 1px solid #6aafac;
}

.secret-achievement {
    background: rgb(247 89 126 / 35%);
    border: 1px solid #e56885;
}

/* --- INFOBOX --- */

.Infobox {
	width: 30%;
	min-width: 300px;
	float: right;
	clear: right;
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	border-radius: 5px;
	margin: 0 0 1em 1em;
	padding: 2px;
	box-shadow: var(--box-shadow);
}

.Infobox .Header,
.Infobox .SubHeader {
	background: var(--accent-1);
	text-align: center;
	font-weight: 700;
}


/* Fix for Firefox, <table> doesn't fill the space properly */

.Infobox table {
	width: 100%;
}


/* Affects the very first header of the Infobox */

.Infobox .Header {
	padding: 0.5em;
	border-radius: 3px 3px 0 0;
	font-size: 1.2em;
}

/* Affects all the headers/dividers below the image */

.Infobox .SubHeader {
	margin-top: 2px;
	padding: .2em
}


/* Centers the main image */

.Infobox .HeaderImage {
	text-align: center;
	padding: 5px 0;
}


/* Constraining the max height of images in infoboxes */

.Infobox .HeaderImage img {
	max-height: 300px;
	width: auto;
}


/* --- INFOBOX (TABLE) --- */

table.Infobox {
	padding: 0;
}


/* Affects the left column (purple) */

.Infobox th {
	background: var(--accent-2);
	text-align: left;
	margin-top: 2px;
	padding: .2em;
}


/* Makes width of the two rows more consistent, but allows for flexibility // % gets overriden by colspan, em works // */

.Infobox th,
.Infobox td {
	max-width: 8em;
	min-width: 5em;
}


/* Rounds the last table row to fit with the rounded edge of the Infobox */

.LastTable {
	border-radius: 0 0 0 3px;
}


/* --- INFOBOX (DEFINITION LIST) --- */

.Infobox dl,
.Infobox .dl {
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 2px;
	margin: 0;
}

.Infobox dl:not(:empty){
	margin-top: 2px;
}

.Infobox dt,
.Infobox dd,
.Infobox .dt,
.Infobox .dd {
	margin: 0;
	padding: .2em;
	font-family: inherit;
	display: flex;
	align-items: center;
}

.Infobox dt,
.Infobox .dt {
	line-height: 1.5;
	background: var(--accent-2);
	font-weight: 700
}

.Infobox>:last-child {
	border-radius: 0 0 3px 3px;
	overflow: hidden
}

/* --- PORTABLE INFOBOX --- */

.portable-infobox {
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	border-radius: 5px;
	box-shadow: var(--box-shadow);
}

.portable-infobox * {
	box-sizing: border-box;
}

.mw-body .mw-parser-output .portable-infobox h2:after,
.mw-body .mw-parser-output .portable-infobox h3:after {
	display: none;
}

.portable-infobox div.pi-item {
	font-size: .85rem;
}

.portable-infobox .pi-title,
.portable-infobox .pi-header {
	background: var(--accent-1);
	text-align: center;
}

.portable-infobox .pi-title {
	font-family: 'Idleon';
	padding: 0.5em 0.5em 0.3em;
}

.portable-infobox .pi-border-color {
	border-color: var(--accent-3);
}

.portable-infobox .pi-media {
	padding: 0.5em 0;
}

.portable-infobox .pi-section-navigation,
.portable-infobox .pi-section-navigation,
.portable-infobox .pi-media-collection-tabs {
	border-bottom: 1px solid var(--accent-2);
}

.pi-section-navigation .pi-section-tab,
.pi-media-collection .pi-tab-link {
	background: none;
	border: none;
	color: var(--link);
	font-weight: bold;
}

.pi-section-navigation .pi-section-tab:hover,
.pi-media-collection .pi-tab-link:hover {
	color: var(--link-hover);
	box-shadow: inset 0 -2px 0 0 currentColor;
}

.pi-section-navigation .pi-section-tab.pi-section-active,
.pi-section-navigation .pi-section-tab.current,
.pi-media-collection .pi-tab-link.current {
	background: none;
	box-shadow: inset 0 -2px 0 0 currentColor;
}

.pi-media-collection-tab-content figure {
    vertical-align: text-bottom;
    display: flex;
    justify-content: center;
    align-items: end;
}

.portable-infobox .grid-4, .portable-infobox .grid-5 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 5px 2px;
    margin: auto;
    width:100%;
    text-align:center;
}
.portable-infobox .grid-5 {
    grid-template-columns: repeat(5,1fr);
}

[data-name="headerImg"] .pi-image-thumbnail {
    min-width: 100%;
    max-height: auto;
}

/* --- MAINPAGE INFOBOX --- */

.portable-infobox.pi-theme-gameinfo .pi-section-active .pi-item {
	padding: 0; 
	border-top: 1px solid var(--accent-0); 
	border-bottom: 1px solid var(--accent-0);
}

/* --- BOSS INFOBOX --- */

.pi-data[data-source="NormalDamages"], 
.pi-data[data-source="ChaoticDamages"], 
.pi-data[data-source="NightmareDamages"] {padding:0;}
.pi-data[data-source="NormalDamages"] .pi-data:last-of-type, 
.pi-data[data-source="ChaoticDamages"] .pi-data:last-of-type, 
.pi-data[data-source="NightmareDamages"] .pi-data:last-of-type {border:0;}

/* --- CLASS INFOBOX, NPC INFOBOX --- */

.portable-infobox.pi-theme-classinfo .pi-data-label,
.portable-infobox.pi-theme-npcinfo .pi-data-label {
    flex-basis: 120px;
}

/* --- SKILL INFOBOX --- */

.portable-infobox.pi-theme-skillinfo .pi-media {
	padding: 0; 
	border-top: 1px solid var(--accent-0); 
	border-bottom: 1px solid var(--accent-0);
}

.portable-infobox.pi-theme-skillinfo ul {
	margin-top: 0;
}

/* --- INFOBOX EXTRAS --- */

.CardStar {
	max-height: 13px;
	width: auto;
}

.FishDepth {
    max-height: 11px;
    width: auto;
}

.SlabNum {
    position:relative; 
    float:left;
}

.SlabNum span {
    position: absolute;
    font-size: 16px;
    color: #fff;
    min-width: 28px;
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
    font-weight: 400;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.Infobox .str, 
.portable-infobox .str {
	color:#ef7600;
}
.Infobox .agi, 
.portable-infobox .agi { 
	color:#19b131;
}
.Infobox .wis, 
.portable-infobox .wis {
	color:#cb50ef;
}
.Infobox .luk, 
.portable-infobox .luk {
	color:#d3a20f;
}

/* --- DETAILBOX INFOBOX --- */

.DetailboxGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18em, 1fr));
    row-gap: .5em;
    column-gap: .5em;
}

.Infobox.Detailbox {
	float: none;
	margin: 0 0 1em;
	table-layout: fixed;
}

.DetailboxGrid .Infobox.Detailbox {
   min-width: auto;
   width: 100%;
   margin:0;
}

.Infobox.Detailbox .Header {
	font-family: inherit;
	font-size: 1em;
	padding: .2em;
	background: var(--accent-2);
	font-weight: bold;
}

.Infobox.Detailbox .SellPrice {
	text-align: center
}

.Infobox.Detailbox .SubHeader {
	font-size: .9em;
	background: var(--accent-2);
	font-weight: bold;
}

.Infobox.Detailbox dl, 
.Infobox.Detailbox .dl {
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
}

.Infobox.Detailbox dt,
.Infobox.Detailbox dd,
.Infobox.Detailbox .dt,
.Infobox.Detailbox .dd {
	margin: 0;
	font-size: .9em;
	border-bottom: 0; 
	padding: .1em .2em;
}

.Infobox.Detailbox dt,
.Infobox.Detailbox .dt { 
	background:var(--accent-3);
}

.Infobox.Detailbox .start {
	grid-column-start: 1;
}

.Infobox.Detailbox .wide {
	grid-column: span 3;
}

.Infobox.Detailbox .clearfix,
.Infobox.Detailbox hr {
	display:none;
}

/* --- DETAILBOX INFOBOX (TOOLTIP) --- */

.tooltip .Infobox.Detailbox,
.tooltipster-content .Infobox.Detailbox {
	display: block;
	float: none;
	clear: both;
	margin: 0;
	font-size: 1rem;
	width: auto;
	min-width: 200px;
	max-width: 300px;
	color: var(--contrast-1);
	margin: -6px -10px;
	border-color: #808080;
}

.tooltip .Infobox.Detailbox .Header,
.tooltip .Infobox.Detailbox .SellPrice,
.tooltip .Infobox.Detailbox .HeaderImage,
.tooltip .Infobox.Detailbox .SubHeader,
.tooltipster-content .Infobox.Detailbox .Header,
.tooltipster-content .Infobox.Detailbox .SellPrice,
.tooltipster-content .Infobox.Detailbox .HeaderImage,
.tooltipster-content .Infobox.Detailbox .SubHeader{
	display: block;
}

.tooltip .Infobox.Detailbox .HeaderImage,
.tooltipster-content .Infobox.Detailbox .HeaderImage {
	padding: 2px 0;
}

.tooltip .Infobox.Detailbox .HeaderImage img,
.tooltipster-content .Infobox.Detailbox .HeaderImage img {
	max-width: 36px;
}

/* --- GENERAL TOOLTIP --- */

.tooltipster-default .tooltipster-content {
	font-family:inherit; 
}
.tooltipster-content p {
	margin: 0;
}
.tooltipster-base.tooltipster-default.tooltipster-fade.tooltipster-fade-show {
	box-shadow: var(--box-shadow);
}

/* --- DETAILBOX RNG ITEMS --- */

.DetailboxGrid.RNG-Items {
    grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
}

.Infobox.RNG-Item {
   border-width: 2px;
}

.Infobox.Rarity-Common {
	border-color:#878898;
}
.Infobox.Rarity-Common .Header, .Infobox.Rarity-Common .SubHeader {
	background-color: rgb(135 136 152 / 30%);
}
.Infobox.Rarity-Uncommon {
	border-color:#1a9934;
}
.Infobox.Rarity-Uncommon .Header, .Infobox.Rarity-Uncommon .SubHeader {
	background-color: rgb(26 153 52 / 30%);
}
.Infobox.Rarity-Rare {
	border-color:#3c65cb;
}
.Infobox.Rarity-Rare .Header, .Infobox.Rarity-Rare .SubHeader {
	background-color: rgb(60 101 203 / 30%);
}
.Infobox.Rarity-Epic {
	border-color:#5a3cc9;
}
.Infobox.Rarity-Epic .Header, .Infobox.Rarity-Epic .SubHeader {
	background-color: rgb(90 60 201 / 30%);
}
.Infobox.Rarity-Legendary {
	border-color:#eb7b07;
}
.Infobox.Rarity-Legendary .Header, .Infobox.Rarity-Legendary .SubHeader {
	background-color: rgb(235 123 7 / 30%);
}

/* --- DETAILBOX DUNGEON ENEMIES --- */

.DetailboxGrid.DungeonEnemies {
    grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
}

/* --- NAVBOX --- */

.Navbox {
	width: 100%;
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	border-radius: 5px;
	margin: 0 0 1em;
	padding: 2px;
	box-shadow: var(--box-shadow);
}

.Navbox th {
	background: var(--accent-1);
	text-align: center;
	font-weight: 700;
}

/* ----- FORGE SLOT ----- */

.forgeslot {
	width: 100%;
	margin-bottom: 1em;
	text-align: center;
	max-width: 400px;
}

.forgeslot th:first-child,
.forgeslot td:first-child {
	text-align: left;
}

.forgeslot tr:last-child td {
	text-align: right;
}

.forgeslot .anviltab img {
	float: left;
}

/* ----- BONUS CALCS (GOLD FOOD, STATUES)  ----- */

.bonusDiv {
    width: 100%;
    max-width: 400px;
    background: var(--base-2);
    border: 1px solid var(--accent-2);
    border-radius: 5px;
    margin: 0 0 1em;
    padding: 2px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.bonusDiv .bonusHead {
    background: var(--accent-1);
    font-weight: 700;
    border-radius: 3px 3px 0 0;
    padding: .2em;
    margin-bottom: .5em;
}

.bonusDiv p{
	max-width: 90%; 
	margin: 1em auto;
}

.bonusDiv .valInput {
    vertical-align: middle;
}

.bonusDiv .result, .bonusDiv .result1, .bonusDiv .result2, .bonusDiv .resultB, .bonusDiv .resultM {
    color: #358510; 
    font-weight: bold;
}

/* ----- PATCH NOTES ----- */

.patchnote {
	width: 50%;
	margin: 0 0 1em;
}

.patchnote tr td { 
	border: 0;
}

.patchnote tr:hover td {
	background: transparent;
}

.GenericChild .patchnote {
	width: 100%;
}

.patchnote .mw-prefixindex-body {
	columns: 8em 3;
    -moz-columns: 8em 3;
    -webkit-columns: 8em 3;
}

.patchnote .mw-prefixindex-body ul {
	margin-top: 0;
}

/* --- SITE NOTICE --- */

#siteNotice {
	border: 1px solid transparent;
	border-spacing: 3px;
	background-image: linear-gradient(#ffcffa 60%, #ee75ff 70%);
	text-align: center;
	border-radius: 5px;
	color: #fff;
	text-shadow: -0.065em 0 #000, 0 0.065em #000, 0.065em 0 #000, 0 -0.065em #000;
	margin: 0 auto 1em !important;
	font-size: 16px;
	font-family: 'Idleon';
}

#siteNotice a {
	color: #94f9ff !important;
	cursor: pointer;
}

#siteNotice .mw-dismissable-notice {
	border: 1px solid #000;
	border-radius: 3px;
	padding: 0 1em;
	background-image: linear-gradient(#a94bc1 30%, #7e38aa 80%);
	margin: 3px;
	outline: 1px solid #000;
	outline-offset: 3px;
}

#siteNotice .mw-dismissable-notice-close {
	margin: 0.5em;
}

#siteNotice .mw-dismissable-notice-body {
	margin: 0;
}

#localNotice p {
	margin: .5em;
}

/* --- MIRAHEZE NOTICES --- */
#siteNotice .wikitable {background:transparent !important; color:inherit !important; border:0 !important; margin:0 !important}
#siteNotice .wikitable td{border:0 !important}

/* --- ANNOUNCEMENT BANNER --- */

.banner {
	border: 1px solid #000;
	border-spacing: 3px;
	background-image: linear-gradient(#d5d5d5 60%, #979797 70%);
	width: 60%;
	text-align: center;
	border-radius: 5px;
	color: #fff;
	font-size: 20px;
	text-shadow: -.065em 0 #000, 0 .065em #000, .065em 0 #000, 0 -.065em #000;
	margin: 0 auto 1em !important;
	padding: 3px;
}

.banner .banner-inner {
	border: 1px solid #000;
	border-radius: 3px;
	background-image: linear-gradient(#828282 30%, #5c5c5c 80%);
	padding: 0 1em;
}

.banner a {
	color: #94f9ff !important;
}

.banner.blue {
	background-image: linear-gradient(#b0fdfe 60%, #2891d8 70%);
}

.banner.blue .banner-inner {
	background-image: linear-gradient(#369de2 30%, #0d578c 80%);
}

.banner.red {
	background-image: linear-gradient(#ffc0b8 60%, #fe7663 70%);
}

.banner.red .banner-inner {
	background-image: linear-gradient(#ff533c 30%, #d4240c 80%);
}

.banner.purple {
	background-image: linear-gradient(#ffcffa 60%, #ee75ff 70%);
}

.banner.purple .banner-inner {
	background-image: linear-gradient(#a94bc1 30%, #7e38aa 80%);
}


/* ----- SECRETS TOGGLE ----- */

.secrets {
	box-sizing: border-box;
	width: 100%;
	border: 1px solid var(--contrast-3);
	padding: 1em;
	background-color: var(--base-2);
	margin-bottom: 1em;
	box-shadow: var(--box-shadow);
	border-radius: 3px;
	clear: both;
}

.secrets>h3 {
	margin: 0;
	font-size: 20px;
	font-weight:normal;
}

.secrets>.mw-collapsible-content {
	margin-top: 1em;
	overflow: auto;
}

/* ----- ENEMY NAV ----- */

.EnemyNav {
	display: flex;
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	margin-bottom: 1em;
	overflow: auto;
	border-radius: 5px;
	padding: .8em;
	box-shadow: var(--box-shadow);
}

.EnemyNav div {
	display: flex;
	align-items: center;
	flex-basis: 33%;
}

.EnemyNav div a {
	line-height: 1;
	margin: 0 1px;
}

.EnemyNav .EnemyNavCenter {
	justify-content: center;
}

.EnemyNav .EnemyNavRight {
	justify-content: flex-end;
}

/* ----- TABBER NEUE ----- */

.tabber__tab:active,
.tabber__tab:hover,
.tabber__tab--active,
.tabber__tab--active:visited {
	box-shadow: inset 0 -2px 0 0 currentColor;
}

.tabber__section {
	scroll-behavior: unset !important
}

.tabber__panel {
	overscroll-behavior-y: auto !important;
}

.tabber__header {
	box-shadow: inset 0 -1px 0 0 var(--accent-2);
}

/* ----- DETAILED RECIPE TAB ----- */

.detrecipe {
	margin-top: 1em;
}

.detrecipe .tabber__header {
    box-shadow: none;
}

/* --- STICKY NAV HEADER --- */

.sticky-card-nav {
    text-align: center;
    font-size: 1.4em;
    display: block;
    background: var(--base-1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5em 1em;
    margin: 0;
}

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

	.sticky-card-nav {
		margin: 0 -1em;
        top: 2em;
	}

}

/* --- RESPONSIVE TABLES, INFOBOXES, ETC --- */

@media screen and (max-width: 550px) {
	.Infobox,
	.wikitable,
	.EnemyNav,
	.widget-twitter {
		width: 100%;
		float: none;
		margin: 0 0 1em;
	}
}

/* --- CSS TOOLTIPS --- */

.tooltip {
	display: inline;
	position: relative;
	text-decoration: none; 
	border-bottom: 1px dotted #AAA;
}

.tooltip>span {
	display: none;
}

.tooltip:hover>span {
    display: block;
    position: absolute;
    z-index: 999;
    background: #000;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 12px;
    line-height: 1.2rem;
    min-width: 2em;
    text-align: center;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 8px));
}

.tooltip:hover>span:before {
    display: block;
    content: "";
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid #000;
    bottom: -7px;
    width: 0;
    position: absolute;
    z-index: 999;
    left: calc(50% - 8px);
}

/* --- SIDEBAR --- */

#p-Skills {
    counter-reset: world;
}
#p-Skills li:nth-child(3n-2):before{
    counter-increment: world;
    content: "World " counter(world);
    display:block; 
    font-variant: small-caps; 
    padding-bottom:.5em;
}
#p-Skills li:nth-child(3n) {
    padding-bottom:1em;
}
#p-Skills li:last-child {
    padding-bottom:0;
}

/* Questy Captcha text. To make it more clear. */
div.mw-htmlform-field-HTMLInfoField > div.mw-input {
    color:green;
    font-weight:bold;
    font-style:italic;
}