.sidebar{
    position: fixed;
    left:-200px;
    top:0;
    height: 100%;
    width: 200px;
    transition: left .5s;
    z-index: 3;
    overflow-x: hidden;
    overflow-y: auto;
    background-image: url(img/pattern7.png);
    background-repeat: repeat;
    padding-top: 70px;
}
.navbar-sidebar, .navbar-offset{
    height:60px;
}
.navbar-offset{
    transition: margin-left .5s;
}
.main-area{
    padding: 1rem;
    transition: margin-left .5s;
}
.sidebar-open{
    left:0 !important;
}
.menu-button{
    position: relative;
}
.menu-button:hover{
    animation: pulsate-bck 0.5s ease-in-out infinite both;
}
.text-small{
    font-size: 0.8rem;
}
.text-smaller{
    font-size: 0.6rem;
}
.jata-negara-pic{
    height: 40px;
}
.mainmenu-link{
    color: var(--bs-light);
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    display: flex;
    gap:10px;
    align-items: center;
}
.mainmenu-link:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mainmenu-link:last-child {
    border-bottom-width:1px !important;
}
.boxtable {
    box-shadow: none;
}
.boxtable tr:last-child td{
    border-bottom-width: 0;
}
.dataTables_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: .3rem;
    align-items: center;
}
.dataTables_wrapper table{
    flex-basis:100%;
}
div.dataTables_wrapper div.dataTables_info {
    padding-top: 0;
    font-size: .9rem;
}
.color-change{
	animation: color-change 8s linear infinite alternate both;
}
.avatar-program{
    width: 50px;
    height: 100%;
}
.avatar-program img{
    height: 100%;
}
.name-program{
    max-height: 100px;
}
.add-pegawai-avatar{
    height:50px;
    width:50px;
}
.small-pegawai-avatar{
    height:40px;
    width:40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.small-pegawai-avatar img{
    width:100%;
}
.big-pegawai-avatar{
    height:70px;
    width:70px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.big-pegawai-avatar img{
    width:100%;
}
.anim-rotate{
    animation: rotate 1s linear 0s infinite normal forwards;
}
.toast-container{
    padding:80px 10px 10px 10px;
}
.td-fit{
    width:1px;
}
.dtr-details{
    width: 100%;
}
.dtr-title::after{
    content: ' : ';
}
.tmce-disp p,.tmce-disp ol,.tmce-disp ul{
    margin:0;
}
.table th{
    font-weight: bold !important;
    vertical-align: middle !important;
}
.highcharts-credits{
    display: none;
}
.dtrg-level-0 th{
    background-color: var(--bs-yellow) !important;
    color: var(--bs-dark) !important;
}
.dtrg-level-1 th{
    background-color: var(--bs-purple) !important;
    color: var(--bs-light) !important;
}
li.paginate_button:not(.previous):not(.next) {
    display: none;
}
.text-bg-warning{
    color: var(--bs-dark) !important;
}
.btn-warning{
    --bs-btn-color: var(--bs-dark) !important;
}
.pagination {
    --bs-pagination-active-color: var(--bs-dark);
    --bs-pagination-active-bg: var(--bs-warning);
    --bs-pagination-active-border-color: var(--bs-border-color);
}
#qr img{
    margin: 0 auto;
}
.scale15{
    transform: scale(1.5);
}
.sulit-background{
    background-size: 150px;
    background-image: url("/assets/img/sulit.png");
    background-repeat: repeat;
}
.sticky-under-nav {
    position: sticky;
    top: 70px;
}
/* md */
@media (min-width: 767.98px) {
    .dataTables_wrapper{
        justify-content: space-between;
    }
}
/* lg */
@media (min-width: 991.98px) {
    li.paginate_button:not(.previous):not(.next) {
        display: inline;
    }
    .main-area{
        padding:2rem;
        margin-left: 200px;
    }
    .avatar-program{
        width: 80px;
    }
    .sidebar{
        left:0;
    }
    .name-program{
        max-height: 70px;
    }
    .sidebar-open{
        left: -200px !important;
    }
    .main-area-open{
        margin-left: 0 !important;
    }
}
/* xl */
@media (min-width: 1199.98px) {
    
}
/* xxl */
@media (min-width: 1399.98px) {

}

@keyframes pulsate-bck {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes color-change{0%{background:#19dcea}25%{background:#b22cff}50%{background:#ea2222}75%{background:#f5be10}100%{background:#3bd80d}}
@keyframes rotate {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}