/* =========================
   WRAPPER
========================= */
.ces-wrapper {
    font-family: "DM Sans", sans-serif;
}

/* =========================
   TITLE
========================= */
.ces-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1D1E20;
}

/* =========================
   NO DATA
========================= */
.ces-no-data {
    background: #fff;
    border: 1px solid #d5dfff;
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;
}

/* =========================
   TABLE
========================= */
.ces-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #d5dfff;
    border-radius: 8px;
    background: #fff;
	overflow: hidden;
}

.ces-table thead {
    background: #fafbff;
}

.ces-table th,
.ces-table td {
    padding: 18px 20px;
    font-size: 15px;
    border-bottom: 1px solid #d5dfff;
    text-align: left;
}

.ces-table th {
    font-weight: 600;
}

.ces-table tr:last-child td {
    border-bottom: none;
}

/* =========================
   DOWNLOAD BUTTON
========================= */
.ces-manage {
    text-align: right;
}

.ces-download-btn {
    background: #673DE6;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
	transition: 350ms ease-in-out;
}

.ces-download-btn:hover {
    background: #5025D1;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .ces-table {
        border: none;
        background: transparent;
    }

    .ces-table thead {
        display: none;
    }

    .ces-table tbody {
        display: block;
    }

    .ces-table tr {
        display: block;
        background: #fff;
        border: 1px solid #d5dfff;
        border-radius: 8px;
        margin-bottom: 12px;
        padding: 16px;
    }

    .ces-table td {
        display: block;
        border-bottom: 1px solid #d5dfff !important;
        padding: 8px 0;
    }

    .ces-table td:last-child {
        border-bottom: none !important;
    }

    .ces-manage {
        text-align: left;
        padding-top: 10px;
    }

    .ces-table::before {
        content: attr(data-mobile-title);
        display: block;
        font-weight: 600;
        padding: 14px;
        background: #fafbff;
        border: 1px solid #d5dfff;
        border-bottom: none;
        border-radius: 8px 8px 0 0;
        margin-bottom: -8px;
    }
}