/*
* PlayTracker CSS
* by Marijan Mikolić
* 
* Breakpoints: 
* (min-width: 941px)(max-width: 940px) mobile+tablet layout
* (min-width: 641px)(max-width: 640px) mobile-specific layout
*/


/* Base page stuff */

:root {
    --player-color: 65, 169, 187;
    --main-bg-color: 13, 24, 38;
}

.regular-page {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #0c1826;
    z-index: 1;
    position: relative;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: white;
    overflow: hidden;
    background-color: #0c1826;
}

.main-container {
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    background-color: #0c1826;
}

/* Building blocks */

.block-title {
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 18px;
    font-size: .9rem;
    text-transform: uppercase;
}

.white-space {
    margin-top: 24px;
    margin-bottom: 24px;
}

.element-divider {
    height: 0.1rem;
    background: rgba(var(--player-color), 0.2);
    border-radius: 0.2rem;
}

/* Background loader */

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: -1;
}

#cool-loader-parent {
    margin: 5em;
    position: relative;
}

#cool-loader {
    height: 3.5em;
}

#cool-loader .outer,
#cool-loader .middle,
#cool-loader .inner {
    border: 3px solid transparent;
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
}

#cool-loader .outer {
    width: 3.5em;
    height: 3.5em;
    margin-left: -1.75em;
    margin-top: -1.75em;
    animation: spin 2s linear infinite;
}

#cool-loader .middle {
    width: 2.1em;
    height: 2.1em;
    margin-left: -1.05em;
    margin-top: -1.05em;
    animation: spin 1.75s linear reverse infinite;
}

#cool-loader .inner {
    width: 0.8em;
    height: 0.8em;
    margin-left: -0.4em;
    margin-top: -0.4em;
    animation: spin 1.5s linear infinite;
}

/* General layouts */

@media screen and (min-width: 941px) {

    .standard-sidebar,
    #social-feed,
    .reverse-content {
        padding-right: 48px;
    }

    .standard-content,
    #social-sidebar,
    .reverse-sidebar {
        padding-left: 48px;
    }
}

/* App nav */

.web-header {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    perspective: 1000;
    transform: translate3d(0, 0, 0);
    transform: translateZ(0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: space-between;
    z-index: 999;
    height: 3.2rem;
    color: white;
    background-color: rgba(12, 24, 38, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.web-header .container {
    justify-content: space-between;
}

.app-nav {
    padding: 0.8rem 0rem;
}

.app-nav-logo {
    width: 8.8rem;
    padding-right: 1.2rem;
}

.app-nav-logo img {
    width: 100%;
    height: auto;
    padding-left: 0px;
}

.app-nav-menu {
    z-index: 1000;
    font-weight: 300;
    font-size: 0.9rem;
}

.app-nav-separator {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.app-nav-menu>* {
    cursor: pointer;
    padding-left: 1.2rem;
    padding-top: 0.25rem;
    padding-bottom: 0.1rem;
    opacity: .6;
}

input.appmenu-item {
    outline: none;
    border: none;
    background: none;
    color: white;
}

.app-nav-menu>div:hover,
input.appmenu-item:hover {
    opacity: .8;
}

.appmenu-item svg {
    width: 0.4rem;
    margin-left: 0.2rem;
    fill: rgb(var(--player-color));
    color: rgb(var(--player-color));
    position: relative;
}

#app-search {
    height: 1.6rem;
    padding: 0.2rem 0.4rem;
    padding-right: 1.2rem;
    border: 1px solid rgb(var(--player-color));
    width: 10rem;
    outline: none;
    font-size: 0.9rem;
    background: transparent;
    border-radius: 0.2rem;
    color: white;
    margin-top: -0.2rem;
}

.search-box svg {
    position: absolute;
    right: 0.4rem;
    top: 0.4rem;
    width: 0.8rem;
    height: 0.8rem;
    color: white;
    fill: white;
}


.contains-navatar {
    padding-left: 0.8rem;
}

.appmenu-item .navatar {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 0.9rem;
    border: 0.05rem solid rgb(var(--player-color));
    margin-top: -0.25rem;
}

.app-extra-header {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    perspective: 1000;
    transform: translate3d(0, 0, 0);
    transform: translateZ(0);
    position: fixed;
    top: -3.2rem;
    min-height: 3.2rem;
    opacity: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: space-between;
    z-index: 998;
    color: white;
    background-color: rgba(12, 24, 38, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-extra-header .container {
    justify-content: flex-end;
}

.app-extra-header-show {
    top: 3.2rem;
    opacity: 1;
}

@media screen and (max-width: 640px) {
    .app-extra-header {
        top: -44px;
        min-height: 44px;
    }

    .app-extra-header .app-nav {
        padding: 0.3rem 0rem;
    }

    .app-extra-header-show {
        top: 3.2rem;
        opacity: 1;
    }
}

/* Mobile app nav */

.mobile-app-nav {
    display: none;
}

.mobile-app-nav {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    perspective: 1000;
    transform: translate3d(0, 0, 0);
    transform: translateZ(0);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    align-items: space-between;
    z-index: 999;
    color: white;
    background-color: rgba(12, 24, 38, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.2rem;
}

.mobile-app-nav>* {
    width: 19.99%;
    text-align: center;
    padding: 0.4rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7)
}

.mobile-app-nav svg {
    width: 1.6rem;
    height: 1.6rem;
    color: rgba(var(--player-color), 0.7);
    object-fit: contain;
    object-position: bottom center;
    margin: 0 auto;
    margin-bottom: 0.6rem;
    fill: rgba(var(--player-color), 0.7);
}

@media screen and (max-width: 940px) {
    .web-header {
        backdrop-filter: none;
        background-color: rgba(12, 24, 38, 1);
    }

    .mobile-app-nav {
        display: flex;
    }
}

@media screen and (max-width: 640px) {
    .mobile-app-nav>* {
        padding: 0.3rem;
        font-size: 0.8rem;
    }

    .mobile-app-nav svg {
        width: 1.2rem;
        height: 1.2rem;
        margin-bottom: 0.3rem;
    }
}

/* Footer */

footer {
    padding: 1.2rem;
    padding-bottom: 2.4rem;
    background-color: rgb(8, 17, 27);
}

@media screen and (max-width: 640px) {
    footer {
        padding-bottom: 4.2rem;
    }
}

.footer-divider {
    display: inline-block;
    height: 0.3rem;
    width: 0.3rem;
    margin: 0.35rem 0.8rem;
    background-color: rgba(var(--player-color), 0.5);
    border-radius: 1rem;
}

/*.social-links {
    margin-top: -4.05rem;
    margin-bottom: -2.4rem;
    z-index: 10;
}*/

.social-links a {
    position: relative;
    display: block;
    margin: 0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 1rem;
    background-color: rgb(255, 255, 255);

}

.social-links a svg {
    top: 0.5rem;
    left: 0.5rem;
    position: absolute;
    width: 1rem;
    height: 1rem;
    fill: rgb(var(--main-bg-color));
    color: rgb(var(--main-bg-color));
}

.social-links a:hover {
    background-color: rgb(var(--player-color));
}

footer a:hover,
.text-container a {
    color: rgb(var(--player-color));
}

.zicer img {
    width: 50%;
    max-width: 120px;
    margin-top: 0.4rem;
}

/* Nice toggle and radios */
/* Copyright (c) 2023 by Andreas Storm (https://codepen.io/avstorm/pen/deRvMy, https://codepen.io/avstorm/pen/jxjKGj)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */

.cbx {
    display: none;
}

.check {
    cursor: pointer;
    height: 0.9rem;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
    font-size: 0.75rem;
}

.locked .check {
    cursor: not-allowed;
}

.check:before {
    content: "";
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(34, 50, 84, 0.03);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.check>svg {
    position: relative;
    z-index: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: rgb(var(--player-color));
    stroke-width: 1.5;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
    margin-right: 0.25rem;
}

.check>svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
}

.check>svg polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 66;
}

.check:hover:before {
    opacity: 1;
}

.check:hover>svg {
    stroke: rgb(var(--player-color));
}

.cbx:checked~.check>svg {
    stroke: rgb(var(--player-color));
}

.cbx:checked~.check>svg path {
    stroke-dashoffset: 60;
    transition: all 0.3s linear;
}

.cbx:checked~.check>svg polyline {
    stroke-dashoffset: 42;
    transition: all 0.2s linear;
    transition-delay: 0.15s;
}

.check span {
    position: relative;
    top: -0.2rem;
    margin-right: 1rem;
}

.radio {
    position: relative;
    cursor: pointer;
    line-height: 1rem;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}

.radio:last-child {
    margin-bottom: 0px;
}

.radio .label {
    position: relative;
    display: block;
    float: left;
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(var(--player-color), 0.5);
    border-radius: 100%;
    -webkit-tap-highlight-color: transparent;
}

.radio .label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: rgb(var(--player-color));
    transform: scale(0);
    transition: all 0.2s ease;
    opacity: 0.08;
    pointer-events: none;
}

.radio:hover .label:after {
    transform: scale(3.6);
}

input[type="radio"]:checked+.label {
    border-color: rgba(var(--player-color), 1);
}

input[type="radio"]:checked+.label:after {
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
    opacity: 1;
}

.radio>svg,
.check span svg {
    width: 0.9rem;
    height: 0.9rem;
    display: inline;
    margin-right: 0.5rem;
    margin-bottom: -0.2rem;
    color: white;
    fill: white;
}


/* Login form */

.app-login {
    position: absolute;
    top: 4rem;
    right: 1.2rem;
    width: 90%;
    max-width: 16rem;
    border-radius: 0.4rem;
    perspective: 1000;
    transform: translate3d(0, 0, 0);
    transform: translateZ(0);
    display: none;
    color: white;
    background-color: rgba(12, 24, 38, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-login-show {
    display: flex;
}

.icewrack-form input[type=text],
.icewrack-form input[type=email],
.icewrack-form input[type=password] {
    border: none;
    outline: none;
    background: none;
    border-bottom: 1px solid white;
    color: white;
    padding: 0px;
    padding-bottom: 0.1rem;
}

.icewrack-form label {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.icewrack-form label:first-child {
    margin-top: 0rem;
}

.icewrack-top-pad {
    margin-top: 0.8rem;
}

.icewrack-separator {
    position: relative;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    margin-top: 2rem;
}

.icewrack-separator::before,
.icewrack-separator::after {
    content: " ";
    width: 1.4rem;
    height: 0.05rem;
    background-color: white;
    position: absolute;
    top: 50%;
    top: calc(50%-0.025rem);
}

.icewrack-separator::before {
    left: 0px;
}

.icewrack-separator::after {
    right: 0px;
}

.icewrack-mininote {
    font-weight: 700;
    font-size: 0.65rem;
    margin-top: 0.4rem;
}

.icewrack-mininote>* {
    opacity: .7;
}

.icewrack-mininote a {
    color: rgb(var(--player-color));
}

.icewrack-mininote>a:hover {
    opacity: 1;
}

/* Page notifications */

.page-notifications {
    perspective: 1000;
    transform: translate3d(0, 0, 0);
    transform: translateZ(0);
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
}

.page-notifications .container>div {
    margin: 1.2rem;
    margin-top: 0px;
    height: auto;
    align-items: space-between;
    color: white;
    border: 2px solid rgb(var(--player-color));
    background: rgb(var(--main-bg-color));
    padding: 0.8rem;
    border-radius: 0.4rem;
    overflow: hidden;
    padding-right: 2.4rem;
}

.page-notifications .close-page-notification {
    position: absolute;
    top: 0px;
    right: 0px;
    width: auto;
    padding: 0.8rem;
    height: 100%;
    cursor: pointer;
}

.page-notifications .close-page-notification svg {
    width: 1.2rem;
    fill: rgb(var(--player-color));
    color: rgb(var(--player-color));
    bottom: -0.05rem;
    position: relative;
}

@media screen and (max-width: 940px) {
    .page-notifications {
        bottom: 78px;
    }
}

/* Hero and sidekick */

.hero {
    width: 100%
}

.hero img {
    width: 100%;
    height: 70vw;
    max-height: 70vh;
    object-fit: cover;
    object-position: center center;
}

.sidekick .profile-avatar {
    margin-bottom: 8px;
}

.sidekick .profile-title {
    margin-bottom: 16px;
}

.profile-avatar {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1/1;
}

.profile-avatar-circle {
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgb(var(--player-color));
    mix-blend-mode: overlay;
}

.profile-avatar-img {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border-radius: 50%;
    z-index: 3;
}

.profile-username {
    font-weight: 700;
    font-size: 1.8rem;
}

.profile-title {
    font-weight: 300;
    font-size: 18px;
    font-size: 0.9rem;
}

.sidekick .standard-sidebar {
    margin-top: -134px;
}

.sidekick .standard-content {
    align-content: flex-end;
}

.sidekick-nav-item {
    padding: 0.6rem;
    cursor: pointer;
}

.sidekick-nav-active {
    font-weight: 900;
}

.sidekick-nav-item::before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: rgb(var(--player-color));
    opacity: 0;
    left: 0;
    bottom: -3px;
    transition: all 0.3s;
    border-radius: 4px;
}

.sidekick-nav-item:hover::before {
    opacity: 0.5;
}

.sidekick-nav-active::before,
.sidekick-nav-active:hover::before {
    opacity: 1;
}

.sidekick-extras {
    position: absolute;
    top: -1rem;
    right: 1.2rem;
    justify-content: flex-end;
}

.sidekick-extras>div {
    height: 2rem;
}

.sidekick-button {
    font-size: 0.9rem;
    border-radius: 1rem;
    border: 1px solid rgba(var(--player-color), 0.5);
    padding: 0.5rem 1rem;
    background-color: rgb(var(--player-color));
    color: white;
    margin-left: 1.2rem;
    overflow: hidden;
}

.sidekick-follow,
.sidekick-guild {
    min-width: 155px;
}

.sidekick-menu-btn {
    height: 2rem;
    padding: 0.5rem 0.45rem;
    background-color: rgb(var(--main-bg-color));
    z-index: 6;
}

.sidekick-menu {
    display: none;
    background-color: #173644;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 90vw;
    max-width: 9.5rem;
    height: auto;
    border-radius: 0.4rem;
    z-index: 5;
    padding: 1.2rem;
    padding-left: 1.1rem;
    padding-top: 1rem;
    border-top-left-radius: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
}

.sidekick-menu .check span {
    margin-right: 0px;
}

.sidekick-menu .check>svg {
    margin-right: 0.45rem;
}

.sidekick-extras>.sidekick-menu {
    height: auto;
}

#sidekick-menu-toggle:checked~.sidekick-menu {
    display: flex;
}

.sidekick-button svg {
    width: 1rem;
    fill: white;
    color: white;
    position: relative;
}

.sidekick-button svg.fa-times {
    padding: 0.2rem;
}

.sidekick-button div:nth-child(2) {
    display: none;
}

#sidekick-menu-toggle:checked~.sidekick-button div:nth-child(1) {
    display: none;
}

#sidekick-menu-toggle:checked~.sidekick-button div:nth-child(2) {
    display: flex;
}

.mini-menu-divider {
    height: 1px;
    background-color: white;
    opacity: 0.25;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

.label-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #173644;
    opacity: 0;
    pointer-events: none;
}

.label-overlay-active .label-overlay {
    opacity: 0.9;
    cursor: wait;
}

.sidekick-menu-note {
    font-size: 0.6rem;
    opacity: .5;
    margin-top: 0.4rem;
}

.sidekick-follow svg,
.sidekick-guild svg {
    margin-right: 0.6rem;
    bottom: -0.075rem;
}

.sidekick-follow-active svg {
    bottom: -0.125rem;
    margin-right: 0.4rem;
}

.sidekick-follow div:nth-child(2),
.sidekick-guild div:nth-child(2) {
    display: none;
}

.sidekick-follow>div:nth-child(3),
.sidekick-guild>div:nth-child(3) {
    display: none;
}

.sidekick-follow:hover,
.sidekick-guild:hover {
    border: 1px solid rgba(var(--player-color), 0.75);
}

.sidekick-follow-active {
    background-color: rgb(var(--main-bg-color));
}

.sidekick-follow-active>div:first-child {
    display: none;
}


.sidekick-follow-active>div:nth-child(2) {
    display: inline;
}

.sidekick-follow-loading>div:first-child,
.sidekick-follow-loading>div:nth-child(2) {
    display: none;
}

.sidekick-follow-loading>div:nth-child(3) {
    display: flex;
}

@media screen and (max-width: 940px) {

    .profile-username,
    .profile-title {
        text-align: left;
    }

    .sidekick-nav {
        margin-bottom: 1.2rem;
    }
}

@media screen and (max-width: 640px) {

    .block-title {
        letter-spacing: .2rem;
        font-size: .8rem;
    }

    .sidekick-nav {
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        padding-bottom: 0.6rem;
    }

    .sidekick-nav-item {
        padding: 0.4rem 0.8rem;
        font-size: 3.5vw;
        letter-spacing: .15rem;
    }

    .sidekick-nav .element-divider {
        width: 100%;
        position: absolute;
        bottom: 0.5rem;
        left: 0rem;
    }

    .sidekick .container>.third {
        width: 74.99%;
    }

    .sidekick .container>.two-thirds {
        width: 24.99%;
    }

    .user-page-header .sidekick .third>.center {
        justify-content: flex-start;
        margin-left: -0.6rem;
    }

    .sidekick .standard-sidebar {
        margin-top: -25vw;
        margin-top: calc(-20vw + -1.2rem);
    }

    .profile-username {
        font-size: 1.4rem;
    }

    .sidekick .profile-avatar {
        max-width: 40vw;
    }
}

/* Userpage */

.level-featured {
    position: absolute;
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    font-size: 2.4rem;
    z-index: 5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.level-image {
    stroke: rgb(var(--player-color));
    fill: rgba(var(--player-color), 0.2);
}

.level-hexagon {
    left: -1px;
}

.level-heart {
    padding-bottom: 12px;
}

.progress-bar {
    background-color: rgba(var(--player-color), 0.2);
    height: 15px;
    border-radius: 10px;
    padding: 3px;
    width: 80%;
    margin: 0 auto;
    margin-top: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.progress-value {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: rgb(var(--player-color));
    height: 9px;
}

.level {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 8px;
    margin-top: 0px;
}

.user-badges>img {
    max-width: 100px;
    margin: 16px;
}

.user-badges>img {
    max-width: 100px;
    margin: 16px;
    mix-blend-mode: luminosity;
    opacity: .7;
}

.user-badges>img:hover {
    mix-blend-mode: normal;
    opacity: 1;
}

.user-profiles svg {
    width: 1.3rem;
    height: 1.3rem;
    object-fit: contain;
    object-position: center center;
    margin-right: 1.2rem;
    fill: white;
    color: white;
    position: relative;
    margin-bottom: -0.25rem;
}

.user-profiles .flex {
    margin-top: 1.2rem;
}

.user-profiles .flex:first-child {
    margin-top: 0.4rem;
}

.centered-split .half {
    padding: 5px;
    font-size: 16px;
    font-size: 0.8rem;
}

.centered-split .half:nth-child(odd) {
    text-align: right;
    padding-right: 15px;
}

.centered-split .half:nth-child(even) {
    text-align: left;
    padding-left: 15px;
}

/* Profile cards */

.profile-card {
    background-color: #1b2838;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    margin-bottom: 24px;
    overflow: hidden;
}

.profile-card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
}

.card-head,
.card-widget {
    z-index: 3;
}

.card-head>.half:first-child {
    padding-bottom: 16px;
}

.card-title {
    font-size: 24px;
    font-size: 1.2rem;
    fill: white;
}

.card-title svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center center;
    margin-right: 16px;
    margin-bottom: -8px;
}

.card-sticker {
    max-height: 180px;
    object-fit: contain;
    object-position: top right;
}

.card-stat {
    font-size: 18px;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.card-stat svg {
    padding: 2px;
    fill: white;
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center center;
    margin-right: 16px;
}

.card-widget-title {
    font-size: 18px;
    font-size: 0.9rem;
    font-weight: 700;
}

.card-widget-cta {
    font-size: 12px;
    font-size: 0.6rem;
    text-transform: uppercase;
    text-align: right;
}

.card-widget-cta svg {
    color: rgb(var(--player-color));
    width: 16px;
    height: 16px;
    padding-top: 3px;
    object-fit: contain;
    object-position: center center;
    margin-left: 4px;
    position: relative;
    bottom: -2px;
}

.card-widget-content {
    margin-top: 8px;
    padding: 24px 16px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1b2838;
}

.card-widget-element {
    padding: 0px 8px;
    z-index: 3;
}

.card-widget-element img {
    width: 100%;
    max-height: 70px;
    object-fit: contain;
    object-position: center center;
}

.card-widget-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(5px);
    object-fit: cover;
    opacity: 0;
    z-index: 1;
}

.card-widget-cover:nth-child(2) {
    opacity: .3;
}

.card-widget-element:hover .card-widget-cover:nth-child(2) {
    opacity: 0;
}

.card-widget-element:hover+.card-widget-cover {
    opacity: 0.3;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    opacity: .1;
}

.steam-card {
    background: linear-gradient(to bottom, #010202, #1b2838);
}

.xbox-card {
    background: linear-gradient(to bottom, #102e13, #1b2838);
}

.ps-card {
    background: linear-gradient(to bottom, #012f59, #1b2838);
}

.gog-card {
    background: linear-gradient(to bottom, #1c1340, #1b2838);
}

.ea-card {
    background: linear-gradient(to bottom, #872626, #1b2838);
}

.big-stat-element {
    padding-left: 3.2rem;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}

.big-stat-element svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    object-position: left center;
    fill: rgb(var(--player-color));
    color: rgb(var(--player-color));
}

.big-stat-number {
    font-size: 1rem;
    line-height: 1em;
    font-weight: 900;
    margin-bottom: 0.1rem;
    letter-spacing: 0.1rem;
}

.big-stat-text {
    opacity: .5;
    font-size: 0.7rem;
}

@media screen and (max-width: 940px) {
    .standard-sidebar .tablet-half.column-top-pad {
        padding-top: 0px;
    }
}

@media screen and (max-width: 640px) {
    .search-card .card-title {
        font-size: 0.9rem;
    }

    .card-title svg {
        margin-right: 0.5rem;
    }

    .search-card .card-title svg {
        width: 1.2rem;
        height: 1.2rem;
        object-fit: contain;
        object-position: center center;
        margin-right: 0.3rem;
        margin-bottom: -0.3rem;
    }

    .search-card .card-head-caret>svg {
        width: 0.6rem;
        height: 0.8rem;
        top: 4px;
        right: -4px;
    }

    .search-card .card-head-caret {
        padding-right: 0.8rem;
    }

    .search-card .card-title span {
        padding-left: 0.3rem;
        margin-left: 0.3rem;
        border-left: 1px solid white;
    }

    .profile-card .big-stat-element {
        padding-left: 2rem;
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }

    .profile-card .big-stat-element svg {
        width: 1.6rem;
        height: 1.6rem;
    }

    .profile-card .big-stat-number {
        font-size: 0.9rem;
        line-height: 0.9rem;
    }

    .standard-sidebar .mobile-two-thirds {
        padding-left: 1.2rem;
    }

    .card-stat {
        position: relative;
        padding-left: 1.6rem;
    }

    .card-stat svg {
        position: absolute;
        top: 0;
        left: 0;
    }

    .card-widget-content {
        padding: 10px;
    }

    .card-widget-element {
        padding: 6px;
    }
}

/* Graphs */

.apex {
    font-size: 0.6rem;
}

.profile-card .apex {
    padding-right: 1.2rem;
    padding-left: 0.4rem;
}

.apexcharts-menu {
    color: rgb(var(--main-bg-color));
}

.apexcharts-toolbar {
    background-color: black;
    padding: 8px;
    padding-top: 6px;
    padding-left: 6px;
}

.apexcharts-zoomout-icon {
    margin-right: 10px;
}

.apexcharts-reset-icon {
    margin-right: 3px;
}

.apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,
.apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,
.apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,
.apexcharts-theme-light .apexcharts-zoomout-icon:hover svg,
.apexcharts-theme-light .apexcharts-reset-icon:hover svg,
.apexcharts-theme-light .apexcharts-menu-icon:hover svg {
    fill: white;
}

.apexcharts-pan-icon:not(.apexcharts-selected):hover svg {
    stroke: rgba(var(--player-color), 0.5);
}

.apexcharts-pan-icon.apexcharts-selected svg {
    stroke: rgba(var(--player-color), 1);
}

.apexcharts-canvas .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg {
    fill: rgba(var(--player-color), 0.5);
}

.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg {
    fill: rgba(var(--player-color), 1);
}

.apexcharts-legend-text {
    padding-left: 10px;
}

.community-follow-avatar {
    opacity: .6;
    margin-top: 0.6rem;
}

a:hover .community-follow-avatar {
    opacity: 1;
}

.community-follow-avatar {
    max-width: 110px;
}

.community-follow-username {
    font-size: 0.8rem;
    margin-top: 0.4rem;
    margin-bottom: 0.6rem;
}

/* Library */

.classic-button {
    cursor: pointer;
    border: 1px solid rgb(var(--player-color));
    color: white;
    padding: 0.4rem 1.2rem;
    padding-top: 0.45rem;
    border-radius: 0.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.7rem;
}

.classic-button:hover {
    background-color: rgb(var(--player-color));
}

.highlight-button {
    background-color: rgb(var(--player-color));
}

.gamefilter-select-parent {
    margin-right: 2.4rem;
}

.gamefilter-select-parent label {
    font-weight: 700;
    letter-spacing: 0.1rem;
    font-size: .75rem;
    text-transform: uppercase;
    padding-right: 0.8rem;
    border-right: 1px solid rgba(var(--player-color), 0.5);
    margin-right: 0.8rem;
}

.gamefilter {
    justify-content: space-between;
}

.gamefilter select {
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    line-height: 0.75rem;
    background: 0 0;
    background: url(../svg/caret-down-solid-white.svg) right center no-repeat;
    background-size: auto;
    background-size: auto 50%;
    padding: 0px;
    color: var(--main-text-color);
    font-size: 0.75rem;
    width: 5.5rem;
    opacity: 0.7;
    padding-top: 0.2rem;
}

.gamefilter #gamefilter-plat {
    width: 3.2rem;
}

.gamefilter #achfilter-sort {
    width: 3.6rem;
}

.gamefilter select option {
    background-color: rgb(var(--main-bg-color));
}

.gamefilter-search input,
.achfilter-search input,
.genericfilter-search input {
    height: 1.6rem;
    padding: 0.2rem 0.4rem;
    padding-right: 1.4rem;
    border: 1px solid rgb(var(--player-color));
    width: 10rem;
    outline: none;
    font-size: 0.75rem;
    background: transparent;
    border-radius: 0.2rem;
    color: white;
    margin-top: -0.2rem;
}

.genericfilter-search input {
    width: 100%;
}

.gamefilter-search svg,
.achfilter-search svg,
.genericfilter-search svg {
    top: 0.2rem;
    cursor: pointer;
}

.gamefilter-select-parent label {
    position: relative;
    bottom: -0.1rem;
}

.gamefilter select {
    padding-top: 0px;
    position: relative;
    bottom: -0.2rem;
}

.been-playing {
    overflow: hidden;
}

.been-playing-content {
    position: relative;
    z-index: 3;
}

.been-playing-overlay {
    background: linear-gradient(to right, rgba(var(--main-bg-color), 0.4) 15%, rgba(var(--main-bg-color), 0.85) 55%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.been-playing-image {
    position: absolute;
    top: -5%;
    left: -5%;
    object-fit: cover;
    width: 110%;
    height: 110%;
    max-width: 110%;
    z-index: 1;
    filter: blur(3px);
}

.been-playing-game-thumb {
    height: 7rem;
    padding-right: 1.5rem;
}

.been-playing .figure-total {
    margin-bottom: 0px;
    padding-top: 1.25rem;
}

.been-playing-game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sunbeam-card {
    margin-bottom: 1rem;
    background-color: #1b2838;
    border-radius: 0.3rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    overflow: hidden;
}

.sunbeam-card .been-playing-game-thumb {
    height: 6rem;
    padding: 0.8rem;
}

.sunbeam-card .been-playing-content {
    padding-right: 1.6rem;
}

.sunbeam-card .sunbeam-details {
    padding: 0.8rem;
    padding-left: 0px;
}

.sunbeam-game-title {
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 0.9rem;
    line-height: 1.05rem;
    margin-bottom: 0.6rem;
    text-shadow: 0px 0px 5px rgba(var(--main-bg-color), 0.4);
}

.sunbeam-game-title svg {
    width: 0.8rem;
    height: 0.8rem;
    object-fit: contain;
    margin-right: 0.4rem;
    bottom: -0.1rem;
    position: relative;
}

.sunbeam-game-stats {
    font-size: 0.65rem;
    opacity: .5;
}

.sunbeam-game-stats>div {
    padding-right: 0.5rem;
    padding-bottom: 0.2rem;
}

.sunbeam-game-stats svg {
    width: 0.75rem;
    height: 0.75rem;
    object-position: bottom center;
    object-fit: contain;
    fill: white;
    margin-right: 0.3rem;
    margin-bottom: -0.1rem;
}

.sunbeam-game-stats svg.fa-trophy {
    margin-bottom: -0.05rem;
}

.pagetop-search {
    padding-right: 2.1rem;
}

.pagetop-search svg {
    height: 1rem;
    opacity: .6;
    margin-right: 0.4rem;
    top: 0px;
    right: 0px;
    position: absolute;
    cursor: pointer;
}

.pagetop-search input {
    opacity: 0.7;
    padding: 0px 0.1rem;
    background: 0 0;
    color: var(--main-text-color);
    line-height: 0.75rem;
    font-size: 0.75rem;
    height: 1.05rem;
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(var(--player-color), 0.7);
}

.sunbeam-card-indicator {
    width: 1.6rem;
    height: 100%;
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    opacity: .5;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: center;
    padding: 0.2rem;
}

.sunbeam-card-indicator .flex {
    width: 1.6rem;
}

.sunbeam-card:hover .sunbeam-card-indicator {
    opacity: 1;
}

.sunbeam-card-indicator svg {
    width: 0.9rem;
    height: 0.9rem;
    color: white;
    fill: white;
    margin: 0.4rem;
}

.sunbeam-card-indicator svg.fa-gem {
    padding-top: 0.1rem;
}

.center-btn {
    margin: 0 auto;
}

@media screen and (max-width: 940px) {
    .gamefilter-select-parent {
        margin-bottom: 1.2rem;
    }

}

@media screen and (min-width: 941px) {
    .sunbeam-card {
        margin-bottom: 1.6rem;
    }

    .library-padding:nth-child(odd) {
        padding-right: 0.8rem;
    }

    .library-padding:nth-child(even) {
        padding-left: 0.8rem;
    }
}

@media screen and (min-width: 641px) {
    .been-playing .figure-total:first-child {
        padding-top: 0px;
    }


    .sunbeam-card-indicator svg {
        width: 1rem;
        height: 1rem;
    }

    .sunbeam-card-indicator {
        width: 1.8rem;
    }

    .sunbeam-card-indicator .flex {
        width: 1.8rem;
    }

    .sunbeam-card .been-playing-content {
        padding-right: 40px;
    }

    .sunbeam-card .sunbeam-details {
        padding: 1rem;
        padding-left: 0px;
    }

    .sunbeam-card .been-playing-game-thumb {
        height: 7rem;
        padding: 1rem;
    }

    .sunbeam-game-title {
        font-size: 0.9rem;
        line-height: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .sunbeam-game-stats {
        font-size: 0.65rem;
    }

    .sunbeam-game-stats svg {
        width: 15px;
        height: 15px;
        object-fit: contain;
        object-position: left center;
        margin-right: 6px;
        margin-bottom: -2.5px;
    }

    .sunbeam-game-stats svg.fa-trophy {
        margin-bottom: -1.5px;
    }

    .sunbeam-game-stats>div {
        padding-right: 16px;
    }
}

/* Simple page and header */

.regular-page {
    min-height: 100vh;
}

.simple-header {
    height: 600px;
    padding-top: 100px;
    padding-bottom: 250px;
    margin-bottom: -150px;
    z-index: -1;
}

.simple-header-short {
    margin-bottom: -250px;
}

.simple-header h1 {
    font-weight: 700;
    font-size: 5rem;
}

.simple-header h2 {
    font-size: 1.2rem;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -2;
}

.simple-header .background-image {
    filter: blur(3px);
}

.simple-header::after {
    content: " ";
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 105%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(to top, rgba(12, 24, 38, 1), rgba(12, 24, 38, 0.1));
}

.long-text {
    max-width: 710px;
}

.long-text p {
    margin-bottom: 0.8rem;
}

p a {
    color: rgb(var(--player-color));
    text-decoration: underline;
}

@media screen and (max-width: 640px) {
    .simple-header h1 {
        font-size: 2.2rem;
    }

    .simple-header h2 {
        font-size: 0.9rem;
    }

    .simple-header {
        height: 400px;
        padding-top: 100px;
        padding-bottom: 100px;
        margin-bottom: -75px;
    }

    .simple-header-short {
        margin-bottom: -100px;
    }
}

/* Search cards */

.profile-card>* {
    z-index: 5;
}

.profile-card>.card-background {
    z-index: 1;
}

.search-card .card-background {
    position: absolute;
    top: -5%;
    left: -5%;
    object-fit: cover;
    width: 110%;
    height: 110%;
    max-width: 110%;
    z-index: 1;
    filter: blur(3px);
}

.card-head-caret {
    padding-right: 48px;
}

.card-head-caret>svg {
    width: 1.2rem;
    height: 1.4rem;
    object-fit: contain;
    object-position: center center;
    position: absolute;
    top: 2px;
    right: 0px;
    color: rgb(var(--player-color));
    opacity: .5;
    transition: all 0.3s;
}

.profile-card:hover .card-head-caret>svg {
    opacity: 1;
}

.search-card .card-widget-element img {
    max-height: 52px;
}

.search-card .card-widget-title {
    font-weight: 400;
    opacity: .7;
    font-size: 0.75rem;
}

.search-card .card-title span.title-divide {
    font-weight: 400;
    opacity: .7;
    padding-left: 0.8rem;
    margin-left: 0.8rem;
    border-left: 2px solid white;
}

.search-card .card-widget-content {
    padding: 0.8rem 0.4rem;
    margin-top: 5px;
}

.search-card .community-follow-avatar {
    margin-top: 0px;
}

.card-buttons {
    margin-top: 1.2rem;
    justify-content: space-between;
}

.card-buttons .third:nth-child(1) {
    padding-right: 0.8rem;
}

.card-buttons .third:nth-child(2) {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
}

.card-buttons .third:nth-child(3) {
    padding-left: 0.8rem;
}

.search-card .been-playing-game-thumb {
    height: 5.5rem;
}

.search-card .card-title {
    font-size: 1rem;
}

.search-card .card-title svg {
    margin-bottom: -0.5rem;
    margin-right: 0.6rem;
}

@media screen and (max-width: 940px) {
    .search-card .card-widget-content .tablet-half:last-of-type {
        display: none;
    }

    .search-card .fourth.column-right-pad {
        padding-right: 0px;
    }

    .search-card .three-fourths.card-widget {
        padding-left: 0.8rem;
    }

    .search-card .card-widget-element img {
        max-height: 100px;
    }
}

@media screen and (max-width: 640px) {
    .search-card .card-title {
        font-size: 1rem;
    }

    .search-card .card-title {
        font-size: 0.9rem;
    }

    .search-card .card-title svg {
        width: 1.2rem;
        height: 1.2rem;
        object-fit: contain;
        object-position: center center;
        margin-right: 0.3rem;
        margin-bottom: -0.3rem;
    }

    .search-card .card-widget-element img {
        max-height: 40px;
    }
}

/* Game page achievements */

.game-page-header .profile-username {
    font-size: 1.4rem;
}

.game-pagetop-boxart::before {
    content: " ";
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--player-color));
    mix-blend-mode: overlay;
}

.game-pagetop-boxart img {
    z-index: 5;
    position: relative;
    max-height: 175px;
}

/* Achievement tile */

.achtile {
    margin-bottom: 1.2rem;
    border: 2px solid rgba(var(--player-color), 0.1);
    font-size: 0.65rem;
    overflow: hidden;
    padding-right: 2.2rem;
    border-radius: 0.2rem;
}

.achtile-selection {
    padding-right: 0px;
}

.achtile-selection:hover {
    border: 2px solid rgba(var(--player-color), 0.7);
}

.achtile>* {
    min-height: 5.8rem;
}

.user-ach-compare .achtile {
    padding-right: 4.4rem;
}

.achtile-earned {
    border: 2px solid rgba(var(--player-color), 1);
}

.achtile p {
    margin-bottom: 0px;
    padding-bottom: 0px;
    line-height: 1.3em;
}

.achtile-earned {
    border: 2px solid rgba(var(--player-color), 1);
}

.achtile-start {
    padding: 1.2rem;
    padding-left: 5.5rem;
}

.achtile-end {
    justify-content: flex-end;
}

.achtile-icon {
    width: 3.2rem;
    height: 3.2rem;
    object-fit: contain;
    object-position: center center;
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
}

.achtile-status svg,
.achtile-status-compare svg {
    width: 1rem;
    position: relative;
    right: -1.5px;
}

.achtile-status .profile-avatar-img,
.achtile-status-compare .profile-avatar-img {
    width: 1.1rem;
    border-radius: 0.55rem;
    margin-top: 0.6rem;
    position: relative;
    top: 0;
    left: 0.05rem;
    display: none;
}

.user-ach-compare .achtile-status .profile-avatar-img,
.user-ach-compare .achtile-status-compare .profile-avatar-img {
    display: block;
}

h3.achtile-name {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.1rem;
    margin-bottom: 0.4rem;
}

.achtile-description {
    opacity: .5;
    margin-bottom: 0px;
}

.achtile-stats {
    padding-right: 0.8rem;
    opacity: .5;
}

.achtile-status {
    height: 100%;
    width: 2.2rem;
    padding: 0.6rem;
    background-color: rgb(var(--player-color), 0.1);
    position: absolute;
    top: 0;
    right: 0;
}

.achtile-unlocktime {
    display: none;
}

.achtile-status .fa-check,
.achtile-status-compare .fa-check {
    display: none;
    margin-bottom: 0.2rem;
    top: 0.2rem;
}

.achtile-status .fa-lock,
.achtile-status-compare .fa-lock {
    opacity: .5;
    padding: 0.1rem;
}

.achtile-earned .achtile-status {
    background-color: rgb(var(--player-color), 1);
}

.achtile-status-compare {
    height: 100%;
    width: 2.1rem;
    padding: 0.6rem;
    padding-right: 0.65rem;
    padding-left: 0.45rem;
    position: absolute;
    top: 0;
    right: 2.2rem;
    background-color: rgb(var(--player-color), 0.05);
}

.achtile-compare-earned .achtile-status-compare {
    background-color: rgb(var(--player-color), 0.8);
}

.achtile-earned .achtile-status .fa-check,
.achtile-compare-earned .achtile-status-compare .fa-check {
    display: flex;
}

.achtile-earned .achtile-unlocktime {
    display: inline-block;
}

.achtile-earned .achtile-status .fa-lock {
    display: none;
}

.achtile-compare-earned .achtile-status-compare .fa-lock {
    display: none;
}

.achtile-end {
    text-align: right;
}

.achtile-compare-unlocktime,
.achtile-status-compare {
    display: none;
}

.user-ach-compare .achtile-status-compare {
    display: flex;
}

.user-ach-compare .achtile-compare-earned .achtile-compare-unlocktime {
    display: inline-block;
}

#achievement-list .achtile-secret .not-secret {
    display: none;
}

.is-secret {
    display: none;
}

#achievement-list .achtile-secret .is-secret {
    display: block;
}

.user-self-view #achievement-list .achtile-earned .not-secret {
    display: block;
}

.user-self-view #achievement-list .achtile-earned .is-secret {
    display: none;
}

.user-ach-compare #achievement-list .achtile-earned.achtile-compare-earned .not-secret {
    display: block;
}

.user-ach-compare #achievement-list .achtile-earned.achtile-compare-earned .is-secret {
    display: none;
}

#achievement-list.show-secrets .achtile-secret .is-secret {
    display: none;
}

#achievement-list.show-secrets .achtile-secret .not-secret {
    display: block;
}

.gamefilter .check {
    position: relative;
    bottom: -0.15rem;
}

@media screen and (max-width: 640px) {
    .achtile>* {
        min-height: auto;
    }

    .user-ach-compare .achtile {
        min-height: 6.8rem;
        align-content: center;
    }

    .achtile-start,
    .achtile-end {
        width: 100%;
    }

    .achtile-start {
        padding: 0.8rem;
        padding-top: 0.6rem;
        padding-left: 4.8rem;
        min-height: 5.1rem;
    }

    .achtile-icon {
        top: 0.8rem;
        left: 0.8rem;
    }

    .achtile-end {
        text-align: left;
        padding: 0.8rem;
        padding-top: 0px;
    }

    .user-ach-compare .achtile {
        padding-right: 2.2rem;
    }

    .user-ach-compare .achtile .achtile-status {
        height: 50%;
    }

    .user-ach-compare .achtile .achtile-status-compare {
        height: 50%;
        top: auto;
        bottom: 0px;
        right: 0px;
        width: 2.2rem;
        padding-left: 0.6rem;
        padding-right: 0.5rem;
    }

    .user-ach-compare .achtile-earned .achtile-status-compare {
        border-left: 2px solid rgb(var(--player-color), 1);
        padding-left: 0.5rem;
    }

    .user-ach-compare .achtile-compare-earned .achtile-status-compare .fa-check {
        right: -1.5px;
    }

    .user-ach-compare .achtile .fa-lock {
        right: -1px;
    }

    .achtile-status .profile-avatar-img,
    .achtile-status-compare .profile-avatar-img {
        margin-top: 0.4rem;
    }

    .achtile-earned .achtile-end,
    .achtile-compare-earned .achtile-end {
        display: flex;
    }

    .achtile-stats {
        font-size: 0.55rem;
    }

    .achfilter .two-thirds,
    .achfilter .third {
        width: 100%;
    }

    .gamefilter .check {
        position: relative;
        bottom: auto;
        margin-bottom: 1.6rem;
    }
}

/* To library widget */
.to-library-widget .profile-avatar {
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 0.8rem;
}

.to-library-widget-info div:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: -2px;
}

.to-library-widget-info div:nth-child(2) span {
    text-transform: uppercase;
    opacity: .5;
    font-size: .6rem;
    opacity: 0.5;
}

.to-library-widget-info div.animate svg {
    position: relative;
    left: 0.25rem;
    top: 0.1rem;
    height: 0.65rem;
    display: inline-block;
    color: rgb(var(--player-color));
    opacity: 0.5;
}

.to-library-widget a:hover .to-library-widget-info .animate svg {
    opacity: 1;
}

/* Details block */

.details-block a {
    position: relative;
}


.details-block .half {
    padding: 5px 10px;
}

.details-block .left-separator {
    border-left: 3px solid rgb(var(--player-color));
}

.details-block a {
    position: relative;
}

.details-block a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: rgba(var(--player-color), 0.15);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.details-block a:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.details-block .half {
    padding: 5px 10px;
}

.details-block .left-separator {
    border-left: 3px solid rgb(var(--player-color));
}

/* Related widget */

.related-widget img {
    max-height: 4rem;
    object-fit: contain;
    opacity: .5;
    mix-blend-mode: luminosity;
}

.related-widget a:hover img {
    opacity: 1;
    mix-blend-mode: normal;
}

/* Settings */

h3 {
    font-weight: 700;
    font-size: 1.2rem;
}

.sidebar-notifications {
    border-left: 1px solid rgb(var(--player-color));
}

.sidebar-nav {
    border-right: 1px solid rgb(var(--player-color));
}

.sidebar-nav-subtitle {
    margin-bottom: 0.4rem;
}

.sidebar-nav-item {
    opacity: .7;
    padding: 0.25rem 0.6rem;
    font-size: 0.9rem;
    border-left: 0.2rem solid rgba(255, 255, 255, 0.4);
    background: rgba(var(--player-color), 0);
}

.sidebar-nav-item:hover {
    border-left: 0.2rem solid rgba(var(--player-color), 0.7);
    background: rgba(var(--player-color), 0.05);
    opacity: 1;
}

@media screen and (max-height: 780px) {
    .sidebar-nav-item {
        padding: 0.15rem 0.6rem;
        font-size: 0.8rem;
    }

    .sidebar-nav-subtitle {
        font-size: 1rem;
        margin-bottom: .2rem;
        padding-top: 0.8rem;
    }
}

@media screen and (max-height: 640px) {
    .sidebar-nav-item {
        font-size: 0.7rem;
    }

    .sidebar-nav-subtitle {
        font-size: 0.8rem;
        margin-bottom: .1rem;
        padding-top: 0.6rem;
    }
}

.sidebar-nav-active,
.sidebar-nav-active:hover {
    opacity: 1;
    background: rgba(var(--player-color), 0.1);
    color: rgb(var(--player-color));
    border-left: 0.2rem solid rgba(var(--player-color), 1);
    font-weight: 700;
}

.sidebar-nav-active::before {
    content: " ";
    position: absolute;
    top: 0.45rem;
    right: -0.4rem;
    width: 0;
    height: 0;
    border-top: 0.4rem solid transparent;
    border-bottom: 0.4rem solid transparent;
    border-left: 0.4rem solid rgb(var(--player-color));
}

.standard-list li {
    position: relative;
    font-size: 0.8rem;
    padding-top: 0.4rem;
    padding-left: 1.3rem;
}

.standard-list li a {
    color: rgb(var(--player-color));
}

.standard-list li::before {
    content: " ";
    position: absolute;
    top: 0.75rem;
    left: 0.5rem;
    width: 0.3rem;
    height: 0.3rem;
    background: rgb(var(--player-color));
}

.negative-list li::before {
    background: darkred;
}

input.standard-text {
    padding: 0.4rem;
    padding-right: 1.4rem;
    border: 1px solid rgb(var(--player-color));
    width: 60%;
    max-width: 16rem;
    outline: none;
    font-size: 0.75rem;
    background: transparent;
    border-radius: 0.2rem;
    color: white;
}

.standard-label {
    font-size: 0.9rem;
}

.very-small-bottom-margin {
    margin-bottom: 0.2rem;
}

.input-with-button {
    margin-right: 0.8rem;
}

.mini-notification {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    top: 0rem;
}

.dynamic-btn,
.dynamic-form-btn {
    z-index: 5;
    height: 1.925rem;
}

.acclink-btn,
.dynamic-form-btn {
    width: 5rem;
}

.dynamic-btn #cool-loader,
.dynamic-form-btn #cool-loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dynamic-form-loading span,
.dynamic-btn-loading span {
    display: none;
}

.dynamic-form-loading #cool-loader,
.dynamic-btn-loading #cool-loader {
    display: flex;
}

.mini-notification div {
    background-color: #1b2838;
    padding: 0.2rem;
    padding-left: 0.25rem;
    text-transform: uppercase;
    font-size: 0.6rem;
}

.toggle-mini-notification .mini-notification {
    top: -1.6rem;
    opacity: 1;
}

.sidebar-notification {
    padding-left: 1.6rem;
    min-height: 3.2rem;
    font-size: 0.8rem;
}

.sidebar-notification svg {
    color: rgb(var(--player-color));
    fill: rgb(var(--player-color));
    position: absolute;
    top: 0.1rem;
    left: 0;
    width: 0.9rem;
    object-fit: contain;
    object-position: top left;
}

.side-nav-close {
    color: rgb(var(--player-color));
    font-size: 0.9rem;
}

.side-nav-close svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: rgb(var(--player-color));
    margin-right: 0.rem;
    margin-bottom: -0.35rem;
    margin-left: -0.6rem;
}

.settings-element p {
    font-size: 0.9rem;
}

.settings-element p.smaller-text,
.long-text p.smaller-text {
    font-size: .8rem;
}

.standard-dropdown,
.standard-checkbox label {
    justify-content: space-between;
}

.standard-dropdown label,
.standard-checkbox label span {
    font-size: 1rem;
    font-weight: 700;
}

.standard-radio .check {
    height: auto;
}

.standard-checkbox span {
    margin-right: 0.4rem;
}

.standard-dropdown select {
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    line-height: 0.75rem;
    background: 0 0;
    background: url(../svg/caret-down-solid-color.svg) right center no-repeat;
    background-size: auto 100%;
    padding: 0px;
    color: var(--main-text-color);
    font-size: 0.75rem;
    width: 3.2rem;
    opacity: 0.7;
    margin-top: 0.1rem;
}

.standard-dropdown select option {
    background-color: rgb(var(--main-bg-color));
}

.old-notification {
    opacity: .7;
}

.sidebar-notifications .icewrack-separator {
    position: relative;
    margin-top: 0px;
    top: -0.9rem;
}

.sidebar-notifications .icewrack-separator span:last-child {
    display: none;
}

#notification-expand:checked~label .icewrack-separator span:last-child {
    display: inline;
}

#notification-expand:checked~label .icewrack-separator span:first-child {
    display: none;
}

.notification-expand-label {
    opacity: .7;
    display: none;
}

.dashboard-mobile-nav {
    display: none;
    justify-content: space-between;
}

#form-change-platforms>.flex {
    margin-bottom: 1.2rem;
    min-width: 8rem;
}

.avatars>.fifth {
    padding-left: 0px;
}

.avatars>.fifth label {
    border-radius: 50%;
    border: 0.2rem solid rgba(var(--player-color), 0);
    opacity: .6;
    overflow: hidden;
}

.avatars>.fifth label:hover {
    opacity: .8;
}

.avatars>.fifth input:checked~label,
.avatars>.fifth input:checked~label:hover {
    border: 0.2rem solid rgba(var(--player-color), 1);
    opacity: 1;
}

@media screen and (max-width: 940px) {
    .sidebar-nav {
        width: 24.99%;
    }

    .settings-element {
        width: 74.99%;
    }

    .settings-element,
    .sidebar-nav {
        order: 2;
    }

    .sidebar-notifications {
        order: 1;
        border-left: none;
    }

    .sidebar-notification {
        min-height: auto;
    }

    .notification-expand-label {
        display: flex;
    }

    .old-notification {
        display: none;
    }

    #notification-expand:checked~.old-notification {
        display: flex;
    }
}

@media screen and (max-width: 640px) {
    .sidebar-nav {
        position: fixed;
        top: 0;
        left: -10rem;
        height: 100%;
        width: 10rem;
        background-color: #1B2838;
        z-index: 99;
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .sidebar-nav.extend-sidebar {
        left: 0;
    }

    .sidebar-nav-active::before {
        display: none;
    }

    .settings-element {
        width: 100%;
    }

    .dashboard-mobile-nav {
        display: flex;
    }

    .dashboard-mobile-nav svg {
        width: 1.3rem;
        height: 1.3rem;
        color: white;
        fill: white;
        margin-right: 0.rem;
        margin-bottom: -0.35rem;
    }

    .dashboard-mobile-nav .faded {
        display: inline-block;
        padding-right: 0.2rem;
    }

    .dashboard-mobile-nav div:first-child svg:first-child {
        margin-right: 0.8rem;
    }

    #sidebar-notifications>* {
        display: none;
    }

    #sidebar-notifications.show-notifications>* {
        display: flex;
    }

    #sidebar-notifications>.fourth.column-mini-full-pad {
        display: flex;
        order: 2;
    }
}

/* Accounts */

.classic-button.red-button {
    border: 1px solid rgb(187, 65, 91);
}

.classic-button.red-button:hover {
    background-color: rgb(187, 65, 91);
}

.highlight-button.red-button {
    background-color: rgb(187, 65, 91);
}

.input-expand {
    display: none;
}

input:checked~.input-expand {
    display: flex;
}

input:checked~.input-reverse {
    display: none;
}

.link-account-remove {
    display: none;
}

.account-linked .link-account-remove {
    display: flex;
}

.account-linked .link-account-add {
    display: none;
}

.colorful-frame {
    border: 1px solid rgb(var(--player-color));
    padding: 0.8rem;
}

/* Registration */

.stonehall {
    min-height: 2rem;
    padding-left: 3.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.stonehall-unfaded {
    color: white;
}

.stonehall a {
    color: rgb(var(--player-color));
    font-weight: bold;
    text-decoration: none;
}

.stonehall .stonehall-icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2rem;
    padding-bottom: 0.2rem;
}

.stonehall .stonehall-icon svg {
    width: 2rem;
    height: 2rem;
    fill: white;
    object-fit: contain;
    object-position: center center;
}

.check span a,
.check span span {
    color: rgb(var(--player-color));
    text-decoration: none;
}

/* Onboarding */

.onboard-icon svg {
    max-width: 50%;
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
    object-position: center;
    color: white;
    fill: white;
}

.onboard-card p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.onboard-card p a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.onboard-card .classic-button {
    font-size: 0.6rem;
    letter-spacing: 0.1rem;
    padding: 0.4rem;
    padding-top: 0.45rem;
}

.sidebar-notifications .fourth.column-mini-full-pad,
.stretch-onboard .fourth {
    width: 100%;
    padding: 0px;
}

/* Social feed */

.card-head-avatar {
    padding-left: 3.8rem;
}

.card-head-avatar img {
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    position: absolute;
    top: -0.15rem;
    left: 0;
    border: 0.15rem solid rgb(var(--player-color));
}

.social-card .been-playing-content .two-thirds .half {
    padding-left: 2.4rem;
}

.social-card .been-playing-content .two-thirds .half:first-child {
    border-right: 1px solid rgba(var(--player-color), 0.5);
}

.social-card .been-playing-game-thumb {
    padding-right: 0rem;
    padding-left: 0rem;
    height: auto;
}

.social-card .big-stat-element {
    padding-left: 2.6rem;
    padding-right: 0.8rem;
    margin-top: 0.8rem;
    margin-bottom: 0rem;
}

.social-card .big-stat-element svg {
    top: 0.2rem;
    width: 1.6rem;
    height: 1.6rem;
}

.highlight-color {
    color: rgb(var(--player-color));
}

.social-card .been-playing-game-thumb {
    max-height: 7rem;
}

.date-divider {
    margin-bottom: 1.2rem;
    margin-top: 2.4rem;
    flex-wrap: nowrap;
    font-size: 0.8rem;
}

.date-divider:first-child {
    margin-top: 0px;
}

.date-divider div:first-child {
    padding-right: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}

.date-divider div:nth-child(2) {
    flex-grow: 1;
    border-bottom: 1px solid white;
    padding-top: 0.5rem;
}

.feed-achievements,
.social-card {
    margin-bottom: 2rem;
}

.feed-achievements .card-title {
    font-size: 1rem;
    padding-top: 0.6rem;
    padding-bottom: 1.2rem;
    z-index: 2;
}

.feed-achievements-list {
    padding-top: 1.2rem;
    z-index: 1;
    margin-top: -1.6rem;
    padding-left: 1.4rem;
}

.feed-achievements-list>.full {
    padding-left: 1.1rem;
    border-left: 0.1rem solid rgba(var(--player-color), 0.75);
}

.feed-achievements-list h3.achtile-name {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.feed-achievements-list .achtile-description {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
}

.feed-achievements-list .achtile-start {
    min-height: 5.8rem;
}

.trending-game,
.trending-game:hover {
    box-shadow: none;
}

.trending-game {
    opacity: .7;
    border: 0.05rem solid rgba(255, 255, 255, 0.1);
}

.trending-game:hover {
    opacity: 1;
}

.trending-game .been-playing-image {
    mix-blend-mode: luminosity;
}

.trending-game .been-playing-content {
    padding-right: 0px;
    flex-wrap: wrap;
}

.trending-game .been-playing-overlay {
    background: rgba(var(--main-bg-color), 0.85);
}

@media screen and (min-width: 641px) {
    .trending-game .sunbeam-details {
        padding-left: 1rem;
        padding-top: 0rem;
    }
}

@media screen and (max-width: 940px) {
    #social-feed {
        order: 2;
    }

    #social-sidebar {
        margin-bottom: 2.4rem;
    }

    #social-sidebar .block-title {
        padding-top: 0px;
    }

    #social-sidebar .tablet-two-thirds {
        padding-left: 1.2rem;
    }

    .native-slider {
        flex-wrap: nowrap;
        overflow-x: scroll;
        display: flex;
        scroll-snap-type: x mandatory;
    }

    .native-slider>* {
        scroll-snap-align: start;
        width: 38%;
        min-width: 38%;
        margin-right: 1.2rem;
    }

    .trending-games.native-slider>* {
        width: 38%;
        min-width: 38%;
    }

    #social-sidebar .stretch-onboard .fourth:nth-child(odd) {
        width: 49.99%;
        padding-right: 1.2rem;
    }

    #social-sidebar .stretch-onboard .fourth:nth-child(even) {
        width: 49.99%;
        padding-left: 1.2rem;
    }
}

@media screen and (max-width: 640px) {
    #social-sidebar .tablet-two-thirds {
        padding-left: 0rem;
    }

    #social-sidebar .stretch-onboard .fourth:nth-child(odd),
    #social-sidebar .stretch-onboard .fourth:nth-child(even) {
        width: 100%;
        padding: 0px;
    }

    .trending-game .sunbeam-details {
        padding-left: 0.8rem;
    }

    .trending-games.native-slider>* {
        width: 55%;
        min-width: 55%;
    }

    .social-card .been-playing-content .two-thirds .half:first-child {
        border-right: none;
    }

    .social-card .card-title span {
        padding-left: 0rem;
        margin-left: 0rem;
        border-left: none;
    }

    .social-card .card-title br {
        display: none;
    }

    .social-card .been-playing-content .two-thirds .half {
        padding-left: 0rem;
    }

    .social-card .been-playing-game-thumb img {
        padding-bottom: 0.8rem;
        object-position: left center;
    }
}

/* Insight home holo art */

.holograph {
    position: relative;
    width: 70%;
    padding-bottom: 50%;
    height: auto;
    margin: 70px 0;
    -webkit-animation: float 3s infinite alternate;
    animation: float 3s infinite alternate;
}

.holograph,
.holo {
    position: absolute;
}

.holo {
    z-index: 2;
    bottom: 50px;
    width: 40%;
    height: 5px;
    margin: -5px auto 0;
    background-color: rgba(65, 169, 187, 0.35);
    border-radius: 100%;
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
    -webkit-transform: perspective(100px) rotateX(-30deg);
    transform: perspective(100px) rotateX(-30deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: holographic 4s infinite alternate;
    animation: holographic 4s infinite alternate;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.holo:after {
    position: absolute;
    left: -10px;
    right: -10px;
    content: "";
    height: 10px;
    background-color: rgba(65, 169, 187, 0.5);
    border-radius: 100%;
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
}

.holo+.holo {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    opacity: .5;
}

.holograph img {
    position: absolute;
    opacity: 0;
    left: 0;
    -webkit-animation: example_slider 20s infinite ease-in-out;
    animation: example_slider 20s infinite ease-in-out;
}

.holograph:hover img {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.insight-logo {
    max-width: 400px;
}

@keyframes example_slider {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
    }

    17% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    32% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.holograph img:nth-of-type(1) {
    animation-delay: 15s;
}

.holograph img:nth-of-type(2) {
    animation-delay: 10s;
}

.holograph img:nth-of-type(3) {
    animation-delay: 5s;
}

.holograph img:nth-of-type(4) {
    animation-delay: 0;
}

@-webkit-keyframes float {
    from {
        will-change: unset;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    to {
        will-change: transform;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float {
    from {
        will-change: unset;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    to {
        will-change: transform;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@-webkit-keyframes holographic {
    from {
        will-change: box-shadow;
        box-shadow: 0 -75px 5px rgba(65, 169, 187, 0.15), 0 -1px 2px rgba(65, 169, 187, 0.5), 0 -45px 5px rgba(65, 169, 187, 0.15), 0 -2px 3px rgba(65, 169, 187, 0.5), 0 -3px 4px rgba(65, 169, 187, 0.5), 0 -4px 6px rgba(65, 169, 187, 0.5), 0 -5px 10px rgba(65, 169, 187, 0.75), 0 -7px 20px rgba(65, 169, 187, 0.75), 0 -10px 30px rgba(65, 169, 187, 0.75), 0 -15px 40px rgba(65, 169, 187, 0.75), 0 -25px 50px rgba(65, 169, 187, 0.75), 0 -35px 60px rgba(65, 169, 187, 0.85), 0 -45px 70px rgba(65, 169, 187, 0.95), 0 -65px 80px #00fcfc, 0 -75px 90px #00fcfc;
    }

    to {
        will-change: unset;
        box-shadow: 0 -1px 5px rgba(65, 169, 187, 0.15), 0 -1px 2px rgba(65, 169, 187, 0.5), 0 -1px 5px rgba(65, 169, 187, 0.15), 0 -2px 3px rgba(65, 169, 187, 0.5), 0 -3px 4px rgba(65, 169, 187, 0.5), 0 -4px 6px rgba(65, 169, 187, 0.5), 0 -5px 7px rgba(65, 169, 187, 0.75), 0 -7px 10px rgba(65, 169, 187, 0.75), 0 -10px 15px rgba(65, 169, 187, 0.75), 0 -15px 20px rgba(65, 169, 187, 0.75), 0 -25px 25px rgba(65, 169, 187, 0.75), 0 -35px 30px rgba(65, 169, 187, 0.85), 0 -45px 35px rgba(65, 169, 187, 0.95), 0 -65px 40px #00fcfc, 0 -75px 50px #00fcfc;
    }
}

@keyframes holographic {
    from {
        will-change: box-shadow;
        box-shadow: 0 -75px 5px rgba(65, 169, 187, 0.15), 0 -1px 2px rgba(65, 169, 187, 0.5), 0 -45px 5px rgba(65, 169, 187, 0.15), 0 -2px 3px rgba(65, 169, 187, 0.5), 0 -3px 4px rgba(65, 169, 187, 0.5), 0 -4px 6px rgba(65, 169, 187, 0.5), 0 -5px 10px rgba(65, 169, 187, 0.75), 0 -7px 20px rgba(65, 169, 187, 0.75), 0 -10px 30px rgba(65, 169, 187, 0.75), 0 -15px 40px rgba(65, 169, 187, 0.75), 0 -25px 50px rgba(65, 169, 187, 0.75), 0 -35px 60px rgba(65, 169, 187, 0.85), 0 -45px 70px rgba(65, 169, 187, 0.95), 0 -65px 80px #00fcfc, 0 -75px 90px #00fcfc;
    }

    to {
        will-change: unset;
        box-shadow: 0 -1px 5px rgba(65, 169, 187, 0.15), 0 -1px 2px rgba(65, 169, 187, 0.5), 0 -1px 5px rgba(65, 169, 187, 0.15), 0 -2px 3px rgba(65, 169, 187, 0.5), 0 -3px 4px rgba(65, 169, 187, 0.5), 0 -4px 6px rgba(65, 169, 187, 0.5), 0 -5px 7px rgba(65, 169, 187, 0.75), 0 -7px 10px rgba(65, 169, 187, 0.75), 0 -10px 15px rgba(65, 169, 187, 0.75), 0 -15px 20px rgba(65, 169, 187, 0.75), 0 -25px 25px rgba(65, 169, 187, 0.75), 0 -35px 30px rgba(65, 169, 187, 0.85), 0 -45px 35px rgba(65, 169, 187, 0.95), 0 -65px 40px #00fcfc, 0 -75px 50px #00fcfc;
    }
}

.main-page-header {
    min-height: 80vh;
    padding: 4rem 0px;
    background: linear-gradient(to right, rgba(var(--main-bg-color), 0.7) 0%, rgba(var(--main-bg-color), 0.2) 50%, rgba(var(--main-bg-color), 0) 70%);
}

.main-page-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: -1rem;
}

.main-page-header h2 {
    font-size: 1.2rem;
    max-width: 22rem;
}

.main-page-logo {
    width: 80%;
    max-width: 20rem;
}

.holograph-parent {
    min-height: 560px;
}

#big-search-box {
    max-width: 40rem;
    width: 100%;
    margin-top: -1.6rem;
}

#big-search {
    height: 3.2rem;
    padding: 0.4rem 0.8rem;
    padding-right: 2.4rem;
    border: 1px solid rgb(var(--player-color));
    outline: none;
    width: 100%;
    font-size: 1.4rem;
    border-radius: 0.4rem;
    color: white;
    background: rgb(var(--main-bg-color));
}

#big-search-box svg {
    cursor: pointer;
    position: absolute;
    right: 0.8rem;
    top: 0.8rem;
    width: 1.6rem;
    height: 1.6rem;
    color: white;
    fill: white;
}

.limited-icon svg {
    width: 3.2rem;
    height: 3.2rem;
    object-fit: contain;
    object-position: bottom left;
    color: rgba(var(--player-color), 0.75);
    fill: rgba(var(--player-color), 0.75);
}

.platform-icons svg {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    color: white;
    fill: white;
    margin-right: 2rem;
}

.big-trending .fourth .trending-game {
    height: 100%;
}

.big-trending .trending-game {
    opacity: 1;
}

@media screen and (max-width: 940px) {
    .standard-content .in-page-notification:first-child {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        border-top: 0.1rem solid rgba(var(--player-color), 0.2);
    }
}

@media screen and (max-width: 640px) {
    .platform-icons svg {
        margin-right: 1rem;
    }

    .holograph-parent {
        min-height: 100vw;
        margin-top: -15vw;
        margin-bottom: -4rem;
    }

    #big-search {
        height: 2.4rem;
        padding: 0.8rem 0.6rem;
        padding-right: 1.6rem;
        font-size: 1rem;
        border-radius: 0.2rem;
    }

    #big-search-box svg {
        right: 0.6rem;
        top: 0.6rem;
        width: 1.2rem;
        height: 1.2rem;
    }
}

/* Quest */

.reward-card {
    align-content: space-between;
    flex-grow: 1;
}

.reward-card .classic-button {
    font-size: 0.6rem;
    letter-spacing: 0.1rem;
    padding: 0.4rem;
    padding-top: 0.45rem;
}

.reward-card-preview {
    padding-top: 50%;
}

.reward-card-preview>* {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.reward-card-preview .reward-cover {
    object-fit: cover;
}

.reward-card p.bold {
    font-size: 0.9rem;
    padding-bottom: 0.3rem;
}

.reward-card p.smaller-text {
    font-size: 0.7rem;
}

@media screen and (min-width: 941px) {
    .cover-images>.half:nth-child(odd) {
        padding-right: 0.6rem;
    }

    .cover-images>.half:nth-child(even) {
        padding-left: 0.6rem;
    }
}

.big-dropdown {
    justify-content: flex-start;
}

.big-dropdown select {
    font-size: 0.8rem;
    width: 100%;
    max-width: 16rem;
    opacity: 1;
    margin-top: 0;
    padding: 0.4rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.2rem;
    line-height: 1.2rem;
    background-size: auto 1.6rem;
    background-position-x: 14.5rem;
    cursor: pointer;
    margin-right: 0.8rem;
}

/* Insight game  */

.insight-level {
    font-size: 0.9rem;
}

.info-box {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.info-box-indicator {
    width: 1em;
    height: 1em;
    color: rgb(var(--player-color));
    position: relative;
    display: inline-block;
    bottom: -0.15em;
    opacity: .3;
    cursor: pointer;
    margin-left: 0.4em;
}

.info-box-indicator:hover {
    opacity: .7;
}

.limit-height {
    max-height: 16rem;
    z-index: 2;
    overflow: hidden;
    position: relative;
}

.release-height {
    max-height: 100%;
}

.release-height::before,
.release-height .limit-height-toggle {
    display: none;
}

.limit-height::before {
    content: " ";
    position: absolute;
    bottom: -1px;
    left: 0px;
    height: 10rem;
    width: 100%;
    background: linear-gradient(to top, rgba(var(--main-bg-color), 1), rgba(var(--main-bg-color), 0));
    z-index: 3;
}

.limit-height-toggle {
    position: absolute;
    bottom: 0.6rem;
    left: 0px;
    cursor: pointer;
    z-index: 4;
}

.limit-height-toggle span {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.6rem;
    text-align: center;
    font-weight: bold;
    padding: 0.2rem 0.6rem;
    color: rgb(var(--player-color));
    background: rgb(var(--main-bg-color));
    border-radius: 0.2rem;
}

.big-stat-number svg {
    width: 0.9em;
    height: 0.9em;
    color: white;
    position: relative;
    display: inline-block;
    bottom: -0.15em;
}

.big-stat-number .info-box-indicator {
    margin-left: 0px;
    bottom: -0.05em;
}

.big-stat-number .info-box-indicator svg {
    color: rgb(var(--player-color));
    width: 0.7em;
    height: 0.7em;
}

.card-head-action {
    padding-right: 3.6rem;
}

.card-head-action-icon {
    width: 1.2rem;
    height: 1.4rem;
    object-fit: contain;
    object-position: center center;
    position: absolute;
    top: 0.1rem;
    right: 1.2rem;
    color: rgb(var(--player-color));
    opacity: .5;
    transition: all 0.3s;
}

.card-head-action-icon:hover {
    opacity: .7;
}

.classic-button svg {
    width: 1em;
    height: 1em;
    color: white;
    position: relative;
    display: inline-block;
    bottom: -0.15em;
    margin-right: 0.5em;
    left: -0.3em;
}

.classic-button.locked:hover {
    cursor: not-allowed;
    background: transparent;
}

.stronger-card-background {
    opacity: .5;
    object-position: top center;
}

#svg-world-map {
    width: 100%;
    height: auto
}

#svg-world-map path {
    fill: rgba(255, 255, 255, .1)
}

/* Quest */

.quest-header-card h3 {
    font-size: 2.4rem;
}

.quest-header-card h3 svg {
    width: 1em;
    height: 1em;
    object-fit: contain;
    object-position: center center;
    margin-right: 0.2em;
    margin-bottom: -0.15em;
    color: white;
    fill: white;
}

.quest-gift .game-logo {
    width: 70%;
    max-height: 6rem;
    object-fit: contain;
}

.quest-gift .card-background {
    mix-blend-mode: normal;
    filter: blur(1px);
    opacity: .25;
}

.quest-gift .block-title {
    padding-top: 0.6rem;
}

.quest-gift::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to left, rgba(var(--main-bg-color), 0.7) 0%, rgba(var(--main-bg-color), 0.2) 50%, rgba(var(--main-bg-color), 0) 70%);
}

.quest-header {
    margin-bottom: -5rem;
}

.giant-block-title {
    font-size: 3rem;
    margin-top: 2rem;
    font-weight: 900;
}

@media screen and (max-width: 640px) {
    .giant-block-title {
        font-size: 2rem;
    }
}

/* Challenge cards*/

.flex-column {
    flex-direction: column;
}

.challenge-card {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    border-radius: 0.4rem;
    background: rgb(var(--main-bg-color));
    border: 0.1rem solid rgba(var(--player-color), 0.2);
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

.dynamic-quest-btn {
    border: 0.1rem solid rgba(var(--player-color), 0.2);
}

.challenge-card .standard-dropdown {
    padding-bottom: .35rem;
    padding-top: 0.025rem;
}

.create-challenge-card .challenge-card-footer {
    padding-right: .6rem;
}

.challenge-card .standard-dropdown label {
    font-size: 0.75rem;
    margin-top: -0.05rem;
}

.challenge-card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
}

.challenge-card-footer {
    padding: 0.6rem;
    padding-right: 1.8rem;
    padding-bottom: 0.2rem;
    background-color: rgba(var(--player-color), 0.2);
}

.challenge-card-content {
    overflow: hidden;
    flex-grow: 1;
}

.challenge-card-content>* {
    z-index: 5;
    position: relative;
}

.challenge-card-content>.challenge-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: normal;
    filter: blur(1px);
    opacity: .1;
    z-index: 1;
}

.challenge-card svg {
    width: 1em;
    height: 1em;
    object-fit: contain;
    object-position: center center;
    margin-right: 0.4em;
    color: white;
    fill: white;
}

.challenge-card-icon img {
    max-width: 3.2rem;
    height: auto;
}

.challenge-card-indicator {
    position: absolute;
    bottom: 0.2rem;
    right: 0.6rem;
}

.challenge-card-indicator svg {
    margin-right: 0em;
}

.challenge-card-indicator svg:nth-child(2) {
    display: none;
}

.challenge-card-complete .challenge-card-indicator svg:first-child {
    display: none;
}

.challenge-card-complete .challenge-card-indicator svg:nth-child(2) {
    display: block;
    top: -0.3rem;
    position: relative;
}

.challenge-card-complete {
    border: 0.1rem solid rgba(var(--player-color), 1);
}

.challenge-card-complete .challenge-card-footer {
    background-color: rgba(var(--player-color), 1);
}

.many-buttons .classic-button {
    margin-left: 0.6rem;
    margin-right: 0.6rem;
}

.create-challenge-plus svg {
    width: 50%;
    max-width: 5rem;
    color: rgba(var(--player-color), 0.7);
    fill: rgba(var(--player-color), 0.7);
    height: auto;
}

.block-title-bonus {
    padding-top: 0.1rem;
    letter-spacing: 2px;
    font-size: 14px;
    font-size: .7rem;
    text-transform: uppercase;
    text-align: right;
    opacity: .7;
}

a.block-title-bonus:hover {
    opacity: 1;
}

.block-title-bonus svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-bottom: -0.1em;
    color: rgba(var(--player-color), 0.7);
    fill: rgba(var(--player-color), 0.7);
}

.reward-card-title {
    font-size: 1.6rem;
    font-weight: bold;
    z-index: 5;
}

input:checked~label.reward-purchase-btn {
    display: none;
}

/* New homepage landing */

.landing-card,
.landing-card:hover {
    box-shadow: none;
}

.landing-card * {
    z-index: 3;
}

.landing-card .card-background {
    mix-blend-mode: normal;
    opacity: .4;
    filter: blur(2px);
    z-index: 1;
}

.landing-card::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(12, 24, 38, 1), rgba(12, 24, 38, 0.2));
}

.landing-card .card-logo {
    width: 60%;
    height: 4rem;
    object-fit: contain;
}

.card-text-logo {
    padding-left: 0.25em;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 2.4rem;
    line-height: 4rem;
}

.big-title {
    padding-left: 0.25em;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 5rem;
}

.big-subtitle {
    font-weight: 700;
    font-size: 1.3rem;
}

.big-intro {
    font-size: 0.9rem;
}

.midpage-header {
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.midpage-header * {
    z-index: 3;
}

.midpage-header .background-image {
    mix-blend-mode: normal;
    opacity: .4;
    filter: blur(2px);
    z-index: 1;
}

.midpage-header::before {
    content: " ";
    position: absolute;
    bottom: -0.1rem;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(12, 24, 38, 1), rgba(12, 24, 38, 0.2));
}

.landing-title {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.25em;
    text-transform: uppercase;
}

.landing-title span {
    display: inline-block;
}

.landing-divider {
    height: 0.2rem;
    background: linear-gradient(to right, rgba(var(--player-color), 1), rgba(var(--player-color), 0));
}

.landing-list li {
    position: relative;
    font-size: 1rem;
    padding-top: .8rem;
    padding-left: 1.5rem;
}

.landing-list li::before {
    content: " ";
    position: absolute;
    top: 1.25rem;
    left: 0rem;
    width: .5rem;
    height: .5rem;
    background: rgb(var(--player-color));
}

.platform-icons svg:last-child {
    margin-right: 0em;
}

@media screen and (max-width: 940px) {
    .landing-title {
        font-size: 1.2rem;
    }

    .big-title {
        font-size: 15vw;
    }

    .mobile-order-1 {
        order: 1;
    }

    .mobile-order-2 {
        order: 2;
    }
}

@media screen and (max-width: 640px) {
    #insight .holograph-parent {
        margin-bottom: 0px;
    }
}



.help-side-tips {
    order: 3;
}

.social-feed .simple-header::after {
    background: linear-gradient(to top, rgba(12, 24, 38, 1), rgba(12, 24, 38, 0.6));
}

@media screen and (min-width: 941px) {
    .help-side-tips {
        border-left: 1px solid rgb(var(--player-color));
    }
}

.homepage-landing-header {
    padding-bottom: 300px;
    margin-bottom: -300px;
}

.homepage-landing-video {
    mix-blend-mode: lighten;
}

@media screen and (max-width: 640px) {
    .homepage-landing-header {
        padding-bottom: 0;
        margin-bottom: 0;
        height: 200px;
    }
}

.homepage-logo-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.homepage-logo-line a {
    padding: 0px 0.8rem;
    min-width: 100px;
}

@media screen and (max-width: 940px) {
    .homepage-logo-line a {
        width: 49.99%;
        padding: 0.8rem;
    }
}

.ach-pin {
    display: none;
}

.status-orb {
    width: 0.8em;
    height: 0.8em;
    border-radius: 0.4em;
    position: relative;
    bottom: -0.2em;
    display: inline-block;
    margin-right: 0.4em;
    background-color: rgba(255, 255, 255, 0.25);
}

.green-bg {
    background-color: rgba(65, 187, 105, 0.75);
}

.red-bg {
    background-color: rgba(187, 65, 91, 0.75);
}

.yellow-bg {
    background-color: rgba(187, 148, 65, 0.75);
    ;
}

.green-text {
    color: rgb(65, 187, 105);
}

.red-text {
    color: rgb(187, 65, 91);
}

.yellow-text {
    color: rgb(187, 148, 65);
}

/* League */

.league-list {
    align-content: space-around;
}

.league-list-item {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    font-size: 0.9rem;
    justify-content: space-between;
}

.league-card .challenge-card-background {
    opacity: .25;
}

.mini-avatar-img {
    display: inline-block;
    width: 1.6em;
    height: 1.6em;
    border-radius: 0.8em;
    border: 0.1rem solid rgba(var(--player-color), 1);
    position: relative;
    bottom: -0.35em;
    margin-right: 0.3em;
    margin-top: -0.3em;
}

.league-list-item .mini-avatar-img {
    margin-left: 0.3em;
}

.community-avatar-opaque {
    opacity: 1;
}

.contains-inline-icon svg {
    width: 1.2em;
    height: 1.2em;
    position: relative;
    bottom: -0.3em;
    display: inline-block;
    margin-right: 0.2em;
}

.no-bottom-card-margin .profile-card {
    margin-bottom: 0px;
}

.challenge-card .big-stat-element svg {
    width: 2rem;
    height: 2rem;
}

.challenge-card .big-stat-element {
    margin-bottom: 0px;
}

.faded-button {
    border: 0.1rem solid rgba(var(--player-color), 0.2);
}

@media screen and (min-width: 941px) {
    .social-onboard>.fourth {
        width: 49.99%;
        padding: 0px 24px;
    }
}

.app-special-header {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    perspective: 1000;
    transform: translate3d(0, 0, 0);
    transform: translateZ(0);
    position: fixed;
    top: 3.2rem;
    opacity: 1;
    left: 0;
    width: 100%;
    align-items: space-between;
    z-index: 997;
    color: #fff;
    background-color: rgba(12, 24, 38, .7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 0.8rem;
}

.app-special-header .container {
    z-index: 5;
    justify-content: space-between;
}

.mini-tile {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 2px;
    background-color: rgb(var(--player-color));
    margin-right: 16px;
    top: -0.1rem;
    position: relative;
    margin-bottom: -0.2rem;
}

.app-special-header .classic-button {
    margin-left: 16px;
}

.app-special-header .highlight-color {
    padding-left: 0.2rem;
}

.subtle-header-bg {
    opacity: .2;
}

.minimize-page-header {
    min-height: auto;
    padding-top: 8rem;
}

.social-card-header svg {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 0.15rem;
    left: 0;
    color: white;
    fill: white;
}

.social-card-header {
    padding-left: 3rem;
}

.social-card-header p {
    font-size: 0.9rem;
}

.highlight-color {
    color: rgb(var(--player-color));
}

.flex-grow {
    flex-direction: column;
    flex-grow: 1;
}

span.ib {
    display: inline-block;
}

.social-header-fixed-height {
    min-height: 120px;
}

.mystery-card {
    padding: 0.2rem;
    background-color: rgb(var(--main-bg-color));
    box-shadow: 0px 0px 20px rgba(var(--player-color), .25);
    font-size: 1.2rem;
    min-height: 120px;
}

.social-header-boxart {
    max-height: 120px;
    object-fit: contain;
}

.mystery-card-border {
    border: 1px solid rgb(var(--player-color));
    padding: 0.2rem;
}

.mystery-card:hover {
    padding: 0.4rem;
}

.mystery-card:hover .mystery-card-border {
    padding: 0rem;
}

.solid-background {
    background-color: rgb(var(--main-bg-color));
}

.page-header-subtitle {
    font-size: 1.2rem;
}

.new-header-description {
    max-width: 32rem;
    font-size: 0.9rem;
}

.download-btn {
    background-color: rgb(var(--player-color));
}

.download-btn svg {
    margin-left: .5em;
    margin-right: 0px;
    fill: white;
    left: 0;
}

.many-buttons-alt .classic-button {
    margin-right: .6rem;
}

.many-buttons-alt .classic-button:last-child {
    margin-right: 0rem;
}

.main-page-header .smaller-text svg {
    width: 1em;
    height: 1em;
    color: #fff;
    fill: #fff;
    position: relative;
    display: inline-block;
    margin-left: 0.8em;
    margin-right: 0.8em;
    margin-bottom: -0.2em;
}

.tight-line-height {
    line-height: 0.8em;
}

.date-divider {
    opacity: .5;
}

.date-divider div:first-child {
    text-transform: none;
    font-weight: 400;
    letter-spacing: normal;
    font-size: 0.8rem;
}

.date-divider div:nth-child(2) {
    opacity: .5;
}

.align-end {
    align-items: flex-end;
}

@media screen and (max-width: 1248px) {
    .social-card-header span.ib {
        display: inline;
    }
}

@media screen and (max-width: 940px) {
    .responsive-no-bottom-pad {
        padding-bottom: 0px;
    }

    .responsive-header-label {
        width: 100%;
        padding-left: 0rem;
        padding-top: 0.8rem;
    }
}

@media screen and (max-width: 640px) {
    .mobile-hero-meld {
        margin: 0px 1.2rem;
        background-color: #1b2838;
        border-radius: 8px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
        transition: all .3s cubic-bezier(.25, .8, .25, 1);
        overflow: hidden;
        margin-bottom: 1.2rem;
    }

    .mobile-hero-meld .third {
        padding: 0px;
    }

    .mobile-hero-meld .third .profile-card {
        margin-bottom: 0px;
        border-radius: 0px;
        box-shadow: none;
        background-color: transparent;
    }

    .mobile-hero-meld .third:first-child .profile-card::after {
        content: " ";
        z-index: 2;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to top, rgba(27, 40, 56, 1), rgba(27, 40, 56, 0));
    }

    .mobile-hero-meld .third:nth-child(2) .profile-card::before {
        content: " ";
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to bottom, rgba(27, 40, 56, 1), rgba(27, 40, 56, 0));
    }

    .mobile-hero-meld .social-card-header {
        padding-bottom: 0.8rem;
    }

    .minimize-page-header {
        padding-bottom: 5rem;
    }

    .social-header-boxart {
        max-height: 80px;
    }

    .mobile-hide {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .artist-showcase>.fourth {
        order: 2;
    }

    .artist-showcase .three-fourths {
        order: 1;
    }

    .many-buttons-alt .classic-button {
        margin-bottom: .4rem;
    }
}

.dynamic-content-request #cool-loader {
    display: none;
}

.dynamic-content-loading>#cool-loader {
    display: flex;
}

.alt-sidekick-toggle:checked~.sidekick-menu {
    display: flex;
}

.alt-sidekick-toggle:checked~.sidekick-menu-btn {
    z-index: 5;
}

.library-padding .sidekick-menu {
    top: 0px;
    right: 0rem;
    z-index: 10;
}

.library-padding .sidekick-menu-btn {
    position: absolute;
    top: .2rem;
    right: .2rem;
}

@media screen and (min-width: 941px) {
    .library-padding .sidekick-menu-btn {
        right: 1rem;
    }

    .library-padding:nth-child(2n) .sidekick-menu-btn {
        right: .2rem;
    }

    .library-padding .sidekick-menu {
        right: .8rem;
    }

    .library-padding:nth-child(2n) .sidekick-menu {
        right: 0px;
    }

    .library-padding .sidekick-menu .sidekick-menu-btn {
        right: .2rem;
    }

    .library-padding:nth-child(2n) .sidekick-menu .sidekick-menu-btn {
        right: .2rem;
    }
}

.library-padding .sidekick-menu-btn {
    height: 1.2rem;
    padding: .25rem;
}

.library-padding .sidekick-button svg {
    width: 0.75rem;
    fill: rgb(var(--player-color));
    color: rgb(var(--player-color));
}

#gamelist .sidekick-button {
    display: none;
}

#gamelist.show-quick-settings .sidekick-button {
    display: flex;
}

#gamelist.show-quick-settings .sunbeam-card-indicator {
    padding-top: 1.6rem;
}

.level-icons .third label {
    opacity: .5;
}

.level-icons .third label:hover {
    opacity: .8;
}

.level-icons .third input:checked~label,
.level-icons .third input:checked~label:hover {
    opacity: 1;
}

.highlight-colors label {
    padding-top: 50%;
    border-radius: 2rem;
    opacity: .5;
    border: 0.2rem solid transparent;
}

.highlight-colors label:hover {
    opacity: .8;
}

.highlight-colors input:checked~label,
.highlight-colors input:checked~label:hover {
    opacity: 1;
    border: 0.2rem solid white;
}

@media screen and (max-width: 640px) {
    .simple-header .background-image {
        filter: none;
    }

    .simple-header::after {
        background: linear-gradient(to top, rgba(12, 24, 38, 1), rgba(12, 24, 38, 0.3));
    }

    .midpage-header .background-image,
    .landing-card .card-background {
        filter: none;
        opacity: .25;
    }

    .social-feed .simple-header::after {
        background: linear-gradient(to top, rgba(12, 24, 38, 1), rgba(12, 24, 38, 0.75));
    }

    .search-card .card-background {
        filter: none;
        opacity: 0.075;
    }

    .been-playing-image {
        filter: none;
    }

    .been-playing-overlay {
        background: linear-gradient(to right, rgba(var(--main-bg-color), 0.7) 15%, rgba(var(--main-bg-color), 0.9) 55%);
    }

    .homepage-landing-video {
        mix-blend-mode: normal;
    }
}

.custom-cards-page .simple-header {
    margin-bottom: -320px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.custom-cards-page .title {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 2.5rem;
}

.custom-cards-page .hidden {
    display: none;
}

.custom-cards-page input:not([type="range"]) {
    height: 1.7rem;
    padding: 0.2rem 0.4rem;
    padding-right: 1.4rem;
    border: 1px solid rgb(var(--player-color));
    outline: none;
    font-size: 0.75rem;
    background: 0 0;
    border-radius: 0.2rem;
    color: #fff;
    margin-top: -0.2rem;
    width: 100%;
    font-size: 0.8rem;
    font-weight: 500;
}

.custom-cards-page .settings-column {
    width: 36%;
    border-right: 1px solid rgb(var(--player-color));
    padding-left: 1.2rem;
    padding-right: 2.5rem;
}

.custom-cards-page .preview-column {
    width: 64%;
    padding-left: 2.5rem;
    padding-right: 1.2rem;
    position: relative;
}

.custom-cards-page .settings-input-group {
    display: flex;
    flex-direction: column;
}

.custom-cards-page .settings-input-group:not(.settings-input-group-elements) {
    margin-bottom: 2.2rem;
}

.custom-cards-page .settings-input-group .setting-title {
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 0.9rem;
}

/* settings - icons */

.custom-cards-page .settings-input-group .card-icon-options .line {
    display: flex;
    align-items: center;
    margin: 0 -10px;
}

.custom-cards-page .settings-input-group .card-icon-option {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.3rem 0.3rem;
    margin: 0 0.1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 999px;
}

.custom-cards-page .settings-input-group .card-icon-option.selected svg {
    fill: rgb(var(--player-color));
    color: rgb(var(--player-color));
}

.custom-cards-page .settings-input-group .card-icon-option svg {
    fill: #fff;
    height: 60%;
}

.custom-cards-page .settings-input-group .card-icon-option:not(.selected):hover svg {
    fill: rgb(var(--player-color));
    color: rgb(var(--player-color));
}

/* settings - background */

.custom-cards-page .settings-input-group .background-options {
    display: flex;
    align-items: center;
    margin: 0 -7px;
}

.custom-cards-page .settings-input-group .background-option {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0.2rem 0.4rem;
    border-radius: 999px;
    border: 1px solid #fff;
    transition: all 0.2s;
    cursor: pointer;
}

.custom-cards-page .settings-input-group .background-option:not(.selected):hover {
    outline: 2.5px solid rgb(var(--player-color));
}

.custom-cards-page .settings-input-group .background-option.selected {
    outline: 2.5px solid rgb(var(--player-color));
}

/* settings - elements create */

.custom-cards-page .settings-input-group .elements-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1b2838;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    /* border-bottom: 1px solid rgb(var(--player-color)); */
    width: 100%;
}

.custom-cards-page .settings-input-group .elements-tabs .tab {
    text-align: center;
    width: 33%;
    padding: 0.8rem 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    position: relative;
    cursor: pointer;
}

.custom-cards-page .settings-input-group .elements-tabs .tab::before {
    content: "";
    background-color: rgb(var(--player-color));
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: -3px;
    left: 0;
    opacity: 0;
    border-radius: 4px;
    transition: all 0.3s;
}

.custom-cards-page .settings-input-group .elements-tabs .tab.active::before {
    opacity: 1;
}

.custom-cards-page .settings-input-group .elements-tabs .tab:hover::before {
    opacity: 0.5;
}

.custom-cards-page .settings-input-group .element-media-container {
    background-color: #1b2838;
    padding: 1.1rem 0.7rem;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 100%;
    height: 23rem;
    display: none;
}

.custom-cards-page .settings-input-group .element-media-container.active {
    display: block;
}

.custom-cards-page .settings-input-group .element-media-container .search-box {
    margin-bottom: 0.8rem;
}

.custom-cards-page .settings-input-group .element-media-container .search-results-wrapper {
    overflow: auto;
    height: 15.8rem;
}

.custom-cards-page .settings-input-group .element-media-container .search-results {
    column-gap: 0.4rem;
    column-count: 2;
    padding: 0 0 0.8rem;
}

.custom-cards-page .settings-input-group .element-media-container .search-results .result {
    width: 100%;
    height: fit-content;
    break-inside: avoid;
    margin-bottom: 0.4rem;
    cursor: pointer;
}

.custom-cards-page .settings-input-group .element-media-container .search-results .result img {
    border-radius: 3px;
}

.custom-cards-page .settings-input-group .element-media-container .search-results .result.selected img {
    outline: 3px solid rgb(var(--player-color));
    outline-offset: -3px;
}

.custom-cards-page .settings-input-group .element-media-container .action {
    width: 100%;
    padding: 0.9rem 0;
    background-color: #1b2838;
    display: flex;
    justify-content: end;
}

.custom-cards-page .settings-input-group .element-media-container .action button {
    margin-top: 0;
    width: 8rem;
}

/* elements adjustments */

.custom-cards-page .elements-wrapper .element {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
}

.custom-cards-page .elements-wrapper .element-content {
    width: 100%;
}

.custom-cards-page .elements-wrapper .element-menu {
    display: flex;
    background: #1b2838;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0.5rem 0.8rem;
}

.custom-cards-page .elements-wrapper .element-menu .name {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
    max-width: 25ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-cards-page .elements-wrapper .element-menu .actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.custom-cards-page .elements-wrapper .element-menu .actions svg {
    color: #767e88;
    fill: #767e88;
    vertical-align: middle;
    transition: all 300ms ease;
}

.custom-cards-page .elements-wrapper .element-menu .actions svg:hover {
    color: rgb(var(--player-color));
    fill: rgb(var(--player-color));
}

.custom-cards-page .elements-wrapper .element-menu .actions .arrow-down svg {
    transform: rotate(90deg);
    position: relative;
    top: 1.5px;
    height: 1.8rem;
    width: 1.8rem;
    cursor: pointer;
}

.custom-cards-page .elements-wrapper .element-menu .actions .arrow-up svg {
    transform: rotate(-90deg);
    height: 1.8rem;
    width: 1.8rem;
    cursor: pointer;
}

.custom-cards-page .elements-wrapper .element-menu .actions .settings svg {
    height: 1.1rem;
    width: 1.1rem;
    margin-left: 0.5rem;
    cursor: pointer;
}

.custom-cards-page .elements-wrapper .settings-section {
    background: #1b2838;
    transition: all 300ms ease-in-out;
    overflow: hidden;
    max-height: 0;
}

.custom-cards-page .elements-wrapper .element.open .settings-section {
    max-height: 100%;
}

.custom-cards-page .elements-wrapper .settings-section .top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.7rem 0.8rem 0;
}

.custom-cards-page .elements-wrapper .settings-section .top-section .image-wrapper {
    width: 58%;
    height: fit-content;
}

.custom-cards-page .elements-wrapper .settings-section .top-section .image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.custom-cards-page .elements-wrapper .settings-section .top-section .remove-element {
    width: 42%;
    background-color: #0d1826;
    text-align: center;
    font-size: 0.6rem;
}

.custom-cards-page .elements-wrapper .settings-section .top-section .remove-element:hover {
    background-color: rgb(var(--player-color));
}

.custom-cards-page .elements-wrapper .settings-section .controllers {
    padding: 0.7rem 0.8rem;
}

.custom-cards-page .elements-wrapper .settings-section .controllers .controller-input-group {
    padding: 0.5rem 0 0.4rem;
}

.custom-cards-page .elements-wrapper .settings-section .controllers .controller-input-group .controller-title {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.custom-cards-page .elements-wrapper .settings-section .controllers .controller-input-group input {
    width: 98.5%;
    margin-top: 0.3rem;
    -webkit-appearance: none;
    background: transparent;
}

.custom-cards-page .elements-wrapper .settings-section .controllers .controller-input-group input:focus {
    outline: none;
}

.custom-cards-page .elements-wrapper .settings-section .controllers .controller-input-group input::-webkit-slider-runnable-track {
    height: 0.15rem;
    border-radius: 1px;
    background: rgb(var(--player-color));
    cursor: pointer;
}

.custom-cards-page .elements-wrapper .settings-section .controllers .controller-input-group input:focus::-webkit-slider-runnable-track {
    background: rgb(var(--player-color));
}

.custom-cards-page .elements-wrapper .settings-section .controllers .controller-input-group input::-webkit-slider-thumb {
    border: 1px solid rgb(var(--player-color));
    box-shadow: none;
    height: 1rem;
    width: 0.5rem;
    border-radius: 0;
    background: rgb(var(--player-color));
    -webkit-appearance: none;
    margin-top: -0.45rem;
    cursor: pointer;
}

.custom-cards-page .elements-wrapper .settings-section .controllers .controller-input-group input::-moz-range-track {
    height: 0.15rem;
    border-radius: 1px;
    background: rgb(var(--player-color));
    cursor: pointer;
}

.custom-cards-page .elements-wrapper .settings-section .controllers .controller-input-group input::-moz-range-thumb {
    border: 1px solid rgb(var(--player-color));
    box-shadow: none;
    height: 1rem;
    width: 0.5rem;
    border-radius: 0;
    background: rgb(var(--player-color));
    -webkit-appearance: none;
    margin-top: -0.45rem;
    cursor: pointer;
}

/* action buttons */

.custom-cards-page .action-btns {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.custom-cards-page .action-btns .cancel {
    width: 47%;
    background-color: #0d1826;
    text-align: center;
    font-size: 0.7rem;
}

.custom-cards-page .action-btns .cancel:hover {
    background-color: rgb(var(--player-color));
}

.custom-cards-page .action-btns .save {
    width: 47%;
    background-color: rgb(var(--player-color));
    text-align: center;
    font-size: 0.7rem;
}

/* PREVIEW Card */

.custom-cards-page .preview-card {
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    aspect-ratio: 2 / 1;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: sticky;
    top: 2.5rem;
    background: #1b2838;
}

.custom-cards-page .preview-card .card-title {
    z-index: 1;
}

.custom-cards-page .preview-card .element-preview-img {
    position: absolute;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    width: 40%;
    height: auto;
    opacity: 1;
    max-width: 200%;
}

/* media queries */

@media (min-width: 1025px) and (max-width: 1300px) {
    .custom-cards-page .settings-input-group .elements-tabs .tab {
        font-size: 0.6rem;
    }

    .custom-cards-page .elements-wrapper .element-menu .name {
        font-size: 0.6rem;
    }
}

@media (max-width: 1024px) {
    .custom-cards-page .simple-header {
        margin-bottom: -350px;
    }

    .custom-cards-page .container.page-content {
        flex-flow: column-reverse;
    }

    .custom-cards-page .settings-column {
        width: 100%;
        border-right: none;
        padding: 1.6rem 2.5rem;
    }

    .custom-cards-page .preview-column {
        width: 100%;
        padding: 1.6rem 2.5rem;
    }
}

@media (max-width: 640px) {
    .custom-cards-page .simple-header {
        margin-bottom: -150px;
        padding-left: 1rem;
        padding-right: 1rem;
        height: auto;
    }

    .custom-cards-page .title {
        font-size: 1.8rem;
    }

    .custom-cards-page .settings-column,
    .custom-cards-page .preview-column {
        padding: 1rem 1.8rem;
    }

    .custom-cards-page .settings-column {
        height: 50vh;
        overflow: scroll;
    }

    .custom-cards-page .settings-input-group .elements-tabs .tab {
        font-size: 0.6rem;
    }

    .custom-cards-page .elements-wrapper .element-menu .name {
        font-size: 0.6rem;
    }
}

.hide-redundant-btns .element:first-child .arrow-up,
.hide-redundant-btns .element:last-child .arrow-down {
    display: none;
}

#card-sorter .element .check {
    bottom: -0.1rem;
    position: relative;
}

#card-sorter .element .check span {
    top: -.175rem;
}

.space-between {
    justify-content: space-between;
}

#card-sorter-save {
    min-width: 10rem;
}

.lens-demo-widget p.smaller-text {
    font-size: .75rem;
    opacity: .7;
}

@media screen and (min-width: 941px) {
    .lens-demo-widget .lens-demo-logo {
        padding-right: 3rem;
    }
}

.generic-textarea {
    height: 3.2rem;
    padding: .2rem .4rem;
    padding-right: 1.4rem;
    border: 1px solid rgb(var(--player-color));
    width: 100%;
    outline: none;
    font-size: .75rem;
    background: 0 0;
    border-radius: .2rem;
    color: #fff;
}

.simple-header.clean-header {
    height: auto;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

input.classic-button {
    background: none;
}

.lens-page .simple-header h1 {
    font-size: 2rem;
}

@media screen and (max-width: 640px) {
    .lens-page .simple-header h1 {
        font-size: 1.4rem;
    }
}

.small-logo-overtitle svg {
    width: 50%;
    max-width: 350px;
}

.lens-trending .sunbeam-game-stats {
    opacity: 1;
    color: rgba(255, 255, 255, 0.5);
}

.lens-trending .sunbeam-game-stats b {
    color: white;
}

.lens-trending .sunbeam-game-stats b.green-text {
    color: rgb(65, 187, 105);
}

.lens-trending .sunbeam-game-stats b.green-text svg {
    fill: rgb(65, 187, 105);
}

.lens-trending .sunbeam-game-stats b.red-text {
    color: rgb(187, 65, 91);
}

.lens-trending .sunbeam-game-stats b.red-text svg {
    fill: rgb(187, 65, 91);
}

.lens-trending .sunbeam-game-stats b.yellow-text {
    color: rgb(187, 148, 65);
}

.lens-trending .sunbeam-game-stats b.yellow-text svg {
    fill: rgb(187, 148, 65);
}

.lens-trending .sunbeam-game-stats {
    padding-top: 0.6rem;
}

@media screen and (min-width: 941px) {
    .lens-trending .sunbeam-card {
        margin-bottom: 0rem;
    }
}

.platform-table svg {
    width: 1em;
    height: 1em;
    bottom: -0.15em;
    position: relative;
    margin-right: 0.4em;
}

.platform-table-bar {
    opacity: .7;
}

.platform-table-bar:hover {
    opacity: 1;
}

.platform-table-bar .platform-table-bar-el {
    font-size: 0.8rem;
    padding: 6px;
    text-align: right;
    position: relative;
}

.platform-table-bar .platform-table-bar-el span {
    position: relative;
    margin-right: -60px;
    background-color: #1b2838;
    z-index: 5;
    font-size: 0.65rem;
}

.platform-table-label {
    font-size: 0.8rem;
    padding: 6px 0px;
}

.platform-table-title {
    padding-bottom: 0.3rem;
}

.faint-bottom-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-table-indicator {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    border-right: 1px dashed rgba(255, 255, 255, 0.5);
    opacity: .7;
}

.platform-table-indicator span {
    position: absolute;
    top: -1rem;
    left: -3.5rem;
    font-size: .5rem;
    text-align: center;
    width: 7rem;
    opacity: 0;
    transition: 0.3s all;
}

.alt-platform-table-indicator span {
    top: 1.8rem;
}

.platform-table-bar:hover .platform-table-indicator span {
    opacity: 1;
}

.compare-stat-element b svg {
    position: relative;
    width: 1.2em;
    height: 1.2em;
    object-fit: contain;
    object-position: left center;
    margin-right: 0.4em;
    margin-bottom: -0.1em;
}

.stat-compare-card {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.8rem;
    border-radius: 6px;
}

.stat-compare-card-top {
    padding-right: 3.2rem;
    padding-bottom: 0.6rem;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-compare-card-top svg {
    position: absolute;
    top: -.2rem;
    right: 0;
    width: 2.6rem;
    height: 2.6rem;
    object-fit: contain;
    object-position: left center;
    fill: rgb(var(--player-color));
    color: rgb(var(--player-color));
}

.stat-compare-card-top .big-stat-number {
    font-size: 1.2rem;
    letter-spacing: normal;
}

.stat-compare-card-bottom p {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.5);
}

.stat-compare-card-bottom p svg {
    position: relative;
    width: 1.2em;
    height: 1.2em;
    object-fit: contain;
    object-position: left center;
    margin-bottom: -0.2em;
}

.stat-compare-card-bottom p.green-text {
    color: rgb(65, 187, 105);
}

.stat-compare-card-bottom p.green-text svg {
    fill: rgb(65, 187, 105);
}

.stat-compare-card-bottom p.red-text {
    color: rgb(187, 65, 91);
}

.stat-compare-card-bottom p.red-text svg {
    fill: rgb(187, 65, 91);
}

.stat-compare-card-bottom p.yellow-text {
    color: rgb(187, 148, 65);
}

.stat-compare-card-bottom p.yellow-text svg {
    fill: rgb(187, 148, 65);
}

.gamefilter select#lens-select {
    width: 10rem;
}

.standard-content .stat-compare-card-bottom p {
    font-size: 0.65rem;
}

.colorful-text {
    color: rgb(var(--player-color));
}

.darkened-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.4rem;
}

.burning-question-question {
    font-size: .9rem;
    margin-top: 0.2rem;
}

/* Actually new */

@media screen and (max-width: 940px) {
    .responsive-header-label {
        width: 100%;
        padding-left: 0rem;
        padding-top: 0.8rem;
    }

    .responsive-no-bottom-pad {
        padding-bottom: 0px;
    }
}

@media screen and (min-width: 941px) {

    .standard-sidebar,
    #social-feed,
    .reverse-content {
        padding-right: 48px;
    }

    .standard-content,
    #social-sidebar,
    .reverse-sidebar {
        padding-left: 48px;
    }
}

.radio svg {
    width: 1.5em;
}

.alt-trending .trending-game {
    opacity: 1;
}

.alt-trending .block-title {
    font-size: 14px;
    font-size: .7rem;
    width: 10rem;
}

.alt-trending .sunbeam-game-title {
    font-size: 1.2rem;
    margin-top: 0.4rem;
    margin-bottom: 0rem;
}

.alt-trending .smaller-sunbeam-title {
    font-size: 0.9rem;
}

.radio-button-label {
    background-color: rgba(var(--player-color), 0.15);
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 1rem;
    margin: 0.2rem;
}

.radio-button-el:checked+.radio-button-label {
    background-color: rgb(var(--player-color));
}

.control-conditional-fade:checked+.conditional-fade {
    opacity: .1;
}

.vertical-center {
    align-items: center;
}

.alt-trending .trending-game .sunbeam-details {
    padding: 1.2rem;
    padding-top: 1.1rem;
}

.filter-selector-title {
    font-size: 0.7rem;
    font-weight: bold;
    width: 5.2rem;
}

.alt-trending .trending-game input.standard-text {
    margin: 0.3rem;
    padding-right: .4rem;
}

.alt-trending .trending-game input[type=number].standard-text {
    max-width: 5rem;
}

.alt-trending .trending-game input[type=date].standard-text {
    max-width: 8rem;
}

.alt-trending .been-playing-game-thumb svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    fill: white;
    color: white;
}

.alt-trending .classic-button {
    padding: .1rem 0.8rem;
    padding-top: .15rem;
    border-radius: .2rem;
    letter-spacing: .1rem;
    font-size: .65rem;
    min-width: 4rem;
}

.generic-textarea {
    height: 3.2rem;
    padding: .2rem .4rem;
    padding-right: 1.4rem;
    border: 1px solid rgb(var(--player-color));
    width: 100%;
    outline: none;
    font-size: .75rem;
    background: 0 0;
    border-radius: .2rem;
    color: #fff;
}

.generic-search-results .lens-add-btn {
    height: 100%;
    padding: .6rem;
    background-color: rgb(var(--player-color), 0.3);
    border: none;
    border-radius: 0px;
    width: 3rem;
    min-width: 3rem;
}

.generic-search-results .trending-game {
    border: none;
    margin-bottom: 0.8rem;
}

.generic-search-results .sunbeam-game-title {
    margin-top: 0.3rem;
}

.generic-search-results .lens-add-btn span {
    text-align: center;
    width: 100%;
}

.generic-search-results .lens-add-btn span svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: white;
    color: white;
    margin: 0px;
    margin-bottom: 4px;
    margin-left: 0.35rem;
    display: inline-block;
}

.smaller-block-title {
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-right: 0.8rem;
    margin-bottom: 0.4rem;
}

@media screen and (min-width: 641px) {
    .generic-search-results .sunbeam-card .been-playing-game-thumb {
        height: 5rem;
    }
}

@media screen and (min-width: 941px) {
    .generic-search-results .lens-add-btn:hover {
        background-color: rgb(var(--player-color), 0.6);
    }

    .alt-trending .trending-game .sunbeam-details {
        padding-left: 0px;
    }
}

@media screen and (max-width: 640px) {
    .generic-search-results .lens-add-btn {
        width: 100%;
        padding-top: .5em;
    }

    .generic-search-results .lens-add-btn span svg {
        margin-bottom: -0.35em;
        margin-right: 4px;
    }

    .alt-trending .trending-game .sunbeam-details {
        padding-top: 0px;
        text-align: center;
    }

    .filter-selector {
        padding-bottom: 0.4rem;
    }
}

@media screen and (max-width: 1060px) {
    .appmenu-minimize {
        display: none;
    }
}

.only-mobile-app {
    display: none;
}

.mobile-app .only-mobile-app {
    display: flex;
}

.mobile-app .hide-on-mobile-app {
    display: none;
}

.announcement-parent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 24, 38, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}

.announcement-parent p {
    font-size: 0.9rem;
}

.announcement-parent .profile-card {
    max-height: 80vh;
    overflow: scroll;
    margin-bottom: 0px;
    border: 1px solid rgba(var(--player-color), 0.25);
}

.announcement-parent .profile-card>* {
    z-index: 5;
}

.announcement-parent .profile-card>.background-image {
    z-index: 1;
}

.announcement-parent .profile-card::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
    background: linear-gradient(to top, rgba(27, 40, 56, 1), rgba(27, 40, 56, 0.25));
}

@media screen and (max-width: 640px) {

    .announcement-parent .profile-card,
    .announcement-parent {
        padding: 0.8rem;
    }

    .announcement-parent p {
        font-size: 0.8rem;
    }
}

.dashboard-mobile-nav-btn {
    width: 6rem;
    padding-right: 0.8rem;
    margin-right: 0.6rem;
    position: relative;
    top: -.2rem;
}

.dashboard-mobile-nav div:first-child svg:first-child {
    margin-right: 0.4rem;
}

@media screen and (max-width: 360px) {
    .dashboard-mobile-nav .flex span:first-child {
        display: none;
    }
}

.flex-order-1 {
    order: 1;
}

.flex-order-2 {
    order: 2;
}

.flex-order-3 {
    order: 3;
}

.flex-order-4 {
    order: 4;
}

.tag-compare-card {
    padding: 1.2rem 0rem;
}

.tag-compare-card .stat-compare-card-top svg {
    right: 1rem;
}

.subtle-boxart-list img {
    opacity: .5;
    border-radius: 0.2rem;
    transition: 0.3s all;
}

.tag-compare-card .stat-compare-card-bottom .stat-card-avatars img.mini-avatar-img {
    border-radius: 1.2em;
    width: 2em;
    height: 2em;
    bottom: 0em;
    margin-right: 0.8em;
    margin-top: 0.4em;
}

.subtle-boxart-list a:hover img {
    opacity: 1;
}

.tag-compare-card .big-stat-text {
    opacity: 1;
    color: rgba(255, 255, 255, 0.5);
}

.popularity-range {
    margin-bottom: 8px;
}

.popularity-range .full {
    height: 16px;
    padding: 2px;
    border-radius: 10px;
    border: 1px solid white;
}

.popularity-range .third {
    height: 10px;
    background: rgba(0, 0, 0, 0.35);
}

.popularity-range .third:nth-child(2) {
    border-left: 1px solid white;
    border-right: 1px solid white;
    background: none;
}

.popularity-range .third:nth-child(3) {
    background: rgba(255, 255, 255, 0.2);
}

.popularity-range .pop-indicator {
    height: 25px;
    width: 3px;
    background: white;
    position: absolute;
    top: -4px;
    z-index: 15;
}

.challenge-card-platforms .smaller-text {
    position: relative;
    top: -.25rem;
}

.challenge-card-boxart {
    width: 100%;
    height: 5rem;
    object-fit: contain;
    object-position: center center;
}

.challenge-card .achtile-icon {
    top: 0.8rem;
}

.challenge-card .challenge-card-game svg {
    margin-left: .2em;
    margin-right: 0px;
    top: .15em;
    position: relative;
}

.quest-header-card .game-logo {
    max-height: 65px;
    padding: 4px 0px;
    object-fit: contain;
    object-position: left center;
}

.rounded-corner {
    border-radius: 0.2rem;
}


.profile-card:hover .social-card-header svg.caret {
    opacity: 1;
}

.no-overlap-header {
    margin-bottom: 0px;
}

.page-header-nav {
    position: absolute;
    bottom: 0;
    left: 0;
}

.page-header-nav .sidekick-nav-item::before {
    bottom: -2px;
}

@media screen and (max-width: 940px) {
    .mobile-no-pad {
        padding: 0px;
    }
}

@media screen and (max-width: 640px) {
    .page-header-nav .sidekick-nav {
        padding-bottom: 0px;
        margin-bottom: 0px;
        overflow: visible;
    }
}

.guide-faq {
    font-size: 0.8rem;
}

.guide-faq summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-left: 1.5em;
}

.guide-faq summary::-webkit-details-marker {
    display: none;
}

.guide-faq summary::marker {
    display: none;
}

.guide-faq summary::before {
    content: "";
    position: absolute;
    left: 0.25em;
    top: 0.5em;
    transform: translateY(-50%);
    border: solid rgb(var(--player-color));
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

details[open].guide-faq>summary::before {
    transform: translateY(-50%) rotate(-135deg);
    top: 0.75em;
}

.long-text .profile-card p {
    margin-bottom: 0px;
}

.card-link-indicator {
    height: auto;
    width: 0.8rem;
    position: absolute;
    top: 1.35rem;
    right: 1.2rem;
    opacity: .5;
}

.card-link-indicator-text {
    font-size: 0.55rem;
    width: 1.6rem;
    color: rgb(var(--player-color));
    text-align: right;
    font-weight: 700;
    text-transform: uppercase;
}

.card-link-indicator svg {
    color: rgb(var(--player-color));
    fill: rgb(var(--player-color));
}

.profile-card:hover .card-link-indicator {
    opacity: 1;
}

.darkened-profile-card {
    background-color: #13202f;
}

.big-subtitle svg {
    width: 1em;
    height: 1em;
    fill: white;
    position: relative;
    bottom: -0.15em;
    margin-right: 0.15em;
}

.long-text-no-p-pad p {
    margin-bottom: 0px;
}

.form-square {
    border: 1px solid rgb(var(--player-color));
    width: 1.6rem;
    height: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    background: rgba(var(--player-color), 0);
}

.form-square:hover {
    background: rgba(var(--player-color), .2);
}

input:checked~.form-square {
    background: rgba(var(--player-color), 1);
}

.radio-fixed-values .label {
    width: 24px;
    height: 24px;
    position: relative;
    bottom: -2px;
    border: 2px solid rgba(var(--player-color), 0.5);
}

input.standard-text.standard-number {
    padding-right: 0.4rem;
}

@media screen and (max-width: 940px) {
    .mobile-horizontal-pad {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media screen and (max-width: 640px) {
    .form-squares-container {
        justify-content: space-between;
    }

    .form-squares-container>div {
        padding: 0px;
    }
}

@media screen and (max-width: 420px) {
    #calibration-quiz {
        padding: 0px;
    }

    #calibration-quiz .profile-card {
        border-radius: 0px;
    }

    .form-squares-container {
        padding: 0px;
    }

    .form-squares-container>div {
        width: 9.99%;
    }

    .form-square {
        width: 100%;
    }
}

/*select {
            background: url(https://playtracker.net/assets/icons/caret-down-solid-white.svg) right center no-repeat;
            background-size: auto 50%;
            -webkit-appearance: none;
            appearance: none;
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }*/
#calibration-quiz select,
#calibration-quiz input[type=date] {
    max-width: 358px;
    background-color: #0c1826;
    color: white;
    border: none;
    outline: none;
    border-radius: 0.4rem;
    padding: 0.2rem 0.4rem;
}

.inpage-anchor-correction {
    position: relative;
    top: -3.6rem;
    padding-top: 3.6rem;
    margin-bottom: -3.6rem;
}

.calibration-card-height {
    min-height: 4.6rem;
}

.red-card-border {
    border: 2px solid rgb(187, 65, 91);
}

.no-hero-nav-overlap {
    padding-top: 3.2rem;
}

.revtel-input-parent svg {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    width: 1.6rem;
    height: 1.4rem;
    color: white;
    fill: white;
    object-fit: contain;
    object-position: left center;
    opacity: .5;
}

.revtel-input {
    padding: 0.4rem;
    padding-left: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.4rem;
    background: none;
    outline: none;
    color: white;
}

.revtel-input:focus {
    border: 1px solid rgba(255, 255, 255, 1);
}

.revtel-input-parent .revtel-input:focus~svg {
    opacity: 1;
}

.adjust-landing-visual img {
    position: relative;
    left: -20%;
}

.fancy-card {
    overflow: hidden;
}

.bring-to-front {
    z-index: 10;
}

.fancy-card>* {
    z-index: 10;
}

.fancy-card::before {
    content: " ";
    background: linear-gradient(to left, rgba(var(--main-bg-color), 0.4) 15%, rgba(var(--main-bg-color), 0.85) 55%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.fancy-card .card-background {
    mix-blend-mode: normal;
    opacity: 1;
    object-position: bottom right;
}

.flip-image {
    transform: scaleX(-1);
}

.fancy-card .card-title {
    font-size: 1.8rem;
    line-height: 1.2em;
}

.fixed-size-top-bgimg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.fixed-size-top-bgimg img {
    z-index: -1;
    position: relative;
}

.fixed-size-top-bgimg::after {
    content: " ";
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 105%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(to top, rgba(12, 24, 38, 1), rgba(12, 24, 38, 0.1));
}

.no-bottom-margin {
    margin-bottom: 0px !important;
}

.left-avatar-element {
    padding-left: 3.6rem;
}

.left-avatar-img {
    position: absolute;
    top: -0.05rem;
    left: -.2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 1.6rem;
    border: 0.2rem solid rgb(var(--player-color));
}

.bigger-stat-element {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    font-weight: 300;
    padding-left: 3.6rem;
    margin-top: 1.2rem;
}

.bigger-stat-element svg {
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: left center;
    fill: rgb(var(--player-color));
    color: rgb(var(--player-color));
}

.left-avatar-element .profile-username {
    font-size: 1.6rem;
    line-height: 1em;
    margin-bottom: .15rem;
}

.small-card-width {
    max-width: 500px;
}