﻿#header {
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 90px;
    z-index: 999;
    background-color: rgba(40, 43, 49, 0.8);
    padding: 12px 25px;
    width: calc(100% - 390px);
    border-radius: 0 0 15px 15px
}

#header .menu-btn,
#header .logo .black,
body.light-mode #header .logo .white {
    display: none
}

body.light-mode #header .logo .black {
    display: block;
}

#header .exit {
    padding: 9px 15px;
    margin: 4px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#header .exit i {
    transform: rotate(180deg);
    margin-right: 5px
}

#header .toggle-dark {
    padding: 7px;
    margin-left: 20px;
    direction: ltr;
    display: inline-flex;
}

#header .toggle-dark .btn {
    width: 30px;
    height: 30px
}

#header .toggle-dark .bgz {
    top: 0;
    right: 0;
    height: 100%;
    z-index: 2
}

#header .toggle-dark .bt1 {
    margin-right: 5px
}

#header .toggle-dark:before {
    transition-duration: 0.3s;
    left: 7px;
    top: 7px;
    width: 30px;
    height: 30px;
    float: right;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    content: "";
    z-index: -1
}

body.dark-mode #header .toggle-dark:before {
    left: 7px
}

body.light-mode #header .toggle-dark:before {
    left: 42px;
    background-color: #ecc90d
}

body.dark-mode #header .toggle-dark .bt1 {
    color: var(--body)
}

body.light-mode #header .toggle-dark .bt2 {
    color: #fff
}

body.dark-mode #header .toggle-dark .dark-toggler,
body.light-mode #header .toggle-dark .light-toggler {
    display: none
}

#header .notif {
    margin-right: 10px;
}

#header .entery {
    float: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .right-side,
#header .left-side {
    display: inline-flex;
    align-items: center;
}

#header .right-side .logo {
    display: inline-block;
    height: 45px;
}

#header .right-side .logo img {
    width: 100%;
    height: 100%;
}

.fix-bg {
    z-index: -1;
    position: fixed;
    top: 0;
    right: 0
}

.fix-bg img {
    opacity: .1
}

.fix-bg:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--body));
    content: "";
    z-index: 1
}


.sidebar {
    scrollbar-width: thin;
    padding: 0 20px;
    position: fixed;
    bottom: 0;
    right: 0;
    overflow: auto;
    width: 270px;
    position: fixed;
    z-index: 9999;
    height: 100%;
    background-color: rgba(40, 43, 49, 0.8)
}

.sidebar .map_bg {
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .5;
    filter: grayscale(1)
}

.sidebar .character-image {
    width: 80px;
    height: 80px;
    margin-top: 30px;
}

.sidebar .avatar {
    height: 100%;
}

.sidebar .av-anim {
    display: inline-block
}

.sidebar .av-anim:before {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    content: "";
    right: 0;
    width: 80px;
    z-index: 10;
    position: absolute;
    top: 30px;
    height: 80px;
    z-index: 0;
    pointer-events: none;
    -webkit-animation: sonarWave2 2s linear infinite;
    animation: sonarWave2 2s linear infinite
}

.sidebar .name {
    margin: 8px 0 20px
}

.sidebar .info .inf {
    width: 50%
}

.sidebar .info .inf .inp {
    margin-top: 5px
}

.sidebar .info .inf .inp i {
    margin-left: 3px;
    color: #d79522
}

.sidebar .info .inf .inp i.i1 {
    color: #06c81b
}

.sidebar .menu {
    margin-bottom: 30px
}

.sidebar .menu h4 {
    margin: 25px 0 7px;
    opacity: .5
}

.sidebar .menu li a {
    padding: 10px 15px;
    margin: 5px 0
}

.sidebar .menu li a i {
    margin-left: 10px;
    width: 25px;
    text-align: center
}

.sidebar .menu li.active a {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05)
}

.sidebar .shop-btn {
    border-bottom: 4px rgba(0, 0, 0, 0.15) solid;
    padding: 10px 15px;
    background-color: #dfab0e;
    margin: 25px 0 5px
}

.sidebar .shop-btn i {
    margin-left: 3px
}


main {
    width: calc(100% - 340px);
    margin: 69px 275px 25px 0;
    padding: 0 25px
}

.col3 {
    width: calc(33.33% - 12.5px)
}

.col6 {
    width: calc(66.66% - 12.5px)
}

.col2 {
    width: calc(50% - 12.5px)
}

.onlines .hr {
    margin: 15px 0;
    height: 1px
}

.onlines .item {
    margin: 10px 0
}

.onlines .item span {
    left: 20px;
    bottom: 7px;
    padding: 4px 12px;
    visibility: hidden;
    opacity: 0
}

.onlines .item:hover span {
    visibility: visible;
    opacity: 1;
    left: 30px
}

.onlines .item .status {
    animation: blinker 1s linear infinite;
    width: 10px;
    height: 10px;
    bottom: 3px;
    right: 0;
    border: 2px var(--body) solid;
    background-color: #93fb2a
}

.onlines .item.offline {
    filter: grayscale(1)
}

.onlines .item.offline .status {
    animation: none
}

.rt-table td,
.rt-table th {
    text-align: right;
    padding: 12px 7px;
}

.rt-table tr {
    border-bottom: 1px var(--white) solid;
}

.rt-table tr:last-child {
    border-bottom: 0
}

.rt-table th {
    font-family: "dana";
    font-weight: 500
}

.top-page-boxes {
    width: 100%;
    display: flex;
}

.top-page-boxes .item {
    width: calc(33.33% - 25px);
    margin-left: 25px;
}

.top-page-boxes .item:last-child {
    margin-left: 0;
    width: 33.33%;
}

.top-page-boxes .item.item-circle {
    display: flex;
    align-items: center;
}

.top-page-boxes .item.item-circle .icon {
    margin: 2px 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
}

.top-page-boxes .item.item-circle .icon.ic2 {
    background: linear-gradient(150deg, #42a5f5, #5c6bc0);
}

.top-page-boxes .item.item-circle .inside {
    margin-right: 15px;
}

.top-page-boxes .item.item-circle .inside .ons {
    animation: blinker 1s linear infinite;
}

.middle-page-info {
    width: 100%;
    display: flex;
}

.middle-page-info .right-side {
    width: calc(33.33% - 25px);
    margin-left: 25px;
}

.middle-page-info .left-side {
    width: 66.66%;
}

.middle-page-info .right-side .rt-box {
    height: calc(100% - 25px);
}

.middle-page-info .left-side .rt-box {
    height: calc(50% - 25px);
}

.bottom-page-boxes {
    width: 100%;
    display: flex;
}

.bottom-page-boxes .rt-box:first-child {
    width: calc(50% - 25px);
    margin-left: 25px;
}

.bottom-page-boxes .rt-box:last-child {
    width: 50%;
    margin-left: 0;
}

.middle-page-info .right-side th {
    white-space: nowrap;
    overflow: hidden;
}

.shoping-items .item {
    padding: 15px;
    width: 200px;
    margin: 0 7.5px
}

.shoping-items .item .name .info {
    width: 100%;
    display: block;
    white-space: nowrap;
    float: right;
}

.slider-auto.shoping-items .item .name {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.slider-auto.shoping-items .item .name i {
    margin: 0 0 0 10px;
}

.shoping-items .item .name i {
    margin: 30px 0 0 8px;
    color: #dfab0e
}

.shoping-items .item .name span {
    margin-right: 5px
}

.shoping-items .item .price {
    margin: 12px 0 25px
}

.shoping-items .item .buy {
    padding: 8px 10px;
    background-color: #0aa86e;
    border-bottom: 3px rgba(0, 0, 0, 0.2) solid
}

.shoping-items .item .discount {
    background: var(--color);
    color: #fff;
    width: 18px;
    height: 40px;
    border-bottom: 1px dashed #fff;
    position: absolute;
    top: 0;
    left: 15px;
}

.shoping-items .item .discount span {
    height: 18px;
    font-size: .8em;
    font-weight: 500;
    display: block;
    transform: rotate(-90deg);
    white-space: nowrap;
    margin-top: 7px;
}

.shoping-items .item .price .price-amount {
    position: relative;
}

.shoping-items .item .price .price-amount.has-discount {
    font-size: 12px;
    color: var(--color);
}

.shoping-items .item .price .price-amount.has-discount::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color);
    position: absolute;
    top: calc(50% - 1px);
    right: 0px;
    rotate: -15deg;
}

.shoping-items .item .discount::after {
    width: 18px;
    height: 0;
    position: absolute;
    content: "";
    right: 0px;
    top: 40px;
    border: 9px solid var(--color);
    border-bottom-color: transparent;
}

.rt-box {
    backdrop-filter: blur(5px);
    padding: 20px;
    margin-top: 25px
}

.rt-box .title {
    margin-bottom: 10px
}

.rt-box .title .icon {
    margin-left: 10px
}

.rt-box .prest {
    padding-right: 80px
}

.rt-box .prest .brief {
    margin: 5px 0 0
}

.rt-box .prest i {
    transform: rotate(-45deg);
    font-size: 100px;
    right: -10px;
    bottom: -15px;
    opacity: .2
}


.last-updates li {
    padding: 10px 20px 10px 0
}

.last-updates li:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 25px;
    right: 0;
    float: right;
    border-radius: 50%;
    background-color: #e1aa04;
    opacity: .5
}

.last-updates li .date {
    margin-bottom: 3px
}


.last-blogs li {
    padding: 12px 0;
    border-bottom: 2px var(--white) dashed
}

.last-blogs li:last-child {
    border-bottom: 0
}

.last-blogs li .pic {
    width: 100px;
    height: 62px
}

.last-blogs li .inside {
    width: calc(100% - 115px);
    padding: 6px 0
}

.last-blogs li .inside .date {
    margin-top: 8px
}

.last-blogs li .inside h2:before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background-color: #53e104;
    opacity: .5;
    margin-left: 10px
}


.scrolls {
    overflow-x: auto
}

.onlines {
    padding: 15px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 80px;
    z-index: 9999;
    height: 100%;
    overflow-x: visible;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.onlines::-webkit-scrollbar {
    display: none
}

.onlines .hr {
    margin: 15px 0;
    height: 1px
}

.onlines .item {
    margin: 10px 0;
    width: 40px;
    height: 40px;
}

.has-character-image {
    position: relative
}

.has-character-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../img/skin_back.jpg');
    background-size: cover;
    background-position: center;
    inset: 0;
    z-index: -1;
    border-radius: 50px;
    filter: grayscale(.4);
}

.onlines .item span {
    left: 20px;
    bottom: 7px;
    padding: 4px 12px;
    visibility: hidden;
    opacity: 0;
    white-space: nowrap;
}

.onlines .item:hover span {
    visibility: visible;
    opacity: 1;
    left: 30px
}

.admin-tooltip {
    display: inline-block;
    padding: 4px 12px;
    color: #fff;
    z-index: 9999;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    translateX(0)
}

.onlines .item .status {
    animation: blinker 1s linear infinite;
    width: 10px;
    height: 10px;
    bottom: 3px;
    right: 0;
    border: 2px var(--body) solid;
    background-color: #93fb2a
}

.onlines .item.offline,
.admin-tooltip.offline {
    filter: grayscale(1)
}

.onlines .item.offline .status {
    animation: none
}


.scroll-check.vert:not(.no) {
    -webkit-mask-image: linear-gradient(to top, #ffffff00, #000 150px);
    mask-image: linear-gradient(to top, #ffffff00, #000 150px);
}

.scroll-check.vert:not(.no).up {
    -webkit-mask-image: linear-gradient(to top, #000 calc(100% - 150px), #ffffff00);
    mask-image: linear-gradient(to top, #000 calc(100% - 150px), #ffffff00);
}

.scroll-check.vert:not(.no).down.up {
    -webkit-mask-image: linear-gradient(to top, #ffffff00, #000 150px, #000 calc(100% - 150px), #ffffff00 100%);
    mask-image: linear-gradient(to top, #ffffff00, #000 150px, #000 calc(100% - 150px), #ffffff00 100%);
}

.scroll-check.horz:not(.no) {
    -webkit-mask-image: linear-gradient(to right, #ffffff00, #000 150px);
    mask-image: linear-gradient(to right, #ffffff00, #000 150px);
}

.scroll-check.horz:not(.no).right {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 150px), #ffffff00);
    mask-image: linear-gradient(to right, #000 calc(100% - 150px), #ffffff00);
}

.scroll-check.horz:not(.no).left.right {
    -webkit-mask-image: linear-gradient(to right, #ffffff00, #000 150px, #000 calc(100% - 150px), #ffffff00 100%);
    mask-image: linear-gradient(to right, #ffffff00, #000 150px, #000 calc(100% - 150px), #ffffff00 100%);
}


.titr-asli {
    margin-top: 25px
}

.titr-asli .location {
    margin-top: 8px
}

.titr-asli .location i {
    margin: 0 10px
}


.rt-table.type2 th,
.rt-table.type2 td {
    text-align: center
}

.rt-table.type2 th {
    background-color: rgb(0 0 0 / 10%);
}

.rt-table.type2 td a {
    color: #ddd
}

.rt-table.type2 td .btn {
    display: inline-block;
    padding: 3px 7px;
    margin: 3px
}

.rt-table.type2 td .btn.c1 {
    background-color: var(--color);
    color: #fff
}

.rt-table.type2 td .btn.c2 {
    background-color: #fff;
    color: #444
}

.rt-table.type2 .badge {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 3px
}

.shoping-payment {
    margin-top: 5%;
}

.shoping-payment .icon {
    font-size: 40px;
    margin: 25px 0 15px;
    color: #dfab0e
}

.shoping-payment .btn {
    padding: 8px 12px;
    margin-top: 15px;
    display: inline-block
}

.shoping-payment p {
    line-height: 1.8
}

.paginate {
    margin-top: 25px
}

.paginate a,
.paginate span {
    font-family: yekan;
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px 9px;
    border-radius: 30px;
    background-color: var(--white);
    color: #fff
}

.paginate span {
    background-color: var(--color)
}

.paginate a:hover {
    background-color: #fff;
    color: var(--bg)
}

.paginate:empty,
.page-next-prev:empty {
    display: none
}

.inactive-prev-next-btn {
    background-color: var(--white) !important;
    opacity: 0.5 !important;
}

.text-danger {
    color: #ea3333
}

.text-success {
    color: #23d223
}

.text-secondary {
    opacity: .65
}

.car-sx {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.item-car {
    width: calc(33.33% - 25px);
    display: inline-block;
    margin: 25px 12.5px 0;
}

.item-car img,
.item-car .scrolls table,
.item-car .scrolls tbody,
.item-car .scrolls tr,
.houses-container table,
.houses-container tbody,
.houses-container tr {
    width: 100%;
    display: block;
}

.friends-sx {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.friends-sx .item-friend {
    width: calc(25% - 25px);
    display: inline-block;
    margin: 25px 12.5px 0;
    padding: 0;
    position: relative;
}

.friends-sx .item-friend a {
    width: 100%;
    display: flex;
    align-items: center;
}

.friends-sx .item-friend .profile-pic {
    width: 50px;
    height: 50px;
    background-color: rgb(28 32 38);
    margin-right: -12.5px;
    padding: 4px;
    position: relative;
}

.friends-sx .item-friend .profile-pic .status {
    width: 10px;
    height: 10px;
    position: absolute;
    background: #93fb2a;
    right: 3px;
    top: 4px;
}

.friends-sx .item-friend .profile-pic .status.off {
    background: #fb2a2a;
}

.friends-sx .item-friend .details {
    width: calc(100% - 60px);
    margin-right: 10px;
    color: #fff;
}

.friends-sx .item-friend .details span {
    font-size: 14px;
    font-weight: 900;
    width: 100%;
    display: block;
}

.friends-sx .item-friend .details span.lvl {
    color: #878787;
}

.refs-sx {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.refs-sx .referral-item {
    width: calc(25% - 25px);
    margin: 25px 12.5px 0;
}

.refs-sx .referral-item table,
.refs-sx .referral-item table tbody,
.refs-sx .referral-item table tbody tr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.refs-sx .referral-item table tbody tr th {
    width: 25%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.refs-sx .referral-item table tbody tr td {
    width: 75%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.refs-sx .referral-item img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    border: 1px solid var(--white);
    padding: 5px;
    background-color: rgb(0 0 0 / 10%);
}

.refs-sx .referral-item table tbody tr td.off {
    color: #fb2a2a;
}

.refs-sx .referral-item table tbody tr td.on {
    color: #93fb2a;
}

.skills-sx {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.skills-sx .item-skill {
    width: calc(25% - 25px);
    margin: 25px 12.5px 0;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.skills-sx .item-skill .detail {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    z-index: 9999;
}

.skills-sx .item-skill .detail .name {
    width: 100%;
    display: block;
    background-color: rgb(0 0 0 / 20%);
    padding: 12px;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'dana';
    font-weight: 900;
}

.skills-sx .item-skill .detail .skill {
    width: 100%;
    display: block;
    margin-top: 10px;
    font-weight: 900;
    direction: ltr;
    color: #555;
    font-size: 12px;
    font-family: dana;
}

.skills-sx .item-skill .detail .skill samp {
    color: var(--color);
    font-size: 20px;
    font-family: dana;
    font-weight: 900;
}

.skills-sx .item-skill .img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.skills-sx .item-skill .img::before {
    content: '';
    width: 130px;
    height: 130px;
    position: absolute;
    border-radius: 50%;
    background-color: var(--color);
    filter: blur(50px);
}

.skills-sx .item-skill .img img {
    position: relative;
    z-index: 9999;
    width: 200px;
    height: 200px;
    display: block;
}

.houses-container th,
.houses-container td,
.item-car .scrolls th,
.item-car .scrolls td,
.player-details-tab section th,
.player-details-tab section td {
    width: 50%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-car .scrolls tr,
.houses-container tr {
    display: flex;
    justify-content: space-between;
}

.houses-container th,
.houses-container td {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.item-car .rt-box {
    margin-top: 12px
}

#vehicles_tab.loading .paginate>* {
    background-color: var(--white) !important;
    opacity: 0.5 !important;
}

#privacyToggleBtn {
    display: flex;
    padding: 8px 15px;
    align-items: center;
    gap: 8px;
    user-select: none;
    background-color: #00e676;
    color: #00471d;
}

#privacyToggleBtn.own:hover {
    opacity: .8;
}

#privacyToggleBtn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#privacyToggleBtn.private {
    background-color: #f44336;
    color: #fff;
}

#privacyStatusText {
    white-space: nowrap;
}

.skeleton {
    background: linear-gradient(90deg, rgba(40, 43, 49, 1), rgb(87 90 95), rgba(40, 43, 49, 1));
    background-size: 200%;
    animation: skeleton-animation 1s infinite reverse;
}

.player-details-tab section .entery.skeleton {
    height: 229px;
}

@keyframes skeleton-animation {
    from {
        background-position: -100% 0;
    }

    to {
        background-position: 100% 0;
    }
}

.index-shop.shoping-items {
    margin-top: 10px;
    width: calc(100% + 20px);
    transform: translateX(10px);
}

.index-shop.shoping-items .item {
    width: calc(20% - 20px);
    margin: 10px;
    backdrop-filter: blur(10px)
}

.index-shop.shoping-items .item .name i {
    width: 100%;
    float: right;
    margin: 15px 0;
    font-size: 35px
}

.emty {
    padding: 10px;
    line-height: 1.8;
    background-color: #d02c3c;
    color: #fff
}


.top-account {
    margin-top: 25px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.top-account .pic {
    width: 100px;
    height: 100px;
    display: inline-block;
    position: relative;
}

.top-account .pic .img {
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.top-account .pic img {
    width: 100%;
    height: 100%;
    display: block;
}

.top-account .pic .status {
    animation: blinker 1s linear infinite;
    width: 16px;
    height: 16px;
    bottom: 13px;
    right: 0px;
    border: 2px var(--body) solid;
    background-color: #93fb2a;
}

.top-account .pic .status::before {
    content: "";
    width: 13px;
    z-index: 10;
    position: absolute;
    height: 13px;
    z-index: 0;
    pointer-events: none;
    -webkit-animation: sonarWave3 2s linear infinite;
    animation: sonarWave3 2s linear infinite;
    background-color: #b5ff6a;
    border-radius: 50%;
}

.top-account .pic .status.off {
    background-color: #fb2a2a;
}

.top-account .pic .status.off::before {
    background-color: #ff6b6b;
}

.married-info {
    width: 100%;
    display: flex;
    background: linear-gradient(to left, #ff9be452, #0cc13f00);
    border-radius: 0 7px 34px 34px;
    color: #fff;
    align-items: center;
    overflow: hidden;
    font-weight: 300;
    font-size: 14px;
    margin-top: 12px;
}

.married-info .info {
    padding: 12px 15px;
    color: #552147;
    background-color: #ff9be4;
    border-radius: 34px 7px 34px 34px;
    margin-left: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.married-info .info i {
    margin-left: 5px;
}

.player-details-tab {
    margin: 0;
}

.player-details-tab .top-player-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.player-details-tab .top-player-detail section:first-child {
    width: 66.66%;
    display: inline-block;
}

.player-details-tab .top-player-detail section:last-child {
    width: calc(33.33% - 25px);
    margin-right: 25px;
    display: inline-block;
}

.player-details-tab section .entery,
.player-details-tab section .entery table,
.player-details-tab section .entery tbody,
.player-details-tab section tr {
    width: 100%;
    display: block;
}

.player-details-tab .account-details .entery table {
    display: flex;
    flex-wrap: wrap;
}

.player-details-tab .account-details .entery tbody {
    width: 50%;
}

.player-details-tab section tr {
    display: flex;
}

.bottom-player-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.bottom-player-detail section:first-child {
    width: calc(50% - 25px);
    margin-left: 25px;
}

.bottom-player-detail section:last-child {
    width: 50%;
    margin-left: 0;
}

.top-account .inside {
    width: calc(100% - 120px);
    display: block;
}

.top-account .inside .character-name {
    display: block;
}

.top-account .inside .desc {
    margin-top: 5px;
    width: 100%;
    display: block;
}

.top-account .inside .character-name.skeleton {
    height: 33px;
    width: 250px;
}

.top-account .inside .desc.skeleton {
    height: 19px;
    width: 100px;
}

.top-account .inside .tab-btns {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.top-account .inside .tab-btns .btn {
    margin-left: 12px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    border-bottom: 2px rgba(255, 255, 255, 0.1) solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.top-account .inside .tab-btns .btn.active {
    background-color: var(--color)
}

.top-account .inside .tab-btns .btn i {
    margin-left: 10px
}

.top-account .inside .profile-name {
    align-items: center;
    flex-wrap: wrap;
}

.top-account .inside .profile-name #privacyToggleBtn {
    margin-right: 15px;
}

.loader-container {
    width: 100%;
    position: absolute;
    z-index: 9999999;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 12.5px 0;
    opacity: 0.7;
    min-height: 10vh;
    display: none;
}

.loading .loader-container {
    display: flex;
}

.loader-spinner {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
}

.loader-spinner:before,
.loader-spinner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader-spinner:after {
    color: var(--color);
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {

    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

/* .profile-settings {
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.profile-settings>.info {
    background-color: #fff;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 900;
    border-radius: 50px;
    color: #272727;
}

.profile-settings>.arrow {
    color: #fff;
    margin: 0 10px;
} */

.top-account~.tab {
    display: none;
    position: relative;
}

.top-account~.tab.active {
    display: block
}

#adminhistory_tab .headline-btns {
    width: 100%;
    display: flex;
    margin-top: 15px;
    flex-wrap: wrap;
}

#adminhistory_tab .headline-btns .btn-item {
    margin-left: 12px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    border-bottom: 2px rgba(255, 255, 255, 0.1) solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background-color: var(--white);
    cursor: pointer;
    border-radius: 8px;
    color: #ddd;
    font-size: 14px;
}

#adminhistory_tab .headline-btns .btn-item.active {
    background-color: var(--color);
}

#adminhistory_tab .history-sections {
    width: 100%;
    display: block;
    margin-top: 15px;
}

#adminhistory_tab .history-sections .history-list {
    width: 100%;
    display: none;
}

#adminhistory_tab .history-sections .history-list>.table {
    white-space: nowrap;
    overflow: auto;
    border: 1px solid var(--white);
    border-radius: 8px;
}

#adminhistory_tab .history-sections .history-list>.table tr {
    border-bottom: 1px solid var(--white);
    width: 100%;
    display: flex;
}

#adminhistory_tab .history-sections .history-list>.table tr:last-child {
    border-bottom: 0;
}

#adminhistory_tab .history-sections .history-list>.table tr td,
#adminhistory_tab .history-sections .history-list>.table tr th {
    width: 100%;
    overflow: unset;
    text-overflow: unset;
    min-width: 100px;
}

#adminhistory_tab .history-sections .history-list.active {
    display: block;
}

#header .exit:hover,
.sidebar .shop-btn:hover,
.shoping-items .item .buy:hover,
.rt-table.type2 td a:hover,
.rt-table.type2 td button:hover,
.shoping-payment .btn:hover,
.top-account .inside .tab-btns .btn:hover {
    opacity: .8
}

.last-blogs li a:hover .inside h2,
.sidebar .menu li a:hover {
    color: #fff
}


.bg-none {
    background: none !important;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

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

.discount-code-page {
    width: 100%;
    margin-top: 10%;
}

.discount-code-page .page-wrapper {
    width: 100%;
    background-color: rgb(40 43 49);
    border-radius: 25px;
    padding: 30px;
    color: #fff;
    text-align: center;
    box-shadow: 0px 0px 20px rgb(77 77 77 / 70%);
}

.discount-code-page .form {
    width: 100%;
    display: block;
    background-color: rgb(30 32 37);
    border-radius: 26px;
    padding: 30px 0;
}

.form .input-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 10px 30px;
}

.form .input-group {
    width: 48%;
    border-radius: 10px;
    padding: 15px;
    background-color: rgb(40 43 49);
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    background-color: #3c3e41;
    border: 1px solid #ffffff1f;
    border-radius: 5px;
    padding: 6px 12px;
    outline: 0;
    color: #fff;
    font-size: 14px;
}

.form-submit-btn {
    width: calc(100% - 60px);
    display: flex;
    justify-content: center;
    margin: 25px 30px 0px;
}

.discount-code-page .create-btn {
    background: linear-gradient(to right, #0aa86e, #0aa86e);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.pinlock-page {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 25px;
}

.pinlock-page .right-side {
    width: calc(25% - 25px);
    margin-left: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 90vh;
    border-radius: 15px;
    background-color: var(--white);
    backdrop-filter: blur(5px);
    padding: 20px 50px;
    text-align: center;
    overflow: hidden;
}

.pinlock-page .right-side .details {
    position: relative;
    z-index: 1;
}

.pinlock-page .right-side i {
    font-size: 85px;
    color: var(--color);
    font-weight: 600;
}

.pinlock-page .right-side .title {
    margin-top: 15px;
    color: var(--color);
    font-weight: 900;
    font-size: 30px;
}

.pinlock-page .right-side .title {
    margin-top: 15px;
    color: var(--color);
    font-weight: 900;
    font-size: 30px;
}

.pinlock-page .right-side .description {
    color: #ddd;
    margin-top: 10px;
    line-height: 28px;
    font-weight: 500;
    word-spacing: 6px;
    font-size: 18px;
}

.pinlock-page .right-side img.second {
    position: absolute;
    bottom: -43px;
    right: -26px;
}

.pinlock-page .right-side img.first {
    position: absolute;
    top: -57px;
    left: -45px;
}

.pinlock-page .left-side {
    width: 75%;
    display: inline-flex;
    align-items: center;
    position: relative;
    background-color: var(--white);
    backdrop-filter: blur(5px);
    text-align: center;
    border-radius: 15px;
    padding: 40px 50px;
    overflow: hidden;
    min-height: 500px;
}

.pinlock-page .left-side::before {
    content: "";
    width: 1000px;
    height: 1000px;
    background-color: var(--color);
    position: absolute;
    border-radius: 100px;
    transform: rotate(45deg);
    left: -350px;
    box-shadow: 0px 0px 50px var(--color);
}

.pinlock-page .left-side .first {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 50%;
    bottom: 0;
}

.pinlock-page .left-side .form-box {
    display: flex;
    width: 50%;
    color: #fff;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
}

.pinlock-page .left-side.completed .form-box {
    width: 100%;
}

.pinlock-page .left-side.completed::before,
.pinlock-page .left-side.completed .first {
    opacity: 0.2;
}

.pinlock-page .left-side .text-info {
    width: 100%;
    display: flex;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
    flex-wrap: wrap;
}

.pinlock-page .left-side .form-btn {
    width: 100%;
    background: var(--color) linear-gradient(-10deg, var(--color), #ffa800);
    border: 0;
    border-bottom: 4px rgba(0, 0, 0, 0.2) solid;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "yekan", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif, 'Font Awesome 5 Pro';
}

.pinlock-page .left-side .form-btn.copy {
    background: #7b7b7b;
}

.pinlock-page .left-side .form-btn.save {
    background: #2ba50c linear-gradient(-10deg, #2ba50c, #2cd900);
}

.pinlock-page .left-side .form-btn:hover {
    opacity: .8;
}

.pinlock-page .left-side .form-btn i {
    font-size: 18px;
    margin-left: 10px;
}

.pinlock-page .left-side .text-info .phone {
    direction: ltr;
    letter-spacing: 1px;
    margin: 0 10px;
    font-weight: 900;
    color: var(--color);
    text-shadow: 0px 0px 5px rgba(40, 43, 49, 1);
}

.pinlock-page .left-side .input-text-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.pinlock-page .left-side .input-text-box i {
    left: 50px;
    color: var(--color);
    position: absolute;
    font-size: 19px;
}

.pinlock-page .left-side .input-text-box .input {
    padding: 15px 15px 15px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 0;
    border-bottom: 4px rgba(0, 0, 0, 0.05) solid;
    direction: ltr;
    text-align: right;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    width: 100%;
    text-align: center;
    letter-spacing: 10px;
}

.pinlock-page .left-side .alert {
    margin-top: 10px;
}

.pinlock-page .left-side form {
    display: block;
    width: 100%;
    text-align: center;
}

.pinlock-page .left-side .input.pin {
    border: 2px dashed rgb(133 133 133 / 20%);
    color: var(--color);
    font-weight: 900;
}

.pinlock-page .left-side .info-pin {
    display: block;
    line-height: 27px;
    color: rgb(221 159 0);
    font-weight: 500;
    width: 100%;
}

.pinlock-page .left-side .info-pin b {
    font-weight: 900;
    color: rgb(255 183 0);
}

.pinlock-page .left-side .details {
    width: 100%;
    display: block;
}

.pinlock-page .left-side .details .title {
    color: #2fdd2f;
    width: 100%;
    display: block;
}

.pinlock-page .left-side .details .title i {
    font-size: 95px;
    font-weight: 600;
    display: block;
}

.pinlock-page .left-side .details .title .info-t {
    width: 100%;
    display: block;
    margin-top: 20px;
    font-weight: 900;
    font-size: 22px;
}

.pinlock-page .left-side .info-pin.detail {
    color: rgb(0 161 0);
}

.pinlock-page .left-side .info-pin.detail b {
    color: rgb(0 255 0);
}

.pinlock-page .left-side .detail-box {
    width: 100%;
    display: block;
    margin-top: 15px;
    background-color: #2fdd2f21;
    border-radius: 8px;
    padding: 20px 30px;
    text-align: center;
    border-top: 6px solid #2fdd2f;
}

.pinlock-page .left-side .detail-box .detail-section {
    font-weight: 900;
    color: #2fdd2f;
    font-size: 18px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.pinlock-page .left-side .detail-box .detail-section .section-title {
    font-weight: 900;
    color: #2fdd2f;
    font-size: 18px;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.pinlock-page .left-side .detail-box .detail-section .section-title i {
    font-size: 20px;
    margin-left: 10px;
}

.pinlock-page .left-side .detail-box .detail-section .section-desc {
    margin-top: 7px;
    color: #ddd;
    width: 100%;
    display: block;
}

.pinlock-page .left-side .detail-box .detail-section::before {
    content: "";
    border-top: 1px solid #ffffff61;
    width: 300px;
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
}

.pinlock-page .left-side .detail-box .detail-section:first-child::before {
    display: none;
}

.pinlock-page .left-side .detail-box .detail-section .list {
    width: 100%;
    display: block;
    margin-top: 15px;
    list-style-type: decimal;
    text-align: right;
    padding-right: 50px;
}

.pinlock-page .left-side .detail-box .detail-section .list li {
    list-style-type: decimal;
    margin-bottom: 10px;
    font-weight: 300;
    width: 100%;
}

.pinlock-page .left-side .detail-box .detail-section.section-right {
    text-align: right;
}

.pinlock-page .left-side .detail-box .detail-section.section-right .section-title {
    justify-content: right;
    text-align: right;
}

.pinlock-page .left-side .detail-box .detail-section .important-notes {
    width: 100%;
    display: block;
    background-color: #bd1a1a30;
    color: #ff3131;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #ff3131;
}

.pinlock-page .left-side .detail-box .detail-section .important-notes .section-title {
    color: #ff3131;
}

.pinlock-page .left-side .detail-box .detail-section .important-notes .list li {
    font-weight: 900;
    list-style-type: disc;
}

.ticket-panel.create-panel {
    display: block;
    width: 100%;
}

.ticket-panel.create-panel .container-box {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.ticket-panel.create-panel .container-box .side-item {
    backdrop-filter: blur(5px);
    padding: 20px;
}

.ticket-panel.create-panel .container-box .side-item:nth-child(1) {
    width: calc(100% - 370px);
}

.ticket-panel.create-panel .container-box .side-item:nth-child(2) {
    width: 350px;
}

.ticket-panel.create-panel .container-box .side-item .title {
    width: 100%;
    display: block;
    color: var(--color);
    font-weight: 700;
}

.ticket-panel.create-panel .container-box .side-item .notes-list {
    color: #d1d1d1;
    width: 100%;
    display: block;
    list-style-type: decimal;
    margin-top: 10px;
}

.ticket-panel.create-panel .container-box .side-item .notes-list li {
    list-style-type: decimal;
    margin-bottom: 15px;
    margin-right: 15px;
    width: calc(100% - 15px);
    line-height: 25px;
    font-weight: 400;
    font-size: 14px;
}

.ticket-panel.create-panel .container-box .side-item .notes-list li::marker {
    color: #fff;
}

.ticket-panel.create-panel .container-box .side-item .notes-list li:last-child {
    margin-bottom: 0;
}

.ticket-panel.create-panel .container-box .side-item .note-box {
    width: 100%;
    display: block;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    border: 1px dashed var(--color);
    padding: 10px;
    border-radius: 10px;
    background-color: #ee731a0f;
    color: var(--color);
    margin-top: 15px;
    line-height: 25px;
}

.ticket-panel.create-panel form,
.ticket-panel.create-panel .create-box {
    width: 100%;
    display: block;
}

.ticket-panel.create-panel form {
    height: 100%;
}

.ticket-panel.create-panel .create-box {
    margin-bottom: 15px;
}

.ticket-panel.create-panel .create-box.content {
    height: calc(100% - 85px);
}

.ticket-panel.create-panel .create-box.content .input-item {
    height: calc(100% - 64px);
}

.ticket-panel.create-panel .create-box:last-child {
    margin-bottom: 0;
}

.ticket-panel.create-panel .create-box.top-items {
    display: flex;
    justify-content: space-between;
}

.ticket-panel.create-panel .create-box.top-items .input-item {
    width: calc(50% - 10px);
    display: inline-block;
    height: calc(100% - 64px);
    margin-bottom: 15px;
}

.ticket-panel.create-panel .create-box.top-items .input-item:last-child {
    margin-bottom: 0;
}

.ticket-panel.create-panel .create-box .input-item label {
    width: 100%;
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 8px;
}

.ticket-panel.create-panel .create-box .input-item .input {
    width: 100%;
    display: block;
    height: 35px;
    border-radius: 5px;
    outline: 0;
    border: 0;
    background-color: #ffffff0f;
    color: #fff;
    padding: 5px 10px;
    min-width: 100%;
    max-width: 100%;
}

.ticket-panel .validation-errors {
    margin-top: 16px;
}

.ticket-panel.create-panel .create-box .input-item textarea.input {
    min-height: calc(100% - 27px);
    height: calc(100% - 27px);
    padding: 20px;
    resize: vertical;
}

.ticket-panel.create-panel .create-box .input-item .nice.input {
    display: flex;
}

.ticket-panel.create-panel .create-box .input-item .nice.input .list {
    background-color: rgba(40, 43, 49, 1);
    color: #fff;
}

.ticket-panel.create-panel .create-box .input-item .nice.input .list .option:hover,
.ticket-panel.create-panel .create-box .input-item .nice.input .list .option.focus,
.ticket-panel.create-panel .create-box .input-item .nice.input .list .option.selected.focus {
    background-color: rgba(255, 255, 255, 0.06);
}

.ticket-panel.create-panel .create-box .btn-box {
    display: block;
    width: 100%;
    margin-top: 15px;
}

.ticket-panel.create-panel .create-box .btn-box button {
    background-color: var(--color);
    color: #fff;
    border-radius: 8px;
    padding: 15px;
    border: 0;
    outline: 0;
    width: 100%;
    cursor: pointer;
}

.ticket-panel.create-panel .create-box .btn-box button:hover {
    opacity: .8;
}

.ticket-detail-box {
    background-color: var(--white);
    backdrop-filter: blur(5px);
    padding: 20px;
    width: 100%;
    display: block;
    border-radius: 15px;
    margin-top: 15px;
    color: #fff;
}

.ticket-detail-box .headline-title {
    width: 100%;
    display: block;
}

.ticket-detail-box .headline-title h2 {
    width: 100%;
    display: flex;
    position: relative;
    font-weight: 600;
    font-size: 20px;
    align-items: center;
    padding-right: 20px;
}

.ticket-detail-box .headline-title h2::before {
    content: "";
    width: 6px;
    height: 30px;
    background-color: var(--color);
    position: absolute;
    right: 0;
    border-radius: 30px;
}

.ticket-detail-box .headline-title h2::after {
    content: "";
    position: absolute;
    right: 6px;
    border-left: 6px solid transparent;
    border-right: 6px solid var(--color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.ticket-detail-box .headline-title .ticket-info {
    background-color: #1b1d21;
    background: linear-gradient(to right, #282b3100, #1b1d21, #1b1d21, #1b1d21);
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 15px;
    border-radius: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.ticket-detail-box .headline-title .ticket-info .item {
    display: inline-flex;
    align-items: center;
    margin: 7px 0 7px 25px;
}

.ticket-detail-box .headline-title .ticket-info .item .icon {
    width: 30px;
    height: 30px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: 8px;
}

.ticket-detail-box .headline-title .ticket-info .item span {
    font-size: 13px;
    color: #bbbbbb;
    font-weight: 300;
    margin-top: 1px;
}

#scroll_to_last_message {
    cursor: pointer;
}

#scroll_to_last_message span {
    color: var(--color);
}

.ticket-detail-box .ticket-body {
    width: 100%;
    display: block;
    margin-top: 15px;
}

.ticket-detail-box .ticket-body .message-list {
    width: 100%;
    display: block;
}

.ticket-detail-box .ticket-body .message-list .msg-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.ticket-detail-box .ticket-body .message-list .msg-item:last-child {
    margin-bottom: 0 !important;
}

.ticket-detail-box .ticket-body .message-list .msg-item .pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #bbbbbb;
    padding: 4px;
}

.ticket-detail-box .ticket-body .message-list .msg-item .pic * {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.ticket-detail-box .ticket-body .msg-body {
    width: calc(100% - 70px);
    display: inline-block;
}

.ticket-detail-box .ticket-body .msg-body .content-info {
    background-color: var(--white);
    box-shadow: 0 2px 0 rgb(255 255 255 / 30%);
    -webkit-box-shadow: rgb(255 255 255 / 30%) 0 2px 0;
    padding: 10px 15px;
    border-radius: 10px;
    max-width: calc(100% - 70px);
    display: inline-block;
    position: relative;
    color: #fff;
    min-width: 50%;
}

.ticket-detail-box .ticket-body .msg-body .content-info::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-color: transparent transparent transparent rgb(255 255 255 / 30%);
    border-style: solid;
    border-width: 5px 0 5px 9.4px;
    position: absolute;
    top: 20px;
    z-index: 1;
    right: -9px;
}

.ticket-detail-box .ticket-body .msg-body .bottom-ticket-info {
    width: 100%;
    display: flex;
    border-top: 1px solid rgb(255 255 255 / 7%);
    padding-top: 10px;
    margin-top: 12px;
    justify-content: space-between;
    align-items: center;
}

.ticket-detail-box .ticket-body .msg-body .bottom-ticket-info .charname {
    font-size: 13px;
    display: inline-flex;
    font-weight: 500;
    align-items: center;
}

.ticket-detail-box .ticket-body .msg-body .bottom-ticket-info .charname .rank {
    margin: 0 10px;
}

.ticket-detail-box .ticket-body .msg-body .bottom-ticket-info .time {
    font-size: 11px;
    font-weight: 500;
}

.ticket-detail-box .ticket-body .msg-body .content-editor {
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    width: 100%;
    display: block;
    text-align: right;
}

.ticket-detail-box .ticket-body .msg-body .content-editor .mentioned,
.ticket-detail-box .reply-box.admin .editor-container .mentioned {
    background-color: #ee731a29;
    padding: 2px 10px;
    display: inline-block;
    border-radius: 7px;
    font-weight: 500;
    color: var(--color);
    direction: ltr;
}

.ticket-detail-box .ticket-body .msg-body .content-editor .mentioned.mentioned-rank,
.ticket-detail-box .reply-box.admin .editor-container .mentioned.mentioned-rank {
    color: #fff;
}

.ticket-detail-box .ticket-body .message-list .msg-item.staff,
.ticket-detail-box .ticket-body .msg-item.staff .msg-body .bottom-ticket-info,
.ticket-detail-box .ticket-body .msg-item.staff .msg-body .bottom-ticket-info .charname {
    direction: ltr;
}

.ticket-detail-box .ticket-body .msg-item.staff .msg-body {
    text-align: left;
}

.ticket-detail-box .ticket-body .msg-item.staff .msg-body .content-info::before {
    border-color: transparent rgb(255 255 255 / 30%) transparent transparent;
    border-width: 5px 9.4px 5px 0;
    left: -9px;
    right: unset;
}

.ticket-detail-box .reply-box {
    width: 100%;
    display: block;
}

.ticket-detail-box .reply-box form {
    width: 100%;
    display: flex;
    margin-top: 25px;
    position: relative;
    align-items: center;
}

.ticket-detail-box .reply-box form textarea {
    width: calc(100% - 20px);
    display: block;
    height: 100px;
    min-height: 100px;
    min-width: calc(100% - 20px);
    resize: vertical;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .1);
    outline: 0;
    font-size: 14px;
    background-color: #ffffff0f;
    color: #fff;
}

.ticket-detail-box .reply-box form .send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    border: 0;
    background-color: var(--color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    left: 0;
    box-shadow: 0 4px 4px rgb(0 0 0 / 10%);
    outline: 0;
    cursor: pointer;
}

.ticket-detail-box .reply-box form .send-btn i {
    transition: 0s transform;
    -webkit-transition: 0s transform;
}

.ticket-detail-box .reply-box form .send-btn:hover {
    opacity: 0.8;
}

.ticket-detail-box .reply-box form .send-btn:hover i {
    transition: .5s transform;
    -webkit-transition: .5s transform;
    transform: rotate(360deg)
}

.ticket-detail-box .reply-box.admin form {
    flex-wrap: wrap;
}

.ticket-detail-box .reply-box.admin form .editor-container {
    width: 100%;
    display: block;
}

.ticket-detail-box .reply-box.admin form .send-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.ticket-detail-box .reply-box.admin form .send-box .nice {
    width: 235px;
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.06);
    color: rgb(255, 255, 255);
    min-width: 235px;
    max-width: 235px;
    border-radius: 5px;
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    padding: 5px 10px;
}

.ticket-detail-box .reply-box.admin form .send-box button {
    width: calc(100% - 250px);
    border-radius: 5px;
    display: inline-flex;
    padding: 9px 15px;
    background-color: var(--color);
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-align: center;
    align-items: center;
    justify-content: center;
    outline: 0;
    border: 0;
    cursor: pointer;
}

.ticket-detail-box .reply-box.admin form .send-box button:hover {
    opacity: 0.8;
}

.ticket-detail-box .reply-box.admin form .send-box .nice .list {
    background-color: rgb(40, 43, 49);
    color: rgb(255, 255, 255);
}

.ticket-detail-box .reply-box.admin form .send-box .nice .list .option:hover,
.ticket-detail-box .reply-box.admin form .send-box .nice .list .option.focus,
.ticket-detail-box .reply-box.admin form .send-box .nice .list .option.selected.focus {
    background-color: rgba(255, 255, 255, 0.06);
}

.ticket-detail-box .reply-box.admin .editor-container .ck-content {
    height: 200px;
    background-color: rgba(255, 255, 255, 0.06);
    border: unset;
}

.ticket-detail-box .reply-box.admin .editor-container * {
    border: 0 !important;
}

.ticket-detail-box .reply-box.admin .editor-container .ck-toolbar {
    background: rgba(40, 43, 49, 1);
}

.ticket-detail-box .reply-box.admin .editor-container .ck-toolbar__separator {
    background: var(--white);
}

.ticket-detail-box .reply-box.admin .editor-container .ck.ck-icon.ck-icon_inherit-color :not([fill]) {
    fill: rgb(255 255 255);
}

.ticket-detail-box .reply-box.admin .editor-container .ck.ck-button.ck-on,
.ticket-detail-box .reply-box.admin .editor-container a.ck.ck-button.ck-on,
.ticket-detail-box .reply-box.admin .editor-container .ck.ck-button:not(.ck-disabled):hover,
.ticket-detail-box .reply-box.admin .editor-container a.ck.ck-button:not(.ck-disabled):hover {
    background: var(--white);
    color: #fff;
}

.ticket-detail-box .reply-box.admin .editor-container {
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 15px;
    overflow: hidden;
}

.ticket-detail-box [data-message_action] {
    font-size: 12px;
    cursor: pointer;
}

.ticket-detail-box [data-message_action="delete"] button {
    color: var(--danger);
    outline: none;
    border: none;
    background: none;
}

.ticket-detail-box [data-message_action="edit"] {
    color: var(--info);
}

/* apply styles to reply-box which is after a .msg-item */
.ticket-detail-box.is-editing .msg-item:has(+ .reply-box) {
    margin-bottom: 0 !important;
    border-top: 1px dashed;
    border-radius: 8px 8px 0 0;
}

/* apply styles to reply-box which is after a .msg-item */
.ticket-detail-box.is-editing .reply-box {
    padding-bottom: 25px;
    border-bottom: 1px dashed;
    border-radius: 0 0 8px 8px;
}

.ticket-detail-box.is-editing .msg-item:has(+ .reply-box),
.ticket-detail-box.is-editing .reply-box {
    padding-top: 25px;
    padding-inline: 25px;
    border-inline: 1px dashed;
}

/* apply styles to reply-box which is after a .msg-item */
.ticket-detail-box.is-editing .reply-box + .msg-item {
    margin-top: 25px;
}

.ck.ck-list {
    background-color: rgb(40, 43, 49) !important;
    color: #fff !important;
}

.ck.ck-list__item>.ck-button:not(.ck-list-item-button):hover:not(.ck-disabled) {
    background: rgba(255, 255, 255, 0.06) !important;
}

.ck.ck-list__item>.ck-button.ck-on:not(.ck-list-item-button),
.ck.ck-list__item>.ck-button.ck-on:not(.ck-list-item-button):hover:not(.ck-disabled) {
    background: var(--ck-color-list-button-on-background) !important;
    color: var(--ck-color-list-button-on-text) !important;
}

.ticket-detail-box .added-users-box {
    border-top: 1px solid rgb(255 255 255 / 11%);
    padding-top: 25px;
    margin-top: 25px;
}

.ticket-detail-box .added-users-box h4 {
    width: 100%;
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.ticket-detail-box .added-users-box .add-tbl {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-detail-box .added-users-box .select2 {
    width: calc(100% - 150px) !important;
    display: block;
}

.ticket-detail-box .added-users-box .select2 .select2-selection {
    padding: 0;
    background-color: var(--white);
    border: 0;
}

.ticket-detail-box .added-users-box button {
    width: 135px;
    border-radius: 5px;
    display: inline-flex;
    padding: 6px 15px;
    background-color: var(--color);
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-align: center;
    align-items: center;
    justify-content: center;
    outline: 0;
    border: 0;
    cursor: pointer;
}

.ticket-detail-box .added-users-box button:hover {
    opacity: 0.8;
}

.ticket-detail-box .added-users-box .select2 textarea {
    color: #fff;
}

.ticket-detail-box .added-users-box .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: rgba(40, 43, 49, 1);
    border: 0;
    padding: 2px 7px 2px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 17%);
}

.ticket-detail-box .added-users-box .select2-container--default .select2-selection--multiple .select2-selection__choice button {
    width: 22px;
    margin: 0;
    border: 1px solid rgb(255 255 255 / 17%);
}

.ck.ck-list__item>.ck-button:not(.ck-list-item-button) .ck-button__label {
    color: #fff;
}

.ticket-items .t-status {
    padding: 5px 10px;
    border-radius: 5px;
}

.ticket-items .t-status.s-open {
    background-color: rgb(251 203 101 / 30%);
    color: #d19921;
}

.ticket-items .t-status.s-staff-response {
    background-color: rgb(142 213 87 / 20%);
    color: #76c937;
}

.ticket-items .t-status.s-closed {
    background-color: rgba(253, 131, 117, .08);
    color: #fd8375;
}

.ticket-items .t-status.s-processing {
    background-color: #0668e138;
    color: #0668e1;
}

.ticket-items .t-status.s-user-response {
    background-color: #bd27d321;
    color: #bd27d3c9;
}

.ticket-items .show-ticket {
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px dotted #999;
    padding-bottom: 5px;
}

.ticket-items .show-ticket i {
    margin-left: 5px;
}

.ticket-items .show-ticket:hover,
.ticket-items .show-link:hover {
    color: var(--color);
    border-color: var(--color);
}

.ticket-items .mentions {
    width: 20px;
    height: 20px;
    display: inline-flex;
    background-color: #f44336;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    box-shadow: #f44336 0px 0px 5px;
    -webkit-box-shadow: #f44336 0px 0px 5px;
    position: relative;
    z-index: 1;
}


.ticket-items .mentions::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f44336;
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: sonarWave2 2s linear infinite;
    animation: sonarWave2 2s linear infinite;
}

.rt-table.type2 td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nice-select {
    height: 40px;
    border-radius: 30px;
    align-items: center;
    display: flex;
    background-color: #6a6a6a;
    cursor: pointer;
    font-size: 12px;
    line-height: 33px;
    outline: 0;
    padding-right: 18px;
    padding-left: 30px;
    position: relative;
    text-align: right !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    color: #fff;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    max-height: 300px;
    overflow: auto;
    background-color: #fff;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    color: #000;
    text-align: right;
}

/* width */
.nice-select .list::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.nice-select .list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.nice-select .list::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.nice-select .list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    text-align: right;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

@media screen and (max-width: 768px) {
    .discount-code-page .page-wrapper {
        width: 90%;
        padding: 15px;
    }

    .discount-code-page .form .input-row {
        flex-direction: column;
        margin: 0 15px;
    }

    .discount-code-page .form .input-group {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
    }
}

.ta-left {
    text-align: left;
}

.ta-center {
    text-align: center;
}

.border-none {
    border: none !important;
}

#header .exit:hover,
.sidebar .shop-btn:hover,
.shoping-items .item .buy:hover,
.rt-table.type2 td a:hover,
.shoping-payment .btn:hover,
.top-account .inside .tab-btns .btn:hover {
    opacity: .8
}

.last-blogs li a:hover .inside h2,
.sidebar .menu li a:hover {
    color: #fff
}

body.no-scroll {
    overflow: hidden;
}

.checkout-modal {
    position: fixed;
    width: 100%;
    display: flex;
    height: 100%;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.checkout-modal .modal-wrapper {
    width: 500px;
    background-color: rgb(40 43 49);
    border-radius: 25px;
    padding: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0px 0px 20px rgb(77 77 77 / 70%);
}

.checkout-modal .checkout-form {
    width: 100%;
    display: block;
    background-color: rgb(30 32 37);
    border-radius: 26px;
    padding: 30px 0;
}

.top-checkout .inner-data {
    margin: 10px 30px 0;
    width: calc(100% - 60px);
    border-radius: 10px;
    overflow: hidden;
    padding: 25px;
    display: block;
    background-color: rgb(40 43 49);
}

.top-checkout .inner-data .itemlist {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 10px;
    font-size: 14px;
}

.top-checkout .inner-data .itemlist:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.checkout-modal .checkout-seprator {
    width: calc(100% + 30px);
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    right: -15px;
    padding: 15px 0;
}

.checkout-modal .checkout-seprator::before {
    content: "";
    position: absolute;
    width: 100%;
    border-top: 2px dashed rgb(40 43 49);
}

.checkout-modal .checkout-seprator .dot {
    width: 30px;
    height: 30px;
    background-color: rgb(40 43 49);
    border-radius: 50%;
}

.checkout-modal .title-text span {
    color: #dfab0e;
}

.checkout-modal .discount-box {
    width: calc(100% - 60px);
    display: block;
    margin: 0 30px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgb(56 59 65);
    font-size: 14px;
}

.checkout-modal .discount-box .headline {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: rgb(40 43 49);
    cursor: pointer;
    align-items: center;
    color: #888;
}

.checkout-modal .discount-box .headline:hover .right-side .title,
.checkout-modal .discount-box .headline:hover .right-side i {
    color: #fff;
}

.checkout-modal .discount-box .headline .right-side {
    font-size: 15px;
    display: inline-flex;
}

.checkout-modal .discount-box .headline .right-side i {
    display: inline-block;
    margin-left: 8px;
}

.checkout-modal .discount-box .headline .right-side .title {
    font-size: 14px;
}

.checkout-modal .discount-box .headline .left-side .open-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(30 32 37);
    color: rgb(255, 255, 255);
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
}

.checkout-modal .discount-box.active .headline .left-side .open-icon {
    transform: rotate(180deg);

}

.checkout-modal .discount-box .body {
    padding: 15px;
    width: 100%;
    text-align: right;
    transition: 0s;
    -webkit-transition: 0s;
}

.checkout-modal .discount-box .body label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.checkout-modal .discount-box .body .input-box {
    display: flex;
    width: 100%;
}

.checkout-modal .discount-box .body .input-box input {
    width: 230px;
    display: inline-block;
    background-color: rgb(40 43 49);
    border: 1px solid rgb(56 59 65);
    border-radius: 5px;
    padding: 6px 12px;
    outline: 0;
    color: #fff;
    font-size: 14px;
}

.checkout-modal .discount-box .body .input-box .submit-discount {
    background-color: #0aa86e;
    color: #fff;
    padding: 0 20px;
    border-radius: 5px;
    border: 0;
    outline: 0;
    font-weight: 700;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 3px rgba(0, 0, 0, 0.2) solid;
}

.checkout-modal .discount-box .body .input-box .submit-discount:hover {
    opacity: .8;
}

.checkout-modal .submit-btn {
    width: calc(100% - 60px);
    display: flex;
    direction: ltr;
    margin: 25px 30px 0px;
}

.checkout-modal .buy-btn {
    box-shadow: rgba(25, 171, 86, 0.21) 0px 0px 0px 5px;
    display: inline-flex;
    align-items: center;
    color: rgb(255, 255, 255);
    cursor: pointer;
    background: linear-gradient(to right, #0aa86e, #0aa86e);
    border-radius: 10px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    padding: 10px 15px;
    outline: 0px;
}

.checkout-modal .buy-btn .title {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
}

.checkout-modal .buy-btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 7px;
    position: relative;
    top: -1px;
    border-radius: 50%;
}

.checkout-modal .buy-btn:hover {
    box-shadow: #0aa86e80 0px 0px 0px 5px;
}

.dp-none {
    display: none !important;
}

.checkout-modal .fa-times {
    position: relative;
    top: -22%;
    right: 2%;
    font-size: 1.2em;
    color: #ffffffb2;
    cursor: pointer;
}

.payment-details {
    display: block;
    margin-top: 10px;
}

.payment-details .detail-popup {
    cursor: pointer;
    background-color: var(--color);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #fff;
}

.payment-detail-modal {
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(5px);
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    background-color: rgb(40 43 49 / 88%);
}

.payment-detail-modal .details {
    width: calc(100% - 350px);
    left: 80px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.payment-detail-modal .detail-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 45px 60px;
    display: flex;
    align-items: center;
    width: 800px;
    max-width: 85%;
    color: #fff;
    position: relative;
    min-height: 220px;
    border: 1px solid rgb(255 255 255 / 10%);
}

.payment-detail-modal .detail-box img {
    position: absolute;
    bottom: 0;
    left: 15px;
}

.payment-detail-modal .detail-box .info-box {
    width: 50%;
    display: block;
}

.payment-detail-modal .detail-box .label {
    font-size: 18px;
    font-weight: 800;
}

.payment-detail-modal .detail-box .desc {
    font-size: 13px;
    margin-top: 6px;
    font-weight: 300;
    width: 100%;
    display: block;
    line-height: 23px;
    color: #ffffff8a;
}

.payment-detail-modal .detail-box .input {
    width: 100%;
    display: flex;
    margin-top: 20px;
    border: 1px dashed #ffffff26;
    border-radius: 5px;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
}

.payment-detail-modal .detail-box .copy-code {
    font-size: 17px;
    display: inline-flex;
    cursor: pointer;
}

.payment-detail-modal .detail-box .copy-code:hover i {
    opacity: 0.6;
}

.payment-detail-modal .detail-box .code-text {
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Purista';
}

.payment-detail-modal .detail-box .close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #df2f2f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
}

.payment-detail-modal .detail-box .close-btn:hover {
    opacity: 0.8;
}

.copy-alert {
    position: fixed;
    width: calc(100% - 350px);
    left: 80px;
    display: flex;
    justify-content: center;
    bottom: 30px;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    z-index: 9999;
}

.copy-alert span {
    background-color: #1abd1a;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 800;
}

.detail-popup:hover {
    opacity: .8;
}

.collapse-box .collapse-box-icon {
    margin-left: 5px;
}

.collapse-box .collapse-toggle {
    cursor: pointer;
}

.collapse-box .collapse-toggle:hover {
    opacity: .8;
}

.collapse-box.rt-box:has(.collapse-toggle) {
    padding: 0;
}


.collapse-box.rt-box .collapse-toggle {
    padding: 20px;
}

.collapse-box.rt-box .collapse-body {
    padding: 0 20px 20px;
    margin-top: -5px;
}

.collapse-box.collapse {
    opacity: .6;
}

.collapse-box.collapse .collapse-body {
    display: none;
}

.income-cards-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

.income-card {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid var(--white);
}

.income-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.income-card-header {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--white);
}

.income-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-grow: 1;
}

.income-amount {
    text-align: right;
    direction: ltr;
    margin-bottom: 5px;
}

.income-currency {
    color: #8e9297;
    text-align: right;
}

@media (max-width: 1200px) {
    .income-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .income-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .income-cards-container {
        grid-template-columns: 1fr;
    }
}

.page-404 {
    margin: 0;
    width: 100%;
    height: 100vh;
    padding: 0;
}

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

@keyframes blink {
    78% {
        opacity: 1;
    }

    79% {
        opacity: 0.5;
    }

    81% {
        opacity: 1;
    }

    83% {
        opacity: 0.5;
    }

    84% {
        opacity: 0.2;
    }

    88% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    95% {
        opacity: 1;
    }
}

.box-notfound img {
    animation: blink linear infinite 2s;
    width: 500px;
}

.box-notfound .title {
    width: 100%;
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 800;
    font-size: 35px;
    margin-top: -35px;
}

body.light-mode .box-notfound .title {
    color: #555;
}

.box-notfound .link-back {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.box-notfound .link-back .linka {
    color: #fff;
    background-color: var(--color);
    padding: 10px 30px;
    border-radius: 5px;
    text-align: center;
}

.box-notfound .link-back .linka:hover {
    opacity: 0.7;
}

@keyframes load_in_bottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes load_in_top {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes an231 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.box-soon {
    display: flex;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 120px);
    text-align: center;
    padding-top: 20px;
}

.box-soon img {
    width: 800px;
    max-height: 100%;
    filter: grayscale(1) brightness(0.7);
    animation: load_in_bottom .7s;
    object-fit: contain;
}

.box-soon .title {
    position: relative;
    font-family: Purista;
    color: #fff;
    width: 100%;
    display: block;
    margin-top: -185px;
    font-size: 120px;
    line-height: 95px;
    animation: load_in_top .7s, an231 linear infinite 1s;
    z-index: 1;
}

.box-soon .title span {
    font-family: Purista;
    color: var(--color);
}

.rt-left {
    text-align: left;
}

.notification-wrapper {
    position: relative;
    margin-left: 20px;
    display: inline-flex;
}

.notification-wrapper .notification-bell {
    cursor: pointer;
    font-size: 18px;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-wrapper .notification-badge {
    position: absolute;
    top: -2px;
    right: -7px;
    background-color: rgb(244, 67, 54);
    box-shadow: rgb(244, 67, 54) 0px 0px 5px;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 2px 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.notification-wrapper .notification-badge::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgb(244, 67, 54);
    border-radius: 50%;
    animation: 2s linear 0s infinite normal none running sonarWave2;
}

.notification-wrapper .notification-box {
    display: none;
    position: absolute;
    width: 320px;
    z-index: 9999;
    animation: fadeIn 0.2s ease-in-out;
    right: unset;
    left: -20px;
    background-color: #303135;
    top: 57px;
    border-radius: 15px;
    padding: 20px 15px;
    box-shadow: #ffffff12 0px 0px 12px;
}

.notification-wrapper .notification-box::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #303135;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    z-index: 999999999999;
    bottom: 100%;
    left: 32px;
}

.notification-wrapper .notification-box .notif-list {
    width: 100%;
    display: block;
    max-height: 400px;
    overflow: auto;
}

.notification-wrapper .notification-header {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: dana;
    font-size: 16px;
}

.notification-wrapper .notification-item {
    padding: 10px;
    border-bottom: 1px solid var(--white);
    color: #ccc;
}

.notification-wrapper .notification-item:last-child {
    border: 0;
}

.notification-wrapper .notification-item strong {
    color: #fff;
    font-size: 14px;
    font-family: dana;
}

.notification-wrapper .notification-link {
    color: var(--color);
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    border-bottom: 1px dashed var(--color);
    padding-bottom: 2px;
}

.notification-wrapper .notification-link i {
    margin-left: 5px;
}

.notification-wrapper .notification-link:hover {
    opacity: 0.8;
}

.notification-wrapper .mark-read-btn {
    background: none;
    border: none;
    color: #0f0;
    font-size: 12px;
    cursor: pointer;
}

.notification-wrapper .mark-read-btn:hover,
.notification-wrapper .notification-bell:hover {
    opacity: 0.7;
}

.notification-wrapper .read-indicator {
    color: #888;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

.notification-wrapper .notif-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ticket-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ticket-detail-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ticket-header {
    background-color: #f5f5f5;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.ticket-header h2 {
    margin: 0;
    font-size: 24px;
}

.ticket-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.ticket-item {
    border-bottom: 1px solid #eee;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-item:last-child {
    border-bottom: none;
}

.ticket-status {
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
}

.status-open {
    background-color: #dff0d8;
    color: #3c763d;
}

.status-closed {
    background-color: #f2dede;
    color: #a94442;
}

.status-in-progress {
    background-color: #fcf8e3;
    color: #8a6d3b;
}

.messages-container {
    padding: 15px;
    border-top: 1px solid #ccc;
}

.message-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.message-item:last-child {
    border-bottom: none;
}

.message-item h4 {
    margin: 0;
    font-size: 16px;
}

.message-item p {
    margin: 5px 0;
    color: #666;
}

.reply-container {
    padding: 15px;
    border-top: 1px solid #ccc;
}

.reply-container textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.reply-container button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.reply-container button:hover {
    background-color: #0056b3;
}

.ticket-detail-container .mentioned {
    border-radius: 3px;
    padding: 0px 7px;
    font-weight: bold;
}

.ticket-detail-container .mentioned-player {
    background: #ffb27b;
}


.red-time-license {
    color: red;
}

.orange-time-license {
    color: orange;
}

.roxan-coin-color {
    color: #d79522;
}


.player-search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 10% auto;
    direction: rtl;
    /* For Persian text */
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid #333;
    border-radius: 8px;
    background: rgba(43, 43, 60, 0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input::placeholder {
    color: #ccc;
}

.search-input:focus {
    border-color: var(--color);
    box-shadow: 0 0 8px rgba(255, 106, 0, 0.4);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    opacity: 0.7;
    fill: #ccc;
}

.search-results {
    margin-top: 8px;
    background: rgba(43, 43, 60, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-results a {
    color: #fff;
    padding: 10px 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.search-results a:hover {
    background: rgba(255, 106, 0, 0.2);
}

.hidden {
    display: none;
}

/* Weapon Grid Container */
.weapon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

/* Individual Weapon Card */
.weapon-card {
    position: relative;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 8px;
    padding: 15px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #444;
    overflow: hidden;
}

.weapon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    border-color: #ffc107;
}

/* Diamond Shape Container for Weapon Icon */
.weapon-icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    transform: rotate(45deg);
    border: 2px solid #ffc107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 4px;
}

.weapon-icon {
    width: 40px;
    height: 40px;
    transform: rotate(-45deg);
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

/* Weapon Name Label */
.weapon-name {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: auto;
}

/* Quantity Indicator */
.weapon-quantity {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffc107;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

/* Selected State */
.weapon-card.selected {
    border-color: #ffc107;
    background: linear-gradient(135deg, #4a4a2a 0%, #3a3a1a 50%, #2a2a1a 100%);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.weapon-card.selected .weapon-icon-container {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

/* Empty/Locked State */
.weapon-card.empty {
    opacity: 0.4;
    cursor: not-allowed;
}

.weapon-card.empty:hover {
    transform: none;
    box-shadow: none;
    border-color: #444;
}

/* Rarity Colors */
.weapon-card.common .weapon-icon-container {
    border-color: #9e9e9e;
}

.weapon-card.uncommon .weapon-icon-container {
    border-color: #4caf50;
}

.weapon-card.rare .weapon-icon-container {
    border-color: #2196f3;
}

.weapon-card.epic .weapon-icon-container {
    border-color: #9c27b0;
}

.weapon-card.legendary .weapon-icon-container {
    border-color: #ff9800;
}

/* Background Texture Effect */
.weapon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .weapon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 15px;
    }

    .weapon-card {
        min-height: 100px;
        padding: 12px;
    }

    .weapon-icon-container {
        width: 50px;
        height: 50px;
    }

    .weapon-icon {
        width: 35px;
        height: 35px;
    }

    .weapon-name {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .weapon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
