/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}

/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bs-sidebar: #021818;
    --bs-background: #e8e8e8;
}

html,
body {
    font-family: 'Poppins', sans-serif !important;
}

.cursor-pointer {
    cursor: pointer;
}

/* ICON */
.icon {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: var(--bs-dark);
    fill: var(--bs-dark);
}

.fill-primary {
    fill: var(--bs-primary);
}

.fill-secondary {
    fill: var(--bs-secondary);
}

.fill-light {
    fill: var(--bs-light);
}

.fill-dark {
    fill: var(--bs-dark);
}

/* LOGIN */
.login-main {
    min-height: 100vh;
}

.login-main-image {
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
}

.login-main-image-wrapper {
    width: calc(100% - 500px);
}

.login-main-form-wrapper {
    width: 500px;
}

.login-main-form .icon {
    width: 20px;
    height: 20px;
}

/* ADMIN */
.admin {
    background-color: var(--bs-background);
    padding-right: 0 !important;
}

.admin .header-logo {
    max-height: 40px;
    width: auto;
}

.admin .header-user-photo {
    max-width: 40px;
    height: auto;
}

.admin .header-sidebar-button {
    width: 42px;
    height: 42px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin .sidebar {
    width: 300px;
    height: calc(100vh - 70px);
    background-color: var(--bs-sidebar);
}

.admin .main-wrapper {
    width: calc(100% - 300px);
}

.admin .sidebar .sidebar-link {
    color: var(--bs-white);
    background-color: none;
    transition: all 250ms linear;
}

.admin .sidebar .sidebar-link .icon {
    fill: var(--bs-white);
    transition: all 250ms linear;
}

.admin .sidebar .sidebar-link:hover,
.admin .sidebar .sidebar-link.active {
    background-color: var(--bs-white);
    color: var(--bs-primary);
}

.admin .sidebar .sidebar-link:hover .icon,
.admin .sidebar .sidebar-link.active .icon {
    fill: var(--bs-primary);
}

.admin .jobdesk-input-label {
    width: 108px;
}

.admin .dataTables_filter {
    display: none !important;
}

.admin .dataTables_length {
    display: block !important;
    margin-bottom: 1rem !important;
}

.admin .col-no {
    min-width: 100px;
}

.admin .col-aksi {
    min-width: 140px;
}

.admin .col-utama {
    min-width: 300px;
}

.admin .col-medium {
    min-width: 200px;
}

.admin .col-date {
    min-width: 140px;
}

@media (max-width: 991.98px) {

    .login-main-form-wrapper {
        width: 100%;
    }

    .login-main-form {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}