.center-position {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center-position-antrian {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.steps .step {
    display: block;
    width: 100%;
    margin-bottom: 35px;
    text-align: center;
}

.steps .step .step-icon-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 55px;
    text-align: center;
}

.steps .step .step-icon-wrap::before,
.steps .step .step-icon-wrap::after {
    display: block;
    position: absolute;
    top: 41%;
    width: 50%;
    height: 10px;
    margin-top: -1px;
    background-color: #e1e7ec;
    content: "";
    z-index: 1;
}

.steps .step .step-icon-wrap::before {
    left: 0;
}

.steps .step .step-icon-wrap::after {
    right: 0;
}

.steps .step .step-icon {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    border: 1px solid #e1e7ec;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #374250;
    font-size: 16px;
    line-height: 51px;
    z-index: 5;
}

.steps .step .step-title {
    margin-bottom: 0;
    color: #606975;
    font-size: 12px;
    font-weight: 500;
}

.steps .step:first-child .step-icon-wrap::before {
    display: none;
}

.steps .step:last-child .step-icon-wrap::after {
    display: none;
}

.steps .step.completed .step-icon-wrap::before,
.steps .step.completed .step-icon-wrap::after {
    background-color: var(--bs-primary);
}

.steps .step.completed .step-icon {
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
    color: #fff;
}

.steps .step.canceled .step-icon-wrap::before,
.steps .step.canceled .step-icon-wrap::after {
    background-color: var(--bs-danger);
}

.steps .step.canceled .step-icon {
    border-color: var(--bs-danger);
    background-color: var(--bs-danger);
    color: #fff;
}

@media (max-width: 576px) {
    .flex-sm-nowrap .step .step-icon-wrap::before,
    .flex-sm-nowrap .step .step-icon-wrap::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .flex-md-nowrap .step .step-icon-wrap::before,
    .flex-md-nowrap .step .step-icon-wrap::after {
        display: none;
    }
    .mobile-height-image-25 {
        height: 25px;
    }
}

@media (max-width: 991px) {
    .flex-lg-nowrap .step .step-icon-wrap::before,
    .flex-lg-nowrap .step .step-icon-wrap::after {
        display: none;
    }
}

@media (max-width: 1200px) {
    .flex-xl-nowrap .step .step-icon-wrap::before,
    .flex-xl-nowrap .step .step-icon-wrap::after {
        display: none;
    }
}

.bg-faded,
.bg-secondary {
    background-color: #f5f5f5 !important;
}

.border-box {
    position: relative;
    padding: 5px;
}

.border-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    border-left: 4px solid orange;
}

.scroll-container {
    margin-top: -20px;
    width: 750px;
    height: 540px; /* Tinggi dari area konten yang terlihat */
    overflow: hidden; /* Sembunyikan bagian di luar kontainer */
    position: relative;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Tambahkan gap antara item jika diperlukan */
    position: absolute;
}

#flipbook {
    width: 800px;
    height: 600px;
    margin: 0 auto;
    background-color: #E3FEF7;
}

.page-pdf {
    width: 100%;
    height: 100%;
    display: inline-block;
}

/* KalkulatorMasaKerja.css */

.month-input {
    position: relative;
    color: #E3FEF7; /* Ini untuk teks di dalam input */
}

.month-input::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Mengubah ikon kalender menjadi putih */
    opacity: 1;
}

.month-input:hover {
    cursor: pointer; /* Agar saat di-hover seluruh area form bisa diklik */
}

.month-input::-webkit-datetime-edit-year-field,
.month-input::-webkit-datetime-edit-month-field {
    color: #E3FEF7; /* Mengubah teks di dalam field bulan dan tahun menjadi putih */
}

