.side-bar-account{
    width: 100%;
    background-color: #1A1918;
    border-radius: 29px;
    padding: 20px 15px;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.side-bar-account .page-menu{
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 15px;
    color: #8D8D8D;
    transition: .3s;
    font-weight: 600;
}
.side-bar-account .page-menu img{
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.side-bar-account .page-menu:hover{
    color: rgb(205, 164, 41);
}
.side-bar-account .page-menu.active{
    background: linear-gradient(180deg, rgb(181, 181, 181) 0%, rgb(223, 180, 25) 2%, rgb(96, 78, 13) 100%);
    border-radius: 24px;
    color: #242321;
}

.filter-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    box-shadow: 0px 2px 2px black;
    text-wrap: nowrap;
    padding: 5px 10px 5px 15px;
    width: 100%;
    background-color: #242321;
    border: 0;
    color: #8D8D8D;
    transition: .3s;
    font-weight: 600;
}

.filters {
    padding-inline: 1rem;
}
.filters .filter-btn:hover,
.filters .filter-btn.active {
    background: linear-gradient(180deg, rgb(181, 181, 181) 0%, rgb(223, 180, 25) 2%, rgb(96, 78, 13) 100%);
    color: #242321;
    box-shadow: inset 0px 1px 0px white,  0px 2px 2px black;
    font-weight: bold;
}

.filters .filter-search input:focus {
    outline: 2px solid rgb(223, 180, 25);
}
.filters .filter-search {
    position: relative;
    display: flex;
}
.filters .filter-search input {
    all: unset;
    width: 100%;
    background-color: #242321;
    box-shadow: inset 0px 2px 4px black,  0px 1px 3px rgb(67, 67, 67);
    padding: .5rem 1rem;
    border-radius: 1.5rem;
    border: none;
}
.filters .filter-search button {
    all: unset;
    color: white;
    position: absolute;
    font-size: 1.25rem;
    top: .5rem;
    right: 2rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.pagination li {
    color: #8D8D8D;
}

.pagination li.active {
    border-bottom: 2px solid rgb(223, 180, 25);
}
.pagination li.active a {
    font-size: 1.25rem;
    padding-inline: .5rem;
}

.history .text-gray.hover:hover {
    color: #8d8d8d8a !important;
}
.notification.big {
    --width: 24px;
    --height: 24px;
    --font: 16px;
}
.notification {
    width: var(--width, 20px);
    height: var(--height, 20px);
    font-size: var(--font, 14px);
    font-weight: bold;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: red;
    position: absolute; top: -.75rem; right: 1.25rem;
}

.body .topup-table td,
.body .topup-table th {
    background: none;
    color: #8D8D8D;
    border-color: #D0993D66;
    white-space: nowrap;
}   

.body .topup-table td > div {
    margin-block: .75rem;
}
.card-account{
    width: 100%;
    background-color: #1A1918;
    border-radius: 29px;
    padding: 20px 15px;
}
.card-account .title{
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
}
.card-account .body{
    width: 100%;
    height: 100%;
    background-color: #282725;
    border: 1px solid #D0993D66;
    border-radius: 19px;
    padding: 15px;
}
.card-account .body .account-profile{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}
.card-account .body .account-profile::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #D0993D66;
    right: 0.8rem;
    top: 0;
}
.card-account .body .account-profile img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.card-account .body .account-detail{
    width: 100%;
    margin: 0;
    padding: 0;
}
.card-account .body .account-detail li{
    display: flex;
}
.card-account .body .account-detail li:not(:last-child){
    margin-bottom: 10px;
}
.card-account .body .account-detail li .topic{
    color: #8D8D8D;
    font-size: 16px;
    margin-right: 10px;
}
.card-account .body .account-detail li .detail{
    color: #ffffff;
    font-size: 16px;
}
.card-account .body .account-detail li i{
    color: #9f8113;
    margin-left: 5px;
    cursor: pointer;
}

.account-edit{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #D0993D66;
}
.account-edit img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}


@media (max-width: 992px){
    .card-account .body .account-profile::after{
        width: 100%;
        height: 1px;
        top: unset;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .card-account .body .account-profile{
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
}
