@font-face {
    font-family: "BodegaSmallCaps";
    font-weight: normal;
    font-style: normal;
    font-display: swap;

    src: url("https://fonts.chicagorum.com/bodegasans.woff2") format("woff2"),
    url("https://fonts.chicagorum.com/bodegasans.woff") format("woff");
}

* {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    padding: 0;
    margin: 0;
}

body {
    background: #ccc;
    background: linear-gradient(to top, #444444fc, #444444aa), url(https://img.chicagorum.com/images/chic.png);
    background-size: auto, cover;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.newContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 90%;
    box-shadow: 0 0 34px 14px #00000099;
    margin-top: 14px;
}

.newHeader {
    padding: 22px 22px 22px 48px;
    background: url('https://img.chicagorum.com/artdeco_header.png?q=99');
    background-repeat: repeat-x;
    background-position-y: 69%;
    /*background-size: 90% auto;*/
    /*margin-top: 12px;*/
    /*border-radius: 14px;*/
    width: 100%;
    height: 84px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
    border-left: 1px solid goldenrod;
    border-right: 1px solid goldenrod;
}

.title {
    display: flex;
    flex-direction: column;
}

.title > h1 {
    position: relative;
    font-family: 'BodegaSmallCaps', sans-serif;
    font-size: 30pt;
    /*color: #ffca89;*/
    margin: 0;
    padding: 0;
    /*width: 240px;*/
}

.title > h1::after {
    text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000, 8px 8px 18px #000000;
    color: transparent;
    content: 'CHICAGO RUM';
}

.title > h1 > div {
    background-image: linear-gradient(#ffca89, #da9f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    width: 100%;
}

.title > h2 {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    color: #ffead4;
    text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000;
    margin: 0;
    margin-top: -10px;
    padding: 0;
    /*text-transform: full-width;*/
    z-index: 2;
}

.boozeInventory {
    border: 1px solid gold;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    flex-direction: row;
    background: rgba(105, 85, 37, 0.33);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    justify-self: end;
    margin-right: 12px;
    gap: 8px;
    width: 180px;
    transition: 0.3s all;
}

.boozeInventory:hover {
    cursor: pointer;
    background: #00000022;
    box-shadow: inset 0 0 14px #ffffff55;
}

.boozeInventory > img {
    max-height: 60px;
}

.inventoryInformation h3, .inventoryInformation h4 {
    font-family: 'Alumni Sans', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 15pt;
    color: #ffca89;
    text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000, 8px 8px 18px #000000;
    margin: 0;
    padding: 0;
}

.inventoryInformation h4 {
    font-family: 'Verdana', sans-serif;
    font-size: 9pt;
    color: #ead4bf;
    margin: 0;
    padding: 0;
}

.newMain {
    display: flex;
    flex-direction: row;
    min-height: 1000px;
    width: 100%;
    border-bottom: 1px solid goldenrod;

}

.left, .right {
    background-color: #4A4A4Aaa;
    backdrop-filter: blur(2px);
    min-width: fit-content;
    border-left: 1px solid goldenrod;
    border-right: 1px solid goldenrod;
}

@media only screen and (min-width: 1305px) {
    .left, .right {
        min-width: 224px;
    }
}

@media only screen and (max-width: 1380px) {
    .newContainer {
        width: 99%;
    }
}

.content {
    flex-grow: 1;
}

footer {
    padding-top: 24px;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    color: #eadfd4;
    opacity: 1 !important;
}

.locationBar {
    padding: 8px;
    border-bottom: 1px solid black;
    color: #fff;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(#000000aa, transparent), url('./nyc.png');
    background-size: cover, cover;
}

.clock {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #ffffff;
    text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000, 8px 8px 38px #000000;
    text-transform: uppercase;
}

.location, .location:link, .location:visited, .location:active, .location:visited {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 16pt;
    color: #ffca89;
    text-decoration: none;
    text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000, 8px 8px 38px #000000;
}

.menu {
    margin-top: 12px;
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.menuSection {
    margin-left: 6px;
    width: calc(100% - 12px);
    border-radius: 8px;
    border: 1px solid #000000cc;
    overflow: hidden;
}

.menuTitle {
    background: linear-gradient(to bottom, #5C5246, #5C5246, #977F68, #5C5246);
    padding: 4px;
    padding-left: 12px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 12pt;
    border-bottom: 1px solid #00000066;
    color: #ffead4;
    text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000;
    width: 100%;
}

.menuTitleInfo {
    font-size: 10px;
    color: #aaa;
    vertical-align: middle;
    float: right;
    margin-top: 4px;
}

.menuContent {
    background: #5b5b5b;
    padding: 8px;
    padding-left: 12px;
    font-family: 'Verdana', sans-serif;
    color: #fdfdfd;
    font-size: 10pt;
}

.menuLink img {
    width: 18px;
    height: 18px;
    filter: invert(100%);
    opacity: 0.35;
    vertical-align: top;
}

.menuLink a:link, .menuLink a:hover, .menuLink a:visited {
    /*display: block;*/
    color: #fdfdfd;
    text-decoration: none;
}

.menuLink a:hover {
    color: #ffca89;
    text-decoration: underline;
}

.menuLink span {
    opacity: 0.25;
}

.weaponCase {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.bulletCase > img {
    max-height: 45px;
    max-width: unset;
}

.weaponCase > img {
    max-width: 40%;
    filter: drop-shadow(1px 1px 6px #040404b2) drop-shadow(-1px -1px 4px #00000042);
}

.weaponTitle {
    font-family: 'Verdana', sans-serif;
    font-size: 10pt;
    color: #ffead4;
    /*text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000;*/
}

.avatarBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 4px;
}

.avatar {
    border: 1px solid #000;
}
.avatar > img {
    width: 24px;
    height: 24px;
}

.titleRank {
    font-size: 9pt;
    color: #d9d9d9;
    margin: 0;
    padding: 0;
    margin-top: 4px;
}

.meter {
    border-radius: 4px;
    padding: 2px;
    /*background: #000000;*/
    background: #0000004d;
    width: 100%;
    position: relative;
}

.meterBar {
    content: ' ';
    border-radius: 4px;
    min-height: 24px;
    transition: 0.3s all;
}

.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;
}

/*
        .menuSection {
    margin-left: 6px;
    width: calc(100% - 12px);
    border-radius: 8px;
    border: 1px solid #000000cc;
    overflow: hidden;
}

.menuTitle {
    background: linear-gradient(to bottom, #5C5246, #5C5246, #977F68, #5C5246);
    padding: 4px;
    padding-left: 12px;
    font-family: 'Alumni Sans', sans-serif;
    font-size: 15pt;
    border-bottom: 1px solid #00000066;
    color: #ffead4;
    text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000;
    width: 100%;
}
 */

.contentBox {
    border: 1px solid #000000cc;
    border-radius: 8px;
    background: #5b5b5b;
    width: fit-content;
    margin: auto;
    overflow: hidden;
}

.contentTitle, .top {
    background: linear-gradient(to bottom, #5C5246, #5C5246, #977F68, #5C5246) !important;
    padding: 4px 4px 4px 12px !important;
    font: unset;
    font-family: 'Fira Sans Condensed', sans-serif !important;
    font-weight: 500 !important;
    /*font-family: 'Alumni Sans', sans-serif !important;*/
    font-size: 12pt !important;
    /*font-style: italic !important;*/
    border-bottom: 1px solid #00000066 !important;
    color: #ffead4 !important;
    text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000 !important;
    width: 100% !important;
}

.box {
    /*border: 1px solid black;*/
    box-shadow: 0 0 0 1px black;
    border-radius: 8px !important;
    overflow: hidden;
}

.stolen {
    position: relative;
}

.stolenText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
    text-shadow: 4px 4px 8px #000000, 4px 4px 18px #000000;
    background: radial-gradient(transparent, #000000aa);
    gap: 12px;
}

.stolenTextTitle {
    font-family: 'Alumni Sans', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 24pt;
}

.stolenTextSubtitle {
    font-family: 'Verdana', sans-serif;
    font-size: 14pt;
    /*text-transform: full-width;*/
}

.plate {
    border: 1px solid black;
    display: block;
    padding: 2px 8px;
    background: #00000033;
    color: #adadad;
    border-radius: 6px;
    font-family: 'Alumni Sans', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 16pt;
    text-transform: uppercase;
}

.splash {
    background-image: url('./bootlegging.png');
    background-size: cover;
    background-position: center;
    height: 180px;
    min-width: 800px;
    position: relative;
}
.splash::before {
    content: ' ';
    position: absolute;
    height: 60px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, #5B5B5B);
}

.contentContent {
    padding: 16px;
}

.contentContent h2 {
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #dfded6;
}

.contentContent .stack {
    padding: 16px;
    margin-top: 12px;
    /*min-height: 300px;*/
    border-radius: 8px;
    box-shadow: 0 4px 14px #0000004f, inset 0 0 0 1px rgba(255, 255, 255, 0.11);
    border: 1px solid #3c3b3b69;
}

.contentContent .contentCards {
    margin: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contentCard {
    width: 100%;
    min-height: 80px;
    background: #25251f2b;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.contentCard__image {
    height: 90px;
    box-sizing: content-box;
    padding: 12px;
    position: relative;
}

.contentCard__image img {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    width: auto;
}

.contentCard__details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 3px;
}

.contentCard__details__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 4px;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.xpMeterEnergy {
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.contentCard__details__title__cost {
    padding-right: 12px;
    color: #ffc10c;
}

.contentCard__details__title__cost--nerve {
    color: #CCE6FF;
}

.contentCard__details__title__cost--focus {
    color: #fbabab;
}

.contentCard__details__title__cost--gta {
    color: #ffed7b;
}

.contentCard__details__title__cost img {
    vertical-align: middle;
    height: 24px;
    width: 24px;
}

.contentCard__details__progress {
    height: 30px;
    width: 100%;
}

.contentCard__details__progressBar {
    border-radius: 4px;
    padding: 2px;
    /*background: #000000;*/
    background: #0000004d;
    width: 45%;
    position: relative;
}

.contentCard__details__progressMeter {
    /*background: linear-gradient(to bottom, rgba(249, 194, 127, 0.85), #f9c27f8f);*/
    background: linear-gradient(to bottom, rgb(134 182 136 / 85%), #6489588f);
    border-radius: 4px;
    min-height: 24px;
    transition: 0.3s all;
}

.contentCard__details__progressMeter__text {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 2px #00000088;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.contentCard__details__controls {
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.contentCard__details__controls__details {
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.contentCard__details__controls__details img {
    vertical-align: middle;
    margin-right: 2px;
}

.contentCard__details__controls__details img:not(:first-of-type) {
    margin-left: 8px;
}

.contentCard__details__controls__button button {
    height: 38px;
    width: 92px;
    margin-right: 12px;
}

@media only screen and (max-width: 767px) {

    .contentCard__image {
        display: none;
    }

    .contentCard {
        padding: 6px;
    }

    .contentCard__details__progressBar {
        width: 100% !important;
    }

    .contentCard__details__controls {
        height: 48px !important;
    }
}


.resultCard {
    width: 90%;
    min-height: 80px;
    box-shadow: 0 0 6px #00000070;
    background: #25251f2b;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 6px;
    transition: 0.3s all;
    margin: auto;
    padding: 14px;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.resultCardSuccess {
    background: rgba(55, 120, 45, .5);
}

.resultCardFail {
    background: rgba(120, 45, 45, .5);
}

.resultCardJail {
    background: rgba(120, 117, 45, .5);
}

.resultCardSuccess .resultCardTag {
    color: #eeffe9;
}
.resultCardFail .resultCardTag {
    color: #ffe9e9;
}
.resultCardJail .resultCardTag {
    color: #fff4e9;
}

.resultCardTag {
    width: 97px;
    /*background: linear-gradient(to bottom, #9ce39c55, #9ce39c22);*/
    padding: 2px 28px;
    text-align: center;
    margin: 4px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    animation: tagReveal 0.3s ease-in-out forwards;
}

@keyframes tagReveal {
    0% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.resultCardDetails {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: start;
    justify-content: center;
}

.resultCardDetailsText {
    font-size: 16px;
}

.resultCardDetailsLoot {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media only screen and (max-width: 767px) {

    .resultCard {
        padding: 12px;
    }


    .resultCardDetails {
        width: 100% !important;
    }

    .resultCardDetailsText, .disabledNotice {
        font-size: 12px !important;
    }

    .resultCardDetailsLoot {
        font-size: 16px !important;
    }
}

.xpMeterContainer {
    background-color: #595959;
    border: 1px solid #3c3c3c;
    box-shadow: 0 0 34px #3c3c3ccc;
    padding: 8px;
    border-radius: 12px;
    margin: 6px 0px;
    width: min(250px, 75%);
}

.xpMeterTitle {
    padding-right: 12px;
    color: #ffc10c;
}

.xpMeterTitleReplenish {
    margin-left: 4px;
    color: #ffdf8399;
}

.xpMeterTitle--nerve {
    color: #CCE6FF;
}

.xpMeterTitle--bootlegging {
    color: #ffb37b;
}

.xpMeterTitle--carjacking {
    color: #ffed7b;
}

.xpMeterTitle--oc {
    color: #fbabab;
}

.xpMeterTitle--troph {
    color: #c4ffc8;
}

.xpMeterTitle--missions {
    color: #ffb27b;
}

.xpMeterTitle--infamy {
    color: #da7fd0;
}

.xpMeterTitleReplenish--nerve {
    color: #E6F3FF;
}

.xpMeterTitle img {
    vertical-align: middle;
    height: 24px;
    width: 24px;
}

.xpMeterBar {
    margin-top: 4px;
    border-radius: 12px;
    background: #0A0A0A55;
    border: 1px solid #3c3c3c;
    width: 100%;
    height: 30px;
    position: relative;
    overflow: hidden;
}

.xpMeterBarProgress {
    background: linear-gradient(to bottom, rgba(255, 193, 10, 0.5), rgba(137, 109, 88, 0.56));
    /*border-radius: 4px;*/
    border-radius: 12px;
    min-height: 30px;
    transition: 0.3s all;
}

.xpMeterBarProgress--nerve {
    background: linear-gradient(to bottom, rgba(33, 156, 255, 0.85), rgba(88, 117, 137, 0.56));
}

.xpMeterBarProgress--bootlegging {
    background: linear-gradient(to bottom,rgba(215, 149, 116, 0.85),rgba(137, 97, 88, 0.56));
}

.xpMeterBarProgress--carjacking {
    background: linear-gradient(to bottom, rgba(215, 199, 116, 0.85), rgba(137, 126, 88, 0.56));
}

.xpMeterBarProgress--missions {
    background: linear-gradient(to bottom, rgba(215, 169, 116, 0.85), rgba(137, 107, 88, 0.56));
}

.xpMeterBarProgress--oc {
    background: linear-gradient(to bottom, rgb(183, 130, 130),rgba(147, 98, 98, 0.65));
}

.xpMeterBarProgress--troph {
    background: linear-gradient(to bottom,rgb(196, 255, 200),rgba(129, 147, 98, 0.65))
}

.xpMeterBarProgress--infamy {
    background: linear-gradient(to bottom, rgb(242, 196, 255), rgba(140, 98, 147, 0.65))
}

.xpMeterBarText {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 2px #00000088;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.meterRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stackTabs {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.stackTabs .stackTab {
    position: relative;
    transition: 0.3s all;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    padding: 14px 16px;
    border: 2px solid #a9a9a947;
    color: #cdcdcd;
    border-radius: 4px;
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
    .stackTabs .stackTab {
        position: relative;
        padding: 10px;
    }
}

.stackTabs .stackTab:hover, .stackTabs .stackTabActive {
    color: #faf7f2;
    background: #3e3e3e9c;
    /*box-shadow: inset 0 -4px 12px #fff0a28c;*/
    border-color: #d9c589e8;
}

.contentContent .grid {
    display: grid;

    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;

    gap: 12px;
}

.messageJailBox {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.messageJailBoxItem {
    cursor: pointer;
    position: relative;
}

.messageJailBoxItem:hover img {
    transform: scale(1.08);
}

.messageJailBoxItemInactive img {
    filter: grayscale(50%);
    opacity: 0.75;
}

.messageJailBoxItemInactive .messageJailBoxItemInfo {
    opacity: 0;
}

.messageJailBoxItem img {
    max-height: 52px;
    transition: 0.3s all;
}

.messageJailBoxItemInfo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: start;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.messageJailBoxItemInfo div {
    background: rgba(253, 60, 60, 0.7);
    backdrop-filter: blur(4px);
    padding: 4px;
    border-radius: 8px;
    width: 22px;
    text-align: center;
    font-size: 14px;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.mobileMenuItem .messageJailBoxItemInfo div {
    background: rgba(217, 49, 49, 0.67);
    backdrop-filter: blur(4px);
    padding: 4px;
    border-radius: 8px;
    width: 21px;
    text-align: center;
    font-size: 11px;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: white;
    border: 1px solid rgba(253, 60, 60, 0.7);
    margin: 8px;
}

.messageJailBoxItemInfoPlan div {
    background: rgba(56, 56, 56, 0.7);
}

.characterStat {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 6px;
}

.characterStatImage {
    padding-left: 4px;
    width: 36px;
}

.characterStatImage img {
    max-height: 36px;
}

.characterStatText {
    font-size: 12px;
    color: #fff !important;
    text-decoration: none !important;
}

.mbs {
    margin-bottom: 8px;
}

.timerBar {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 6px;
    margin-bottom: 24px;
    justify-content: space-evenly;
    width: 100%;
    border-bottom: 1px solid goldenrod;
    background: #4A4A4Aaa;
    backdrop-filter: blur(2px);
}

.timer, .timer:visited, .timer:link, .timer:active {
    display: flex;
    flex-direction: column;
    background: #3c3c3c;
    border-radius: 6px;
    padding: 6px 6px 6px 12px;
    border: 1px solid #d7b53199;
    width: 120px;
    font-family: Verdana, Arial, sans-serif;
    text-decoration: none;
    transition: 0.3s all;
}

.timer:hover {
    text-decoration: none;
    background: #565656;
    border: 1px solid #d7b531dd;
}

.timer:has(.timerClockCooldown) {
    background: transparent;
}

.timer:has(.timerClockReady) {
    background: linear-gradient(to bottom, #3c3c3c55, #3c3c3c);
}

.timer:has(.timerClockReady):hover {
    background: linear-gradient(to bottom, #3c3c3cdd, #2f2f2f);
}

.timerTitle {
    margin-bottom: 4px;
    font-weight: bold;
    font-size: 13px;
}

.timerClock {
    font-size: 12px;
}

.timerClockReady {
    color: #c3ffa9 !important;
}

.timerClockCooldown {
    color: #c97676 !important;
}

@media only screen and (max-width: 767px) {
    .right, .left, .newHeader, .timerBar {
        display: none;
    }

    .content {
        max-width: 100vw;
    }

    .contentBox {
        width: 94% !important;
        margin: auto;
    }

    .gtaGrid {
        grid-template-rows: 1fr 1fr 1fr !important;
        grid-template-columns: 1fr !important;
    }

    .grid {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr !important;
        grid-template-columns: 1fr !important;
    }

    .newContainer {
        width: 99%;
        margin-top: unset;
    }
}

.mobileHeader {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mobileHeader .barBox {
    height: 40px;
}

.mobileHeader .meter {
    padding: 1px;
    width: 60px;
}

.mobileHeader .barMeter {
    height: 20px;
}

.mobileHeader .barMeterBar {
    height: 20px;
    box-shadow: 0 0 12px #000b19;
}

.mobileHeader .barMeterText {
    padding: 6px;
    font-size: 11px;
    text-align: center;
    width: 100%;
}

.mobileHeaderTop {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 42px;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    background-size: cover, cover;
    gap: 12px;
    align-items: center;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.mobileHeaderTop .messageJailBox {
    margin-top: 0;
}

.mobileHeaderTop .messageJailBoxItem img {
    max-height: 35px;
    transition: 0.3s all;
}

.mobileHeaderTop .avatarBox .avatar > img {
    height: 24px;
    width: 24px;
}

.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 .messageJailBoxItemInfo div {
    padding: 2px;
    border-radius: 5px;
    width: 15px;
    text-align: center;
    font-size: 10px;
}

.mobileHeaderTop .currencyBox {
    background: none;
    backdrop-filter: none;
    justify-content: center;
    gap: 2px;
    padding: 0;
    flex-grow: 1;
}

.currencyBoxCollection {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.currencyBox {
    display: grid;
    height: auto;
    font-size: 11px;
    position: relative;
    z-index: 1000;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 12px;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.currencyBox > :first-child {
    grid-column: span 2; /* The first item spans across both columns */
}

.currencyBox img {
    vertical-align: bottom;
    width: 14px;
}

.currencyBoxCash, .currencyBoxCash:link, .currencyBoxCash:visited, .currencyBoxCash:active {
    color: #61ffa0;
    font-weight: bold;
}

.currencyBoxGold, .currencyBoxGold:link, .currencyBoxGold:visited, .currencyBoxGold:active {
    color: rgb(255, 199, 0);
    font-weight: bold;
}

.currencyBoxBullets, .currencyBoxBullets:link, .currencyBoxBullets:visited, .currencyBoxBullets:active {
    color: rgb(159, 224, 255);
    font-weight: bold;
}

.barBox {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    height: 28px;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.barMeter {
    width: 100%;
    height: 28px;
    box-shadow: 0 0 12px #00132b;
    border-radius: 4px;
    overflow: hidden;
    margin: 4px;
    border: 1px solid #00000073;
}

.barMeterBar {
    height: 28px;
}

.mobileHeader .barMeterBar {
    border-radius: 4px;
}

.barMeterText {
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px;
}

.barMeterBlue {
    background: linear-gradient(to bottom, #465c71, #3d5266);
}

.barMeterBlue .barMeterBar {
    background: #8bbbe866;
}

.mobileMenu {
    background: linear-gradient(to top, #090909, #151515);
    height: 84px;
    width: 100%;
    max-width: 100vw;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 90;
    border-top: 1px solid #f6c07d99;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

@supports (padding: env(safe-area-inset-bottom,0)) {
    padding-bottom: env(safe-area-inset-bottom);
}

.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;
}

.mobileMenuItemNoInvert {
    filter: unset !important;
}

.mobileMenuItem:visited, .mobileMenuItem:link, .mobileMenuItem:hover, .mobileMenuItem:active {
    color: #838a9d;
    text-decoration: none;
}

@media only screen and (min-width: 768px) {
    .mobileHeader, .mobileMenu {
        display: none;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(500px);
    }
    100% {
        transform: translateY(0px);
    }
}

.mobileDrawerMenu, .mobileDrawerTasks {
    background-color: black;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    border-top: 1px solid #000;
    border-radius: 20px;
    padding: 0 14px 14px;
    animation: 0.5s slideUp infinite;
    animation-iteration-count: 1;
    display: none;
}

.mobileDrawerMenuTitle {
    display: flex;
    padding-top: 20px;
    padding-left: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    justify-content: space-between;
    width: 100%;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #e1cca2;
}

.mobileDrawerMenuList {
    padding-top: 4px;
    width: 100%;
    height: 500px;
    overflow-y: scroll;
    overscroll-behavior: contain;
    padding-left: 8px;
}

.mobileDrawerTasksList {
    height: unset;
}

.mobileDrawerMenuListItem {
    display: inline-flex;
    width: 31%;
    height: 40px;
    color: white;
    background: #171717;
    margin-top: 3px;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}

.mobileDrawerMenuListItemCollapsed {
    display: none;
}

.mobileDrawerTasksList .mobileDrawerMenuListItem {
    width: 100%;
}

.mobileDrawerMenuListItem:has(.timerClockReady) {
    background: #1a2214;
}

.mobileDrawerMenuListItem span {
    padding-right: 12px;
}

.mobileDrawerMenuListTitle {
    color: #f4f4f4;
    padding: 6px;
    margin-top: 18px;
    border-radius: 4px;
    background: #5e5e5e;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    width: 95%;
    list-style: none;
    transition: 0.3s all;
}

.mobileDrawerMenuListTitleCollapsed {
    background: #5e5e5eaa;
    color: #cccccc;
}

.mobileDrawerMenuListTitle img {
    float: right;
    max-height: 18px;
    margin-right: 12px;
    filter: invert(100%);
    transition: 0.3s all;
    transform: rotate(180deg);
}

.mobileDrawerMenuListTitleCollapsed img {
    transform: rotate(0deg) !important;
}

.mobileDrawerMenuTitle img {
    filter: invert(100%);
    max-height: 18px;
    vertical-align: middle;
    opacity: 0.75;
}

.mobileDrawerMenuListItemLink {
    padding: 4px;
    padding-left: 8px;
    display: flex;
    width: 100%;
    height: 100%;
    color: white;
    justify-content: start;
    align-items: center;
    font-size: 12px;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.yellowAttn, .yellowAttn:link, .yellowAttn:hover, .yellowAttn:visited {
    color: #ffde86 !important;
}

.menuEvent {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(to bottom, transparent, #d9de5724, transparent);
    text-decoration: none !important;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.menuEvent[data-type="xmas"] {
    background: linear-gradient(to bottom, transparent, rgba(96, 222, 87, 0.14), rgba(96, 222, 87, 0.24), rgba(96, 222, 87, 0.14), transparent);
}

.menuEvent:hover img {
    transform: scale(1.1);
    margin-right: 6px;
}

.menuEvent:hover .menuEventText {
    color: #ffea63;
    text-decoration: none !important;
}

.menuEvent[data-type="xmas"]:hover .menuEventText {
    color: #dcffc8;
}

.menuEventImg img {
    width: 32px;
    height: 32px;
    filter: invert(100%);
    opacity: 0.75;
    transition: 0.3s all;
}

.menuEventText {
    font-size: 13px;
    text-decoration: none !important;
    font-weight: 700;
}

.menuEventText span {
    color: #cfcfcf;
    font-size: 12px;
}

.mobileMenuPoker {
    position: fixed;
    bottom: 84px;
    width: 100%;
    height: 34px;
    max-width: 100vw;
    z-index: 90;
    background: #00000088;
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (min-width: 768px) {
    .mobilePokerHud {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) {
    .desktopPokerHud {
        display: none;
    }

    .mobilePokerHud {
        display: flex;
    }

    #mainPoker table td div {
        max-width: 97vw;
    }
}

.betHistoryBoxCollection {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.casinoBox, .betHistoryBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    font-family: "Fira Sans Condensed", sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
}

.betHistoryBox a {
    border: 1px solid #333;
    background: #44444455;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    font-family: "Fira Sans Condensed", sans-serif !important;
    font-weight: 500 !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: #ffe8ca;
}

.casinoBoxInfo b {
    margin-bottom: 4px;
}

.cmb {
    margin-bottom: 12px;
}

.avatarContainer {
    background: #535353;
    padding: 12px;
    padding-left: 36px;
    padding-right: 36px;
    border-bottom: 1px solid #83838355;
    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, 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: 0.75;
    cursor: pointer;
    float: right;
}

.casinoRefresh img {
    height: 16px;
    width: 16px;
    vertical-align: middle;
    filter: invert(100%);
}

.casinoRefresh:hover {
    opacity: 1;
}

img.favoriteStar {
    width: 16px;
    height: 16px;
    transition: 0.3s all;
    cursor: pointer;
}

img.favoriteStar[data-favorite="false"] {
    filter: grayscale(100%);
}

img.favoriteStar[data-favorite="true"], img.favoriteStar:hover {
    filter: drop-shadow(0 0 6px #f4eae155);
}

.discordServerLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.discordServerLink img {
    opacity: 0.45;
    max-width: 60%;
    transition: 0.3s all;
}

.discordServerLink:hover > img {
    opacity: 1;
    filter: drop-shadow(0 0 6px #00000055);
}

.logoutLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 22px;
    margin-left: auto;
    margin-right: auto;
}

.buttonPriceTag {
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    color: #dedede;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttonPriceTag img {
    height: 24px;
    width: 24px;
    margin-right: 4px;
}

.fullBleedStack {
    padding: 0 !important;
    margin: 12px 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.mb4 {
    margin-bottom: 4px;
}

.mb8 {
    margin-bottom: 8px;
}

.mb12 {
    margin-bottom: 12px;
}

.mb16 {
    margin-bottom: 12px;
}

.mb24 {
    margin-bottom: 24px;
}