@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');
* {
    font-family: 'Rubik', sans-serif;
    box-shadow: none;
    /* color: white; */
}
body {
    /* background: url("../img/tkk_mainbg.webp"); */
    background-color: beige;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100svh;
    height: max-content;
}

#app{
    width: 100%;
    height: 100%;
}

a {
    color:lightgray;
    transition: all 0.5s ease-in-out !important;
}

.container-fluid {
    width: 100%;
    height: 100%;
}

h5, h6 {
    letter-spacing: 0.4px;
    margin-bottom: 20px;
    line-height: 1.5rem;
    font-size: .9rem;
}

.table {
    background-color: aliceblue;
}

.text-center img {
    width: 9vw;
}

input {
    outline: none !important;
}

.overlay {
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffeeee;
    display: none;
}

.overlay[style*='display: block'] {
    display: flex !important;
}

nav.navbar {
    /* background: linear-gradient(135deg, rgba(45,35,231,1) 0%, rgba(9,9,121,1) 35%, rgba(143,236,255,1) 100%); */
    background: rgb(255,0,0);
background: linear-gradient(135deg, rgba(255,0,0,1) 0%, rgba(139,0,0,1) 35%, rgba(255,39,47,1) 100%);
}

a.navbar-brand {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
}

a {
    text-decoration: none !important;
}

a.nav-link {
    color: white; text-decoration:none; font-weight: 500;
}

/* .row {
    margin: 10px -15px;
} */

.btn-group-toggle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0px;
    flex-wrap: wrap;
}

.col-form-label {
    text-align: left;
    font-size: 115%;
}

span {
    font-size: 0.9rem;
}

hr {
    border-color: darkgray;
    /* width: 70%; */
}

div.dataTables_wrapper {
    width:100% !important;
    }    

@media only screen and (max-width: 1000px) {
    .text-center img {
        width: 15vw;
    }

    /* .h3, h3 {
        font-size: 95%;
        line-height: 1.25rem;
    } */

    span.aksi {
        display: none;
    }
    
    /* #divRight {
        margin-top: 65px;
    } */

    #divLeft, #newRight {
        display: none;
    }

    .col-form-label {
        font-size: 100%;
    }
}

@media only screen and (max-width: 648px) {
    .avatar img {
        width: 75px;
    }

    #divRight {
        height: 85% !important;
        justify-content: space-evenly !important;
        align-self: flex-start;
    }

    h1 {
        font-size: 300%;
    }
    h2 {
        margin-top: 20% !important;
        font-size: 1.65rem;
    }

    h4 {
        font-size: 1.2rem;
    }
}

@keyframes animPoster{
    0% {
        opacity: 0;
    }
    3%,17% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }

}