:root {	
            --chart-primary: #0066a2;
            --chart-text: #000;
        }
        
        /* SPIELERVERZEICHNIS */
        
        .playerdirectory_directory {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 10px;
            align-items: flex-start;
        }
        
        .playerdirectory_user {
            width: 32.5%;
        }
        
        .playerdirectory_headline {
            height: auto;
            font-family: var(--font-base);
            font-size: 30px;
            text-transform: lowercase !important;
            letter-spacing: 0.1em;
            margin: 10px;
            opacity: 0.8;
            color: var(--akzent);
            vertical-align: top;
            text-align: right;
        }
        
        .playerdirectory_subline {
            padding: 6px;
            font-family: 'Roboto', sans-serif;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            color: var(--akzent);
            background- color: var(banner-color);
            background-image: var(--banner-pattern);
        }
        
        .playerdirectory_user_information {
            width: 100%;
            margin: 10px;
        }
        
        .playerdirectory_user_information_item {
            width: auto;
            margin: 3px auto;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
            font-size: 9px;
            color: var(--main-text) !important;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .playerdirectory_user_accounts {
            height: 200px;
            overflow: auto;
            padding-top: 10px;
        }

        .playerdirectory_user_accounts::-webkit-scrollbar {
            width: 6px;
        }

        .playerdirectory_user_accounts::-webkit-scrollbar-thumb {
            background: rgba(0,0,0,0.2);
            border-radius: 3px;
        }

        .playerdirectory_user_accounts::-webkit-scrollbar-track {
            background: transparent;
        }

        /* Firefox */
        .playerdirectory_user_accounts {
            scrollbar-width: thin;
            scrollbar-color: rgba(0,0,0,0.2) transparent;
        }
        
        .directory_characters {
            display: flex;
            width: 100%;
            margin-bottom: 5px;
            flex-wrap: nowrap;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 10px;
        }
        
        .directory_characters_avatar {
            width: 15%;
        }
        
        .directory_characters_avatar img {
            width: 100%;
        }
        
        .directory_characters_fact {
            padding-top: 3px;
            font-family: 'Roboto', sans-serif;
            font-size: 10px;
        }
        
        /* SPIELERSTATISTIK */

        .playerdirectory_playerstat_wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: flex-start;
        }

        .playerdirectory_playerstat_statistic {
            display: flex;
            flex-wrap: wrap;
            margin: 10px 0;
        }

        .playerdirectory_playerstat_stat {
            width: calc(100% / 4);
            display: flex;
            flex-flow: column;
            padding: 10px 5px;
            box-sizing: border-box;
            justify-content: flex-start;
            align-items: center;
        }

        .playerdirectory_playerstat_question {
            color: var(--akzent);
            opacity: 0.8;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
        }

        .playerdirectory_playerstat_answer {
            text-align: center;
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
        }

        /* CHARAKTERKACHELN */

        .playerdirectory_playerstat_characters {
            width: calc(33.333% - 10px);
            box-sizing: border-box;
        }

        .playerdirectory_playerstat_username {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 10px;
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: bold;
            background-image: var(--banner-pattern);
            color: var(--main-text);
        }

        .playerdirectory_playerstat_content {
            display: flex;
            gap: 12px;
            padding: 8px 2px 0 2px;
            align-items: flex-start;
        }

        .playerdirectory_playerstat_avatar {
            width: 72px;
            min-width: 72px;
        }

        .playerdirectory_playerstat_avatar img {
            width: 72px;
            height: 60px;
            object-fit: cover;
            display: block;
        }

        .playerdirectory_playerstat_infos {
            flex: 1;
            min-width: 0;
        }

        .playerdirectory_playerstat_usertitle {
            font-family: 'Roboto', sans-serif;
            font-style: italic;
            color: var(--main-text);
            font-size: 10px;
            padding-bottom: 6px;
        }

        .playerdirectory_playerstat_username a:link,
        .playerdirectory_playerstat_username a:visited,
        .playerdirectory_playerstat_username a:active,
        .playerdirectory_playerstat_username a:hover {
            color: #ffffff;
        }

        .playerdirectory_playerstat_fact {
            font-family: 'Roboto', sans-serif;
            color: var(--main-text);
            font-size: 10px;
            line-height: 1.5;
        }

        /* CHARAKTERSTATISTIK */
        
        .playerdirectory_characterstat_statistic {
            display: flex;
            flex-flow: wrap;
            margin: 10px 0;
        }
        
        .playerdirectory_characterstat_stat {
            width: calc(100% / 4);
            display: flex;
            flex-flow: column;
            padding: 10px 5px;
            box-sizing: border-box;
            justify-content: flex-start;
            align-items: center;
        }
        
        .playerdirectory_characterstat_question {
                color: var(--akzent);
                opacity: 0.8;
                font-size: small;
                font-weight: bold;
                text-transform: uppercase;
                font-family: 'Roboto', sans-serif;
                font-size: 11px;
        }
        
        .playerdirectory_characterstat_answer {
                text-align: center;
                font-family: 'Roboto', sans-serif;
                font-size: 11px;
        }
        
        .playerdirectory_characterstat_characters {
            display: flex;
            justify-content: flex-start;
            flex-wrap: nowrap;
            gap: 10px;
            width: 100%;
            margin-bottom: 10px;
        }
        
        .playerdirectory_characterstat_avatar {
            width: 10%;
        }
        
        .playerdirectory_characterstat_avatar img {
            width: 100%;
        }
        
        .playerdirectory_characterstat_infos {
            width: 90%;
        }
        
        .playerdirectory_characterstat_username {
            background: #0066a2 url(../../../images/thead.png) top left repeat-x;
            color: #ffffff;
            padding: 8px;
            font-weight: bold;
        }
        
        .playerdirectory_characterstat_usertitle {
            background: #0f0f0f url(../../../images/tcat.png) repeat-x;
            color: #fff;
            border-top: 1px solid #444;
            border-bottom: 1px solid #000;
            padding: 6px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .playerdirectory_characterstat_username a:link,
        .playerdirectory_characterstat_username a:visited,
        .playerdirectory_characterstat_username a:active,
        .playerdirectory_characterstat_username a:hover {
            color: #ffffff;
        }
        
        /* INPLAYZITATET */
        
        .playerdirectory_inplayquote {
            width: 100%;
            display: flex;
            margin: 10px 0;
            flex-wrap: nowrap;
            align-items: center;
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
        }
        
        .playerdirectory_inplayquote_avatar {
            width: 10%;
            text-align: center;
        }
        
        .playerdirectory_inplayquote_avatar img {
            border-radius: 100%;
            border: 1px solid var(--akzent);
            width: 100px;
        }
        
        .playerdirectory_inplayquote_container {
            width: 90%;
        }
        
        .playerdirectory_quote {
            width: 95%;
            margin: auto;
            text-align: justify;
            margin-bottom: 10px;
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
        }
        
        .playerdirectory_quote_user {
            text-align: right;
            padding-right: 10px;
        }
        
        .playerdirectory_quote_user b {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
        }
        
        .playerdirectory_quote_user span {
            font-style: italic;
            font-size: 11px;
        }
        
        /* 12 MONATE STATISTIK */
        
        .playerdirectory_postactivity_months_headline {
            margin-bottom: 5px;
            color: #333;
            font-size: small;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
            width: 100%;
        }
        
        .playerdirectory_postactivity_months {
            width: 100%;
            text-align: center;
            margin: 10px 10px;
        }
        
        .playerdirectory_postactivity_months_poststat {
            width: 100%;
            display: flex;
            flex-flow: wrap;
            flex-wrap: nowrap;
            justify-content: space-between;
        }
        
        .playerdirectory_postactivity_months_month {
            justify-content: center;
            align-items: center;
            display: flex;
            flex-flow: column;
        }
        
        .playerdirectory_postactivity_months_monthname {
            color: #293340;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .playerdirectory_postactivity_months_chart {
            height: 250px;
            width: 100%;
        }
        
        /* PRO CHARAKTER */
        
        .playerdirectory_postactivity_perChara {
            text-align: center;
            margin: 10px 10px;
            display: flex;
            justify-content: space-around;
            align-content: flex-start;
            flex-wrap: nowrap;
        }
        
        .playerdirectory_postactivity_perChara_stat {
            width: 50%;
            text-align: center;
        }
        
        .playerdirectory_postactivity_perChara_headline {
            margin-bottom: 5px;
            color: var(--main-text);
            font-size: small;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
            width: 100%;
        }
        
        .playerdirectory_postactivity_perChara_bit {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            height: 150px;
            align-items: center;
        }
        
        .playerdirectory_postactivity_perChara_bit_chara {
            justify-content: center;
            align-items: center;
            display: flex;
            flex-flow: column;
        }
        
        .playerdirectory_postactivity_perChara_bit_charactername {
            color: #293340;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .playerdirectory_postactivity_perChara_chart {
            height: 150px;
            width: 100%;
        }
        
        /* EIGENE STATISTIKEN */
        
        .playerdirectory_playerstat_ownstat_headline {
            margin-bottom: 5px;
            color: var(--main-text);
            font-size: small;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
            width: 100%;
        }
        
        .playerdirectory_playerstat_ownstat_bit {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            align-items: center;
        }
        
        .playerdirectory_playerstat_ownstat_bit_option {
            justify-content: center;
            align-items: center;
            display: flex;
            flex-flow: column;
        }
        
        .playerdirectory_playerstat_ownstat_bit_optionname {
            color: #293340;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .playerdirectory_playerstat_ownstat_chart {
            position: relative;
            height: 150px;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .playerdirectory_playerstat_ownstat_chart canvas {
            display: block !important;
            width: 100% !important;
            height: 100% !important;
        }

        .playerdirectory_section {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .playerdirectory_customstats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
        }

        .playerdirectory_customstat {
            flex: 1 1 calc(50% - 20px);
            box-sizing: border-box;
            min-width: 260px;
        }