@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');
* {
    font-family: 'Rubik', sans-serif;
    box-shadow: none;
}
body {
    background-color: aliceblue;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

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

input {
    outline: none !important;
}

.overlay {
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #ffffff;
    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%);
    padding: 0;
}

a.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: white;
    font-weight: 500;
}

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: 1.15rem;
}

hr {
    border-color: aliceblue;
    width: 70%;
}

div.dataTables_wrapper {
    width:100% !important;
    }
.dataTables_wrapper .dataTables_info {color: white !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;
    }

}