.elementor-12345 .elementor-element.elementor-element-ceccc1d{margin:30px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-ceccc1d *//* =========================================
   SECTION UTAMA
========================================= */

.sps-kerjasama-section {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 40px 30px 60px;
}


/* =========================================
   JUDUL
========================================= */

.sps-kerjasama-heading {
    text-align: center;
    margin-bottom: 35px;
}

.sps-kerjasama-heading h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 18px;

    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.2;

    color: #183b6b;
}

.sps-kerjasama-heading h2::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: 0;

    width: 120px;
    height: 5px;

    transform: translateX(-50%);

    background: #f5c400;
    border-radius: 20px;
}

.sps-kerjasama-heading p {
    max-width: 800px;
    margin: 18px auto 0;

    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   TAB TAHUN
========================================= */

.sps-year-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    align-items: center;

    width: 100%;

    margin: 25px 0 35px;
    padding: 8px;

    gap: 6px;

    background: linear-gradient(
        180deg,
        #eef3f8 0%,
        #e4ebf3 100%
    );

    border: 1px solid #cfd9e5;
    border-radius: 18px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.8),
        0 8px 25px rgba(20, 49, 85, 0.08);
}


/* =========================================
   BUTTON TAB
========================================= */

.sps-year-tab {
    position: relative;

    width: 100%;
    min-width: 0;

    padding: 17px 20px;

    border: none;
    border-radius: 12px;

    background: transparent;

    color: #33485f;

    font-size: 15px;
    font-weight: 700;
    font-family: inherit;

    text-align: center;
    letter-spacing: 0.2px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================
   HOVER
========================================= */

.sps-year-tab:hover {
    background: rgba(255, 255, 255, 0.65);

    color: #173f83;

    transform: translateY(-1px);
}


/* =========================================
   TAB AKTIF
========================================= */

.sps-year-tab.active {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #3d6b9b 0%,
        #244b7e 100%
    );

    box-shadow:
        0 6px 16px rgba(23, 63, 131, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.15);
}


/* =========================================
   EFEK GARIS TAB AKTIF
========================================= */

.sps-year-tab.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 5px;

    width: 32px;
    height: 2px;

    transform: translateX(-50%);

    background: #f5c400;

    border-radius: 10px;
}


/* =========================================
   FOCUS
========================================= */

.sps-year-tab:focus {
    outline: none;
}

.sps-year-tab:focus-visible {
    outline: 3px solid rgba(40, 90, 159, 0.25);
    outline-offset: 2px;
}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 1024px) {

    .sps-year-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .sps-year-tab {
        padding: 15px 15px;
        font-size: 14px;
    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 768px) {

    .sps-year-tabs {
        grid-template-columns: repeat(2, 1fr);

        padding: 6px;
        gap: 5px;

        border-radius: 14px;
    }

    .sps-year-tab {
        padding: 14px 10px;

        font-size: 13px;

        border-radius: 10px;
    }

}


@media (max-width: 480px) {

    .sps-year-tabs {
        grid-template-columns: 1fr;
    }

    .sps-year-tab {
        padding: 14px 18px;
    }

}


/* =========================================
   PANEL TABEL
========================================= */

.sps-table-panel {
    display: none;

    animation: spsFadeIn 0.4s ease;
}

.sps-table-panel.active {
    display: block;
}


@keyframes spsFadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   WRAPPER TABEL
========================================= */

.sps-datatable-wrapper {
    width: 100%;

    overflow-x: auto;

    padding: 10px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(16, 42, 67, 0.08);
}


/* =========================================
   DATATABLE
========================================= */

.sps-datatable-wrapper table {
    width: 100% !important;

    border-collapse: separate !important;
    border-spacing: 0 !important;

    margin: 0 !important;
}


/* HEADER */

.sps-datatable-wrapper table thead th {
    padding: 18px 14px !important;

    background: linear-gradient(
        135deg,
        #dcebf5 0%,
        #c8dce9 100%
    ) !important;

    color: #26394a !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    text-transform: uppercase;

    border-bottom: 3px solid #173f83 !important;

    vertical-align: middle !important;
}


/* HEADER PERTAMA */

.sps-datatable-wrapper table thead th:first-child {
    border-radius: 12px 0 0 0;
}


/* HEADER TERAKHIR */

.sps-datatable-wrapper table thead th:last-child {
    border-radius: 0 12px 0 0;
}


/* BODY */

.sps-datatable-wrapper table tbody td {
    padding: 15px 14px !important;

    color: #374151 !important;

    font-size: 15px !important;

    line-height: 1.65 !important;

    vertical-align: middle !important;

    border-bottom: 1px solid #e7ebf0 !important;
}


/* ZEBRA */

.sps-datatable-wrapper table tbody tr:nth-child(even) {
    background: #f8fafc !important;
}


/* HOVER */

.sps-datatable-wrapper table tbody tr {
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.sps-datatable-wrapper table tbody tr:hover {
    background: #f0f6fb !important;
}


/* NOMOR */

.sps-datatable-wrapper table tbody td:first-child {
    font-weight: 700;
    color: #173f83 !important;
}


/* GAMBAR LOGO */

.sps-datatable-wrapper table tbody img {
    display: block;

    max-width: 90px;
    max-height: 80px;

    width: auto;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}


/* LINK */

.sps-datatable-wrapper table a {
    color: #c99200 !important;

    font-weight: 600;

    text-decoration: none;

    transition: 0.2s ease;
}

.sps-datatable-wrapper table a:hover {
    color: #173f83 !important;

    text-decoration: underline;
}


/* =========================================
   SEARCH DATATABLE
========================================= */

.sps-datatable-wrapper .dataTables_filter {
    float: none !important;

    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;

    margin-bottom: 20px !important;

    color: #374151;

    font-size: 15px;
    font-weight: 600;
}


.sps-datatable-wrapper .dataTables_filter label {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
}


.sps-datatable-wrapper .dataTables_filter input {
    width: 240px !important;

    padding: 11px 15px !important;

    border: 1px solid #d5dce5 !important;
    border-radius: 10px !important;

    background: #ffffff !important;

    outline: none;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}


.sps-datatable-wrapper .dataTables_filter input:focus {
    border-color: #285a9f !important;

    box-shadow:
        0 0 0 3px rgba(40, 90, 159, 0.12) !important;
}


/* =========================================
   HILANGKAN
   TAMPILKAN XX ENTRI
========================================= */

.sps-datatable-wrapper .dataTables_length {
    display: none !important;
}


/* =========================================
   INFO
========================================= */

.sps-datatable-wrapper .dataTables_info {
    padding-top: 20px !important;

    color: #6b7280 !important;

    font-size: 14px !important;
}


/* =========================================
   PAGINATION
========================================= */

.sps-datatable-wrapper .dataTables_paginate {
    padding-top: 15px !important;
}


.sps-datatable-wrapper .paginate_button {
    border-radius: 8px !important;

    margin: 0 2px !important;

    transition: 0.2s ease !important;
}


.sps-datatable-wrapper .paginate_button.current {
    background:
        linear-gradient(
            135deg,
            #285a9f,
            #173f83
        ) !important;

    color: #ffffff !important;

    border: none !important;
}


.sps-datatable-wrapper .paginate_button:hover {
    background: #e8f0f8 !important;

    color: #173f83 !important;

    border-color: transparent !important;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {

    .sps-year-tab {
        min-width: auto;

        padding: 14px 20px;

        font-size: 14px;
    }

}


@media (max-width: 768px) {

    .sps-kerjasama-section {
        padding: 30px 15px 50px;
    }


    .sps-year-tabs {
        justify-content: flex-start;

        overflow-x: auto;

        padding-bottom: 5px;
    }


    .sps-year-tab {
        flex: 0 0 auto;

        min-width: 140px;

        padding: 13px 18px;
    }


    .sps-datatable-wrapper {
        padding: 5px;

        border-radius: 12px;
    }


    .sps-datatable-wrapper .dataTables_filter {
        justify-content: flex-start !important;
    }


    .sps-datatable-wrapper .dataTables_filter label {
        width: 100%;

        flex-direction: column;
        align-items: flex-start;
    }


    .sps-datatable-wrapper .dataTables_filter input {
        width: 100% !important;

        margin-left: 0 !important;
    }


    .sps-datatable-wrapper table thead th,
    .sps-datatable-wrapper table tbody td {
        font-size: 13px !important;

        padding: 12px 10px !important;
    }

}/* End custom CSS */