.clan-list {
    flex: 1 0 70%;
    background-color: var(--card);
    border-radius: 16px;
    padding: 15px;
}

.clan-lists {
    flex-direction: column;
    display: flex;
    gap: 10px;
    padding-right: 10px;
    height: 630px;
    overflow: auto;
}

.clan-blocks {
    background: var(--bg-modal);
    display: flex;
    border-radius: 16px;
    height: 60px;
    padding: 10px;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.clan-blocks:hover .clan-info-blocks > div  {
    color: var(--span);
}

.clan-blocks:hover .clan-info-player > div  {
    color: var(--span);
    font-weight: 700;
}

.clan-info-card {
    position: absolute;
    z-index: 1;
    left: 0px;
    opacity: .3;
    border-radius: 16px;
    background-repeat: no-repeat !important;
    background-position-y: 50% !important;
    background-size: cover !important;
    height: 100%;
    width: 100%;
}

.clan-left {
    display: flex;
    flex: 1 0 auto;
    gap: 10px;
    z-index: 1;
    align-items: center;
}

.clan-logo {
    border-radius: 16px;
    height: 45px;
    width: 45px;
}

.guild-detail-head {
    border-radius: 1rem;
    height: 20rem;
    background: var(--card);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.clans-dashboard-head {
    padding: 0rem 1rem;
    z-index: 1;
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.clans-dashboard-head-logo {
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    vertical-align: top;
    width: 140px;
    height: 140px;
    transition: .5s;
}

.clans-dashboard-navigator {
    align-items: center;
    display: flex;
    gap: 15px;
    min-height: 45px;
    padding-top: 10px;
}

.clans-dashboard-navigate-list {
    display: flex;
    flex: 1 0 auto;
    gap: 5px;
}

.clans-dashboard {
    padding: 10px 20px 20px 20px;
    height: 250px;
}

.clans-dashboard-info {
    padding: 1rem;
    border-radius: 1rem;
    background: var(--card);
    overflow-y: hidden;
    height: 18rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clans-dashboard-members {
    padding: 1rem;
    border-radius: 1rem;
    background: var(--card);
    height: 18rem;
    overflow: auto;
}

.clans-dashboard-members-kick {
    flex: 1 0 50%;
    max-height: 225px;
    overflow: auto;
}

.clans-dashboard-banner {
    border-radius: 1rem;
    align-items: center;
    background-color: #0c0c0c;
    background-position: 50%!important;
    background-size: cover!important;
    display: flex;
    height: 250px;
    position: relative;
}

.clans-dashboard-members-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.clans-dashboard-members-list-kick {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.clans-dashboard-members-list-item {
    grid-template-columns: 15rem 17rem 1rem;
    background: var(--bg);
    align-items: center;
    border: 1px solid var(--bottom-line-table);
    border-radius: 7px;
    display: grid;
    justify-content: space-between;
    min-height: 30px;
    padding: 6px 10px;
    width: 100%;
}

.clans-dashboard-members-list img {
    height: 25px;
    width: 25px;
    border-radius: 15px;
}

.clans-dashboard-members-list-kick img {
    height: 25px;
    width: 25px;
    border-radius: 15px;
}

.clans-dashboard-members-list-item-kick {
    grid-template-columns: 1.5fr 1.5fr 0.4fr;
    background: var(--bg);
    align-items: center;
    border: 1px solid var(--bottom-line-table);
    border-radius: 7px;
    display: grid;
    justify-content: space-between;
    min-height: 30px;
    padding: 5px 6px;
    width: 100%;
}

.clans-dashboard-members-list-item-left {
    align-items: center;
    display: flex;
    gap: 6px;
}

.clans-dashboard-members-list-item-right {
    align-items: center;
    display: flex;
    gap: 3px;
}

.clans-dashboard-navigate-list-item button {
    display: flex;
    border-radius: 14px;
    color: #505050;
    height: 30px;
    padding: 0 10px;
    transition: .2s;
    align-items: center;
}

.clans-dashboard-navigate-list-item:hover button {
    background: #1b1b1b;
}

.clans-dashboard-navigate-list-item.active button {
    background: var(--bg);
    border: 0.5px solid #2c3033;
    color: #cacaca;
}

.clans-dashboard-section {
    display: none;
}

.clans-dashboard-section.active {
    padding: 1rem;
    display: block;
}


.clans-dashboard-flex {
    display: flex;
}

.cash_settings_inp_inf_flex {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.input-form-all {
    width: 100%;
}


.primary_btn {
    display: flex;
    flex-direction: row;
    background: var(--bottom-line-table);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px 15px;
    height: 43px;
    line-height: 41px;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    color: var(--text-custom);
    font-weight: 500;
    gap: 1rem;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.primary_btn.leave_clan {
    border: 1px solid #ff4c4c;
    color: #ff4c4c;
}

.primary_btn.leave_clan:hover {
    background-color: #ff4c4c;
    color: #fff;
}

.primary_btn.join_clan {
    border: 2px solid var(--orange);
    color: var(--orange);
}

.primary_btn.join_clan:hover {
    background-color: var(--orange);
    color: #000;
}

.clans-dashboard-centers {
    text-align: center;
}

.clans-dashboard-info-flex {
    color: var(--text-custom);
    position: relative;
    display: flex;
    justify-content: space-between;
}   

.clans-dashboard-navigator-botton {
    background: var(--bottom-line-table);
    height: 1px;
    width: 100%;
}

.clans-dashboard-head-name {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
}

.player-name {
    cursor: pointer;
    color: var(--span);
    display: flex;
    gap: 10px;
    align-items: center;
}

.clans-dashboard-info-color {
    word-wrap: break-word;
    color: var(--text-custom);
}

.clans-dashboard-banner-back {
    display: flex;
    background: var(--bg);
    color: #cacaca;
    border-radius: 14px;
    left: 15px;
    padding: 7px 25px;
    position: absolute;
    top: 15px;
    transition: .2s;
    z-index: 5;
    align-items: center;
}

.clans-dashboard-banner-back:hover {
    color: var(--span);
    cursor: pointer
}

.application-list {
    gap: 10px;
    display: flex;
    list-style-type: none;
    padding: 0;
}

.application-grid {
    border-radius: 1rem;
    padding: 1rem;
    background: var(--card);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    height: 18rem;
    overflow-y: auto;
}

.application-item {
    height: 3rem;
    background: var(--bg);
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 2px solid var(--bottom-line-table);
    border-radius: 15px;
    align-items: center;
}

.application-left {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.application-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
}

.application-name {
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 500;
}

.application-actions {
    display: flex;
    gap: 10px;
}

.action-button {
    background: none;
    border: none;
    cursor: pointer;
}

.action-button svg {
    width: 24px;
    height: 24px;
}

.action-button.accept svg {
    stroke: green;
}

.action-button.decline svg {
    stroke: red;
}

@media (max-width: 1024px) {
    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .application-grid {
        grid-template-columns: 1fr;
    }
}


.clans-dashboard-head-name-members {
    padding: 10px 15px;
    color: var(--text-custom);
}

.clan-info-right-panel {
    color: var(--text-custom);
}

.clan-info-right-panel-text {
    color: var(--span);
}

.modal-content {
    display: flex;
    background-color: var(--card);
    border-radius: 16px;
    transform: scale(0.95) translate(0, 0);
    -webkit-transform: scale(0.95) translate(0, 0);
    /* pointer-events: none; */
    min-width: 450px;
    width: max-content;
    height: max-content;
    max-width: 850px;
    max-height: 96%;
    position: relative;
    flex-direction: column;
    z-index: 9999;
    transition: transform 0.2s;
    padding: 20px;
    overflow: hidden;
    overflow-y: hidden;
}

.modals{
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* CSS ÃÂ´ÃÂ»Ã‘Â Ã‘ÂÃÂºÃ‘â‚¬Ã‘â€¹Ã‘â€šÃÂ¾ÃÂ³ÃÂ¾ Ã‘ÂÃÂ¾Ã‘ÂÃ‘â€šÃÂ¾Ã‘ÂÃÂ½ÃÂ¸Ã‘Â */
.hide {
    visibility: hidden;
    opacity: 0;
}

/* CSS ÃÂ´ÃÂ»Ã‘Â ÃÂ²ÃÂ¸ÃÂ´ÃÂ¸ÃÂ¼ÃÂ¾ÃÂ³ÃÂ¾ Ã‘ÂÃÂ¾Ã‘ÂÃ‘â€šÃÂ¾Ã‘ÂÃÂ½ÃÂ¸Ã‘Â */
.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.application-status {
    display: none; /* ÃÂ¡ÃÂºÃ‘â‚¬Ã‘â€¹ÃÂ²ÃÂ°ÃÂµÃÂ¼ Ã‘ÂÃ‘â€šÃÂ°Ã‘â€šÃ‘Æ’Ã‘Â ÃÂ·ÃÂ°Ã‘ÂÃÂ²ÃÂºÃÂ¸ ÃÂ¿ÃÂ¾ Ã‘Æ’ÃÂ¼ÃÂ¾ÃÂ»Ã‘â€¡ÃÂ°ÃÂ½ÃÂ¸Ã‘Å½ */
}

button {
    background: none;
    color: #505050;
}

.clans-dashboard-navigate-list-item button.action {
    background: var(--bg);
    border: 0.5px solid #2c3033;
    color: #cacaca;
}

.kick_button {
    display: flex;
    gap: 10px;
    padding: 5px 5px;
    height: 25px;
    background: var(--button);
    border-radius: 8px;
    font-weight: 500;
    justify-content: center;
    font-size: 14px;
    line-height: normal;
    color: var(--text-custom);
    cursor: pointer;
    transition: 0.3s;
    align-items: center;
}

.clans-dashboard-text-center {
    text-align: left;
}

.clans-dashboard-banner-background {
    background: var(--card);
    height: 170px;
}

.clans-dashboard-head-info-block {
    color: var(--text-custom);
}

.clans-dashboard-head-info {
    padding: 0px 0px 0px 10px;
    flex: 1 0 auto;
}

.clans-dashboard-head-info-block-text {
    display: inline-block;
    width: 20rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: var(--text-default);
}

.clans-dashboard-head-info-block-text-info {
    color: var(--text-default);
}

.clans-dashboard-head-info-block-svg > svg {
    width: 16px;
    margin-bottom: 3px;
    fill: var(--text-custom);
}

.clan-name-description {
    width: 35rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--text-default);
}

.clan-info-blocks {
    /* background: #1f1f28cc; */
    font-weight: 700;
}

.clans-dashboard-info-flex-text {
    color: var(--text-default);
}

.clan-osn-info {
    background-color: var(--card);
    border-radius: 16px;
    display: flex;
    flex: 1 0 auto;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

.clan-info-text {
    font-size: 26px;
    font-weight: 600;
    /* line-height: 105%; */
}

.clan-info-description {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-custom);
}

.clan-gap {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.clan_info_warning {
    z-index: 1;
    display: flex;
    gap: 15px;
    padding: 15px;
    color: var(--orange);
    background: #ffdb5c10;
    border-radius: 1rem;
    width: 100%;
    flex-direction: column;
    justify-content: space-evenly;
}

.clan_inform {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.clan-info-title-warning {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--orange);
}

.clan-info-title-warning svg {
    width: 20px;
    height: 20px;
    fill: var(--orange);
}

.clan-card-info {
    display: flex;
    gap: 15px;
    flex-direction:column;
}


.clan_user_list_info {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .clan-flex {
        flex-direction: column;
        gap: 10px;
    }

    .clan-info, .clan-list {
        padding: 10px;
    }

    .clans-dashboard {
        padding: 10px;
        height: auto;
    }

    .clans-dashboard-head {
        gap: 10px;
        padding: 0 10px;
        width: 10%;
        position: absolute;
        top: 1;
    }

    .clans-dashboard-head-logo {
        width: 100px;
        height: 100px;
    }

    .clans-dashboard-navigator {
        padding: 10px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .clans-dashboard-info-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .clan-name {
        font-size: 14px;
        text-align: center;
    }

    .clans-dashboard-members-list, .clans-dashboard-members-list-kick {
        gap: 5px;
        padding: 10px;
    }

    .clans-dashboard-members-list-item, 
    .clans-dashboard-members-list-item-kick {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
    }

    .clan-info-player {
        flex-direction: column;
        gap: 5px;
    }

    .application-grid {
        grid-template-columns: 1fr;
        padding-right: 0;
    }

    .application-item {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .application-name {
        font-size: 14px;
        text-align: center;
    }

    .modal-content {
        width: 90%;
        padding: 15px;
        max-width: 100%;
        transform: none;
    }

    .modals {
        padding: 10px;
    }

    .clan-info {
        padding: 10px;
    }

    .clan-logo {
        width: 35px;
        height: 35px;
    }

    .primary_btn {
        padding: 5px 15px;
        font-size: 14px;
    }

    .clans-dashboard-flex {
        display: flex;
        flex-direction: column;
    }

    .clan-name-description {
        width: 5rem;
    }

    .clans-dashboard-head-info-block-text {
        width: 0rem;
    }
}

.servers_button {
    display: flex;
    flex-direction: row;
    background: var(--bottom-line-table);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px 15px;
    height: 43px;
    line-height: 41px;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    color: var(--text-custom);
    font-weight: 500;
    gap: 1rem;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.servers_button:hover {
    background: var(--button-hover);
}

.server_buttons_active {
    color: var(--span) !important;
    background: var(--span-middle) !important;
}

.block {
    background: var(--card);
    padding: 1rem;
    border-radius: 1rem;
}

.clan_info {
    background: var(--card);
    padding: 1rem;
    border-radius: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.clan_buy {
    display: flex;
    background: var(--card);
    padding: 1rem;
    border-radius: 1rem;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.clan_buyi {
    background: var(--bg);
    width: 100%;
    align-items: center;
    border: 2px solid var(--span);
    border-radius: 0.5rem;
    color: var(--text-default);
    cursor: pointer;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.3rem;
    transition: .2s;
}

.clan_buyi:hover {
    background-color: var(--span);
    color: var(--text-default)
}

.cash_settings_container {
    background: var(--card);
    padding: 1rem;
    border-radius: 1rem;
}

.block-loader {
    display: flex;
    width: 100%;
    align-items: center;
    min-height: 18rem;
}

.loader-clans {
    border: 5px solid var(--navbar);
    border-top: 5px solid var(--span);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 30px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.blocks-clans {
    width: 100%;
}

.kick-member {
    color: var(--red);
    border-radius: 0.4rem;
    padding: 0 1rem;
    background: rgb(255 73 64 / 10%) !important;
    float: right;
    transition: 0.3s;
}

.kick-member:hover {
    background: rgb(255 73 64 / 15%) !important;
    filter: none !important;
    transition: 0.3s;

}

.demote-member {
    color: var(--red);
    border-radius: 0.4rem;
    padding: 0 1.05rem;
    background: rgb(255 73 64 / 10%) !important;
    float: right;
    transition: 0.3s;
}

.demote-member:hover {
    background: rgb(255 73 64 / 15%) !important;
    filter: none !important;
    transition: 0.3s;

}

.promote-member {
    color: var(--green);
    border-radius: 0.4rem;
    padding: 0 1rem;
    background: rgb(36 255 45 / 10%) !important;
    float: right;
    transition: 0.3s;
}

.promote-member:hover {
    background: rgb(36 255 45 / 15%) !important;
    filter: none !important;
    transition: 0.3s;
}

.player-actions {
    display: flex;
    gap: 0.2rem;
    flex-direction: row-reverse;
}

.clans-dashboard-head-info-block-svg {
    display: flex;
    gap: 0.2rem;
}

.clan-info-player-slot {
    align-items: center;
    color: var(--text-default);
    display: flex;
    font-weight: 700;
    gap: 4px;
}