/* ------------------------------------- */
/* untuk mengatur head body footer */
/* agar footer bisa paling bawah */
html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* ------------------------------------- */
.tulisan {
    font-family: sans-serif;
    font-size: 10pt;
    text-align: right;
    color: rgb(105, 105, 105);
}

.cari {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-size: 16px;
    padding: 12px 20px 12px 40px;
}

.search-icon {
    /* mengatur search icon di search box*/
    position: absolute;
    top: 36%;
    left: 10px;
    transform: translateY(-50%);
    /* atur posisi vertikal tengah */
    background-image: url('https://unper.ac.id/wp-content/uploads/2022/01/imageSu/searchGrey-removebg-preview.png');
    background-size: 20px 20px;
    /* menyesuaikan ukuran ikon  */
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    z-index: 1;
    /* cek ikon ada di atas input */
    /* color: #9aa0a6; */
}

.voice-icon {
    /* mengatur voice icon di search box*/
    position: absolute;
    top: 36%;
    right: 10px;
    transform: translateY(-50%);
    background-image: url('https://unper.ac.id/wp-content/uploads/2022/01/imageSu/google-voice.png');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    z-index: 1;
}

.input-container {
    position: relative;
    width: 40%;
    margin: 0 auto;
    /* untuk pusatkan input */
}


.btn-group .button {
    background-color: #f0f0f0;
    border: none;
    color: rgb(37, 37, 37);
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    /* float: center; */
}

.f1 {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #9aa0a6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.navbar-f1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.navbar-f2 {
    display: block;
    padding: 15px;
    white-space: nowrap;
    color: #999da2;
}

.avatar {
    height: 25px;
    width: 25px;
    border-radius: 50px;
}

.avatar img {
    height: 100%;
    width: 100%;
}