@import "map.css";
@import "editor.css";
@import "effects.css";

.profile-wrapper .profile-header {
    background-image: url(../images/default-profile-cover.png);
}

.game {
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-image: url(../images/bg_desktop.png);
}

.game_container {
    margin-top: 10px;
}

.page_layout {
    display: flex;
}

.page_layout > side.menu_side {
    flex: 0 1 0;ti
    padding-right: 0;
    display: none;
}

.page_layout > .main_page {
    flex: 1 1 0;
    max-width: 100%;
}

.page_layout > .main_page > .page_container {
    background-color: var(--main-color-new);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: .25rem;
    padding: 15px;
}

.page_layout > .main_page > .page_container .page_title {
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    color: var(--font-color);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--main2-color);
}

.page_layout > .main_page > .page_container .page_title a {
    font-weight: 400;
    text-decoration: none;
    font-size: 13px;
}

.page_layout > .main_page > .page_container .page_title .title-links {
    position: relative;
}

.page_layout > .main_page > .page_container .page_title .title-links .dropdown li > a i,
.page_layout > .main_page > .page_container .page_title .title-links .dropdown li > a svg,
.page_layout > .main_page > .page_container .page_title .title-links > a i,
.page_layout > .main_page > .page_container .page_title .title-links > a svg {
    margin-right: 5px;
}

.page_layout > .main_page > .page_container .page_title .title-links > a {
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    margin-left: 10px;
}

.page_layout > .main_page > .page_container .page_title .title-links > a:focus,
.page_layout > .main_page > .page_container .page_title .title-links > a:active,
.page_layout > .main_page > .page_container .page_title .title-links > a:hover {
    color: #ffffff;
}

.page_layout > .main_page > .page_container .page_title .title-links .dropdown li > a:focus,
.page_layout > .main_page > .page_container .page_title .title-links .dropdown li > a:active,
.page_layout > .main_page > .page_container .page_title .title-links .dropdown li > a:hover {
    background-color: var(--accent3-color);
    color: #ffffff;
}

.page_layout > .main_page > .page_container .page_title .title-links .dropdown li > a {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 700;
    color: var(--font-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.page_layout > .main_page > .page_container .page_title .title-links .dropdown {
    position: relative;
}

.page_layout > .main_page > .page_container .page_title .title-links .dropdown ul {
    color: var(--font-color);
    background-color: var(--main-color) !important;
    border: none !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: .25rem;
    position: relative;
}

/* haeder container */
header.header {
    position: relative;
    border-radius: .25rem .25rem;
    background-color: var(--main-color);
    margin-bottom: 30px;
}

header.header .mobile-info-menu {
    position: absolute;
    z-index: 5;
    bottom: -15px;
    left: calc(50% - 15px);
    background-color: var(--accent2-color);

    font-size: 15px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    color: #ffffff;
}

header.header .headinfo-hidden {
    display: none;
    padding-top: 10px;
    border-top: 1px solid var(--main2-color);
}

/* menu top */
.mobile-top {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 35px;
    max-height: 35px;
    background-color: rgba(var(--accent2-color-rgb), 1);
    border-radius: .25rem .25rem 0 0;
    /* overflow: hidden; */
}

.mobile-top > li {
    flex: 1 1 0;
    padding: 0 10px;
    text-align: center;
    line-height: 35px;
}

.mobile-top > li.menu {
    cursor: pointer;
    max-width: 35px;
    border-right: 1px solid #222222;
    padding: 0;
    color: var(--font-hover-color);
}

.mobile-top > li.menu:hover {
    background-color: rgba(0, 0, 0, .1);
}

.mobile-top > li.empty {
    padding: 0;
    flex: 1 1 0;
}

.mobile-top > li.right:last-of-type {
    border-right: none !important;
}

.mobile-top > li.link:nth-child(2),
.mobile-top > li.link:last-of-type {
    border-left: none !important;
}

.mobile-top > li.right {
    border-right: 1px solid #222222;
}

.mobile-top > li.left {
    border-left: 1px solid #222222;
}

.mobile-top > li.link {
    padding: 0;
    flex: 0 1 auto;
    min-width: 35px;
    animation: none;
}

.mobile-top > li.link > a > strong {
    display: none;
    margin-left: 5px;
}

.mobile-top > li.link > a {
    display: block;
    padding: 0 5px;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 600;
}

.mobile-top > li.link[data-count] > a > span {
    margin-left: 5px;
}

.mobile-top > li.link[data-count]:not([data-count="0"]) {
    animation: blink 1s infinite;
}

.mobile-top > li.link[data-count="0"] > a > span {
    display: none;
}

.mobile-top > li.link[data-count]:not([data-count="0"]) > a > span {
    display: inline-block;
}

.mobile-top > li.link[data-count]:not([data-count="0"]) > a > span:before {
    content: "(";
}

.mobile-top > li.link[data-count]:not([data-count="0"]) > a > span:after {
    content: ")";
}

@keyframes blink {
    50% {
        background-color: var(--accent2-color)
    }
}

.mobile-top > li.link > a:focus,
.mobile-top > li.link > a:active,
.mobile-top > li.link > a:hover {
    background-color: rgba(0, 0, 0, .1);
}

.mobile-top > li img.avatar {
    width: 20px;
    height: 20px;
}

.mobile-top > li.user {
    border-left: 1px solid #222222;
    border-right: 1px solid #222222;
    text-align: right;
    padding: 0;
    flex: 0 1 0;
}

.mobile-top > li.user a {
    font-size: 13px;
    display: block;
    padding: 0 10px;
}

.wallet_popup {
    min-width: 200px;
    max-width: 300px;
    padding: 5px 10px;
    line-height: 28px;
}

.wallet_address {
    background: rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .3);
    overflow-x: scroll;
    padding: 0 10px;
    color: rgb(var(--font-color));
}

.notifications_popup {
    min-width: 320px;
}

.notifications_popup .head {
    padding: 5px 10px;
    line-height: 25px;
    background-color: var(--accent2-color);
    color: var(--font-hover-color);
    border-radius: .25rem .25rem 0 0;
}

.notifications_popup .list_scroll {
    border-radius: 0 0 .25rem .25rem;
    position: relative;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
}

.notifications_popup .list_scroll > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.notifications_popup .list_scroll > ul > li {
    border-bottom: 1px solid var(--main2-color);
    background-color: var(--main-color);
    transition: .3s all ease;
}

.notifications_popup .list_scroll > ul > li.new {
    background-color: var(--accent3-color);
}

.notifications_popup .list_scroll > ul > li:hover {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .2), transparent);
}

.notifications_popup .list_scroll > ul > li:last-of-type {
    border-bottom: none;
}

.notifications_popup .list_scroll > ul > li > .content {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1) inset;
    display: flex;
    flex-direction: row;
    padding: 5px 10px;
}

.notifications_popup .list_scroll > ul > li > .content .desc {
    color: var(--font-hover-color);
    font-size: 12px;
    line-height: 17px;
    flex: 1 1 0;
}

.notifications_popup .list_scroll > ul > li > .content .desc .date {
    display: block;
    color: var(--font-color);
    font-size: 11px;
    font-style: italic;
    font-weight: 300;
    margin-top: 3px;
}

.notifications_popup .list_scroll > ul > li > .content .icon {
    flex: 0 1 25px;
    text-align: center;
}

.notifications_popup .circle {
    border-radius: 50%;
    background-color: var(--main2-color);
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    cursor: pointer;
}

.notifications_popup .circle:hover {
    color: var(--font-hover-color) !important;
}

/* haeder */
.php__header {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    /* border-radius: 0 0 .25rem .25rem; */
    border-top: 1px solid #222222;
}

.php__header > .break {
    flex-basis: 100%;
    height: 0;
    order: 2;
}

.php__header > .php--avatar {
    order: 1;
    flex: 0 1 100px;
    padding-right: 10px;
    text-align: center;
    justify-content: space-evenly;
    flex-direction: column;
}

.php__header > .php--avatar > div > img {
    min-width: 70px;
    max-width: 70px;
    min-height: 70px;
    max-height: 70px;
    margin: 0 auto;
    margin-bottom: 10px;
    border-radius: .25rem;
    background-color: var(--main2-color);
}

.php__header > .php--info {
    order: 3;
    flex: 0 1 50%;
    justify-content: center;
    flex-direction: column;
}

.php__header > .php--info > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.php__header > .php--info > ul > li {
    font-size: 13px;
    text-align: left;
    color: var(--font-color);
    padding: 5px 0;
}

.php__header > .php--info > ul > li a {
    text-decoration: none;
    color: #ffffff;
}

.php__header > .php--info > ul > li strong {
    padding-right: 5px;
    min-width: 60px;
    color: var(--font-hover-color);
}

.php__header > .php--info > ul > li svg,
.php__header > .php--info > ul > li i {
    /* color: var(--font-hover-color); */
    margin-right: 5px;
}

.php__header > .php--info > ul > li span,
.php__header > .php--info > ul > li strong {
    display: inline-block;
}

.php__header > .php--logo {
    order: 1;
    flex: 1 1 0;
    text-align: center;
    position: relative;
    margin-bottom: 15px;
    min-height: 80px;
}

.php__header > .php--logo.events {
    min-height: 110px;
}

.php__header > .php--logo > .logo {
    width: 90%;
    height: 50px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.php__header > .php--logo > .time {
    /* margin: 0 auto; */
    /* margin-top: 5px; */
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    padding: 5px 15px;
    font-weight: 700;
    color: var(--font-color);
    border-radius: .25rem;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    background-color: rgba(0, 0, 0, .2);
}

.php__header > .php--logo > .event_heading {
    font-weight: 700;
    margin: auto;
    margin-top: 10px;
    width: max-content;
    display: inline-block;
    border-radius: .25rem;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    background-color: rgba(0, 0, 0, .2);
}

.php__header > .php--logo.events > .time {
    margin-top: 0;
}

.php__header > .php--logo > .event_heading.bloodbath span {
    color: rgb(182, 20, 20);
}

.php__header > .php--logo > .event_heading.double_xp span {
    color: rgb(182, 171, 20);
}

.php__header > .php--logo > .event_heading.double_gym span {
    color: rgb(58, 182, 20);
}

.php__header > .php--logo > .event_heading span {
    color: #ffffff;
}

.php__header > .php--logo > .event_heading > a {
    padding: 5px 15px;
    display: block;
    text-decoration: none;
}

.php__header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.php__header > .php--logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.php__header > .php--logo > .weather {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 50px;
    margin-top: -30px;
}

.php__header > .php--logo > .weather > .name {
    font-size: 11px;
    color: #ffffff;
    text-align: center;
}

.php__header > .php--logo > .weather > .image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
}

.php__header > .php--bars > div.bars_wraper {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.php__header > .php--bars {
    order: 4;
    flex: 0 1 50%;
    text-align: right;
}

.bar_holder {
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    width: 100%;
}

.bar_holder:nth-child(1) {
    margin-top: 0;
}

.bar_holder:nth-last-child(1) {
    margin-bottom: 0;
}

.bar_holder[data-bs-toggle="modal"] {
    cursor: pointer;
}

.bar_holder > .bar_icon {
    background-color: var(--main3-color);
    border-radius: 50%;
    min-width: 25px;
    max-width: 25px;
    min-height: 25px;
    max-height: 25px;
    padding: 3px 0;
    vertical-align: middle;
    text-align: center;
    margin-top: -5px;
    margin-left: -3px;
    z-index: 1;
    /* box-shadow: 0 0 5px rgba(0,0,0,.3) inset; */
}

.bar_holder > .bar_icon > svg,
.bar_holder > .bar_icon > i {
    color: #ffffff;
}

.bar_holder > .progress {
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    background-color: var(--main3-color);
    border-radius: .25rem 0 0 .25rem;
    position: relative;
}

.bar_holder > .progress > .progress-bar {
    transition: width;
    min-height: 16px;
    line-height: 17px;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0.36, 0.55, 0.63, 0.48);
    max-width: 100%;
    background-color: var(--accent-color);
    background-image: repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0, 0, 0, .07) 3px, rgba(0, 0, 0, .07) 6px),
    linear-gradient(90deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .01));
}

.bar_holder > .progress > .progress-bar > span {
    position: absolute;
    width: 100%;
    font-size: 11px;
    color: #ffffff;
    text-shadow: 0 0 2px #000000;
    /* text-align: left; */
    /* left: 5px; */
    text-align: center;
}

.bar_holder.health > .progress > .progress-bar {
    background-color: #ff5454;
}

.bar_holder.energy > .progress > .progress-bar {
    background-color: #29fb4d;
}

.bar_holder.awake > .progress > .progress-bar {
    background-color: #66c0ff;
}

.bar_holder.nerve > .progress > .progress-bar {
    background-color: #ff9c07;
}

.bar_holder.exp > .progress > .progress-bar {
    background-color: #ffd700;
}

.bar_holder.health > .bar_icon > svg, .bar_holder.health > .bar_icon > i {
    color: #ff5454;
}

.bar_holder.energy > .bar_icon > svg, .bar_holder.energy > .bar_icon > i {
    color: #29fb4d;
}

.bar_holder.awake > .bar_icon > svg, .bar_holder.awake > .bar_icon > i {
    color: #66c0ff;
}

.bar_holder.nerve > .bar_icon > svg, .bar_holder.nerve > .bar_icon > i {
    color: #ff9c07;
}

.bar_holder.exp > .bar_icon > svg, .bar_holder.exp > .bar_icon > i {
    color: #ffd700;
}

/*
.bar_holder:nth-child(1){width: 100%;}
.bar_holder:nth-child(2){width: 95%;}
.bar_holder:nth-child(3){width: 90%;}
.bar_holder:nth-child(4){width: 85%;}
.bar_holder:nth-child(5){width: 80%;}
*/
/* quick-links */
.quick-links {
    padding: 0;
    margin: auto;
    width: 100%;
    display: flex;
    background-color: var(--accent2-color);
    margin-bottom: 10px;
    border-radius: .25em;
}

.quick-links > li:last-of-type {
    border: none;
}

.quick-links > li a {
    display: block;
    text-shadow: 0 0 2px #000000;
    color: var(--font-hover-color);
}

.quick-links > li.done {
    background-color: transparent;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0, 0, 0, .07) 3px, rgba(0, 0, 0, .07) 6px),
    linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .01));
}

.quick-links > li {
    padding: 0;
    flex-grow: 1;
    text-align: center;
    margin: 0;
    list-style: none;
    line-height: 30px;
    border-right: 1px solid #222222;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0, 0, 0, .07) 3px, rgba(0, 0, 0, .07) 6px),
    linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .2));
}

.quick-links > li strong {
    display: none;
    margin-left: 5px;
}

/* footer */
.php__footer {
    color: var(--font-color);
    padding: 40px 0 0 0;
    line-height: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 30px;
    border-top: 2px solid var(--main-color);
    background-color: rgba(0, 0, 0, .2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .4) inset;
    /* filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.432)); */
}

.php__footer hr {
    color: var(--font-color);
    opacity: .3;
}

.php__footer .footer-links li,
.php__footer .copyright-links,
.php__footer .copyright-text,
.php__footer .social-icons {
    text-align: center;
}

.php__footer .copyright-links {
    margin-bottom: 0;
}

.php__footer .copyright-text .copy {
    font-size: 80% !important;
}

.php__footer .footer-links {
    padding-left: 0;
    list-style: none;
}

.php__footer .footer-links li {
    display: block;
}

.php__footer .social-icons {
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.php__footer .social-icons a {
    font-size: 17px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    text-align: center;
    margin-left: 5px;
    margin-right: 0;
    background-color: var(--main-color-old);
    display: inline-block;
    border-radius: 100%;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    padding-bottom: 0;
}

.php__footer .social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.php__footer .social-icons a:active,
.php__footer .social-icons a:focus,
.php__footer .social-icons a:hover {
    color: #ffffff;
    background-color: #29aafe
}

.php__footer .social-icons a.facebook {
    color: #3b5998
}

.php__footer .social-icons a.twitter {
    color: #00aced
}

.php__footer .social-icons a.discord {
    color: #7289da
}

.php__footer .social-icons a.facebook:hover {
    background-color: #3b5998;
    color: #ffffff
}

.php__footer .social-icons a.twitter:hover {
    background-color: #00aced;
    color: #ffffff
}

.php__footer .social-icons a.discord:hover {
    background-color: #7289da;
    color: #ffffff
}

.no-scroll {
    overflow: hidden;
}

/* mobile menu */
.mobile-menu {
    height: 100vh;
    bottom: 30px;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--main2-color);
    overflow: hidden;
    position: absolute;
    display: none;
    z-index: 999999;
}

.mobile-menu .wraper {
    margin: 0;
    overflow-y: auto;
    height: 100vh;
    max-height: calc(100vh - 30px);
}

.mobile-menu .close-mobile-menu {
    text-align: center;
    height: 30px;
    line-height: 30px;
    color: var(--font-hover-color);
    cursor: pointer;
    font-weight: 600;
    background-color: var(--accent2-color);
    background-image: repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0, 0, 0, .07) 3px, rgba(0, 0, 0, .07) 6px),
    linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .6));
}

.mobile-menu .title {
    padding: 0;
    display: block !important;
    clear: both;
    font-weight: 600;
    color: var(--font-hover-color);
    background-color: var(--main-color) !important;
    line-height: 35px;
    height: 35px;
    padding-left: 10px;
    border-bottom: 1px solid var(--main-color);
}

.mobile-menu ul.nav li a svg {
    margin-right: 10px;
}

.mobile-menu ul.nav {
    border-bottom: 1px solid var(--main-color);
    padding: 0;
    margin: 0;
}

.mobile-menu ul.nav.nav-stacked > li + li {
    margin: 0;
}

.mobile-menu ul.nav li {
    margin: 0;
    padding: 0;
}

.mobile-menu ul.nav li a {
    display: block;
    padding: 6px 0;
    margin: 0;
    padding-right: 20px;
    padding-left: 20px;
    color: var(--font-color);
    border-radius: 0;
    text-decoration: none;
}

.mobile-menu ul.nav li a.active,
.mobile-menu ul.nav li a:focus,
.mobile-menu ul.nav li a:active,
.mobile-menu ul.nav li a:hover {
    color: var(--font-hover-color);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .4));
}

/* main menu */
.main_menu {
    min-width: 100%;

    border-radius: .25rem;
}

.main_menu > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main_menu > ul[data-menu="Actions"] {
    display: none;
}

.main_menu > div.title,
.main_menu > ul > li > a {
    background-color: var(--main-color-new-menu);
    color: var(--font-color);
    border-bottom: 1px solid var(--main2-color);
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    padding: 8px 10px;
    text-decoration: none;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    text-shadow: 0 0 2px #000000;
}

.main_menu > div.title {
    border-radius: .25rem .25rem 0 0;
    font-size: 15px;
    color: var(--font-hover-color);
    text-transform: capitalize;
    letter-spacing: 2px;
    text-align: center;
    padding: 8px 0;
    background-color: var(--accent-color);
    background-image: repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0, 0, 0, .07) 3px, rgba(0, 0, 0, .07) 6px),
    linear-gradient(0deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .1));
}

.main_menu > ul > li > a.active,
.main_menu > ul > li > a:focus,
.main_menu > ul > li > a:active,
.main_menu > ul > li > a:hover {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .3));
    color: var(--font-hover-color);
}

.main_menu ul:last-of-type li:last-of-type > a {
    border-radius: 0 0 .25rem .25rem;
    border-bottom: none;
}

/* Selector_inside */
tr.selected td {
    background-color: rgba(var(--main-color-rgb), .3) !important;
}

.pointer,
.Selector_inside {
    cursor: pointer;
}

/* panel */
.panel {
    background-color: transparent;
    border: none;
    margin: 0 auto 10px auto;
    border-radius: .25rem;
}

.panel-heading:first-of-type {
    border-radius: .25rem .25rem 0 0;
}

.panel-heading {
    background-color: var(--accent3-color);
    vertical-align: middle;
    color: var(--font-hover-color);
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 1px #000000;
    text-transform: capitalize;
    text-align: left;
    padding: 8px 0 8px 15px;
}

.panel-body {
    background-color: var(--main2-color);
    border-bottom: 2px solid var(--main-color);
    border: 2px solid var(--accent3-color);
    padding: 10px;
    color: var(--font-color);
    text-shadow: 0 0 1px #000000;
    text-align: left;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .03);
    border-top: 2px solid var(--accent3-color);
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.panel-body:not(:first-of-type) {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.panel-heading + .panel-body:first-of-type {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.panel-body:last-of-type {
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.panel-heading .float-end {
    margin-right: 10px;
}

.panel .panel-body.preview {
    height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
}

/* new box */
.box {
    overflow: hidden;
    border-radius: .25rem;
    background-color: var(--main2-color);
}

.box .box-header strong {
    color: var(--font-hover-color);
    display: block;
    font-size: 15px;
    padding-bottom: 5px;
}

.box .box-header {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, .05);
    color: var(--font-color);
}

.box .box-body.preview span svg {
    text-shadow: 0 0 2px #000000;
}

.box .box-body.preview span {
    z-index: 10;
    position: absolute;
    color: rgb(255, 255, 255);
    top: 10px;
    right: 10px;
    font-size: 15px;
}

.box .box-body {
    position: relative;
    padding: 10px 15px;
}

.box .box-body .buy:active,
.box .box-body .buy:focus,
.box .box-body .buy:hover {
    color: var(--font-hover-color);
    background-color: var(--accent3-color);
}

.box .box-body .buy {
    color: var(--font-color);
    background-color: var(--main-color);
    padding: 2px 8px;
    border-radius: .25rem;
    font-weight: 700;
    text-decoration: none !important;
}

.box .box-body .use {
    color: #000000;
    background-color: var(--accent2-color);
    padding: 2px 8px;
    border-radius: .25rem;
    font-weight: 700;
    text-decoration: none !important;
}

.box .box-body .use:active,
.box .box-body .use:focus,
.box .box-body .use:hover {
    color: #111111;
    background-color: var(--accent-color);
}

.box .box-body .price {
    display: inline-block;
    margin-bottom: 3px;
    color: var(--font-hover-color);
    border-bottom: 1px solid var(--main-color);
    font-weight: 700;
}

.box .box-body .sold {
    font-size: 11px;
    color: var(--font-dark-color);
}

.box .box-body.preview {
    height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* crime_holder */
.crime_holder.hidden {
    filter: grayscale(100%) blur(1px);
    opacity: .5;
}

.crime_holder {
    position: relative;
    display: flex;
    flex-direction: column;
    border: none;
    background: var(--main-color);
    overflow: hidden;
    border-radius: .25rem;
    box-shadow: 0 0 7px rgba(0, 0, 0, .3);
    margin-bottom: 10px;
    max-height: 100px;
    min-height: 100px;
    background-repeat: no-repeat;
    background-size: 100% 70px;
    background-position: center top;
}

.crime_holder > div.title {
    max-height: 70px;
    min-height: 70px;
    flex: 1 0 0;
    padding: 5px 0;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    font-family: "Titillium Web", sans-serif;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .7));
    border-radius: .25rem .25rem 0 0;
    position: relative;
}

.crime_holder > div.title > .level {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    background-color: gold;
    color: black;
    font-size: 18px;
    font-weight: 700;
}

.crime_holder > div.title > p {
    color: #cccccc;
    font-size: 12px;
    font-weight: 500;
    font-family: "roboto", sans-serif;
    background-color: rgba(0, 0, 0, .4);
}

.crime_holder > div.action {
    flex: 0 1 0;
    display: flex;
    flex-direction: row;
    border-top: 1px solid var(--main2-color);
    background-color: var(--main-color);
    border-radius: 0 0 .25rem .25rem;
}

.crime_holder > div.action > div:first-of-type {
    border-left: none;
}

.crime_holder > div.action > div {
    flex: 1 1 auto;
    border-left: 1px solid var(--main2-color);
    padding: 5px 10px;
}

.crime_holder > div.action > div.crime_perc {
    position: relative;
    padding: 0 !important;
    min-width: 80px;
    max-width: 80px;
    background-color: var(--main2-color);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, .2) 5px, rgba(0, 0, 0, .2) 10px);
}

.crime_holder > div.action > div.crime_perc > div {
    width: auto;
    height: 100%;
    background-color: var(--main-color);
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .3));
    transition: width;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0.36, 0.55, 0.63, 0.48);
}

.crime_holder > div.action > div.crime_perc > div > span {
    position: absolute;
    right: 0;
    width: 100%;
    padding: 5px 10px;
}

.crime_holder > div.action > div > svg {
    margin-right: 5px;
}

.crime_holder > div.action > div.button {
    min-width: 100px;
    max-width: 100px;
    padding: 0;
}

.crime_holder > div.action > div.button > a {
    display: block;
    padding: 5px 0;
    text-align: center;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--font-hover-color);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    background-color: var(--accent2-color);
    background-image: repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0, 0, 0, .07) 3px, rgba(0, 0, 0, .07) 6px),
    linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .01));
}

.crime_holder > div.action > div.button > a:hover,
.crime_holder > div.action > div.button > a:active,
.crime_holder > div.action > div.button > a:focus {
    color: #ffffff;
    background-color: var(--accent-color);
}

/* table */
.panel-body.p-0 > .table {
    margin: 0;
    box-shadow: 0 0 0 transparent !important;
}

table tr td, table tr th {
    text-align: left;
}

.table {
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    border: none !important;
    width: 100% !important;
    color: var(--font-color);
    display: table;
    margin-bottom: 10px;
    border-radius: .25rem;
}

.table > tfoot > tr > th,
.table > thead > tr > th {
    padding: 8px 10px;
    color: var(--font-hover-color);
    background-color: var(--main2-color);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .05));
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-color: var(--main-color) !important;
}

.table > tfoot > tr > th {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.table > tbody > tr > td {
    background-color: var(--main2-color);
    padding: 5px 10px;
    color: var(--font-color);
    border-left: 1px solid transparent;
    border-color: var(--main-color);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .03);
    text-shadow: 0 0 1px #000000;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    border-top: 1px solid var(--main-color);
}

.table > thead > tr:first-of-type > th {
    border-top: none;
}

.table > thead > tr > th:first-of-type, .table > tbody > tr > td:first-of-type {
    border-left: none;
}

.table > tbody > tr:last-of-type > td {
    border-bottom: none;
}

.table tr:first-of-type > th:first-of-type, .table tr:first-of-type > td:first-of-type {
    border-top-left-radius: .25rem;
}

.table tr:first-of-type > th:last-of-type, .table tr:first-of-type > td:last-of-type {
    border-top-right-radius: .25rem;
}

.table tr:last-of-type > th:first-of-type, .table tr:last-of-type > td:first-of-type {
    border-bottom-left-radius: .25rem;
}

.table tr:last-of-type > th:last-of-type, .table tr:last-of-type > td:last-of-type {
    border-bottom-right-radius: .25rem;
}

/* table-responsive */
.table-responsive tr {
    display: flex;
    flex-flow: row;
}

.table-responsive tr th,
.table-responsive tr td {
    flex-shrink: 1;
}

/* ul */
.list-group + .list-group {
    margin-top: 10px;
}

.list-group {
    border: none;
    border-radius: .25rem;
    background-color: var(--main-color-new-list);
}

.list-group-item {
    background-color: rgba(0, 0, 0, .3);
    border: 2px solid var(--main-color);
    color: var(--font-color);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .2) inset;
}

/* alert */
.alert.alert-success {
    border-color: #155724 !important;
}

.alert.alert-info {
    border-color: #0c5460 !important;
}

.alert.alert-warning {
    border-color: #856404 !important;
}

.alert.alert-danger {
    border-color: #721c24 !important;
}

.alert {
    border-style: solid;
    border-width: 2px;
    background-color: var(--main2-color);
    color: var(--font-color);
    text-align: left;
    font-size: 13px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, .2);
}

.alert .show-more.more {
    max-height: 150px;
}

.alert .show-more {
    margin-top: 5px;
    padding: 5px 30px;
    max-height: 50px;
    background-color: rgba(0, 0, 0, .1);
    overflow: auto;
    border: 1px solid var(--main-color);
    border-radius: .25rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .2);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
}

.alert .show-more ul {
    margin: 0;
    padding: 0;
}

.alert a {
    color: var(--font-hover-color) !important;
}

.alert .btn-close {
    line-height: .5 !important;
    opacity: .7;
    outline: none !important;
    border: none !important;
    background: transparent;
    color: var(--font-hover-color) !important;
    box-shadow: 0 0 0 transparent;
}

.alert.alert-image {
    padding: 0 !important;
    background-color: var(--main-color);
    border: none;
}

.alert.alert-image .image-side {
    background-color: var(--main-color);
    background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1) 1px, transparent 1px, transparent 4px),
    linear-gradient(0deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .3));
    padding: 5px;
    border-radius: .25rem 0 0 .25rem;
}

.alert.alert-image .flex-fill {
    padding-left: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.alert.alert-image .quote {
    position: relative;
    top: 20px;
    font-weight: 500;
    font-size: 3rem;
    line-height: 0;
    margin: 0 10px;
}

.alert.alert-image .portrait {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: var(--main-color);
    border: 3px solid var(--accent-color);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .3);
    max-width: 90px;
    min-width: 90px;
    min-height: 90px;
    max-height: 90px;
    border-radius: 50%;
}

/* form */
textarea.form-control {
    height: auto;
}

.form-control {
    color: var(--font-color);
    border: none;
    font-size: 13px;
    height: 30px;
    padding: 10px;
    border-radius: 3px;
    background-color: var(--main-color);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .2));
}

.form-control:focus {
    color: var(--font-color);
    background-color: var(--main-color);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .3));
    box-shadow: 0 0 2px 1px rgba(var(--accent-color-rgb), .3) !important;
}

.form-control::placeholder {
    color: var(--font-dark-color);
}

.form-control:disabled {
    background: var(--main-color);
    cursor: not-allowed;
}

select.form-control {
    padding: 0 10px;
}

.form-select:disabled {
    background-color: var(--main-color);
    background-blend-mode: hard-light;
    cursor: not-allowed;
}

.form-select {
    color: var(--font-color);
    background-color: var(--main-color);
    background-blend-mode: color-burn;
    border-color: var(--main2-color);
    outline: none !important;
    border: none !important;
    font-size: 13px;
}

.form-select:focus {
    box-shadow: 0 0 2px 2px rgba(var(--accent-color-rgb), .1) !important;
}

.input-group-addon,
.input-group-text {
    line-height: 30px;
    font-size: 12px;
    padding: 0 5px;
    height: 30px;
    color: var(--font-color);
    background-color: var(--main-color);
    border-color: var(--main2-color);
}

.form-check,
.form-label {
    color: var(--font-color);
}

.form-check-input {
    background-color: var(--main2-color);
}

.table .form-check-input {
    background-color: var(--main-color);
}

.form-check-input:checked + label {
    color: var(--font-hover-color);
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-input:focus {
    box-shadow: 0 0 2px 2px rgba(var(--accent-color-rgb), .1) !important;
}

.form-range::-webkit-slider-thumb {
    background-color: var(--accent-color);
}

.form-range::-webkit-slider-thumb:active {
    background-color: var(--accent2-color);
}

.form-range::-webkit-slider-runnable-track {
    background-color: var(--main2-color);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .03);
}

.form-label {
    margin-bottom: 0;
}

/* btn */
.btn:not(.btn-normal) {
    font-size: 13px;
    padding: 5px 10px;
    position: relative;
    text-shadow: 0 0 1px #000000;
    font-weight: 600;
    color: #cccccc !important;
    border: none !important;
    outline: none !important;
    background-color: var(--accent2-color);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .3), transparent);
    text-decoration: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
}

.btn:not(.btn-normal):active,
.btn:not(.btn-normal):focus,
.btn:not(.btn-normal):hover {
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    color: #ffffff !important;
    border-color: #333333 !important;
    background-color: var(--accent-color);
    /* background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .1)) !important; */
    box-shadow: 0 0 2px 2px rgba(var(--accent-color-rgb), .2) !important;
}

/* btn colors */
.btn.btn-success {
    background-color: rgb(0, 117, 39);
}

.btn.btn-success:active,
.btn.btn-success:focus,
.btn.btn-success:hover {
    background-color: rgb(0, 139, 19);
    box-shadow: 0 0 2px 2px rgba(0, 117, 39, .2) !important;
}

.btn.btn-danger {
    background-color: rgb(117, 0, 0);
}

.btn.btn-danger:active,
.btn.btn-danger:focus,
.btn.btn-danger:hover {
    background-color: rgb(139, 0, 0);
    box-shadow: 0 0 2px 2px rgba(117, 0, 0, .2) !important;
}

.btn.btn-warning {
    background-color: rgb(117, 70, 0);
}

.btn.btn-warning:active,
.btn.btn-warning:focus,
.btn.btn-warning:hover {
    background-color: rgb(139, 67, 0);
    box-shadow: 0 0 2px 2px rgba(117, 70, 0, .2) !important;
}

.btn.btn-info {
    background-color: rgb(0, 80, 117);
}

.btn.btn-info:active,
.btn.btn-info:focus,
.btn.btn-info:hover {
    background-color: rgb(0, 100, 139);
    box-shadow: 0 0 2px 2px rgba(0, 100, 139, .2) !important;
}

.btn.btn-dark {
    background-color: rgb(34, 34, 34);
}

.btn.btn-dark:active,
.btn.btn-dark:focus,
.btn.btn-dark:hover {
    background-color: rgb(11, 11, 11);
    box-shadow: 0 0 2px 2px rgba(34, 34, 34, .2) !important;
}

.btn.btn-light {
    color: #111111 !important;
    text-shadow: 0 0 1px #ffffff;
    background-color: rgb(202, 202, 202);
}

.btn.btn-light:active,
.btn.btn-light:focus,
.btn.btn-light:hover {
    color: #000000 !important;
    background-color: rgb(243, 243, 243);
    box-shadow: 0 0 2px 2px rgba(202, 202, 202, .2) !important;
}

/* Status */
.online {
    color: #33af00;
    font-weight: 700;
}

.afk {
    color: #af9000;
    font-weight: 700;
}

.offline {
    color: #af1500;
    font-weight: 700;
}

/* Status icon */
.bouble.no-animation {
    animation: none !important
}

.bouble {
    display: inline-block;
    height: 5px;
    width: 5px;
    margin-left: 8px;
    margin-right: 4px;
    border-radius: 50%;
    top: -2.5px;
    position: relative;
    background-color: transparent;
    box-shadow: 0 0 0 transparent;
}

.bouble.online {
    --color: 51, 175, 0;
    background-color: rgb(var(--color));
    animation: pulse 1s infinite;
}

.bouble.afk {
    --color: 175, 145, 0;
    background-color: rgb(var(--color));
    animation: pulse 3s infinite;
}

.bouble.offline {
    --color: 175, 0, 0;
    background-color: rgb(var(--color));
    animation: none !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--color), .4)
    }
    70% {
        box-shadow: 0 0 3px 7px transparent
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

/* paginations */
.paginations {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    margin: 10px 0;
    padding: 0;
    border-radius: .25rem;
    background-color: var(--main2-color);
}

.paginations__numbers,
.paginations__btn,
.paginations__dots {
    flex: 0 0 auto;
    margin: 0 1px;
    font-size: 13px;
    vertical-align: middle;
}

.paginations__numbers > a,
.paginations__btn > span, .paginations__btn > a,
.paginations__dots > span {
    margin: 0 !important;
    display: block;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    min-height: 30px;
    max-height: 30px;
    min-width: 30px;
    max-width: 30px;
    border-radius: .25rem;
}

.paginations__dots > span {
    color: var(--font-dark-color);
    cursor: initial;
    pointer-events: none;
}

.paginations__numbers > a {
    cursor: pointer;
    border-radius: .25rem;
}

.paginations__btn > a:hover,
.paginations__btn > a:active,
.paginations__numbers > a:hover,
.paginations__numbers > a:active,
.paginations__numbers.active > a {
    color: var(--font-hover-color);
    background: var(--main-color);
    font-weight: 600;
}

.paginations__numbers.active > a {
    pointer-events: none;
}

.paginations__btn {
    flex: 2 2 auto;
}

.paginations__btn.prev > span, .paginations__btn.prev > a,
.paginations__btn.next > span, .paginations__btn.next > a {
    display: inline-block;
    max-width: 100px;
}

.paginations__btn.next {
    text-align: right;
}

.paginations__btn > span, .paginations__btn > a {
    width: 100%;
    min-width: 30px;
    max-width: 100%;
}

.paginations__btn > span {
    color: var(--font-dark-color);
    pointer-events: none;
    cursor: default;
}

.paginations__btn > a {
    cursor: pointer;
}

@media (min-width: 767px) {
    .paginations__numbers,
    .paginations__btn,
    .paginations__dots {
        margin: 0 5px;
    }

    .paginations__numbers,
    .paginations__btn,
    .paginations__dots {
        flex: 0 0 auto;
    }

    .paginations__btn {
        flex: 5 5 auto;
    }
}

/* nav-pills */
.nav-pills > li > a {
    padding: 5px;
    margin-bottom: 10px;
    text-decoration: none;
}

.nav-pills > li > a:hover {
    background-color: #474747;
}

.nav-tabs {
    border-bottom: 1px solid #474747 !important;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.nav-tabs li a {
    border-bottom-color: transparent !important;
}

.nav-tabs li a:hover {
    background-color: #474747;
    border-radius: 5px;
    border-color: transparent;
}

/* Modal */
/* .modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,.8);
}
.modal .loading {
	display: none;
}
.modal .overlay{
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.modal > .wrapper {
	position: relative;
	z-index: 0;
	margin: 0 auto;
	width: 90%;
	margin-top: 15%;
	background-color: var(--main2-color);
	-radius: 3px;
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	animation-name: animatetop;
	animation-duration: 0.4s
}

.modal > .wrapper .content {
	padding: 15px;
	border-radius: 0 0 3px 3px;
}
.modal > .wrapper .title {
	border-radius: 3px 3px 0 0;
	color: #aaa;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	background-color: var(--main-color);
	padding: 8px 10px;
}
.modal > .wrapper .close {
	position:absolute;
	color: #aaa;
	right:10px;
	top:8px;
	font-size: 14px;
	text-shadow: 0 0 5px rgba(0,0,0,1);
}

.modal > .wrapper .close:hover,
.modal > .wrapper .close:focus {
	color: #ccc;
	text-decoration: none;
	cursor: pointer;
}

@keyframes animatetop {
	from {top: -300px; opacity: 0}
	to {top: 0; opacity: 1}
} */
.modal {
    background-color: rgba(0, 0, 0, .7);
    border-radius: .25rem;
}

.modal .modal-header {
    border-bottom: 2px solid var(--accent3-color);
    background-color: var(--accent3-color);
    border-radius: .25rem .25rem 0 0;
    vertical-align: middle;
    color: var(--font-hover-color);
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 1px #000000;
    text-transform: capitalize;
    text-align: left;
    padding: 8px 15px;
}

.modal .modal-footer {
    border-top: 2px solid var(--accent3-color);
}

.modal .modal-body {
    background-color: var(--main2-color);
    padding: 10px;
    color: var(--font-color);
    text-shadow: 0 0 1px #000000;
    text-align: left;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .03);
    border-radius: 0 0 .25rem .25rem;
}

body.login .register_form label {
    font-weight: 600;
    text-shadow: 0 0 1px #000000;
}

.modal .modal-header .modal-title {
    color: var(--font-hover-color);
}

.modal .modal-content {
    background-color: var(--main2-color);
    border: 2px solid var(--accent3-color);
    margin: auto;
}

.modal .close {
    color: var(--font-color) !important;
    font-size: 28px;
    font-weight: 700;
}

.modal .close:hover,
.modal .close:focus {
    color: var(--font-hover-color) !important;
    text-decoration: none;
    cursor: pointer;
}

/* Profile Comments */
.comments {
    padding: 0;
}

.comments .new-comment {
    border-top: 1px solid #333333;
    padding: 10px;
    background-color: #151414;
    display: flex;
}

textarea.form-control {
    min-width: 100%;
    resize: vertical;
    max-height: 120px;
    min-height: 50px;
}

.comments .comments-wrap > .comment-container > .comment-box {
    display: flex;
    padding: 10px;
    border-top: 1px solid #393939;
}

.comments .comments-wrap > .comment-container > .comment-box > div,
.comments .new-comment > div {
    flex: 1 0 0;
}

.comments .new-comment > div.button {
    flex: 0 1 auto;
    padding-left: 10px;
    text-align: right;
}

.comments .new-comment > div.button > div {
    text-align: center;
    color: #cccccc;
}

.comments .new-comment > div.button span {
    font-size: 11px;
    line-height: 20px;
}

.comments .comments-wrap > .comment-container:first-of-type > .comment-box {
    border-top: none;
}

.comments .comments-wrap > .comment-container:last-of-type > .comment-box {
    border-radius: 0 0 3px 3px;
}

.comments .comments-wrap > .comment-container > .comment-box.hidden {
    opacity: .5;
    background: rgba(0, 0, 0, .3) !important;
}

.comments .comments-wrap > .comment-container > .comment-box.hidden:hover {
    opacity: 1;
}

.comments .comments-wrap > .comment-container > .comment-box > div.user-avatar,
.comments .new-comment > div.user-avatar {
    text-align: left;
    padding-right: 10px;
    flex: 0 1 auto;
}

.comments .user-avatar .user-pic {
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border: 1px solid #333333;
}

.comments .comments-wrap > .comment-container > .comment-box > .comment-text {
    color: #999999;
    font-size: 12px;
    text-align: left;
}

.comments .comments-wrap > .comment-container > .comment-box > .comment-text > p {
    margin: 0;
}

.comments .comments-wrap > .comment-container > .comment-box > .comment-text > .username {
    color: #cccccc;
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.comments .comments-wrap > .comment-container > .comment-box > .comment-text > .username > .date {
    font-size: 10px;
    font-weight: 400;
    color: #999999;
}

.comments .comments-wrap > .comment-container > .comment-box > .comment-text > .username > .Show,
.comments .comments-wrap > .comment-container > .comment-box > .comment-text > .username > .Delete,
.comments .comments-wrap > .comment-container > .comment-box > .comment-text > .username > .Hide {
    text-shadow: 0 0 3px rgba(0, 0, 0, .5);
    margin-left: 5px;
}

.comments .comments-wrap > .comment-container > .comment-box > .comment-text > .username > .Delete {
    color: #c72828;
}

.comments .comments-wrap > .comment-container > .comment-box > .comment-text > .username > .Hide {
    color: #ffffff;
}

.comments .comments-wrap > .comment-container > .comment-box > .comment-text > .username > .Show {
    color: #5e96fd;
}

/* items */
.car_img,
.item_bg {
    position: relative;
    display: inline-block;
    background-color: var(--main-color);
    background-image: linear-gradient(360deg, transparent, rgba(0, 0, 0, .3)),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .15) 1px, transparent 1px, transparent 3px);
    overflow: hidden;
    box-sizing: content-box;
    box-shadow: 0 0 0 2px var(--main-color);
    border-radius: 3px;
    width: 100px;
    height: 50px;
    max-width: 100px;
    min-width: 100px;
    max-height: 50px;
    min-height: 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.car_img.small,
.item_bg.small {
    width: 60px;
    height: 30px;
    max-width: 60px;
    min-width: 60px;
    max-height: 30px;
    min-height: 30px;
}

.item_bg img {
    box-shadow: 0 0 10px rgba(0, 0, 0, .4) inset;
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 100%;
    max-height: 100%;
    min-height: 100%;
}

.item_bg.small .qty,
.item_bg .qty {
    color: #ffffff;
    text-shadow: -1px 0 #000000, 0 1px #000000, 1px 0 #000000, 0 -1px #000000;
    font-size: 11px;
    position: absolute;
    right: 5px;
    bottom: 2px;
    margin: 0;
    line-height: 8px;
    padding: 1px 0 0 1px;
    height: 7px;
    letter-spacing: 0.03rem;
}

/* categories */
.categories {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    overflow-x: auto;
    background-color: var(--main-color);
    border-bottom: 1px solid var(--main2-color);
    background-image: linear-gradient(0deg, transparent, rgba(0, 0, 0, .3));
}

.categories > li {
    flex: 1 1 0;
    padding: 5px;
    cursor: pointer;
    transition: .3s all ease;
    font-weight: 600;
    text-align: center;
    color: var(--font-color);
    text-transform: capitalize;
    border-right: 1px solid var(--main2-color);
    background-color: var(--main-color);
    background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, .3));
}

.categories > li.selected {
    color: var(--font-hover-color);
    background-color: var(--main2-color);
    background-image: linear-gradient(0deg, transparent, rgba(0, 0, 0, .3));
}

.categories > li.link {
    padding: 0;
}

.categories > lilink.selected {
    background-color: var(--main2-color);
    background-image: linear-gradient(0deg, transparent, rgba(0, 0, 0, .3));
}

.categories > li.link > a {
    display: block;
    padding: 5px;
    color: var(--font-color);
    text-decoration: none;
}

.categories > li.selected > a {
    color: var(--font-hover-color);
}

@media (min-width: 767px) {
    .categories {
        flex-wrap: nowrap;
    }

    .categories > li {
        flex: 0 1 0;
        padding: 5px 10px;
    }
}

._row {
    padding-top: .4rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid rgba(var(--main-color-rgb), .5);
    transition: .3s all ease;
    cursor: pointer;
}

._row:active,
._row:focus,
._row:hover {
    background-color: rgba(0, 0, 0, .1);
}

._separator {
    color: var(--font-hover-color);
    padding: 5px 10px;
    background-color: var(--main-color);
    background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1) 1px, transparent 1px, transparent 4px), linear-gradient(180deg, transparent, rgba(0, 0, 0, .3));
}

/* cars */
.car_img {
    min-width: 130px;
    max-width: 130px;
    min-height: 80px;
    max-height: 80px;
}

.car_img.medium {
    min-width: 65px;
    max-width: 65px;
    min-height: 40px;
    max-height: 40px;
}

.car_img.small {
    min-width: 40px;
    max-width: 40px;
    min-height: 25px;
    max-height: 25px;
}

.CurrLVL {
    font-size: 16px;
    color: #cccccc;
}

.CurrLVL > span {
    font-size: 11px;
    color: #aaaaaa;
    display: inline-block;
    margin-right: 7px;
    margin-left: 1px;
}

i.car_class {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .4), transparent);
    vertical-align: middle;
    /* vertical-align: bottom; */
    margin-top: -2px;
    margin-right: 3px;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}

i.car_class.S {
    background-color: rgb(var(--car_class_S));
}

i.car_class.A {
    background-color: rgb(var(--car_class_A));
}

i.car_class.B {
    background-color: rgb(var(--car_class_B));
}

i.car_class.C {
    background-color: rgb(var(--car_class_C));
}

i.car_class.D {
    background-color: rgb(var(--car_class_D));
}

i.car_class.E {
    background-color: rgb(var(--car_class_E));
}

tr.car_class.S td {
    background-color: rgba(var(--car_class_S), .02);
}

tr.car_class.A td {
    background-color: rgba(var(--car_class_A), .02);
}

tr.car_class.B td {
    background-color: rgba(var(--car_class_B), .02);
}

tr.car_class.C td {
    background-color: rgba(var(--car_class_C), .02);
}

tr.car_class.D td {
    background-color: rgba(var(--car_class_D), .02);
}

tr.car_class.E td {
    background-color: rgba(var(--car_class_E), .02);
}

.racing-info u {
    border-bottom: 1px dotted #555555;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 2px;
    padding: 0 3px 3px 0;
    margin-bottom: 5px;
    display: inline-block;
    text-decoration: none;
}

.racing-info ul:last-of-type {
    margin-bottom: 0;
}

.racing-info ul {
    margin-bottom: 20px;
    padding-inline-start: 15px;
}

.racing-info ul > li {
    text-align: left;
    margin-bottom: 4px;
}

.racing-info ul > li > strong:first-of-type {
    display: inline-block;
    min-width: 45px;
}

.racing-info ul.long > li > strong:first-of-type {
    display: inline-block;
    min-width: 80px;
}

.car_bar {
    display: inline-flex;
    flex-direction: row;
    vertical-align: middle;
    height: 5px;
    overflow: hidden;
    font-size: 0;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .5);
    min-width: 110px;
    max-width: 110px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), transparent), repeating-linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 2px);
    background-color: #555555;
}

.car_bar > .bar {
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), transparent), repeating-linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 2px);
}

.car_bar > .bar.base {
    background-color: #aaaaaa;
}

.car_bar > .bar.tune {
    background-color: #0ea921;
}

/* travel */
img.flag {
    height: auto !important;
    max-height: 18px !important;
    max-width: 18px !important;
    margin-top: -2px;
    border-radius: .25rem;
    filter: grayscale(50%);
}

img.country {
    height: auto !important;
    max-height: 100px !important;
    max-width: 150px !important;
    border-radius: .25rem;
}

.dropdown-menu {
    background-color: var(--accent3-color) !important;
    padding: 0;
    margin: .125rem 0 0;
    font-size: 13px;
    color: var(--font-color) !important;
    border: none !important;
}

.dropdown-menu li .dropdown-item svg {
    margin-right: 5px;
}

.dropdown-menu li .dropdown-item {
    background-color: transparent !important;
    padding: 5px 10px !important;
    line-height: 20px;
    color: var(--font-hover-color);
    border-bottom: 1px solid var(--main-color);
    text-decoration: none;
}

.dropdown-menu li:last-of-type .dropdown-item {
    border-bottom: none;
}

/* Debug tool */
.debug-tool {
    transition: .3s height linear, .3s width linear;
    background: var(--main2-color);
    position: fixed;
    bottom: 5px;
    right: 10px;
    z-index: 1100;
    width: 350px;
    max-width: 350px;
    opacity: .9;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 2px solid var(--accent3-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.debug-tool > .title span {
    cursor: pointer;
    margin-top: 3px;
    margin-left: 5px;
}

.debug-tool > .title {
    color: #cccccc;
    padding: 5px 10px;
    background: var(--accent3-color);
    font-weight: 700;
    text-shadow: 0 0 3px rgba(250, 250, 250, .1);
}

.debug-tool > pre {
    color: #999999;
    font-size: 10px;
    padding: 5px;
    width: 100%;
    max-height: 250px;
    margin: 0;
    font-family: monospace;
}

.debug-tool > pre::-webkit-scrollbar-track {
    background-color: #111111;
}

.debug-tool > pre::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.debug-tool > pre::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
}

.debug-tool.expand > pre {
    height: 400px !important;
    max-height: 400px !important;
}

.debug-tool.expand {
    width: 60% !important;
    max-width: 60% !important;
}

/* autocomplete */
.autocomplete-suggestions {
    background: var(--main-color);
    color: var(--font-color);
    overflow: auto;
    border-radius: .25rem;
}

.autocomplete-suggestion {
    padding: 5px 10px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.autocomplete-suggestion:last-of-type {
    border-bottom: none;
}

.autocomplete-selected {
    background: var(--accent2-color);
    color: #000000;
    font-weight: 700;
}

.autocomplete-suggestions strong {
    font-weight: 600;
    color: #ffffff;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000000;
}

/* others */
.building_closed {
    color: rgba(0, 0, 0, .3);
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, .1);
    font-weight: 700;
}

.form-switch .form-check-input {
    background-color: var(--accent3-color);
    cursor: pointer;
}

.form-switch.form-switch-md .form-check-input {
    height: 18px;
    width: calc(30px + 0.75rem);
    border-radius: .5rem;
}

.form-switch.form-switch-md .form-check-label {
    margin-left: 10px;
    line-height: 28px;
}

.panel .panel-body.limited.awards {
    overflow: auto;
    max-height: 300px;
}

.loading_holder {
    text-align: center;
}

.loading_holder .text {
    font-size: 14px;
    font-weight: 600;
}

.loading_holder .loader {
    border: 3px solid var(--main-color);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 0 auto 10px auto;
    animation: loader 2s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* login */
body.login .logo_container {
    max-width: 100%;
    margin: 6rem auto 5rem auto;
    text-align: center;
}

body.login img.logo {
    max-width: 100%;
}

body.login .login-btn {
    margin-top: 24px;
    max-height: 40px;
    line-height: 20px;
    font-size: 1rem;
}

body.login .login_form label {
    font-weight: 600;
    text-shadow: 0 0 1px #000000;
}

body.login .login-input {
    margin-top: 5px;
    height: 40px;
}

section.stats,
section.screenshots,
section.about,
section.register,
section.main {
    padding: 50px 0;
}

section.register {
    text-align: center;
    background-color: var(--main-color);
    font-weight: 600;
    font-family: "Titillium Web", sans-serif;
}

section.about {
    background-color: var(--main2-color);
}

section.about p {
    font-size: .85rem;
    font-family: "Titillium Web", sans-serif;
}

section.about .stats {
    text-align: center;
}

section.about .stats .number {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "Titillium Web", sans-serif;
}

section.about .stats .text {
    color: var(--font-dark-color);
    font-size: .85rem;
    font-weight: 600;
    font-family: "Titillium Web", sans-serif;
}

section.screenshots {
    background-color: var(--main-color);
}

section.screenshots .carousel-item img {
    border-radius: .25rem;
}

section.screenshots .carousel-caption {
    background-color: rgba(0, 0, 0, .5);
    bottom: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

section.screenshots .carousel-caption h5 {
    font-size: .9rem;
}

section.screenshots .carousel-caption p {
    font-size: .8rem;
}

section.screenshots .carousel-indicators button.active {
    opacity: 1;
}

section.screenshots .carousel-indicators button {
    opacity: .3;
    border: none;
    margin: 5px 5px;
    outline: none;
}

section.screenshots .carousel-control-prev,
section.screenshots .carousel-control-next {
    border: none;
    background: transparent;
}

section.stats {
    background-color: rgba(0, 0, 0, .3);
}

section.stats .stats-title {
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 600;
    font-family: "Titillium Web", sans-serif;
}

section.stats .stats-desc {
    color: var(--font-hover-color);
    font-size: .85rem;
    font-weight: 600;
    font-family: "Titillium Web", sans-serif;
}

body.login .php__footer {
    background-color: #1a1a1a;
    margin-top: 0;
}

.star-container {
    display: inline-flex;
    flex-wrap: wrap;
    vertical-align: middle;
    max-width: 50px; /* Set the max width to ensure it fits 4 stars per row */
    margin-left: 5px;
    margin-top: -3px;
}

/*added styles for prestige*/
.star-container i {
    margin: 1px; /* Adjust the margin to control spacing */
    flex: 0 0 8px; /* Set the flex-basis to the width of the stars */
    font-size: 8px;
    background: linear-gradient(45deg, #ffd700, #ffc700, #ffb700, #ffa700, #ff9700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.star-container img {
    height: 20px;
}

a:hover .star-container i {
    text-decoration: none;
}

.user {
    display: inline-flex;
    align-items: center;
}

.user:hover {
    text-decoration: none;
}

/* limiting table height on mobile */
@media (max-width: 768px) {
    .panel-limited,
    .panel .panel-body.limited {
        overflow: auto;
        max-height: 300px;
    }

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

    table.limited tbody {
        display: block;
        overflow: auto;
        max-height: 350px;
        width: 100%;
    }

    table.limited tbody tr {
        width: 100%;
        display: flex;
    }

    table.limited tfoot tr,
    table.limited thead tr {
        display: flex;
        flex: 1 1 100%;
    }
}

/* Media Query */
@media (min-width: 767px) {
    .php__header > .php--bars > div.bars_wraper {
        height: 100%;
    }

    header.header .headinfo-hidden {
        display: block !important;
    }

    .building_closed {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .modal.travel-modal > .wrapper {
        width: 500px;
    }

    .modal > .wrapper {
        width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-menu {
        display: none !important;
    }

    body.login .logo_container {
        max-width: 60%;
    }

    .quick-links {
        border-top: 1px solid #222222;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .quick-links > li strong {
        display: inline-block;
    }

    .mobile-top > li.link > a > strong {
        display: inline-block;
    }

    .mobile-top > li.avatar,
    .mobile-top > li.user,
    .mobile-top > li.menu {
        display: none;
    }

    .mobile-top > li.link > a {
        padding: 0 10px;
    }

    .game_container {
        margin-top: 15px;
    }

    .php__header > .break {
        display: none;
    }

    .php__header > .php--logo {
        order: 3;
        margin-bottom: 0;
    }

    .php__header > .php--logo > .logo {
        height: 60px;
    }

    .php__header > .php--logo.events > .time {
        margin-top: 15px;
    }

    .php__header > .php--info {
        order: 2;
        line-height: 1;
        flex: 0 1 180px;
    }

    .php__header > .php--bars {
        order: 4;
        flex: 0 1 20%;
    }

    .page_layout > side.menu_side {
        flex: 0 1 200px;
        padding-right: 10px;
        display: block;
    }

    .page_layout > .main_page {
        padding-left: 10px;
        max-width: calc(100% - 200px);
    }

    .php__footer {
        margin-bottom: 0;
    }

    .php__footer .footer-links li,
    .php__footer .copyright-links,
    .php__footer .copyright-text,
    .php__footer .social-icons {
        text-align: left;
    }

    header.header {
        border-radius: .25rem .25rem 0 0;
        margin-bottom: 0;
        background-color: #121212 !important;
    }

    header.header .headinfo-hidden {
        display: block;
        border: none;
        padding: 0;
    }

    header.header .mobile-info-menu {
        display: none;
    }

}

@media (min-width: 992px) {
    .php__header > .php--logo > .logo {
        height: 80px;
    }

    .php__header > .php--logo.events > .time {
        margin-top: 0;
    }
}

.login-about {
    background-color: rgba(27, 27, 27, 0.8);
    border-radius: .25rem;
}

@media (max-width: 768px) {
    .cap-logo-height {
        max-height: 200px;
    }
    .game {
    	background-image: url(../images/bg_mobile.png);
    }
}

@media (min-width: 767px) {
    .cap-logo-height {
        max-height: 225px;
    }
}

@media (min-width: 992px) {
    .cap-logo-height {
        max-height: 300px;
    }
}
