.sort-container {
    margin-right: 0px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.sort-group {
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 5px;
    width: 100%;
    justify-content: center;
}

.sort-label {
    margin-left: 5%;
    font-size: 14px;
    font-weight: 600;
    color: #001854;
}

.sort {
    display: flex;
    align-items: stretch;
    width: 91.1%;
    justify-content: space-between;
}

.sort-button {
    background-color: #fff;
    border: 1px solid #ECECED;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
}

.sort-type {
    background-color: #fff;
    border: 1px solid #ECECED;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 48px;
    margin-left: 12px;
}

.sort-type-highlight {
    border: 1px solid #001958;
    box-shadow: 0px 8px 16px 0px rgba(17, 12, 34, 0.12);
}

.sort-value {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    margin-right: 4px
}

.sort-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    height: fit-content;
    width: 322px;
    margin-left: 0px;
    margin-top: 52px;
    border-radius: 20px;
}

/* menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
} */

.sort-menu li {
    padding: 12px 16px 12px 16px;
    cursor: pointer;
    width: 322px;
    list-style: none;
    margin: 0;
    /* padding: 0; */
}

.sort-menu li a {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.show-sort {
    display: block;
    padding-left: 0px;
}

.sort-menu>.sort-active>a,
.sort-menu>.sort-active>a:focus,
.sort-menu>.sort-active>a:hover {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    outline: 0;
    background-color: #F8F8F8;
}

.sort-menu li.sort-active,
.sort-menu li:focus,
.sort-menu li:hover {
    background-color: #F8F8F8;
    font-weight: bold;
}

.send-money-mobile-btn {
    border: none;
    width: 100%;
    height: 40px;
    margin-top: 8px;
    border-radius: 24px;
    background: linear-gradient(90deg, #001958 0%, #233A70 100%); 
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* table */
.sec-table {
    display: flex;
    padding-top: 24px;
    justify-content: center;
}

.mobile-table {
    border-radius: 24px;
    background-color: #fff;
    width: 91.1%;
    box-shadow: 17px 16px 54.6px 0px #0028511C;
}

.mobile-table tbody tr {
    position: relative;
    height: 106px;
}

.mobile-table tbody tr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    border-bottom: 1px solid #ECECED;
}

.mobile-table tbody tr td {
    padding: 24px;
}

.mobile-table tbody tr:last-child {
    border-bottom: none;
    height: 106px;
}

.mobile-table-sec1 {
    align-items: flex-start;
    display: flex;
    flex-direction: column;

}

.mobile-table-sec1 .logo {
    height: 30px;
    margin-right: 10px;
}

.mobile-table-sec1 div {
    padding-top: 8px;
}

.mobile-table-sec1 div span {
    font-size: 14px;
    font-weight: 600;
    color: #6D7CA0;
}

.desc-box {
    display: flex;
    width: fit-content;
    background-color: #FFFBD7;
    border-radius: 16px;
    padding: 4px 12px;
}

.desc-box img {
    margin-right: 4px;
}

.mobile-table-sec2 {
    padding: 8px 0px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-table-sec2 div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desc-text {
    color: #444444;
    font-size: 14px;
    font-weight: 500;
}

.detail-title {
    color: #6D7CA0;
    font-size: 14px;
    font-weight: 500;
}

.detail-data {
    color: #110C22;
    font-size: 14px;
    font-weight: 500;
}

/* mobile L */
@media screen and (min-width:425px) {
    .no-data-message {
        font-size: 14px;
    }
}

/* mobile M */
@media screen and (max-width:375px) {
    .no-data-message {
        font-size: 14px;
    }

    .sort {
        justify-content: space-between;
    }

    .sort-button {
        width: 260px;
    }

    .sort-menu {
        width: 260px;
    }

    .sort-menu li {
        width: 260px;
    }

    .sort-type {
        margin-left: 0px;
    }
}

/* mobile S */
@media screen and (max-width:320px) {
    .no-data-message {
        font-size: 12px;
    }

    .sort {
        justify-content: space-between;
    }

    .sort-button {
        width: 220px;
    }

    .sort-menu {
        width: 220px;
    }

    .sort-menu li {
        width: 220px;
    }

    .sort-value {
        font-size: 14px;
    }

    .sort-type {
        margin-left: 0px;
    }

    .sort-menu li a {
        font-size: 14px;
    }

    .sort-menu>.sort-active>a,
    .sort-menu>.sort-active>a:focus,
    .sort-menu>.sort-active>a:hover {
        font-size: 14px;
    }

    .sec-table {
        width: 320px;
    }
}