@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;
}

.load-animasi-1 {
    animation: fadeLoop 1.5s ease-in-out infinite;
}

@keyframes fadeLoop{
    0%{
        opacity: .35;
        transform: scale(.98);
    }
    50%{
        opacity: 1;
        transform: scale(1);
    }
    100%{
        opacity: .35;
        transform: scale(.98);
    }

}

.container-custom{
    width:100%;
    padding-top:0.5rem;
    padding-left:0.5rem;
    padding-right:0.5rem;
    margin:auto;
}

@media (min-width: 1400px){

    .container-custom{
        max-width:1200px;
    }

}

/* =====================================================
   GLIGHTBOX CUSTOM FOR LIMITLESS
===================================================== */

.gslide-description {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;

    background: rgba(0, 0, 0, .65) !important;
    backdrop-filter: blur(12px);

    border-radius: 16px;
    padding: 18px 22px;

    max-width: unset !important;
    width: auto !important;
}
.gdesc-inner {
    padding: 0 !important;
}
.gslide-title {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.5;
    margin-bottom: 8px !important;
}
.gslide-desc {
    color: rgba(255,255,255,.85) !important;
    font-size: 14px !important;
    line-height: 1.7;
}
.gbtn {
    background: rgba(0,0,0,.45) !important;
    border-radius: 50%;
    transition: all .2s ease;
}

.gbtn:hover {
    background: rgba(0,0,0,.7) !important;
}
.gclose {
    background: rgba(0,0,0,.45) !important;
    border-radius: 50%;
}
.goverlay {
    background: rgba(0,0,0,.92) !important;
}
@media (max-width:768px) {

    .gslide-description {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px 16px;
    }

    .gslide-title {
        font-size: 16px !important;
    }

    .gslide-desc {
        font-size: 13px !important;
    }
}	
