.spinner-container {
    position: relative;
    display: inline-block;
}

#initspinner{
    display: inline-block;
    border: 12px solid #f3f3f3;
    border-top: 12px solid #009ae0;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 2s linear infinite;
}

.spinner-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.splash-logo {
    width: 80%;
    max-width: 256px;
    animation: pulse 1.5s infinite;
}

.splash-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@keyframes pulse {
    0% {
        transform: scale(1); /* Initial size */
    }
    50% {
        transform: scale(1.1); /* Scale up to 1.2 times its original size */
    }
    100% {
        transform: scale(1); /* Return to the original size */
    }
}

.text-intro {
    font-size: 18px !important;
    margin-bottom: 0px !important;
    margin-top: 40px !important;
}

.bg-intro {
    background-image: url('../img/intro/batik.svg');
    background-repeat: no-repeat;
}

.container-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88vh;
    margin-bottom: 10px;
}

.img-intro {
    border-radius: 20px;
    width: 90% !important;
}

@media only screen and (max-width: 767px) {
    .img-login {
        max-width: 200px;
    }
}

@media only screen and (min-width: 768px){
    .img-intro {
        max-width: 600px;
    }
    .img-login {
        max-width: 200px;
    }
}

.img-captcha {
    max-height: 60px;
    object-fit: contain;
    width: auto !important;
}

.icontoolbar {
    font-size: 25px !important;
    height: 25px !important;
}

.custom-file-upload {
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    font-size: 100px;
    right: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.custom-file-label {
    margin-right: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.input-group-text {
    padding: 6px;
    background-color: var(--light-gray);
    color: var(--title-color);
    font-weight: 500;
    border-radius: 10px;
    height: 32px;
    display: flex;
    align-items: center;
}
.input-group-text:not(:first-child) {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}
.input-group-text:not(:last-child) {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.input-group > input {
    flex: 1;
    border: none;
    margin-bottom: 0 !important;
}
.input-group > input:not(:first-child) {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    padding-left: 0px !important;
}
.input-group > input:not(:last-child) {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.badge-produksi {
    padding: 12px;
    color: #1E2B47;
    background: #D9D9D9;
}
.badge-produksi.main {
    color: #0C2E00;
    background: #27D100;
}

.text-produksi {
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1rem;
}

.card-aktivitas {
    display: flex;
    justify-content: flex-start;
    padding: 12px 16px;
}

.card-aktivitas .title {
    color: #000000;
    font-weight: bolder;
    font-size: 15px;
}

.card-aktivitas .text {
    color: #000000;
}
.card-aktivitas .date {
    color: var(--text-color);
    font-weight: normal;
    font-size: 15px;
}

.card-aktivitas .aktivitas-right {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    margin-left: auto;
}

.table-keuangan {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.table-keuangan table {
    border-collapse: collapse;
    width: 100%;
}

.table-keuangan td {
    padding: 8px;
}

.table-keuangan tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table-keuangan tr:nth-child(odd) {
    background-color: #ffffff;
}

.table-keuangan tr {
    justify-content: space-between;
}

.table-keuangan td:first-child {
    vertical-align: top;
    font-weight: bold;
    width: 120px;
}

.color-main {
    --f7-theme-color: #97AE5E;
    --f7-theme-color-rgb: 151, 174, 94;
    --f7-theme-color-shade: #839A4A;
    --f7-theme-color-tint: #ABC272;
}

.text-bold {
    font-weight: bold;
}

.gap-1 > * {
    margin-right: 0.25rem;
    margin-bottom: 0.4rem;
}

.gap-1 > *:last-child {
    margin-right: 0;
}

.fs-18 {
    font-size: 18px !important;
}

.badge-white {
    background-color: white;
    color: black;
}

.badge-white span {
    line-height: 20px;
}
