/**===================================================================
 * Responsive CSS File
 =====================================================================*/
/**===================================================================
 * When max width : 1140px - Responsive CSS
 =====================================================================*/
@media (max-width:1140px) {

    /* Header  */
    .navbar-btn {
        display: block;
    }

    /* main box  */
    .main-section .main-box {
        gap: 0;
    }

    .main-section .main-box .content-area {
        width: 100%;
    }

    /* sidebar  */
    .main-section .main-box .sidebar-area {

        width: 0;
    }

    .sidebar {
        background-color: forestgreen;
        padding: 10px;
        position: fixed;
        top: 0;
        right: -110%;
        bottom: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        max-width: 430px;
        transition: right 0.5s;
        box-shadow: 0px 0px 5px rgb(0 0 0 / 60%);
    }

    /* close sidebar  */
    .close-sidebar-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    .numberincard {
        font-size: 6.5vw;

    }

    .amountincard {
        font-size: 6.5vw;
    }

    .statusincard p {
        font-size: 3.5vw;
    }

    .detailsincard p {
        font-size: 3.5vw;
    }

    #short-trxn-placeholder table,
    #short-trxn-placeholder table th,
    #short-trxn-placeholder table td {
        border: none;
    }

    #short-trxn-placeholder thead {
        display: none;
    }

    #trxn_short_history tr {
        display: flex;
        margin-top: 6px;
        margin-left: 3px;
        margin-right: 3px;
        border-top: 2px solid #009879;
        border-bottom: 2px solid #009879;
        border-left: 1px solid #009879;
        border-right: 1px solid #009879;
        padding: 3px;
        flex-wrap: wrap;

    }

    #trxn_short_history tr td {
        border: 1px solid rgb(221 221 221 / 64%);
    }

    #trxn_short_history tr td:nth-child(1) {
        order: 1;
        width: fit-content;
        flex: 1 1 auto;
    }

    #trxn_short_history tr td:nth-child(2) {
        order: 4;
        width: 56%;
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 26px;
        font-weight: 600;
    }

    #trxn_short_history tr td:nth-child(3) {
        order: 5;
        flex: 1 1 auto;
        width: 38%;
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 26px;
        font-weight: 600;
        text-align: center;
    }

    #trxn_short_history tr td:nth-child(4) {
        order: 2;
        flex: 0 0 auto;
        width: 25%;
    }

    #trxn_short_history tr td:nth-child(5) {
        order: 3;
        width: 25%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2px;
    }
    .counter-featured-section {
        
        padding: 10px 0;
        gap: 5px;
    }
    .counter-featured-section .counter-item {
        text-align: center;
       
        width: auto;
       
        padding: 5px 10px;
        align-items: center;
        justify-content: center;
        display: flex;
        border-radius: 4px;
        gap: 10px;
    }
    .counter-featured-section .item-count_number {
        font-size: 12px;
        font-weight: 600;
    }
    .counter-featured-section .item-text {
        font-size: 12px;
        margin: 0;
        padding-top: 0;
    }
    .controller-btm-bar ul {
        grid-template-columns: auto auto auto auto;

    }
    .controller-btm-bar {
        position: fixed;

    }
}

@media(max-width:768px) {
    .incomplete {
        margin: 25px auto;
        border-collapse: collapse;
        font-size: 15px;
        min-width: 99%;
        box-shadow: none;
        overflow: scroll;
    }

    .incomplete thead {
        display: none;
    }

    .incomplete tr,
    .incomplete td {
        display: block;
        max-width: 100%;
        border: none;

    }

    .incomplete td {
        padding: 2px 2px;
        margin-top: 10px;
        border-bottom: 1px solid #ddd;
    }

    .incomplete tr {
        margin-top: 10px;
        border: 2px solid green;
        padding: 20px 10px;

    }

    .incomplete tbody tr td a {
        text-decoration: none;
        padding: 8px 20px;
        display: inline-block;
        color: #fff;
        border-radius: 8px;

        box-shadow: 0px 0px 3px rgb(170, 170, 170);
    }

}