/* google font inport */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/* style */
*{
    padding: 0;
    margin: 0;
}
body{
    background-color: #0F365D;
    font-family: Roboto;    
    overflow-x: hidden;
}

/* loader */

.loader{
    position: fixed;
    display: block;
    background-color: aliceblue;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999;
}


/* navigasi */
nav{
    padding: 1% 2%;
    background-color: #79e1f5;
    box-shadow: 1px 1px 3px #4d678c;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: baseline;
}
.logo_index{
    display: flex;
    text-align: center;
    flex-direction: column;
}
nav img{
    width: 5%;
}
/* container homepage */
.container{
    padding: 40px 10%;
}
.container label{
    color: aliceblue;
    display: flex;
    flex-direction: row;
}
.bintangmerah{
    color: rgb(255, 111, 111);
}

/* container admin */
.container-admin{
    margin: 2% 5% 0px 15%;
}
.tanggalstyle{
    color: wheat;
    
}
.tanggalstyle input{
    border-radius: 100px;
}
/* side menu */

.sidemenu{
    background-color: #1e1e1e;
    width: 13%;
    height: 84.9vh;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-left: 5px;
}
.sidemenu a{
    font-size: 20px;
    text-decoration: none;
    /* background-color: #6bbdce; */
    color: white;
    transition: 0.5s;
}
.sidemenu a:hover{
    color: rgb(191, 164, 164);
}
.aktif{
    padding: 2vh 1vw;
    background-color: #4f4e4e;

}


/* footer */

footer{
    /* padding-top: px; */
    width: 100vw;
    height: 10vh;
    text-align: center;
    font-size: 0.93rem;
    color: aliceblue;
    background-color: #193436;
    position: absolute;
    bottom: 0;
    
}
footer p{
    padding: 3vh;
}
@media (min-width :1300px){
    footer{
        position: relative;
        bottom: 0;
    }
}