MediaWiki:Citizen.css

MediaWiki interface page
Revision as of 16:09, 6 April 2024 by Timothy (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.
/* All CSS here will be loaded for users of the Citizen skin */
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
@import url("https://fonts.googleapis.com/css?family=VT323&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Reddit+Mono:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

/*Variables*/
:root {
    --tmw-pink: hsl(337,99%,50%);
    --tmw-purple: rgb(192 14 171 / 75%);
    --tmw-blue: hsl(194, 100%, 50%);
    --tmw-white: #e8eaed;
    --tmw-bg-gradient: radial-gradient(hsl(205, 69%, 12%), black 200%);
    --tmw-bg-gradient-dark: radial-gradient(hsl(208, 100%, 12%), black 100%);
    --tmw-after-gradient: repeating-linear-gradient(0deg, rgba(0, 128, 255, 0), rgba(0, 128, 255, 0.1) 4px, 
		rgba(0, 128, 255, 0.1) 4px, rgba(0, 128, 255, 0) 7px);
    --tmw-table-gradient: radial-gradient(hsl(205, 100%, 6%), black 200%);
    --tmw-blue-shadow: 0 0 5px var(--tmw-blue),
        inset 0 0 5px var(--tmw-blue);
    --tmw-blue-shadow-clip: 0 0 5px var(--tmw-blue);
    --tmw-blue-shadow-clip-2: 0 0 5px var(--tmw-blue),
    	inset 0 -2px 5px -2px var(--tmw-blue);
    --tmw-pink-shadow: 0 0 14px var(--tmw-purple),
        inset 0 0 14px var(--tmw-pink);
    --tmw-blue-border: 1px solid var(--tmw-blue);
    --tmw-pink-border: 1px solid var(--tmw-pink);
    --tmw-pink-border-figure: 2px solid var(--tmw-pink);
    --tmw-default-radius: 15px;
    --cover-size: 15rem;
}

/*Generic style templates*/
.tmw-pink-box {
	border: var(--tmw-pink-border);
	border-radius: var(--tmw-default-radius);
	background: var(--tmw-bg-gradient-dark);
	box-shadow: var(--tmw-pink-shadow);
	padding: 1em;
}
.tmw-blue-box {
	border: var(--tmw-blue-border);
	border-radius: var(--tmw-default-radius);
	background: var(--tmw-bg-gradient-dark);
	box-shadow: var(--tmw-blue-shadow);
	padding: 1em;
}

/*General body/interface modifications*/
html {
	background: var(--tmw-bg-gradient);
}
body {
    background: var(--tmw-bg-gradient);
    /*font: 0.8125rem/1.25rem monospace;*/
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.25rem;
    font-size: 0.75rem;
    text-shadow: 0 0 5px var(--tmw-pink);
    color: var(--tmw-white) !important;
}
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background: var(--tmw-after-gradient);
    pointer-events: none;
}
.citizen-body-header--sticky .mw-body-header::before {
    border-left: var(--tmw-blue-border);
    border-bottom: var(--tmw-blue-border);
    border-right: var(--tmw-blue-border);
    border-bottom-left-radius: var(--tmw-default-radius);
    border-bottom-right-radius: var(--tmw-default-radius);
    box-shadow: var(--tmw-blue-shadow-clip-2);
    background: var(--tmw-bg-gradient);
    left: 0;
    right: 0;
    width: 100%;
}
.citizen-body-header--sticky .mw-body-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: var(--tmw-after-gradient);
    pointer-events: none;
}
.citizen-body-header--sticky .page-heading {
	padding-left: 1.5em;
}
.citizen-body-header--sticky .citizen-jumptotop:hover {
	margin-left: 1.5em;
}
@media screen and (min-width: 1120px) {
	.citizen-header {
		border-right: var(--tmw-blue-border);
		box-shadow: var(--tmw-blue-shadow-clip);
	}
}
/*Images/Captions modifications*/
.thumbcaption {
	font-weight: bold;
    text-wrap: balance;
    text-align: center !important;
}

/*.thumbinner > a {
    display: flex;
    justify-content: center;
}
.figure > a {
    display: flex;
    justify-content: center;
}*/
.hidden-image {
    display: none;
}
.thumbimage {
	border: var(--tmw-pink-border) !important;
    border-radius: var(--tmw-default-radius);
    box-shadow: var(--tmw-pink-shadow);
    padding: 1px;
}
figcaption {
	font-weight: bold !important;
    text-wrap: balance;
    text-align: center !important;
    border: 0 !important;
    border-top: 0 !important;
    border-width: 0 !important;
    box-shadow: none !important;
    background-color: revert !important;
    padding: 0.75em !important;
}
figure {
	border: 0 !important;
    background-color: revert !important;
    border-collapse: separate !important;
}
figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element, 
figure[typeof~='mw:File/Frame'] > :not(figcaption) .mw-file-element {
	margin: 0 !important;
	border: var(--tmw-pink-border-figure) !important;
	border-radius: var(--tmw-default-radius);
	box-shadow: var(--tmw-pink-shadow);
}
.mw-content-ltr figure[typeof~='mw:File/Thumb'] > .mw-file-description::after, 
.mw-content-ltr figure[typeof~='mw:File/Thumb'] > .mw-file-magnify::after {
	display: none;
}
.mw-content-ltr figure[typeof~='mw:File/Thumb'] > figcaption::before {
	display: none;
}
.borderless-img-with-caption .thumbimage {
	border: 0 !important;
    box-shadow: none;
}
.thumbinner {
	position: relative;
	z-index: 1;
}
.thumbinner > a.image {
	margin: 0;
}

/*File pages modifications*/
.cp-wrapper {
    border: var(--tmw-pink-border);
    border-radius: var(--tmw-default-radius);
    padding: 1em;
    box-shadow: var(--tmw-pink-shadow);
    background-image: var(--tmw-bg-gradient-dark);
}

/*Infobox modifications*/
.infobox {
    box-shadow: var(--tmw-pink-shadow);
    border: var(--tmw-pink-border);
    border-spacing: 3px;
    background-image: var(--tmw-bg-gradient-dark);
    border-radius: var(--tmw-default-radius);
    margin: 0.5em 0 0.5em 1.5em;
    padding: 0.5em;
    float: right;
    clear: both;
    font-size: 88%;
    width: 100%;
    max-width: 20rem;
    /*width: min-content;*/
    line-height: 1.5em;
    display: flex;
    justify-content: center;
	    & th {
	    background: initial !important;
		}
		& .nowrap {
		white-space: nowrap;
		padding-right: 10px;
		}
		& :is(.infobox-above, .infobox-title, caption) {
		font-size: 125%;
		font-weight: bold;
		text-align: center;
		text-wrap: balance;
		}
		& :is(.infobox-header,.infobox-subheader, .infobox-image, .infobox-full-data, .infobox-below) {
		text-align: center;
		}
		& :is(#youtube-outer, .video-outer) {
		width: 300px !important;
		height: 273px !important;
		}
		& .infobox-navbar {
		text-align: right;
		}
		& .mw-collapsible-toggle {
	    float: none;
		}
		& tbody {
		position: relative;
		z-index: 1;
		}
}
@media (width <= 850px) {
	.infobox {
		float: none;
		margin: 0 auto !important;
	}
}
.infobox-header, .infobox-label, .infobox-above, .infobox-full-data, .infobox-data, .infobox-below, .infobox-subheader, .infobox-image, .infobox-navbar, .infobox th, .infobox td {
    vertical-align: top;
}
.infobox-label, .infobox-data, .infobox th, .infobox td {
    text-align: left;
}
.infobox-below {
    text-align: left !important;
}
.infobox-title, .infobox caption {
    padding: 0.2em;
}
.hidden-content.mw-collapsible-content p {
    display: none;
}
.infobox-caption {
	text-wrap: balance;
}
.mw-body-content table .infobox-image a > img {
	max-width: 100% !important;
	height: auto;
}

/*Navbox modifications - used at the bottom of content pages*/
.navbox-inner {
    box-shadow: var(--tmw-pink-shadow);
}
.navbox-inner .fn.org {
    font-size: 100% !important;
    margin: 0 !important;
}

/*Headings modifications*/
h1, h2, h3, h4, h5, h6 {
    color: var(--tmw-pink);
    font-family: "Press Start 2P", monospace !important;
    text-shadow: 0.2rem 0 var(--tmw-purple);
    letter-spacing: -0.06rem;
}

/*Reference tooltips modifications - when hovering over a citation/Other reference stuff*/
.rt-settingsLink {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fd184e' d='M20 14.5v-2.9l-1.8-.3c-.1-.4-.3-.8-.6-1.4l1.1-1.5-2.1-2.1-1.5 1.1c-.5-.3-1-.5-1.4-.6L13.5 5h-2.9l-.3 1.8c-.5.1-.9.3-1.4.6L7.4 6.3 5.3 8.4l1 1.5c-.3.5-.4.9-.6 1.4l-1.7.2v2.9l1.8.3c.1.5.3.9.6 1.4l-1 1.5 2.1 2.1 1.5-1c.4.2.9.4 1.4.6l.3 1.8h3l.3-1.8c.5-.1.9-.3 1.4-.6l1.5 1.1 2.1-2.1-1.1-1.5c.3-.5.5-1 .6-1.4l1.5-.3zM12 16c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z'/%3E%3C/svg%3E");
}
.rt-tooltip {
    background: var(--tmw-bg-gradient-dark);
    border: var(--tmw-blue-border);
    border-radius: var(--tmw-default-radius);
    font-size: 14px;
    box-shadow: var(--tmw-blue-shadow);
    color: inherit;
}
.rt-tooltip::after {
    content: "";
    position: inherit;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: var(--tmw-after-gradient);
    pointer-events: none;
}
.rt-tooltipTail {
    display: none;
}
ol.references li:target,
sup.reference:target {
    background-color: var(--tmw-pink);
}
ol.references > li {
    word-wrap: break-word;
}
cite > a,
.mw-parser-output a.extiw,
.mw-parser-output a.extiw:active,
.mw-parser-output a.external {
    color: var(--tmw-blue) !important;
}

/*MWE popups modifications - when hovering over a link to another article*/
.mwe-popups {
    background: transparent;
    border: var(--tmw-blue-border);
    border-radius: var(--tmw-default-radius);
}
.mwe-popups-container {
    background: var(--tmw-bg-gradient-dark) !important;
    border: var(--tmw-blue-border);
    border-radius: var(--tmw-default-radius);
    box-shadow: var(--tmw-blue-shadow);
}
.mwe-popups-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: var(--tmw-after-gradient);
    pointer-events: none;
}
.mwe-popups-extract:hover {
    color: var(--tmw-blue) !important;
}
.mwe-popups .mwe-popups-extract[dir="ltr"]:after {
    background-image: none !important;
}
.mwe-popups .mwe-popups-container {
    clip-path: none;
}
.mwe-popups.mwe-popups-is-not-tall .mwe-popups-thumbnail {
    border-top-left-radius: var(--tmw-default-radius);
    border-top-right-radius: var(--tmw-default-radius);
    width: 318px;
    z-index: 1;
    position: relative;
}
.mwe-popups.mwe-popups-is-tall .mwe-popups-discreet .mwe-popups-thumbnail {
    border-top-right-radius: var(--tmw-default-radius);
    border-bottom-right-radius: var(--tmw-default-radius);
    z-index: 1;
    position: relative;
}
.mwe-popups .mwe-popups-extract {
    color: var(--tmw-white);
    font-size: 0.75rem;
}

/*Tables modifications*/
th {
    background: var(--tmw-table-gradient) !important;
}
td {
    background-color: initial !important;
}
.wikitable {
	font-size: inherit;
}
.wikitable th {
	text-align: unset;
}
.wikitable tr:first-of-type th:last-child, .wikitable tr:first-of-type td:last-child {
	border-top-right-radius: 0;
}
.wikitable tr:first-of-type th:first-child, .wikitable tr:first-of-type td:first-child {
	border-top-left-radius: 0;
}
.wikitable tr:last-of-type th:first-child, .wikitable tr:last-of-type td:first-child {
	border-bottom-left-radius: 0;
}
.wikitable tr:last-of-type th:last-child, .wikitable tr:last-of-type td:last-child {
	border-bottom-right-radius: 0;
}
.mw-body .mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend,
.mw-changeslist-legend,
.mw-body .mw-search-profile-tabs,
.mw-body fieldset#mw-searchoptions,
.mw_metadata,
.wikitable,
.mw-datatable {
    color: inherit !important;
    background: inherit !important;
    border: initial;
}
:is(.mw_metadata, .mw-datatable, .wikitable)  > tr > th,
:is(.mw_metadata, .mw-datatable, .wikitable) > tr > td,
:is(.mw_metadata, .mw-datatable, .wikitable) > * > tr > th,
:is(.mw_metadata, .mw-datatable, .wikitable) > * > tr > td {
    border: 1px solid hsl(335deg 89.24% 35.86%) !important;
    background: var(--tmw-table-gradient) !important;
}
.wikitable {
    background: unset;
    background-color: unset;
    color: unset;
    border: var(--tmw-pink-border);
    background-image: var(--tmw-table-gradient) !important;
}
.wikitable td :is(ul, ol, dl) {
    text-align: left;
}
.curved-table .wikitable {
    border-collapse: inherit !important;
    border-spacing: 0;
    border-radius: var(--tmw-default-radius);
    padding: 0;
    width: -webkit-fill-available;
    width: -moz-available;
    background: inherit !important;
}
.curved-table th {
	text-align: center;
}
.curved-table .wikitable ol {
    margin: 0.3em 0 0 2.2em;
}
.curved-table .wikitable li {
    margin-bottom: 0.1em;
}
.curved-table tbody {
    box-shadow: var(--tmw-pink-shadow) !important;
    border-radius: var(--tmw-default-radius) !important;
}
.scroll-left.overflowed .content-table-left,
.scroll-right.overflowed .content-table-right {
    border-left: 0;
}
.toccolours th,
.toccolours td {
    width: auto !important;
    vertical-align: middle !important;
    padding-right: 0 !important;
    border: var(--tmw-pink-border) !important;
}
.toccolours th {
    text-align: center !important;
}
.toccolours td {
    padding-left: 1em;
}
.toccolours {
    border: none !important;
    background: inherit !important;
    border-collapse: separate;
    background-image: var(--tmw-table-gradient) !important;
    border-radius: var(--tmw-default-radius);
    border-spacing: 0;
    padding: 0 !important;
}
.toccolours tbody{
	box-shadow: var(--tmw-pink-shadow);
    border-radius: var(--tmw-default-radius);
}
#fileinfotpl_desc {
	border-top-left-radius: var(--tmw-default-radius);
}
#fileinfotpl_desc + td {
	border-top-right-radius: var(--tmw-default-radius);
}
.toccolours th:has(small) {
	border-bottom-left-radius: var(--tmw-default-radius);
}
.toccolours th:has(small) + td {
	border-bottom-right-radius: var(--tmw-default-radius);
}
.mw-body-content a > img,
.mw-body-content .floatnone > img {
    position: relative;
    z-index: 1;
}
.chart-table tr:first-of-type th:first-of-type {
    border-top-left-radius: var(--tmw-default-radius);
    border-top-right-radius: var(--tmw-default-radius);
}
.chart-table tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 10px;
}
.chart-table tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 10px;
}
.filehistory {
	border-collapse: separate;
	border-radius: var(--tmw-default-radius);
	border-spacing: 0;
	padding: 0;
	& tbody {
		border-radius: var(--tmw-default-radius);
		box-shadow: var(--tmw-pink-shadow);
	}
	& th:first-of-type {
		border-top-left-radius: var(--tmw-default-radius);
}
	& th:last-of-type {
		border-top-right-radius: var(--tmw-default-radius);
}
	& tr:last-of-type td:first-of-type {
		border-bottom-left-radius: var(--tmw-default-radius);
}
	& tr:last-of-type td:last-of-type {
		border-bottom-right-radius: var(--tmw-default-radius);
}
}

/*Image viewer modifications*/
.mw-mmv-post-image,
.mw-mmv-image-metadata {
    color: inherit;
    background: var(--tmw-bg-gradient);
    border-top: var(--tmw-blue-border);
}
.mw-mmv-image-metadata-desc-column {
    width: 100%;
}
.mw-mmv-above-fold {
    border-top: var(--tmw-blue-border);
}
.mw-mmv-image-metadata-links-column {
    float: none;
}
.mw-mmv-credit, .mw-mmv-image-desc {
	color: inherit;
}
.mw-ui-button.mw-ui-progressive:not(:disabled) {
    background-color: var(--tmw-pink);
}
.mw-mmv-post-image::after {
    content: "";
    position: inherit;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: var(--tmw-after-gradient);
    pointer-events: none;
}
.mw-mmv-dialog-down-arrow {
    display: none;
}
.mw-mmv-options-dialog-header {
    color: var(--tmw-pink);
}
.mw-mmv-options-text-header,
.mw-mmv-options-text-body,
.mw-ui-button.mw-ui-quiet {
    color: inherit;
}
.mw-mmv-dialog .mw-mmv-dialog-warning,
.mw-mmv-download-pane .mw-mmv-download-attribution {
    background-color: unset !important;
}
.mw-mmv-download-pane .mw-mmv-download-area {
    padding-bottom: 0;
}
.mw-mmv-options-dialog::after,
.mw-mmv-reuse-dialog::after,
.mw-mmv-download-dialog::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: var(--tmw-after-gradient);
    pointer-events: none;
}

/*Tabber modifications*/
.tabber__tab,
.tabber__tab:visited {
    color: var(--tmw-pink);
}
.tabber__tab[aria-selected="true"],
.tabber__tab[aria-selected="true"]:visited {
    color: var(--tmw-blue);
}
.tabber__indicator {
    background: none;
}
.tabber__header {
    box-shadow: none;
    /*border-bottom: var(--tmw-blue-border);*/
}
@media (width > 850px) {
.page-List_of_The_Midnight_merchandise .tabber__header {
	align-items: flex-end;
}
}
.tabber__header__next:after {
    background-image: linear-gradient(transparent, transparent),
        url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 1L5.6 2.5 13 10l-7.4 7.5L7 19l9-9z' style='fill: rgb(248, 20, 114);'/%3e%3c/svg%3e") !important;
}
.tabber__header__prev:after {
    background-image: linear-gradient(transparent, transparent),
        url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 10l9 9 1.4-1.5L7 10l7.4-7.5L13 1z' style='fill: rgb(248, 20, 114);'/%3e%3c/svg%3e") !important;
}
.infobox-tabber .tabber__header {
    border-bottom: 0;
}
/*
.infobox-tabber .infobox {
    width: -webkit-fill-available;
    width: -moz-available;
}
*/
.infobox-tabber .tabber {
	width: 20rem;
	float: right;
	margin-left: 2em;
}
.infobox-tabber .tabber__panel[aria-hidden="true"] {
	width: 0 !important;
}
@media (width <= 850px) {
    .infobox-tabber .tabber {
        float: none;
        padding-left: 0;
        margin: 0 auto;
}
}
/*Bandcamp/Soundcloud/Youtube modifications*/
#bandcamp,
#bandcamp-album {
    position: relative;
    z-index: 1;
    max-width: 300px;
}
.infobox-image #bandcamp iframe {
	width: 17.5rem !important;
	height: auto !important;
	aspect-ratio: 1 / 1;
}
.infobox-image #bandcamp {
	max-width: none;
}
.sc-wrapper {
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
}

/*Tracklists modifications*/
.tracklist {
    border-collapse: collapse;
}
.tracklist-number-header {
    border-top-left-radius: var(--tmw-default-radius);
}
.tracklist-length-header {
    border-top-right-radius: var(--tmw-default-radius);
}
.tracklist-total-length th {
    border-bottom-left-radius: var(--tmw-default-radius);
}
.tracklist-total-length td {
    border-bottom-right-radius: var(--tmw-default-radius);
}
.tracklist caption {
    padding-bottom: 5px;
}
.tracklist th {
    background-color: inherit !important;
    background-image: inherit !important;
}
.tracklist tr {
    background-color: transparent !important;
}

.tracklist tr:nth-child(2n-1) {
    background-color: #052540 !important;
}
.tracklist tr.tracklist-total-length {
    background-image: none;
}
.tracklist-total-length th > span {
    background-color: transparent !important;
}
.tracklist tr:first-of-type,
.tracklist tr:last-of-type,
.tracklist-total-length td {
    background-color: #00000029 !important;
}
.tracklist tbody {
    border-radius: var(--tmw-default-radius);
    box-shadow: 0 0 0 2px #00000029;
}

/*Tour listing element - used on Live Performances page and a few other places*/
.tour-listing {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em;
}
@media screen and (max-width: 500px) {
    .tour-listing {
        flex-direction: column;
    }
}
/*Tour gallery/Poster gallery - used on tour/show pages*/
/* Tour gallery code */
#tour-gallery ul, .column-gallery {
    /*display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 35px;*/
    columns: 20rem;
    margin: 0;
    list-style-type: none;
}

/*Media group modifications - used for grouping song versions and media associated with song (videos)*/
.grid-sizer {
	width: 19em;
}
.masonry-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    justify-items: center;
    gap: 1em;
    text-align: center;
    text-wrap: balance;
    
    & > * { 
    	align-self: start 
	}
}
.media-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    justify-items: center;
    gap: 1em;
    text-align: center;
    text-wrap: balance;
}
.media-group .thumb {
	margin: 0;
	padding: 0;
}
.center-group {
	align-items: center;
}
.media-group #bandcamp {
    max-width: none;
}
.media-group #bandcamp iframe {
    border: var(--tmw-pink-border) !important;
    border-radius: var(--tmw-default-radius);
    box-shadow: var(--tmw-pink-shadow);
    padding: 1px;
}

.music-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.music-wrapper p {
	margin: 0;
}
.music-wrapper .caption {
	font-weight: bold;
}

/*Merch gallery - styling and layout for gallery on Merchandise page*/
.merch-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    justify-items: center;
    overflow: hidden;
    /*align-items: start;*/
}
.merch-gallery .thumbcaption {
    width: 160px;
}
.merch-gallery .thumb {
    margin: 0 !important;
    padding: 0 !important;
}
.merch-gallery .thumbimage {
    box-shadow: var(--tmw-pink-shadow);
    max-height: 170px;
    aspect-ratio: 1 / 1;
    padding: 1em;
    margin: 0;
    object-fit: contain;
}

.merch-gallery .thumbinner {
	width: auto !important;
	z-index: initial;
}
.merch-gallery a {
    width: 160px;
    height: 160px;
    background: var(--tmw-bg-gradient-dark);
    border-radius: var(--tmw-default-radius);
}

/*Video element modifications*/
.embedvideo video {
	border-radius: var(--tmw-default-radius);
	object-fit: cover;
}
.embedvideo {
	z-index: 1;
	display: block;
	position: relative;
}
@media screen and (max-width: 850px) {
	.embedvideo {
		float: none !important;
		margin: 0 auto !important;
	}
}
.thumbinner:has(> .embedvideo) {
    max-width: none !important;
}
.media-group .thumb:has(.embedvideo) {
	margin: 0;
	padding: 0;
}
.embedvideo figcaption {
	text-align: center;
	/*font-size: initial;*/
	font-weight: bold;
}
.embedvideo-wrapper {
	border: var(--tmw-pink-border-figure);
    border-radius: var(--tmw-default-radius);
    box-shadow: var(--tmw-pink-shadow);
}
.embedvideo-player, .embedvideo-consent {
	border-radius: var(--tmw-default-radius);
	z-index: 1;
}

.video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video-outer {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 1%;
    background-image: url(/images/7/75/Television.png);
    width: 100%;
    max-width: 500px;
    position: relative;
    float: none;
    clear: both;
    z-index: 1;
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.video-outer video {
    position: relative;
    width: 74%;
    background: black;
    top: -2%;
    border-radius: 3%;
    object-fit: fill;
    aspect-ratio: 4 / 3;
}
.video-outer video:fullscreen,
.video-outer video:-webkit-full-screen {
    object-fit: contain !important;
    border-radius: 0;
}
.video-wrapper .caption {
	margin: 0;
	font-weight: bold
}

/*Data tables*/
:focus-visible {
	outline: none;
}
table.dataTable {
    width: -webkit-fill-available !important;
    width: -moz-available !important;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    color: inherit;
}
.datatable-loaded tr:last-of-type td:first-of-type {
    border-bottom-left-radius: var(--tmw-default-radius);
}
.datatable-loaded tr:last-of-type td:last-of-type {
    border-bottom-right-radius: var(--tmw-default-radius);
}
.dataTables_wrapper .dataTables_length {
    padding-bottom: 1em;
}
.dataTables_wrapper .dataTables_filter {
    padding-bottom: 1em;
}
.dt-length option {
    color: black;	
}

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 > td.sorting, 
table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, 
table.dataTable thead > tr > td.sorting_asc_disabled, table.dataTable thead > tr > td.sorting_desc_disabled {
	padding: 0 0.3rem !important;
	font-size: clamp(10px, 12px, 14px);
}
table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
	text-align: center !important;
}
table.dataTable tbody th, table.dataTable tbody td {
	padding: 0 0.3rem !important;
	font-size: clamp(10px, 12px, 14px);
}
table.dataTable>thead>tr>th, table.dataTable>thead>tr>td {
	padding: 0 0.3rem !important;
	font-size: clamp(10px, 12px, 14px);
}
table.dataTable th.dt-type-numeric, 
table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, 
table.dataTable td.dt-type-date {
	text-align: center !important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, 
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
	margin-right: 0 !important;
	border-left: 0 !important;
}
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order, 
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order, 
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order, 
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order, 
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order, 
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order, 
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order, 
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order {
	right: 0.5rem !important;
}
.curved-table div.dtsp-searchPane div.dt-container div.dt-scroll-body, 
.curved-table div.dtsp-searchPane div.dt-container div.dataTables_scrollBody, 
.curved-table div.dtsp-searchPane div.dataTables_wrapper div.dt-scroll-body, 
.curved-table div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody {
	background: var(--tmw-bg-gradient-dark) !important;
	padding: 0.5rem;
	max-height: 140px !important;
	height: 140px !important;
}
.dt-scroll-body tbody {
	box-shadow: none !important;
}
div.dtsp-searchPane div.dt-container, div.dtsp-searchPane div.dataTables_wrapper {
    border: var(--tmw-pink-border) !important;
    border-radius: var(--tmw-default-radius) !important;
    box-shadow: var(--tmw-pink-shadow);
}
div.dtsp-panesContainer button.dtsp-clearAll, div.dtsp-panesContainer button.dtsp-collapseAll, 
div.dtsp-panesContainer button.dtsp-showAll {
	font: inherit;
	color: inherit;
}
div.dtsp-searchPane div.dtsp-topRow div.dtsp-searchCont input.dtsp-search {
	font: inherit;
	color: inherit;
}
div.dtsp-searchPane input.dtsp-paneInputButton, div.dtsp-searchPane button.dtsp-paneButton {
	padding: unset;
}
div.dt-container .dt-paging .dt-paging-button {
	font-family: inherit;
}
div.dtsp-searchPane div.dt-container div.dt-scroll-body div.dtsp-nameCont span.dtsp-pill, 
div.dtsp-searchPane div.dt-container div.dataTables_scrollBody div.dtsp-nameCont span.dtsp-pill, 
div.dtsp-searchPane div.dataTables_wrapper div.dt-scroll-body div.dtsp-nameCont span.dtsp-pill, 
div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody div.dtsp-nameCont span.dtsp-pill {
	background-color: inherit !important;
	color: inherit !important;
}
div.dt-container .dt-length, div.dt-container .dt-search, div.dt-container .dt-info, 
div.dt-container .dt-processing, div.dt-container .dt-paging {
	padding-bottom: 1rem;
}
div.dt-container .dt-input {
	background: var(--tmw-bg-gradient-dark);
	border: var(--tmw-pink-border) !important;
	border-radius: var(--tmw-default-radius) !important;
	box-shadow: 0 0 14px var(--tmw-purple);
	padding-left: 0.6rem !important;
	font: inherit;
}
div.dt-container .dt-search input:focus {
	border: var(--tmw-pink-border) !important;
}
div.dtsp-topRow div.dtsp-subRow1 {
	padding-bottom: 0.6rem;
}
div.dt-container div.dt-layout-row.dt-layout-table {
	container-type: inline-size;
}
.dtsp-nameCont {
	width: calc(100cqw - 35px) !important;
}
.dtsp-searchPane div.dt-container div.dt-layout-row.dt-layout-table {
	height: 150px;
}
.curved-table div.dtsp-topRow div.dtsp-subRow1 button.dtsp-searchIcon span {
	background-image: url(/skins/Timeless/resources/images/search-ltr.svg?bb2cf) !important;
}
.curved-table div.dtsp-topRow button.dtsp-nameButton span {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAAtXpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjaXVDbEcMgDPtnio6AH7zGoRd61w06foUxaVLlMLbESZAwPu9XeExQ1aCp1NxyjoA2bdzR1LjQrFJUqwYW1+jOh1NgULP3uXQ/v3k6DdbW0aWL0Q6n512oLnD9M/IgmTdiNIcbta3zEkj9VSPeUX+Liz1qhq8wzOFKaMFfOhL8hHkISUQV0RUkc6l02/uccY7wdbAcTCi42hcJtkzvaybE6QAAAXBpQ0NQaWNjAAB4nHWRzUsCQRjGH7Uw0vBQh5AOe7DooCAF0TEM8mId1CCry+64q8HuusyuiHQNunQQOkRd+jr0H9Q16FoQBEUQEfQf9HUJ2d5xBSV0htn3x7PzvMw8A/gzOjPsgSRgmA7PplPSWmFdCr4jTDOEKBIys63l3FIefcfPI3yiPiREr/77eo5QUbUZ4BsinmMWd4gXiDM1xxK8RzzGynKR+IQ4zumAxLdCVzx+E1zy+Eswz2cXAb/oKZW6WOliVuYG8TRxzNCrrH0ecZOwaq7mqEZpTcBGFmmkIEFBFVvQ4SBB1aTMevuSLd8KKuRh9LVQBydHCWXyxkmtUleVqka6SlNHXeT+P09bm53xuodTwOCr635OAsF9oNlw3d9T122eAYEX4Nrs+CuU0/w36Y2OFjsGIjvA5U1HUw6Aq11g/NmSudySArT8mgZ8XAAjBWD0Hhje8LJq/8f5E5Dfpie6Aw6PgCnaH9n8AwgUaA5l6qHxAAANdmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAtRXhpdjIiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6R0lNUD0iaHR0cDovL3d3dy5naW1wLm9yZy94bXAvIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgIHhtcE1NOkRvY3VtZW50SUQ9ImdpbXA6ZG9jaWQ6Z2ltcDpmY2FlNzkzOC0yZDc0LTRjMmItODZlZi0zYzg1MWY1NmUwMGQiCiAgIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODZlN2EwNGMtMTJiZC00YjA4LTg4ODItMzljNTk5NzFjNDI2IgogICB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6ZGZiMWIzYjYtN2YwYy00ZGM1LWE4YzctZDJiNTk4MmI4OTA3IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iV2luZG93cyIKICAgR0lNUDpUaW1lU3RhbXA9IjE3MDg0NDczMjcxMDAyNDMiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQ6MDI6MjBUMTE6NDI6MDctMDU6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDI0OjAyOjIwVDExOjQyOjA3LTA1OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NGJjNWQ4NDQtODY1MC00YzhhLTlhMWItN2U3YjczMGViYjVkIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKFdpbmRvd3MpIgogICAgICBzdEV2dDp3aGVuPSIyMDI0LTAyLTIwVDExOjQyOjA3Ii8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PvHAB+oAAAAGYktHRAAAAAAAAPlDu38AAAAJcEhZcwAAD2EAAA9hAag/p2kAAAAHdElNRQfoAhQQKgd+UVocAAAA00lEQVRYw+2WwQ3FIAiGhXhwACd1ECd1AG/2ZNI0VqFF+vLCf2pLlQ9E1DmTyfSHgpmxxtT6cygZpJzezYuUAaN3CZCr8OulOcMhl35HVvr3ZWbOa/oGcjW2xtS8dLSjQu//dNuogGtMDZ9EwLWHkmG1G0PJgJQluptIurZQe/uSYTjOKLUiBnOdfOZMqjv7XR23xtS4kP7LGlE9DriQntq4njS515mRvCpwwZAbxRWWMn7UCkZ2cEqiQKvBrIBCyaAKMztIf+KmR7oDazg3mUy7dADIt4z7dQwIuQAAAABJRU5ErkJggg==) !important;
}
.curved-table div.dtsp-topRow button.dtsp-countButton span {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAs3pUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjaXVBbDgMhCPznFD2CAr6OY7M26Q16/I6idi0JrxnCiNQ+7xc9uvmspCHlWGJ0MC1auKLIzqyM6J2OaM3i/InTJhiQIIu1qc75hfu9wFJFFW6LtsDzJPIkOP8tmkLSX8QorrmoLJ6N8Dqvau60/HNO46gubmLo6Q5owi9dAfuEuYkXhyiiJiTdVerIFY6r+8xAEg0Iz6IvE5VM/CUYaAYAAAFwaUNDUGljYwAAeJx1kc1LAkEYxh+1MNLwUIeQDnuw6KAgBdExDPJiHdQgq8vuuKvB7rrMroh0Dbp0EDpEXfo69B/UNehaEARFEBH0H/R1CdnecQUldIbZ98ez87zMPAP4Mzoz7IEkYJgOz6ZT0lphXQq+I0wzhCgSMrOt5dxSHn3HzyN8oj4kRK/++3qOUFG1GeAbIp5jFneIF4gzNccSvEc8xspykfiEOM7pgMS3Qlc8fhNc8vhLMM9nFwG/6CmVuljpYlbmBvE0cczQq6x9HnGTsGqu5qhGaU3ARhZppCBBQRVb0OEgQdWkzHr7ki3fCirkYfS1UAcnRwll8sZJrVJXlapGukpTR13k/j9PW5ud8bqHU8Dgq+t+TgLBfaDZcN3fU9dtngGBF+Da7PgrlNP8N+mNjhY7BiI7wOVNR1MOgKtdYPzZkrnckgK0/JoGfFwAIwVg9B4Y3vCyav/H+ROQ36YnugMOj4Ap2h/Z/AMIFGgOZeqh8QAADXZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6OGViYTQzNGYtODMyMi00MzdlLWIyMDAtZDkxZDkwZmQxMDM5IgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjY1Zjk0OWU5LTkyMWMtNGY0Zi04OGVkLTAwNmNkYjk0NzAyYyIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjM4ZmZiMTcwLTkyZTAtNDU1Zi1iMTE0LTQ1NjcxYTlkMzBhNSIKICAgZGM6Rm9ybWF0PSJpbWFnZS9wbmciCiAgIEdJTVA6QVBJPSIyLjAiCiAgIEdJTVA6UGxhdGZvcm09IldpbmRvd3MiCiAgIEdJTVA6VGltZVN0YW1wPSIxNzA4NTI4MDQ5NDU5OTE2IgogICBHSU1QOlZlcnNpb249IjIuMTAuMzQiCiAgIHRpZmY6T3JpZW50YXRpb249IjEiCiAgIHhtcDpDcmVhdG9yVG9vbD0iR0lNUCAyLjEwIgogICB4bXA6TWV0YWRhdGFEYXRlPSIyMDI0OjAyOjIxVDEwOjA3OjI5LTA1OjAwIgogICB4bXA6TW9kaWZ5RGF0ZT0iMjAyNDowMjoyMVQxMDowNzoyOS0wNTowMCI+CiAgIDx4bXBNTTpIaXN0b3J5PgogICAgPHJkZjpTZXE+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMyNjFjYTQ4LTBhMGYtNDE2NS05MmI2LWY4NjM1NTdjYmFhMiIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iR2ltcCAyLjEwIChXaW5kb3dzKSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyNC0wMi0yMVQxMDowNzoyOSIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz5VMaOoAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAA9hAAAPYQGoP6dpAAAAB3RJTUUH6AIVDwcdDN96oQAAAItJREFUSMdjYBjqgBFd4IdI0X8Ym+NNHyMuMUJ6YICJ1j6g2AJk12PjM1HTcGziTIQ0EGMIPnlGQgqxAfSIHNBIZkG2kZwkSvNURLQFpEQwSTl5+EQyLSKYfpFMK9dT5IMfIkX/8RUj8KKC2gUdempjpCR88VkCC1ZGSiMRmyXIccZIjZQyoBmN5gAAbnJqBKaDOJ4AAAAASUVORK5CYII=) !important;
}
div.dtsp-topRow button.dtsp-collapseButton span.dtsp-caret, div.dtsp-topRow button.clearButton {
	color: var(--tmw-pink) !important;
	font-weight: 900;
}
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after, 
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after, 
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after, 
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after, 
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before, 
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before, 
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before, 
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before {
	color: var(--tmw-blue);
	left: 7px !important;
}
div.dtsp-topRow div.dtsp-subRow1 input {
	padding-right: 3em !important;
}
div.dtsp-panesContainer button.dtsp-clearAll:hover, div.dtsp-panesContainer button.dtsp-collapseAll:hover, div.dtsp-panesContainer button.dtsp-showAll:hover {
	background-color: inherit !important;
}
div.dtsp-searchPane input.dtsp-paneInputButton:hover, div.dtsp-searchPane button.dtsp-paneButton:hover {
	background-color: inherit !important;
	border-radius: none !important;
}
div.dtsp-searchPane div.dtsp-topRow.dtsp-bordered:hover {
	background: var(--tmw-bg-gradient-dark) !important;
}
div.dtsp-searchPane div.dtsp-topRow.dtsp-bordered {
    border: var(--tmw-pink-border) !important;
    border-radius: var(--tmw-default-radius) !important;
    box-shadow: var(--tmw-pink-shadow);
    background: var(--tmw-bg-gradient-dark);
}
div.dtsp-searchPane div.dtsp-topRow div.dtsp-searchCont input.dtsp-search {
	padding-left: 0.7em !important;
}