/* reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #E9EBEE !important;
}

#bottombar {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    height: 55px;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

a.bottombar-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-family: sans-serif;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
}

a.bottombar-link:hover {
    background-color: rgba(0, 0, 0, .2);
    color: #008BDE;
}

.bottombar-icon {
    font-size: 18px;
    margin-bottom: 2px;
}

a.bottombar-active {
    color: #008BDE;
}

#content {
    padding: 20px;
}

.card-border-bottom {
    border-bottom: 4px solid #008BDE;
}

#login {
    background-color: #008BDE;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wadah-kiri-kanan {
    display: flex;
}

/* mobile */
@media screen and (max-width: 768px) {
    .sidebar {
        display: none;
    }

    #bottombar {
        width: 100%;
    }

    body {
        padding-bottom: 100px;
    }

    .margin-hp-10 {
        margin-top: 10 !important;
    }
}

/* tablet */
@media screen and (max-width: 991px) {
    .sidebar {
        display: none;
    }

    #bottombar {
        max-width: 450px;
    }

    .bottombar-center {
        display: flex;
        justify-content: center;
    }

    body {
        padding-bottom: 100px;
    }

    #kiri {
        margin-right: 25px;
    }

    #kiri img {
        width: 250px;
        height: 300px;
        object-fit: cover;
    }
}

/* desktop */
@media screen and (min-width: 992px) {
    #bottombar {
        display: none;
    }

    .sidebar {
        background-color: white;
        width: 120px;
        position: fixed;
        top: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

    .sidebar #sidebar-menu {
        margin-top: 30px;
    }

    .sidebar #sidebar-menu .sidebar-link {
        width: 90px;
        height: 70px;
        text-decoration: none;
        color: #444;
        font-size: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .sidebar #sidebar-menu .sidebar-link-keluar {
        width: 90px;
        height: 70px;
        text-decoration: none;
        color: #444;
        font-size: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .sidebar #sidebar-menu .sidebar-link:hover {
        background-color: #008BDE;
        color: white;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .2);
    }

    .sidebar #sidebar-menu .sidebar-link-keluar:hover {
        background-color: #dc3545;
        color: white;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .2);
    }

    .sidebar #sidebar-menu .sidebar-active {
        background-color: #008BDE;
        color: white;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .2);
    }

    #content {
        padding: 20px;
        padding-left: 150px;
        padding-right: 30px;
    }

    .menu-atas {
        margin-left: 120px;
    }

    .icon-title {
        font-size: 12.5px;
        margin-top: 2px;
        display: block;
        letter-spacing: 1px;
    }

    #kiri {
        margin-right: 25px;
    }

    #kiri img {
        width: 250px;
        height: 300px;
        object-fit: cover;
    }
}