@media only screen and (max-width: 560px) {
    .content        { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0;}    
  	.row            { margin: 0; padding:0;}    
  	.card           { border-radius: 3px; }
  	.mobile-hide    { visibility: hidden; display: none;}
  	.modal-body     { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0;}    

  	.col-mob-s 	    { padding-left: 0;}    
  	.col-mob-e 	    { padding-right: 0;}    

	.col-mob-t 	    { padding-top: 10px;}    
  	.col-mob-b 	    { padding-bottom: 10px;}    

	.on-desktop     { display: none; }
	.on-mobile 		{ display: block; }

}

.loader {
    width: 100%;
    height: 4.8px;
    display: inline-block;
    position: relative;
    background: rgba(230, 245, 247, 0.9);
    overflow: hidden;
}
.loader::after {
    content: '';
    width: 96px;
    height: 4.8px;
    background: #049aad;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    animation: hitZak 1s linear infinite alternate;
}

@keyframes hitZak {
    0% {
        left: 0;
        transform: translateX(-1%);
    }
    100% {
        left: 100%;
        transform: translateX(-99%);
    }
}
  
.table tr td, th {
    /*border-bottom: dashed 1px;*/
}

.border-top-custom {
    border-top-style: dotted;
    border-top-width: 1px;
    border-top-color: #7a7a7a;
}

.border-bottom-custom {
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    border-bottom-color: #7a7a7a;
}

.border-start-custom {
    border-left-style: dotted;
    border-left-width: 1px;
    border-left-color: #7a7a7a;
}

.custom-select2 .select2-selection__choice {
    display: block;
    width: 100%;
}

.blink {
    animation: blink-animation 0.9s steps(2, start) infinite;
    -webkit-animation: blink-animation 0.9s steps(2, start) infinite;
}
  
@keyframes blink-animation {
    to {
        visibility: hidden;
    }
    }

    @-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.5s ease infinite;
}

.text-wrap-strong {
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.table-custom-1 thead th {
    padding: 7px;
}

.table-custom-1 tbody td {
    padding: 6px;
}

.table-custom-1 tfoot td {
    padding: 6px;
}

.table-laporan thead th {
    padding: 6px;
    border: solid #d0d0d0 0.5px;
}

.table-laporan tbody td {
    padding: 5px;
    border: solid #d0d0d0 0.5px;
}

.table-responsive.dragging {
    cursor: grabbing;
}

.fs-sm-1 {
    font-size: 11px;
}

.dataTables_scrollBody.drag-scroll {
    cursor: grab;
    user-select: none; /* mencegah teks di-drag */
}

.dataTables_scrollBody.drag-scroll.dragging {
    cursor: grabbing;
}

.table2 tr {
    border-bottom: solid 1px #000;
}

.table td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    vertical-align: middle;
}

.text-muted-1 {
    color: #838383;
}