@font-face {
    font-family: pop;
    src: url(./Fonts/Poppins-Medium.ttf);
}

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: pop;
    flex-direction: column;
}
.head {
    text-align: center;
}
.head_1 {
    font-size: 30px;
    font-weight: 600;
    color: #333;
}
.head_1 span {
    color: #ff4732;
}
.head_2 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 3px;
}

ul li {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}
ul li .icon {
    font-size: 35px;
    color: #ff4732;
    margin: 15px 0;
}
ul li .text {
    font-size: 14px;
    font-weight: 600;
    color: #3085d6;
}

/* Progress Div Css  */

ul li .progress {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(68, 68, 68, 0.781);
    margin: 0 30px;
    display: grid;
    place-items: center;
    color: #fff;
    position: relative;
    cursor: pointer;
}
.progress::after {
    content: " ";
    position: absolute;
    width: 5px;
    height: 55px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background-color: rgba(68, 68, 68, 0.781);
}
.one::after {
    height: 0;
}
ul li .progress .uil {
    display: none;
}
ul li .progress p {
    font-size: 13px;
}

/* Active Css  */

ul li .active {
    background-color: #3085d6;
    display: grid;
    place-items: center;
}
li .active::after {
    background-color: #3085d6;
}
ul li .active p {
    display: none;
}
ul li .active .uil {
    font-size: 20px;
    display: flex;
}

.autobreakline {
    display: inline-block;
    word-break: break-word;
}

.custom-list {
    list-style: none;
    display: flex;
    flex-direction: row;
}

.custom-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px; /* Mengatur jarak antara item */
}

.custom-list li .icon {
    font-size: 35px;
    color: #ff4732;
    margin-bottom: 10px; /* Mengubah margin menjadi bottom agar horizontal */
}

.custom-list li .text {
    font-size: 14px;
    font-weight: 600;
    color: #3085d6;
}

/* Progress Div Css  */

.custom-list li .progress {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(68, 68, 68, 0.781);
    display: grid;
    place-items: center;
    color: #fff;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px; /* Mengubah margin menjadi bottom agar horizontal */
}

.custom-list .progress::after {
    content: " ";
    position: absolute;
    width: 125px;
    height: 5px;
    background-color: rgba(68, 68, 68, 0.781);
    right: 30px;
}
.custom-list .one::after {
    height: 0;
}
.custom-list li .progress .uil {
    display: none;
}
.custom-list li .progress p {
    font-size: 13px;
}

/* Active Css  */

.custom-list li .active {
    background-color: #3085d6;
    display: grid;
    place-items: center;
}
.custom-list li .active::after {
    background-color: #3085d6;
}
.custom-list li .active p {
    display: none;
}
.custom-list li .active .uil {
    font-size: 20px;
    display: flex;
}
@media (max-width: 768px) {
    .custom-list {
        flex-direction: column;
        align-items: center;
    }

    .custom-list li {
        margin-right: 0; /* Menghapus margin right */
        margin-bottom: 20px; /* Menambah margin bottom agar vertikal */
        text-align: center;
    }

    .custom-list li .progress {
        margin-bottom: 0; /* Menghapus margin bottom */
    }

    .custom-list .progress::after {
        width: 5px;
        height: 100px; /* Mengubah tinggi menjadi vertikal */
        right: 0;
        top: 30px; /* Menyesuaikan posisi */
    }
}

/* CSS untuk membuat tabel menjadi fixed */
.table-fixed {
    width: 100%;
    table-layout: fixed;
}

/* CSS untuk membuat header tabel tetap */
.table-fixed thead {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #fff; /* Ganti warna latar belakang sesuai kebutuhan */
}

/* CSS untuk membuat kolom tabel tetap */
.table-fixed th {
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: #fff; /* Ganti warna latar belakang sesuai kebutuhan */
}

.disabled {
    background-color: #ebebe4;
    cursor: not-allowed;
}

.dataTables_wrapper .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.dataTables_wrapper .top .dt-buttons {
    margin-right: 10px;
}
