:root {
    --mm_font: 'Fira Sans Condensed';
    --common:    #ccc;
    --uncommon:  #4CAF50;
    --rare:      #2196F3;
    --epic:      #9C27B0;
    --legendary: #FF9800;
    --mythical:  #e91e63;
    --secret:    #00fff7;
}

/* Shared rarity color variable setup */
[data-rarity="common" i]    { --rarity-color: var(--common); }
[data-rarity="uncommon" i]  { --rarity-color: var(--uncommon); }
[data-rarity="rare" i]      { --rarity-color: var(--rare); }
[data-rarity="epic" i]      { --rarity-color: var(--epic); }
[data-rarity="legendary" i] { --rarity-color: var(--legendary); }
[data-rarity="mythical" i]  { --rarity-color: var(--mythical); }
[data-rarity="secret" i]    { --rarity-color: var(--secret); }

/* Rarity system */
.rarity-Common {
    color: var(--common) !important;
}
.rarity-Uncommon {
    color: var(--uncommon) !important;
}
.rarity-Rare {
    color: var(--rare) !important;
}
.rarity-Epic {
    color: var(--epic) !important;
}
.rarity-Legendary {
    color: var(--legendary) !important;
}
.rarity-Mythical {
    color: var(--mythical) !important;
}
.rarity-Secret {
    color: var(--secret) !important;
}

/* ITEM RARITY CARD */
.ItemRarityCard {
    position: relative;
    padding: 12px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #0f141a;
    color: white !important;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--rarity-color, transparent);
}

.ItemRarityCard::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: currentColor;
    opacity: 0.1;
    z-index: 0;
}

/* STORE SPOTLIGHT */
.storeSpotlight[data-rarity] {
    position: relative;
    border: 1px solid var(--rarity-color, transparent);
    background-color: transparent;
}

.storeSpotlight[data-rarity]::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--rarity-color);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.statusWrapper {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.statusBadge {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
}

.statusOwned {
    background-color: #0f141a;
    color: #5e865e;
    border: 1px solid #5e865e;
}

.statusEquipped {
    background-color: #5e865e;
    color: white;
}

.statusEquipped .fa-check {
    margin-right: 6px;
}





.MMBigButton {
    padding: 12px;
}
.col-xl-1-5 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.col-xl-8-5 {
    flex: 0 0 70%;
    max-width: 70%;
}

.col-xl-2-5 {
    flex: 0 0 17.5%;
    max-width: 17.5%;
}

.section__title-orld {
    /*box-shadow: rgb(154, 90, 224) 0px -11px 20px -5px inset;*/
    padding: 5px 0;
    border-left: 3px solid #9a5ae0;
    /*border-right: 1px solid #000000;*/
    /*border-bottom: 1px solid #000000;*/
    /*border-top: 1px solid #000000;*/
}

.section__title-orld h6 {
    color: #999696;
    font-size: 14px;
    text-align: left;
    color: #9a5ae0;
    margin: 0;
    padding: 5px;
    margin-left: 5px;
}

@keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
}


/*MARKETPLACE*/
.MarketplaceItemAmount{
    cursor: pointer;
}
.MarketplaceNotice {
    margin-bottom: 24px;
    border: 2px dashed #b96363;
    padding: 24px;
    font-size: 16px;
    background: #44444454;
    border-radius: 12px;
    color: #ffadad;
}
.MarketplaceWarning {
    margin-top: 24px;
}
.MarketplaceDelete {
    cursor: pointer;
    color: #ff9c9c;
}

/*NEW MENU*/
/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    position: relative;
    background: #2D2D2D;
    box-shadow: rgba(11, 11, 11, 0.6) 0px -11px 20px -5px inset;
    padding: 2px 0;
    border-radius: 10px;
    overflow: hidden;
}

/* Scrollable Navbar */
.scrollable-navbar {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    flex: 1; /* Takes up remaining space */
    padding: 0 10px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.scrollable-navbar::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome and Safari */
}

/* Individual Navigation Items */
.nav-item {
    text-decoration: none;
    color: #aaa;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap; /* Prevents wrapping */
}

/* Icons Inside Nav Items */
.nav-item .icon {
    font-size: 18px;
}

/* Active State */
.nav-item.active {
    background-color: #2a2d31;
    color: #5E865EFF;
    border: 1px solid #5E865EFF;
    box-shadow: 0 0 10px #5E865EFF; /* Glow effect */
}

/* Hover State */
.nav-item:not(.active):hover {
    background-color: #33373d;
    color: #ddd;
}

/* Scroll Buttons */
.scroll-btn {
    display: none; /* Hidden by default, shown dynamically */
    background-color: #33373d;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-btn:hover {
    background-color: #00aaff;
    transform: translateY(-50%) scale(1.1);
}

/* Left and Right Buttons */
.left-btn {
    left: 5px;
}

.right-btn {
    right: 5px;
}

/*ORGANISED CRIME*/
.OCText[data-type="Medium"] {
    color: #fbff97;
    text-shadow: 2px 2px 2px rgba(251, 255, 151, .5);
}
.OCText[data-type="High"] {
    color: #ff9797;
    text-shadow: 2px 2px 2px rgba(255, 151, 151, .5);
}
.OCText[data-type="Low"] {
    color: #97ff9c;
    text-shadow: 2px 2px 2px rgba(151, 255, 156, .5);
}

/*ENERGY SYSTEM*/
.EnergyBars{
    width: 105%;
    background: linear-gradient(180deg, rgba(37, 37, 37, 0.9289916650253851) 0%, rgb(34, 34, 34) 62%);
    margin-left: -24px;
    height: 33px;
    /*border-top: 1px solid #0C0C0C;*/
    border-bottom: 1px solid #0C0C0C;
}
.EnergyBarsDouble {
    width: 105%;
    background: linear-gradient(180deg, rgba(37, 37, 37, 0.9289916650253851) 0%, rgb(34, 34, 34) 62%);
    margin-left: -24px;
    /*height: 64px;*/
    /*border-top: 1px solid #0C0C0C;*/
    /*border-bottom: 1px solid #0C0C0C;*/
}

.EnergyBarsGrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: "a b c" "c d e";
}
.EnergyBarsGridItem {
    padding: .275rem .5rem 0 .5rem;
    cursor: pointer;
    border-right: 1px solid #0C0C0C;
    border-bottom: 1px solid #0C0C0C;

}
.EnergyBarsGridItemInside{
    align-items: center;
}
.EnergyBarsGridItemProgressBar{
    border-radius: 9999px;
    height: 100%;
    /*animation: progressBar 3s ease-in-out;*/
    /*animation-fill-mode:both;*/
}
.EnergyBarsGridItemProgressBarParent{
    height: .25rem;
    background-color: #736e6e4d;
    border-radius: 9999px;
}
.EnergyBarsGridItemProgressText{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .125rem;
    font-size: 11.5px;
}
.EnergyBarsGridItemProgressText[data-colour="lightgrey"]{
    color: #999;
}

.EnergyBarsGridItemProgressBar[data-colour="yellow"]{
    background-color: rgb(250 204 21 / 1);
}
.EnergyBarsGridItemProgressBar[data-colour="red"]{
    background-color: #c97676;
}
.EnergyBarsGridItemProgressBar[data-colour="green"]{
    background-color: rgba(37, 196, 25, 0.62);
}
.EnergyBarsGridItemProgressBar[data-colour="silver"]{
    background-color: rgba(160, 161, 160, 0.75);
}
.EnergyBarsGridItemProgressBar[data-colour="blue"]{
    background-color: rgb(57, 73, 171);
}
.EnergyBarsGridItemProgressBar[data-colour="darkbrown"]{
    background-color: #4b3213;
}
.EnergyBarsGridItemProgressBar[data-colour="white"]{
    background-color: #ffffff;
}
.EnergyBarsGridItemProgressBar[data-colour="lightgrey"]{
    background-color: #999;
}

.EnergySystemText[data-colour="yellow"]{
    color: rgb(250 204 21 / 1);
}
.EnergySystemText[data-colour="red"]{
    color: #c97676;
}
.EnergySystemText[data-colour="green"]{
    color: rgba(37, 196, 25, 0.62);
}
.EnergySystemText[data-colour="silver"]{
    color: rgba(160, 161, 160, 0.75);
}
.EnergySystemText[data-colour="blue"]{
    color: rgb(57, 73, 171);
}
.EnergySystemText[data-colour="darkbrown"]{
    color: #4b3213;
}


.EnergyBarsGridItemIconEnergy {
    float: left;
    font-size: 1.5em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressEnergy {
    float: left;
    width: 89%;
    padding-left: 6px;
}
.EnergyBarsGridItemIconEndurance {
    float: left;
    font-size: 1.5em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressEndurance {
    float: left;
    width: 88%;
    padding-left: 6px;
}
.EnergyBarsGridItemIconStamina {
    float: left;
    font-size: 1.5em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressStamina {
    float: left;
    width: 89%;
    padding-left: 6px;
}
.EnergyBarsGridItemIconFocus {
    float: left;
    font-size: 1.5em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressFocus {
    float: left;
    width: 86%;
    padding-left: 6px;
}
.EnergyBarsGridItemIconPersuasion {
    float: left;
    font-size: 1.5em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressPersuasion {
    float: left;
    width: 87%;
    padding-left: 6px;
}
.EnergyBarsGridItemIconStealth {
    float: left;
    font-size: 1.5em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressStealth {
    float: left;
    width: 87%;
    padding-left: 6px;
}



.EnergyBarsGridItemIconFeature {
    float: left;
    font-size: 1.5em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressFeature {
    float: left;
    width: 90%;
    padding-left: 6px;
}

/*START: Double bars top*/
.EnergyBarsGridItemIconTravel {
    float: left;
    font-size: 1.2em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressTravel {
    float: left;
    width: 89%;
    padding-left: 6px;
}

.EnergyBarsGridItemIconOC {
    float: left;
    font-size: 1.2em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressOC {
    float: left;
    width: 88%;
    padding-left: 6px;
}

.EnergyBarsGridItemIconBar {
    float: left;
    font-size: 1.2em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressBar {
    float: left;
    width: 90%;
    padding-left: 6px;
}

.EnergyBarsGridItemIconManufacturing {
    float: left;
    font-size: 1.2em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressManufacturing {
    float: left;
    width: 89%;
    padding-left: 6px;
}

.EnergyBarsGridItemIconDruglab {
    float: left;
    font-size: 1.4em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressDruglab {
    float: left;
    width: 88%;
    padding-left: 6px;
}

.EnergyBarsGridItemIconBrewery {
    float: left;
    font-size: 1.2em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressBrewery {
    float: left;
    width: 90%;
    padding-left: 6px;
}

.EnergyBarsGridItemIconRacing {
    float: left;
    font-size: 1.4em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressRacing {
    float: left;
    width: 88%;
    padding-left: 6px;
}

.EnergyBarsGridItemIconFreighter {
    float: left;
    font-size: 1.3em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressFreighter {
    float: left;
    width: 88%;
    padding-left: 6px;
}

.EnergyBarsGridItemIconFollowers {
    float: left;
    font-size: 1.4em;
    padding-bottom: 3px;
}
.EnergyBarsGridItemProgressFollowers {
    float: left;
    width: 90%;
    padding-left: 6px;
}
/*END: Double bars top*/

.energySystemBar {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: space-evenly;
    width: 100%;
    backdrop-filter: blur(2px);
}
.energySystemItem, .energySystemItem:visited, .energySystemItem:link, .energySystemItem:active {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    padding: 6px 6px 6px 12px;
    border: 1px solid #5e865e;
    width: 20%;
    text-decoration: none;
    transition: 0.3s all;
}
.energySystemItemReady {
    background: linear-gradient(to top, rgba(142, 140, 140, 0.06), transparent, transparent);
}
.energySystemItemNotReady {
    background: #3c3c3c;
}
.energySystemItem:hover {
    text-decoration: none;
    background: #565656;
    border: 1px solid #5e865e;
}
.energySystemItem:has(.timerClockCooldown) {
    background: transparent;
}
.energySystemItem:has(.timerClockReady) {
    background: linear-gradient(to bottom, #3c3c3c55, #3c3c3c);
}
.energySystemItem:has(.timerClockReady):hover {
    background: linear-gradient(to bottom, #3c3c3cdd, #2f2f2f);
}
.energySystemTitle {
    margin-bottom: 4px;
    font-weight: bold;
    font-size: 13px;
}
.energySystemClock {
    font-size: 12px;
}
.energySystemClockReady {
    color: #c3ffa9 !important;
}
.energySystemClockCooldown {
    color: #c97676 !important;
}

.energyIcon[data-colour="red"]{
    color: #c97676 !important;
}
.energyName[data-colour="red"]{
    color: #c97676 !important;
}
.energyIcon[data-colour="green"]{
    color: rgba(37, 196, 25, 0.62) !important;
}
.energyName[data-colour="green"]{
    color: rgba(37, 196, 25, 0.62) !important;
}
.energyIcon[data-colour="silver"]{
    color: rgba(160, 161, 160, 0.75) !important;
}
.energyName[data-colour="silver"]{
    color: rgba(160, 161, 160, 0.75) !important;
}
.energyIcon[data-colour="yellow"]{
    color: rgb(255, 215, 0) !important;
}
.energyName[data-colour="yellow"]{
    color: rgb(255, 215, 0) !important;
}
.energyIcon[data-colour="blue"]{
    color: rgb(57, 73, 171) !important;
}
.energyName[data-colour="blue"]{
    color: rgb(57, 73, 171) !important;
}

.energyIcon[data-colour="white"]{
    color: #ffffff !important;
}
.energyName[data-colour="white"]{
    color: #ffffff !important;
}

.energyIcon[data-colour="lightgrey"]{
    color: #999 !important;
}
.energyName[data-colour="lightgrey"]{
    color: #999 !important;
}

.energyIcon[data-colour="lightred"] {
    color: #ef4444 !important;
}
.energyName[data-colour="lightred"]{
    color: #ef4444 !important;
}

.energyIcon[data-colour="darkbrown"] {
    color: #4b3213 !important;
}
.energyName[data-colour="darkbrown"]{
    color: #4b3213 !important;
}

.energyIcon[data-colour="lightpurple"] {
    color: #a855f7 !important;
}
.energyName[data-colour="lightpurple"]{
    color: #a855f7 !important;
}

.energyIcon[data-colour="darkpurple"] {
    color: #6d32fc !important;
}
.energyName[data-colour="darkpurple"]{
    color: #6d32fc; !important;
}



.energyPercent[data-colour="lightred"]{
    background-color: #ef4444;
}
.energyPercent[data-colour="yellow"]{
    background-color: rgb(250 204 21 / 1);
}
.energyPercent[data-colour="red"]{
    background-color: #c97676;
}
.energyPercent[data-colour="green"]{
    background-color: rgba(37, 196, 25, 0.62);
}
.energyPercent[data-colour="silver"]{
    background-color: rgba(160, 161, 160, 0.75);
}
.energyPercent[data-colour="blue"]{
    background-color: rgb(57, 73, 171);
}
.energyPercent[data-colour="darkbrown"]{
    background-color: #4b3213;
}
.energyPercent[data-colour="lightpurple"]{
    background-color: #a855f7;
}
.energyPercent[data-colour="darkpurple"]{
    background-color: #6d32fc;
}

.scProgress{
    position: relative !important;
}
.scProgressText {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 2px #00000088;
}

/*ICON TILE THINGS*/

.dailyStatsBar {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: space-evenly;
    width: 100%;
    backdrop-filter: blur(2px);
}

.dailyStatsItem, .dailyStatsItem:visited, .dailyStatsItem:link, .dailyStatsItem:active {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    padding: 6px 6px 6px 12px;
    border: 1px solid #5e865e;
    width: 20%;
    text-decoration: none;
    transition: 0.3s all;
}

.dailyStatsItemInnerIcon{
    float: left;
    width:25%;
}

.dailyStatsItemInnerContent{
    float: left;
    width: 75%;
    padding-left: 10px;
}

.dailyStatsItemInnerIconInside {
    padding: .55rem;
    border-radius: .5rem;
    font-size: 15px;
    margin: auto;
    text-align: center;
    background-color: #3b82f61a;
}

.dailyStatsItemInnerIconInside[data-color="blue"] {
    background-color: #3b82f61a;
}
.dailyStatsItemInnerIconInside[data-color="green"] {
    background-color: #22c55e1a;
}
.dailyStatsItemInnerIconInside[data-color="red"] {
    background-color: #ef44441a;
}
.dailyStatsItemInnerIconInside[data-color="purple"] {
    background-color: rgba(192, 132, 252, 0.09);
}

.dailyStatsItemInnerIconCore[data-color="blue"] {
    color: rgb(96 165 250 / 1);
}
.dailyStatsItemInnerIconCore[data-color="green"] {
    color: rgb(74 222 128 / 1);
}
.dailyStatsItemInnerIconCore[data-color="red"] {
    color: rgb(248 113 113 / 1);
}
.dailyStatsItemInnerIconCore[data-color="purple"] {
    color: rgb(192 132 252 / 1)
}

.dailyStatsItemInnerContentLine1{
    color: rgb(156 163 175 / 1);
    font-size: .875rem;
    line-height: 1.25rem;
}

.dailyStatsItemInnerContentLine2{
    color: rgb(243 244 246 / 1);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1rem;
}
.dailyStatsItemInnerContentLine3{
    color: rgb(156 163 175 / 1);
    font-size: .675rem;
    line-height: 1.25rem;
}


/*AMBUSH*/
.ambushContainer {
    background: #1d1d1d;
    border: 1px solid #5E865EFF;
    box-shadow: 0 0 34px #3c3c3ccc;
    padding: 8px;
    border-radius: 12px;
    margin: 6px 10px;
    width: min(250px, 75%);
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-right: 0px;
}

.ambushImage {
    position: relative;
}

.ambushTicker {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-shadow: 0 0 34px #3c3c3ccc;
    position: absolute;
    top: 0;
    left: 0;
}

.ambushImage img {
    height: 60px;
    width: 70px;
    margin-top: -20px;
}

.ambushDescription {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.ambushDescription b {
    font-size: 12px;
}

.ambushDescription img {
    margin-right: 2px;
    vertical-align: middle;
}

.ambushTitleHolder {
    height: 15px;
    overflow: hidden;
}

.ambushTitle {
    color: #bebebe;
    font-size: 11px;
    font-variant: small-caps;
    transition: 0.4s all;
    display: block;
}

.ambushTitleEmphasis {
    color: #ff9b9b;
    text-shadow: 0 0 14px #ff9b9b55;
}

.ambushTitleHiding {
    margin-top: -33px;
    opacity: 0;
}

.ambushLoot img {
    height: 22px;
    width: 22px;
}

.cardTier1 {
    background: linear-gradient(to bottom, #6d6277, #84729555, #525251);
    box-shadow: 0 0 14px #ff7aff54;
}

.cardTier2 {
    background: linear-gradient(to bottom, #667762, #7b957255, #515251);
    box-shadow: 0 0 14px #97ff7a54;
}

.cardTier3 {
    background: linear-gradient(to bottom, #e7c454, rgba(227, 194, 131, 0.33), #525251);
    box-shadow: 0 0 14px rgba(210, 168, 22, 0.33);
}

.specialCard .mmTileImage img {
    width: 115px;
    height: 115px;
    margin-top: -10px;
    margin-bottom: -10px;
}

.specialCard .mmTileDetailsProgressMeter {
    background: linear-gradient(to bottom, rgba(64, 64, 64, 0.85), rgba(142, 142, 142, 0.56));
}

.specialCardTag {
    border-radius: 4px;
    border: 1px solid #444;
    padding: 1px 4px;
    margin-right: 6px;
    font-family: Tahoma;
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    background: linear-gradient(to right, #00000055, #11111155, #00000055, #11111155, #00000055, #11111155);
    font-variant: small-caps;
    position: relative;
    z-index: 99;
}

.specialCard .mmTileDetailsTitleCostAmbush {
    color: white;
}

.mmTileDetailsTitleCostAmbush img {
    width: 20px;
    height: 20px;
}

.notInLocation {
    opacity: 0.5;
    font-size: 11px;
}

.cycleWords span{
    position: absolute;
    opacity: 0;
    overflow: hidden;
    color: #6b969d;
    -webkit-animation: rotateWord 18s linear infinite 0s;
    -ms-animation: rotateWord 18s linear infinite 0s;
    animation: rotateWord 18s linear infinite 0s;
}
.cycleWords span:nth-child(2) {
    -webkit-animation-delay: 3s;
    -ms-animation-delay: 3s;
    animation-delay: 3s;
    color: #6b889d;
}
.cycleWords span:nth-child(3) {
    -webkit-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
    color: #6b739d;
}
.cycleWords span:nth-child(4) {
    -webkit-animation-delay: 9s;
    -ms-animation-delay: 9s;
    animation-delay: 9s;
    color: #7a6b9d;
}
.cycleWords span:nth-child(5) {
    -webkit-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
    color: #8d6b9d;
}
.cycleWords span:nth-child(6) {
    -webkit-animation-delay: 15s;
    -ms-animation-delay: 15s;
    animation-delay: 15s;
    color: #9b6b9d;
}
@-webkit-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); }
    5% { opacity: 1; -webkit-transform: translateY(0px);}
    17% { opacity: 1; -webkit-transform: translateY(0px); }
    20% { opacity: 0; -webkit-transform: translateY(30px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -ms-transform: translateY(-30px); }
    5% { opacity: 1; -ms-transform: translateY(0px);}
    17% { opacity: 1; -ms-transform: translateY(0px); }
    20% { opacity: 0; -ms-transform: translateY(30px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); transform: translateY(-30px); }
    5% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px);}
    17% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px); }
    20% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}




.contentBox {
    border: 1px solid #000000cc;
    border-radius: 8px;
    background: #5b5b5b;
    width: fit-content;
    margin: auto;
    overflow: hidden
}

.casinoBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    font-family: var(--mm_font);
    font-weight: 500!important;
    font-style: normal!important
}

.casinoBoxImg {
    width: 126px;
    height: 126px
}

.casinoBoxImg img {
    width: 126px;
    height: 126px
}

.casinoBoxInfo {
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.casinoBoxInfoInfoBig {
    font-size: 15px
}

.casinoBoxInfoInfoSmall {
    font-size: 11px;
    color: #cdcdcd
}

.casinoBoxInfoInfoForSale {
    margin-top: 6px;
    font-size: 12px;
    color: #a6ffb5;
}

.casinoBoxInfoInfoNotForSale {
    margin-top: 6px;
    font-size: 12px;
    color: #ffa6a6;
}

.casinoBoxInfo b {
    margin-bottom: 4px
}

.casinoBoxTwo {
    padding: 2px;
    font-family: var(--mm_font);
    font-weight: 500!important;
    font-style: normal!important
}

.cmb {
    margin-bottom: 12px
}

.titleRank {
    color: #d9d9d9;
    margin: 0;
    padding: 0;
    margin-top: 3px;
}

.avatar img {
    height: 64px;
    width: 64px;
}

.avatarBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 8px
}

.avatar {
    border: 1px solid #000
}

.avatar>img {
    width: 64px;
    height: 64px
}

.avatarContainer {
    padding: 4px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.bounty {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #7a723455;
    border: 2px solid rgba(255,215,0,.53);
    padding: 12px;
    margin: 12px;
    border-radius: 12px
}

.bountyImg {
    margin-top: -30px;
    margin-bottom: -30px
}

.bountyDetails {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1
}

.casinoRefresh {
    opacity: .75;
    cursor: pointer;
    float: right
}

.casinoRefresh img {
    height: 16px;
    width: 16px;
    vertical-align: middle;
    filter: invert(100%)
}

.casinoRefresh:hover {
    opacity: 1
}

.hideForDesktop {
    display: none;
}
@media only screen and (max-width: 767px) {
    .hideForDesktop {
        display: unset;
    }

    .hideForMobile {
        display: none;
    }

    .gradientRowRow div {
        font-size: 10px !important;
    }

    .gradientRowRow {
        width: 100% !important;
    }

    .gradientRowRowPositionTwo {
        width: unset !important;
        flex-grow: 1;
    }
}

.gradientRow {
    margin-top: 12px;
}

.gradientRowRowPositionThree {
    width: 50px;
    text-align: right;
}

.gradientRowRow {
    display: flex;
    flex-direction: row;
    /*border: 1px solid #0000002e;*/
    border-radius: 12px;
    background: #0003;
    margin: 2px 0 9px;
    width: 100%;
    align-items: center;
}

.gradientRowRowPositionTwo {
    width: 90%;
}

.gradientRowRowPositionOne {
    width: 30px;
    text-align: right;
}

.gradientRowRowPositionOne, .gradientRowRowPositionThree b {
    color: #fff;
}

.gradientRowRow div {
    padding: 8px;
    font-size: 14px;
}

.gradientRowRow:hover, .gradientRowRow.faded {
    opacity: 0.5;
    cursor: pointer;
}

.gradientRowRow.selected {
    opacity: 1 !important;
}

#theBox span {
    font-weight: 700;
    border-bottom: 1px dashed rgba(204, 204, 204, .5);
}

.cyellow {
    color: #e9ea93;
}




.mobileHeader {
    width: 100%;
    display: flex;
    flex-direction: column
}

.mobileHeader .barBox {
    height: 20px
}

.mobileHeader .meter {
    padding: 1px;
    width: 60px
}

.mobileHeader .barMeter {
    height: 20px
}

.mobileHeader .barMeterBar {
    height: 20px
}

.mobileHeader .barMeterText {
    padding: 4px;
    font-size: 10px
}

.mobileHeaderTop {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 42px;
    background-color: rgba(0,0,0,.2);
    backdrop-filter: blur(10px);
    background-size: cover,cover;
    gap: 12px;
    align-items: center;
    font-family: var(--mm_font);
    font-weight: 500;
    font-style: normal
}

.messageJailBox {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.mobileHeaderTop .messageJailBox {
    margin-top: 0;
    padding-right: 4px
}

.mobileHeaderTop .MMMobileHeaderItem img {
    max-height: 35px;
    transition: .3s all
}

.mobileHeaderTop .avatarBox .avatar>img {
    height: 35px;
    width: 35px
}

.mobileHeaderTop .meterBar {
    min-height: 10px;
    height: 10px
}

.mobileHeaderTop .meterText {
    font-size: 10px
}

.mobileHeaderTop .titleUsername {
    font-size: 11px
}

.MMMobileHeaderItem {
    cursor: pointer;
    position: relative;
}

.mobileHeaderTop .MMMobileHeaderItemInfo div {
    padding: 2px;
    border-radius: 5px;
    width: 15px;
    text-align: center;
    font-size: 10px
}

.MMMobileHeaderItemInfo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: start;
}

.mobileHeaderTop .currencyBox {
    background: 0 0;
    backdrop-filter: none;
    justify-content: center;
    gap: 2px;
    padding: 0;
    flex-grow: 1
}

.currencyBoxCash {
    color: #61ffa0;
    font-weight: 700
}

.currencyBoxGold {
    color: #ffc700;
    font-weight: 700
}

.currencyBoxBullets {
    color: #656460;
    font-weight: 700
}

.mobileHeader {
    width: 100%;
    display: flex;
    flex-direction: column
}

.mobileHeader .barBox {
    height: 20px
}

.mobileHeader .meter {
    padding: 1px;
    width: 60px
}

.mobileHeader .barMeter {
    height: 20px
}

.mobileHeader .barMeterBar {
    height: 20px
}

.mobileHeader .barMeterText {
    padding: 4px;
    font-size: 10px
}

.mobileHeaderTop .messageJailBox {
    margin-top: 0;
    padding-right: 4px
}

.mobileHeaderTop .MMMobileHeaderItem img {
    max-height: 35px;
    transition: .3s all
}

.mobileHeaderTop .avatarBox .avatar>img {
    height: 35px;
    width: 35px
}

.mobileHeaderTop .meterBar {
    min-height: 10px;
    height: 10px
}

.mobileHeaderTop .meterText {
    font-size: 10px
}

.mobileHeaderTop .titleUsername {
    font-size: 11px
}

.mobileHeaderTop .mbs {
    margin-top: 4px;
    margin-bottom: 0
}

.mobileHeaderTop .MMMobileHeaderItemInfo div {
    padding: 2px;
    border-radius: 5px;
    width: 15px;
    text-align: center;
    font-size: 10px
}

.mobileHeaderTop .currencyBox {
    background: 0 0;
    backdrop-filter: none;
    justify-content: center;
    gap: 2px;
    padding: 0;
    flex-grow: 1
}

.currencyBox {
    display: flex;
    height: 42px;
    font-size: 11px;
    position: relative;
    z-index: 1000;
    flex-direction: column;
    padding: 12px;
    align-items: flex-start
}

.currencyBox img {
    vertical-align: bottom;
    width: 14px
}

.currencyBoxCash {
    color: #61ffa0;
    font-weight: 700
}

.currencyBoxGold {
    color: #ffc700;
    font-weight: 700
}

.barBox {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    height: 28px;
    font-family: var(--mm_font);
    font-weight: 500;
    font-style: normal
}

.barMeter {
    width: 100%;
    height: 28px
}

.barMeterBar {
    height: 28px
}

.barMeterText {
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px
}

.barMeterBackground {
    background-color: rgba(0, 0, 0, .35);
}

.mobileHeaderTop .meterBar {
    min-height: 10px;
    height: 10px
}

.meterBar {
    background-color: rgba(0, 0, 0, .35);
    content: ' ';
    border-radius: 4px;
    min-height: 24px;
    transition: .3s all;
}

.mobileHeaderTop .meterText {
    font-size: 10px
}

.greenBar {
    background: linear-gradient(to bottom,rgb(134 182 136/85%),#6489588f)
}

.meterText {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 2px #00000088
}

.meter {
    border-radius: 4px;
    padding: 2px;
    background: #0000004d;
    width: 100%;
    position: relative
}

.mbs {
    margin-bottom: 8px
}

.header__top__blk {
    position: sticky;
    z-index: 999;
    padding: 0px !important;
    height: 70px !important;
}

.MMMobileHeaderItemInfo div {
    background: rgba(253,60,60,.7);
    backdrop-filter: blur(4px);
    padding: 4px;
    border-radius: 8px;
    width: 22px;
    text-align: center;
    font-size: 14px
}

.MMMobileHeaderItemInfoPlan div {
    background: rgba(56,56,56,.7)
}

.MMMobileHeaderItemInactive img {
    filter: grayscale(50%);
    opacity: .40
}

.MMMobileHeaderItemInactive .MMMobileHeaderItemInfo {
    opacity: 0
}

.mmTablar {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: 4px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.mmTablar .mmTablarTab {
    position: relative;
    padding: 6px 6px;
    border: 2px solid #5e865e;
    background: #504f4f;
    color: #cdcdcd;
    border-radius: 8px;
    font-size: 12px;
}

.mmTablar .mmTablarTab:hover, .mmTablar .mmTablarTabActive {
    color: #fff;
    border-color: #5e865e;
    background: #1d1d1d;
    box-shadow: inset 8px 8px 10px #352e2e8c;
}

.mmTablarStaff {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: 4px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.mmTablarStaff .mmTablarTabStaff {
    position: relative;
    padding: 6px 6px;
    border: 2px solid rgb(154, 90, 224);
    background: #504f4f;
    color: #cdcdcd;
    border-radius: 8px;
    font-size: 12px;
}

.mmTablarStaff .mmTablarTabStaff:hover, .mmTablarStaff .mmTablarTabActiveStaff {
    color: #fff;
    border-color: rgb(154, 90, 224);
    background: #1d1d1d;
    box-shadow: inset 8px 8px 10px #352e2e8c;
}

@media only screen and (max-width: 767px) {
    .mmTablar .mmTablarTab {
        position: relative;
        padding: 10px;
    }
    .mmTablarStaff .mmTablarTabStaff {
        position: relative;
        padding: 10px;
    }
}

.bet-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
}

.noListings {
    padding: 24px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.bet-tag {
    border-radius: 6px;
    padding: 6px;
    background: #474747;
    border: 1px solid #000000;
    width: fit-content;
}

.bet-display[data-result="WIN"] {
    color: #88f188;
}
.bet-display[data-result="LOSS"] {
    color: #f18888;
}
.bet-display[data-result="EVEN"] {
    color: #f1e088;
}
.bet-display[data-result="BANKRUPTCY"] {
    color: #8888f1;
}

.mmGamblingNum[data-result="WIN"] {
    color: #88f188;
}
.mmGamblingNum[data-result="LOSS"] {
    color: #f18888;
}
.mmGamblingNum[data-result="EVEN"] {
    color: #f1e088;
}


.bet-est {
    font-size: 14px;
    font-weight: 700 !important;
    flex-direction: column;
    align-items: start;
}

.bet-date {
    color: #888;
    font-size: 12px;
    font-weight: 500 !important;
    display: block;
}

@media only screen and (max-width: 767px) {
    .bet-est, .bet-display {
        font-size: 12px;
    }

    .bet-tag {
        display: none;
    }
}

.storeItemList {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
    padding-left: 5px;
    padding-right: 5px;
}

.storeItem, .storeItemHeader {
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    transition: 0.3s all;
    border: 1px solid #000000;
    justify-content: center;

}

.storeItem2, .storeItemHeader2 {
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    padding: 2px;
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    transition: 0.3s all;
    border: 1px solid #000000;
    justify-content: center;

}

.storeItemList .odd {
    background: #1d1d1d;
}

.storeItemList .even {
    background: #2A2A2A;
}

.storeItemHeader {
    background-image: url('//prd-cdn.aws.al-group.uk/midnight-mafia.com/Assets/Images/sub.png');
    font-style: italic;
}
.storeItemHeader2 {
    background-image: url('//prd-cdn.aws.al-group.uk/midnight-mafia.com/Assets/Images/sub.png');
    font-style: italic;
}

.mmCoverOverlay {
    position: relative;
}

.mmCoverOverlayStats {
    background: #00000099;
    padding: 12px;
    gap: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    right: 10px;
    top: 5px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    font-weight: 400;
}

.mmCoverOverlayStatsImage img {
    height: 100px;
}

@media only screen and (max-width: 767px) {
    .mmCoverOverlayStats {
        left: 8px;
        top: 20px;
        max-width: 90vw;
    }

    .ttlPriceChange, .cityHallExplainerCta {
        width: 100% !important;
    }

    .ttlPriceChangeDesc b {
        font-size: 14px !important;
    }
}

.mmCoverOverlayStatsDetails {
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mmCoverOverlayStatsDetails div span {
    font-weight: 900;
}

.xpMeterContainerGambling {
    background-color: #1d1d1d;
    border: 1px solid var(--MidnightMafiaGreen);
    box-shadow: 0 0 34px #3c3c3ccc;
    padding: 8px;
    border-radius: 12px;
    margin: 6px 0px;
    width: min(400px, 75%);
}
.xpMeterTitleGambling img {
    vertical-align: middle;
    height: 45px;
    width: 45px;
}
.xpMeterTitleGambling {
    padding-right: 12px;
    color: #ffffff;
    display: flex;
}
.xpMeterBarProgressGambling {
    /* border-radius: 4px; */
    border-radius: 12px;
    min-height: 30px;
    transition: 0.3s all;
}
.xpMeterBarTextGambling {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 2px #00000088;
}

button[data-color="red"], input[data-color="red"] {
    color: #ff7f7f;
    border-color: #673f3f;
}
button[data-color="green"], input[data-color="green"] {
    color: #9fff7f;
    border-color: #48673f;
}
button[data-color="blue"], input[data-color="blue"] {
    color: #7ff4ff;
    border-color: #3f6667;
}

.MMBigButtonRed {
    color: #ff7f7f;
    border-color: #673f3f;
}
.MMBigButtonRed {
    color: #9fff7f;
    border-color: #48673f;
}
MMBigButtonBlue {
    color: #7ff4ff;
    border-color: #3f6667;
}


.event-christmas {
    border-color: rgba(246, 4, 4, 0.63);
    background-color: #372a2055;
}
.event-christmas-tag {
    background: #00000099;
    background: linear-gradient(to top, #00000099, transparent);
    /* backdrop-filter: blur(4px); */
    height: 24px;
    font-family: fira sans condensed, sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 116px;
    position: absolute;
    bottom: 12px;
    left: calc(50% - 58px);
    border-radius: 8px;
    font-size: 12px;
}

.copyrightFooter {
    margin: auto;
    max-width: 1400px;
    background-color: #222222;
    border-radius: 0 0 15px 15px;
    padding: 5px;
    text-align: center;
}

.CopyrightLinks {
    margin: 5px;
}

.card {
    background-color: rgba(42, 34, 34, 0.53) !important;
    color: #ffffff;
}
.card-header {
    background: linear-gradient(to top, rgba(142, 140, 140, 0.06), transparent, transparent) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
}

.menuLogOutButton {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

/* Spinners */
.spinner {
    -webkit-animation:spin 15s linear infinite;
    -moz-animation:spin 15s linear infinite;
    animation:spin 15s linear infinite;
}
.fastSpinner {
    -webkit-animation:spin 6s linear infinite;
    -moz-animation:spin 6s linear infinite;
    animation:spin 6s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.mmTileDetailsTitleDesc {
    color:#777;
    margin-top: 10px;
    margin-bottom: 10px;
}
.mmTileDetailsImage {
    width: 180px;
    min-width: 180px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.mmTileDetailsImageOwner {
    position: absolute;
    bottom: 11px;
    left: 13px;
    width: 154px;
    padding: 4px;
    background: #00000055;
    backdrop-filter: blur(4px);
    border-top: 1px solid #000;
    font-size: 12px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.mmTileDetailsImageOwner img {
    height: 12px;
    width: 12px;
    margin-right: 2px;
    opacity: 0.7;
    vertical-align: text-top;
}

.mmTileDetailsImage > img {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 105px;
    box-shadow: 0 0 14px #00000066;

}

:root {
    --crackdown-color: #95101088;
    --high-color: rgba(199, 88, 88, 0.53);
    --moderate-color: rgba(224, 95, 10, 0.53);
    --low-color: rgba(238, 225, 113, 0.53);
    --relaxed-color: rgba(134, 236, 137, 0.53);
}
.mmTileDetailsImage img[data-activity="Crackdown"] {
    border: 1px solid var(--crackdown-color);
}
.mmTileDetailsImageOwner[data-activity="Crackdown"] {
    background: var(--crackdown-color);
}
.mmTileDetailsImage img[data-activity="High"] {
    border: 1px solid var(--high-color);
}
.mmTileDetailsImageOwner[data-activity="High"] {
    background: var(--high-color);
}
.mmTileDetailsImage img[data-activity="Moderate"] {
    border: 1px solid var(--moderate-color);
}
.mmTileDetailsImageOwner[data-activity="Moderate"] {
    background: var(--moderate-color);
}
.mmTileDetailsImage img[data-activity="Low"] {
    border: 1px solid var(--low-color);
}
.mmTileDetailsImageOwner[data-activity="Low"] {
    background: var(--low-color);
}
.mmTileDetailsImage img[data-activity="Relaxed"] {
    border: 1px solid var(--relaxed-color);
}
.mmTileDetailsImageOwner[data-activity="Relaxed"] {
    background: var(--relaxed-color);
}

@media only screen and (max-width: 767px) {
    .hideForDesktop {
        display: unset;
    }

    .hideForMobile {
        display: none;
    }

    .mmTileDetailsImage {
        display: none;
    }

    .header__top__blk__leg {
        padding: 0px !important;
        height: 90px !important;
    }
}

/*MOBILE RELATED*/
@media only screen and (min-width: 768px) {
    .mobileHeader, .mobileMenu {
        display: none
    }
}
@keyframes slideUp {
    0% {
        transform: translateY(500px)
    }

    100% {
        transform: translateY(0px)
    }
}

/*MOBILE MENU*/
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .mobile__nav {
        z-index: 1 !important;
    }
}

.fax22 {
    font-size: 18px;
    height: 20px;
    line-height: 1;
    display: inline-block;
    color: #5e865e;
    min-width: 20px;
    text-align: center;
    margin-right: 8px;
}

.mmNewMobileMenu, .mmMobileMenuTasks  {
    background: rgba(21, 16, 16, 0.91);
    width: 100%;
    position: fixed;
    left: 0;
    z-index: 999;
    border-top: 1px solid #000;
    border-radius: 10px;
    padding: 0 4px 4px;
    animation: 0.5s slideUp infinite;
    animation-iteration-count: 1;
    display: none;
}

.mmNewMobileMenu  {
    bottom: 0px;
}
.mmMobileMenuTasks  {
    bottom: 50px;
}

.mmNewMobileMenu ul {
    width: 100%;
}

.mmNewMobileMenuTitle {
    display: flex;
    padding: 6px;
    justify-content: space-between;
    width: 100%;
    color: #5e865e ;
}

.mmNewMobileMenuList {
    width: 100%;
    height: 400px;
    overflow-y: scroll;
    overscroll-behavior: contain;
}

.mobileDrawerTasksList {
    height: unset;
}

.mmNewMobileMenuListItem {
    display: inline-flex;
    width: 32.33333%;
    height: 30px;
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.mmNewMobileMenuListItemCollapsed {
    display: none;
}

.mobileDrawerTasksList .mmNewMobileMenuListItem {
    width: 100%;
}

.mmNewMobileMenuListItem:has(.timerClockReady) {
    background: #1a2214;
}

.mmNewMobileMenuListTitle {
    color: #f4f4f4;
    padding: 6px;
    background-color: #1e1e1e;
    width: 100%;
    list-style: none;
    transition: 0.3s all;
}

.mmNewMobileMenuListTitleCollapsed {
    background: #5e5e5eaa;
    color: #cccccc;
}

.mmNewMobileMenuListTitle img {
    float: right;
    max-height: 18px;
    margin-right: 12px;
    filter: invert(100%);
    transition: 0.3s all;
    transform: rotate(180deg);
}

.mmNewMobileMenuListTitleCollapsed img {
    transform: rotate(0deg) !important;
}

.mmNewMobileMenuTitle img {
    filter: invert(100%);
    max-height: 18px;
    vertical-align: middle;
    opacity: 0.75;
}

.mmNewMobileMenuListItemLink {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 0 8px;
    color: white;
    text-align: left;
    gap: 8px;
}

.mmNewMobileMenuListItemLink .fa {
    font-size: 18px;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mmNewMobileMenuListItemLink .menuItem {
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.mmNewMobileMenuFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    font-size: 12px;
    color: #ccc;
    border-top: 1px solid #333;
}

.mmNewMobileMenuFooter-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mmNewMobileMenuFooter-link {
    color: #ccc;
    text-decoration: none;
}

.mmNewMobileMenuFooter-link:hover {
    text-decoration: underline;
}

.mmNewMobileMenuFooter-discord {
    color: #7289da;
    font-size: 16px;
    text-decoration: none;
}

.mmNewMobileMenuIconRow {
    background-color: #1e1e1e;
    padding: 2px 8px;
    display: flex;
    gap: 12px;
}

.mmNewMobileMenuIconContainer {
    position: relative;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mmNewMobileMenuIconContainer i.fas {
    font-size: 24px;
}

.mmNewMobileMenuIconText {
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px;
}

.mmNewMobileMenuIconContainer[data-color="Purple"] i,
.mmNewMobileMenuIconContainer[data-color="Purple"] .mmNewMobileMenuIconText {
    color: #b388ff;
}
.mmNewMobileMenuIconContainer[data-color="Green"] i,
.mmNewMobileMenuIconContainer[data-color="Green"] .mmNewMobileMenuIconText {
    color: #4caf50;
}


.mmNewMobileMenuIconBadge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    color: #2196f3;
}

.faDiscord {
    color: #7289da;
}

.yellowAttn, .yellowAttn:link, .yellowAttn:hover, .yellowAttn:visited {
    color: #ffde86 !important;
}

.redAttn, .redAttn:link, .redAttn:hover, .redAttn:visited {
    color: #e32b2b !important;
}

.blueAttn, .blueAttn:link, .blueAttn:hover, .blueAttn:visited {
    color: #1098e0 !important;
}

.faColsape {
    color: rgb(239 68 68 / 1); !important;
    font-size: 24px !important;
}






/*CONTAINER STUFF*/
.containerMobileActions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.mobileItem {
    border-radius: 8px;
    padding: 5px;
    display: flex;
    flex-direction: column;
}
.mobileItemHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.mobileItemProgressBar {
    position: relative;
    height: 8px;
    background-color: #2e2e2e;
    border-radius: 4px;
    overflow: hidden;
}
.mobileItemProgressBar > div {
    height: 100%;
    border-radius: 4px;
}

.mmMobileMenuMenuTitle {
    display: flex;
    padding: 6px;
    color: #5e865e ;
    justify-content: space-between;
    width: 100%
}
.mmMobileMenuMenuTitle img {
    width: 25px;
    height: 25px;
}
.mmMobileMenuMenuList {
    padding-top: 4px;
    width: 100%;
    height: 500px;
    overflow-y: scroll;
    overscroll-behavior: contain
}
.mmMobileMenuTasksList {
    height: unset
}
.mmMobileMenuMenuListItem {
    display: inline-flex;
    width: 31%;
    height: 40px;
    color: #fff;
    background: #171717;
    margin-top: 3px;
    justify-content: space-between;
    align-items: center
}
.mmMobileMenuTasksList .mmMobileMenuMenuListItem {
    width: 100%
}
.mmMobileMenuMenuListItem:has(.timerClockReady) {
    background: #6c9a4b
}
.mmMobileMenuMenuListItem:has(.timerClockReadyAmber) {
    background: #d48b08
}
.mmMobileMenuMenuListItem:has(.timerClockCooldown) {
    background: #c97676
}
.mmMobileMenuMenuListItem span {
    padding-right: 12px
}
.mmMobileMenuMenuListTitle {
    color: #4e4e4e;
    padding: 6px;
    padding-left: 24px;
    margin-top: 6px
}
.mmMobileMenuMenuTitle img {
    filter: invert(100%);
    min-height: 18px;
    vertical-align: middle;
    opacity: .75
}
.mmMobileMenuMenuListItemLink {
    padding: 4px;
    padding-left: 8px;
    display: flex;
    width: 100%;
    height: 100%;
    color: #fff;
    justify-content: start;
    align-items: center;
    font-size: 12px
}
.mobileMenuItem {
    /*width: 74px;*/
    height: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #838a9d;
    cursor: pointer;
    flex-grow: 1;
    flex-basis: 0;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    position: relative;
}
.mobileMenuItem:not(:nth-child(5)) {
    border-right: 1px solid #1c1c1c;
}
.mobileMenuItem img {
    filter: invert(1);
    margin-bottom: 5px;
    opacity: 0.8;
    height: 30px;
    width: 30px;
    filter: brightness(0) invert(1);
}
.mobileMenuItemNoInvert {
    filter: unset !important;
}
.mobileMenuItem:visited, .mobileMenuItem:link, .mobileMenuItem:hover, .mobileMenuItem:active {
    color: #838a9d;
    text-decoration: none;
}

.MMJoinDiscord {
    padding-top: 16px;
    text-align: center;
}
.MMJoinDiscord img{
    max-width: 130px;
}

.inventoryIconRed{
    color: #ff0707;
}
.inventoryIconYellow{
    color: #ffd809;
}
.inventoryIconGreen{
    color: #1abc48;
}
.inventoryImage{
    width: 50px
}

 .takingLosses {
     color: #ff7f7f;
 }
.makingPaper {
    color: #a3ff7f;
}
.whoKnows {
    color: #ffe57f;
}
