@charset "utf-8";
/* CSS Document */

*, *:after, *:before {	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

html, body {
    height: 100%;
    min-height: 100%;
}

body {
	font-family: 'Roboto Slab', sans-serif;
    padding-top: 35px;
	background-color: #F1F8E9;
    font-size: 14px;
} 


a {
    text-decoration: none;
}

/*table>tbody>tr>td, table>tbody>tr>th, table>tfoot>tr>td, table>tfoot>tr>th, table>thead>tr>td, table>thead>tr>th {
    padding: 6px !important;
}
 */

/* Dalam file CSS kustom Anda */
.table-responsive td, 
.table-responsive th {
    /* Mencegah teks memecah baris, memaksa lebar kolom sesuai isi */
    white-space: nowrap; 
	padding-left: 20px;
	padding-right: 7px;
}

@media print {
    /* 1. Target Div Pembungkus */
    .table-responsive,
    .overflow-x-auto {
        /* Menonaktifkan scroll saat mencetak */
        overflow-x: visible !important; 
        /* Pastikan elemen pembungkus tidak memiliki lebar tetap */
        width: auto !important;
    }

    /* 2. Target Tabel */
    #mainTable-responsive {
        /* Memaksa tabel untuk menggunakan lebar minimum yang dibutuhkan */
        width: max-content !important; 
        /* Atau bisa menggunakan lebar 100% jika ingin memecah kolom */
        /* width: 100% !important; */
    }
	
	/* Menentukan orientasi kertas ke Landscape 
    @page {
        size: landscape; 
    }*/
}


.printdotmatrik {
	font-family: sans-serif, Verdana, Geneva !important;
}

.unselect-text {
	-moz-user-select: none; 
	-webkit-user-select: none; 
	-ml-user-select:none; 	
	-o-user-select:none;
	user-select:none;
}

.logo {
	/*width: 90px !important; */
	height: 90px !important; 
	
	float: left !important; 
	margin-right: 10px !important;
	-webkit-print-color-adjust: exact;
}

#mnuBottom .navbar-nav li a:hover {
	text-decoration: underline;    
}

.content-page {min-height: 100%;}
.content-page-inside {padding-bottom: 65px;}

.loader {
	z-index: 9999;
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid blue;
	border-right: 16px solid green;
	border-bottom: 16px solid red;
	width: 50px; height: 50px;
	position: absolute;
	top: 5px; left: 46%;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	display: none;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;    
}

li ol > li {
  margin: 0;
}

li ol > li:before {
  content: counters(item, ".") " ";
}

.listimage {	
	list-style-position: inside;
	list-style-image: url("../img/icon-check.png");
}

.iconcheck {
	margin-top: 1px;
	background-image:url(../img/icon-check.png);
	width: 20px;
	height: 20px;
}

/*------ Utilities ------- */

.text-size8 {font-size: 8px;}
.text-size9 {font-size: 9px;}
.text-size10 {font-size: 10px;}
.text-size11 {font-size: 11px;}
.text-size12 {font-size: 12px;}
.text-size13 {font-size: 13px;}
.text-size14 {font-size: 14px;}
.text-size15 {font-size: 15px;}
.text-size16 {font-size: 16px;}
.text-size17 {font-size: 17px;}
.text-size18 {font-size: 18px;}
.text-size19 {font-size: 19px;}
.text-size20 {font-size: 20px;}

._bg-verydark {background-color: rgba(0,0,0,.85);}
._bg-light {background-color: #D1D1D1;}
.bg-verydark {background-color: #0F0F0F;}

.text-black {color: black;}

.mr1 {margin-right: 1px;}
.mr2 {margin-right: 2px;}
.mr3 {margin-right: 3px;}
.mr4 {margin-right: 4px;}
.mr5 {margin-right: 5px;}

@media screen and (max-width: 576px) {
    h1 {font-size: 20px;}
    h2 {font-size: 19px;}
    h3 {font-size: 17px;}
    h4 {font-size: 15px;}
    h5 {font-size: 14px;}
    
	.h1 {font-size: 20px;}
	.h2 {font-size: 19px;}
	.h3 {font-size: 17px;}
	.h4 {font-size: 15px;}
	.h5 {font-size: 14px;}
    
	.lead {font-size: 14px;}
	.navbar-brand {font-size: 17px;}
    
	li {font-size: 12px;}
	p {font-size: 12px;}
    th, td {font-size: 12px;}
    
    .iconcheck {display: none;}
	.colhide {display: none;}
	.list-unstyled {list-style: circle; margin-left: 20px;}	
}

.line-left-blue {border-left: solid 3px #1C00DB;}
.line-left-green {border-left: solid 3px #09AF00;}
.line-left-pink {border-left: solid 3px #EF0078;}
.line-left-orange {border-left: solid 3px #F47100;}
.line-left-red {border-left: solid 3px #B71C1C;}

.line-bottom-blue {border-bottom: solid 3px #1C00DB;}
.line-bottom-green {border-bottom: solid 3px #09AF00;}
.line-bottom-pink {border-bottom: solid 3px #EF0078;}
.line-bottom-orange {border-bottom: solid 3px #F47100;}
.line-bottom-red {border-bottom: solid 3px #B71C1C;}

.line-top-blue {border-top: solid 3px #1C00DB;}
.line-top-green {border-top: solid 3px #09AF00;}
.line-top-pink {border-top: solid 3px #EF0078;}
.line-top-orange {border-top: solid 3px #F47100;}
.line-top-red {border-top: solid 3px #B71C1C;}

.line-bottom-menu {border-bottom: solid 1px #2F2F2F;}


/* home */

.home-bg {
    position: absolute;
    left: 0;right: 0; top: 0; bottom: 0;
    /*background-image: url(../img/graph.png);
	background-size: cover;
	background-repeat: no-repeat;*/
}

.home-bg-blur {
    height: 100%;
}

.wave-bg {
    height: 285px;
    left: 0; right: 0; top: 0; bottom: 0;
    background-image: url(../img/wave2.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.nav-item.active a {
    color: #FF9800 !important;
    font-weight: 600;
}


/* ------- Navigasi Application : Toggle Menu ---------  */

.accounting-toggle,.accountingstd-toggle,.kontraktor-toggle,.property-toggle,.trading-toggle,.logistic-toggle,.fish-toggle,.personalia-toggle,.optik-toggle,.leveransir-toggle,.school-toggle,.koperasi-toggle,.iuranjasa-toggle {
	width: 40px; height: 40px;	 
	border-radius: 5px;	
	border: solid 1px gray;
	background-repeat: no-repeat; 
	background-position: center;
    background-size: cover;
	cursor: pointer;
	float: right;	
	margin-left: 5px;
	margin-bottom: 2px;
}

.accounting-toggle:hover,.accountingstd-toggle:hover,.kontraktor-toggle:hover,.property-toggle:hover,.trading-toggle:hover,.logistic-toggle:hover,.fish-toggle:hover,.personalia-toggle:hover,.optik-toggle:hover,.leveransir-toggle:hover,.school-toggle:hover,.koperasi-toggle:hover,.iuranjasa-toggle:hover {
    box-shadow: 0px 0px 9px 5px #EEFF41;
    border: solid 2px white;
    background-color: darkgrey;
}

.accounting-toggle,.accountingstd-toggle {background-image: url(../img/aplikasi/menu-accounting.png);}
.kontraktor-toggle {background-image: url(../img/aplikasi/menu-kontraktor.png);}
.property-toggle {background-image: url(../img/aplikasi/menu-property.png);}
.trading-toggle {background-image: url(../img/aplikasi/menu-trading.png);}
.logistic-toggle {background-image: url(../img/aplikasi/menu-logistic.png);}
.fish-toggle {background-image: url(../img/aplikasi/menu-fish.png);}
.personalia-toggle {background-image: url(../img/aplikasi/menu-tax.png);}
.optik-toggle {background-image: url(../img/aplikasi/menu-optik.png);}
.leveransir-toggle {background-image: url(../img/aplikasi/menu-leveransir.png);}
.school-toggle {background-image: url(../img/aplikasi/menu-school.png);}
.koperasi-toggle {background-image: url(../img/aplikasi/menu-koperasi.png);}
.iuranjasa-toggle {background-image: url(../img/aplikasi/menu-iuranjasa.png);}


/* ------- Menu area ---------  */

.menu-area-user {    
	max-width: 270px;
}

.menu-area-accounting,.menu-area-accountingstd,.menu-area-kontraktor,.menu-area-property,.menu-area-trading,.menu-area-logistic,.menu-area-fish,.menu-area-optik,.menu-area-leveransir,.menu-area-personalia,.menu-area-school,.menu-area-koperasi,.menu-area-iuranjasa {
	max-width: 1000px;
}

.menu-area-user,.menu-area-accounting,.menu-area-accountingstd,.menu-area-kontraktor,.menu-area-property,.menu-area-trading,.menu-area-logistic,.menu-area-fish,.menu-area-personalia,.menu-area-optik,.menu-area-leveransir,.menu-area-school,.menu-area-koperasi,.menu-area-iuranjasa {
    position: absolute;
    margin-top: 47px; 
    right: 8px; 
    overflow-y: auto;
}

.grup-menu {
    width: auto;
}

.card-grup-menu900 {width: 900px;}
.card-grup-menu1100 {width: 1000px;}

.grup-menu .list-group a:hover {color: #0d6efd;}

.bg-nav-pattern {
    background-image: url("../img/45degreee_fabric.webp");
   
}

@media screen and (max-width: 750px) {
    .menu-area-user,.menu-area-accounting,.menu-area-accountingstd,.menu-area-kontraktor,.menu-area-property,.menu-area-trading,.menu-area-logistic,.menu-area-fish,.menu-area-personalia,.menu-area-optik,.menu-area-leveransir,.menu-area-school,.menu-area-koperasi,.menu-area-iuranjasa {
        max-height: 350px;
        max-width: 300px;
    }
    
    .grup-menu {
        width: 250px;
    }
    
    .card-grup-menu900,.card-grup-menu1200 {
        width: 280px;
    }
}

.list-group-item {
    font-size: 12px;
}

.mnuButton {
    width: 70px;
}


/* ------- Kwitansi ---------  */

.pembilang {border-bottom: 1px solid black; padding-bottom: 1px;}
.penyebut {padding-top: 1px;}
