@charset "utf-8";
/* ===== START LAYOUT ===== */
body {
	min-width:320px;
}
.site-header {
	position:fixed;
	top:0;
	left:0;
	right:0;
	min-width:320px;
	height:auto;
	background-color:#fff;
	z-index:20;
	box-shadow:0px 3px 5px rgba(100, 100, 100, 0.2);
}
.site-nav {
	position:fixed;
	top:48px;
	left:-280px;
	bottom:0;
	width:280px;
	overflow: hidden;
	z-index:10;
	transition:all 0.2s ease;
}
.site-main {
	padding:30px 20px 100px;
	margin-top:48px;
	transition:margin-left 0.2s ease;
}
@media (min-width:640px) {
	.site-main {
		padding-left:30px;
		padding-right:30px;
	}
}
@media (min-width:1000px) {
	.site-nav {
		left:0;
	}
	.site-main {
		padding-left:50px;
		padding-right:50px;
		margin-left:280px;
	}
	.spinner {
		left:330px;
	}
}
@media (max-width:999px) {
	body.site-nav-open {
		overflow:hidden;
	}
	body.site-nav-open .site-nav {
		left:0;
	}
}
.site-menu-base {
	height:100%;
	overflow:auto;
	background-color:#C51D24;
}
/* ===== START TOP BAR ===== */
.site-header .grid .col {
	height:48px;
}
.site-header .login {
	padding:5px 30px;
	line-height:1;
	display:block;
}
.site-header .login span {
	margin-left:10px;
	display:none;
}
@media (min-width:520px) {
	.site-header .login {
		padding-right:50px;
	}
	.site-header .login span {
		display:inline-block;
	}
}
.site-header .hamburger-base {
	width:54px;
	background-color:#C51D24;
}
.hamburger {
	padding: 12px 18px 4px;
	display: inline-block;
	cursor: pointer;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color:transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transition-property: opacity, filter;
	transition-duration: 0.2s;
	transition-timing-function: linear;
}
.hamburger-box {
	position: relative;
	width: 18px;
	height: 25px;
	background-color: transparent;
	display: inline-block;
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}
.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
	position: absolute;
	width: 18px;
	height: 3px;
	background-color:rgba(255,255,255,0.85);
	border-radius: 3px;
	transition-property: transform, background-color;
	transition-duration: 0.2s;
	transition-timing-function: ease;
}
.hamburger:hover .hamburger-inner, 
.hamburger:hover .hamburger-inner::before, 
.hamburger:hover .hamburger-inner::after {
	background-color:rgba(255,255,255,1);
}
.hamburger-inner::before, 
.hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before { top: -6px; }
.hamburger-inner::after { bottom: -6px; }
.hamburger--arrowturn.is-active .hamburger-inner { transform: rotate(-180deg); }
.hamburger--arrowturn.is-active .hamburger-inner::before { transform: translate3d(8px, 4px, 0) rotate(45deg) scale(0.5, 1); }
.hamburger--arrowturn.is-active .hamburger-inner::after { transform: translate3d(8px, -4px, 0) rotate(-45deg) scale(0.5, 1); }
.site-branding {
	padding:0 20px;
}
.site-branding h1 {
	font-size:14px;
	font-weight:bold;
	text-transform:uppercase;
	height:48px;
	margin-bottom:0;
	line-height:48px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow: ellipsis;
	background-clip:padding-box;
}
@media (min-width:520px) {
	.site-branding h1 {
		font-size:18px;
	}
}
.site-user {
	position:relative;
	width:280px;
	text-align:right;
}
.site-user button {
	padding:0 20px;
	cursor:pointer;
}
@media (min-width:520px) {
	.site-user button {
		padding-right:30px;
	}
}
.site-user img {
	width:36px;
	height:36px;
	border-radius:100%;
}
.site-user span,
.site-user .fa {
	color:#333;
	margin-left:10px;
}
.site-user span {
	position:relative;
	top:3px;
	max-width:130px;
	display:inline-block;
	text-overflow:ellipsis;
	white-space:nowrap;
	background-clip:padding-box;
	overflow:hidden;
	transition:all 0.3s ease;
}
.site-user button:hover span {
	color:#111;
}
.site-user ul {
	position:absolute;
	top:48px;
	right:0;
	width:180px;
	text-align:left;
	list-style-type:none;
	background-color:#fff;
	z-index:30;
	box-shadow: 0px 4px 8px 0 rgba(0,0,0,.2);
	display:none;
}
.site-user ul a {
	padding:10px 20px;
	border-top:1px solid #e3e3e3;
	display:block;
}
.site-user ul li:last-child a {
	border-bottom:0 none;
}
.site-user ul.is-active {
	display:block;
}
.logout {
	font-family:inherit;
	display: list-item;
	margin-left:0 !important;
	line-height:inherit;
	font-size:inherit;
}
.logout:before {
	display:none;
}
@media (min-width:1000px) {
	.site-header .hamburger-base {
		display:none;
	}
	.site-branding {
		padding:0 20px;
	}
}
@media (max-width:999px) {
	.site-branding {
		padding:0 15px;
	}
}
@media (max-width:639px) {
	.site-user {
		width:80px;
	}
	.site-user span,
	.site-user .fa:not(.fa-power-off) {
		display:none;
	}
}
.custom-logo {
	width:32px;
	margin-right:10px;
}
/* ===== SITE MENU UTAMA ===== */
.site-menu {
	margin:0;
	padding:30px 20px 20px 30px;
}
.site-menu,
.site-menu ul {
	line-height:1.23;
	list-style-type:none;
	color:rgba(255,255,255,0.7);
}
.site-menu ul {
	margin-left:29px;
	color:rgba(255,255,255,0.7);
}
.site-menu ul ul {
	margin-left:1.25rem;
}
.site-menu li.fa {
	font-size:1rem;
	line-height:1.25;
	display:block;
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.site-menu li.fa:before {
	float:left;
	width:30px;
	margin-top:10px;
	display: block;
	font-family: "FontAwesome";
	speak: none;
	font-style: normal; 
	font-weight: normal; 
	font-variant: normal; 
	text-transform: none; 
	text-rendering: auto; 
	line-height:1; 
	-webkit-font-smoothing: antialiased; 
}
.site-menu li > a {
	position:relative;
	padding:10px 0;
	display:block;
}
.site-menu li > a:hover,
.site-menu li > a:focus {
	color:rgba(255,255,255,1);
}
.site-menu .sub-menu,
.site-menu .sub-menu li > a {
	padding-top:9px;
	padding-bottom:9px;
}
.site-menu .sub-menu {
	padding-top:0px;
	padding-bottom:6px;
}
.site-menu .sub-menu li.fa:before {
	margin-top:6px;
}
.site-menu li.menu-item-has-children > ul {
	display:none;
}
.site-menu li.menu-item-has-children > ul.open {
	display:block;
}
.site-menu li.menu-item-has-children > a::after {
	content: "\f0d7";
	font-size: inherit;
	position: absolute;
	top:50%;
	right:18px;
	margin-top:-7px;
	display: inline-block;
	font-family: "FontAwesome";
	color:rgba(255,255,255,0.3);
	speak: none;
	font-style: normal; 
	font-weight: normal; 
	font-variant: normal; 
	text-transform: none; 
	text-rendering: auto; 
	line-height:1; 
	-webkit-font-smoothing: antialiased; 
	-moz-osx-font-smoothing: grayscale;
	transition:transform 0.2s ease;
}
.site-menu li.menu-item-has-children > a.rotate::after {
	transform:rotate(-180deg);
}
@media (max-width:767px) {
	.site-menu {
		padding:30px 20px 0 30px;
	}
}
/* ===== DASHBOARD COUNTER ===== */
.counter {
	margin: 0 -5px 20px;
}
.counter > li {
	padding: 0 5px 10px;
}
.counter-item {
	display:block;
	padding:20px;
	border:1px solid rgba(7,84,152,0.35);
	border:1px solid #CCC;
	border-radius:4px;
}
.counter-item > span:first-child {
	display:block;
	float:left;
	width:48px;
	height:48px;
	line-height:54px;
	margin-right:15px;
	text-align:center;
	border-radius:100%;
	background-color:#C51E25;
}
.counter-item > span:last-child {
	display:block;
	overflow:hidden;
	color:#111;
	font-size:13px;
	line-height:1;
	text-transform:uppercase;
	text-overflow:ellipsis;
	white-space:nowrap;
	background-clip:padding-box;
	overflow:hidden;
}
.counter-item .fa {
	font-size:18px;
	color:#F0232D;
	color:rgba(255,255,255,0.9);
}
.counter-item strong {
	font-size:28px;
	color:#111;
	line-height:1.2;
	font-weight:bold;
	display:block;
	transition:color 0.3s ease;
}
/* ===== PAGINATION ===== */
.pagination {
	float:left;
	font-size:12px;
	margin-bottom:10px;
}
.pagination + .anchor {
	float:right;
	margin-bottom:10px;
}
.pagination .page-numbers {
	color:#333;
	display:inline-block;
	padding:5px 9px;
	line-height:1;
	margin-bottom:4px;
	border:1px solid #ddd;
	border-radius:3px;
}
.pagination .page-numbers:hover,
.pagination .page-numbers:focus,
.pagination .page-numbers.current {
	color:#fff;
	border:1px solid #C51D24;
	background-color:#C51D24;
}
/* ===== ACF FORM ===== */
.acf-form {
	max-width:1000px;
	padding-top:5px;
}
.acf-form .acf-field input[type="text"], 
.acf-form .acf-field input[type="password"], 
.acf-form .acf-field input[type="number"], 
.acf-form .acf-field input[type="search"], 
.acf-form .acf-field input[type="email"], 
.acf-form .acf-field input[type="url"], 
.acf-form .acf-field textarea, 
.acf-form .acf-field select {
	padding: 2px 8px;
}
.acf-form .acf-actions {
	text-align:left;
}
.acf-form .acf-actions a {
	margin-left:0;
}
.acf-form .acf-field textarea {
	padding: 8px 10px;
}
.acf-form .acf-input-wrap input {
	height:34px;
}
.acf-form .acf-field .acf-label {
	margin-bottom:0;
}
.acf-form .acf-loading, 
.acf-form .acf-spinner {
	margin-left:10px;
}
.acf-form .acf-taxonomy-field .categorychecklist-holder {
	border: 0 none;
	border-radius:0;
}
.acf-form .acf-taxonomy-field .acf-checkbox-list {
	padding:0;
}
.acf-form .acf-field .acf-label label {
	margin-bottom:4px;
}
.acf-form ul.acf-radio-list li, 
.acf-form ul.acf-checkbox-list li {
	margin-bottom:4px;
}
.acf-form .acf-field p.description {
	font-size:13px;
	font-style:italic;
	margin-bottom:6px;
}
.acf-form .acf-fields:before, 
.acf-form .acf-fields:after {
	content:" ";
	display:table;
}
.acf-form .acf-fields:after {
	clear:both;
}
.acf-form .acf-fields > .acf-field {
	width:100%;
	padding:0;
	border:0 none;
	margin-bottom:26px;
}
.acf-form .acf-field-group .acf-fields,
.acf-form .acf-field-repeater .acf-fields {
	padding:20px 10px 0 10px !important;
	background-color:#f0f0f0;
}
.acf-form .acf-field-group .acf-fields .acf-field.acf-field-repeater,
.acf-form .acf-field-repeater .acf-fields .acf-field.acf-field-repeater {
	width:100%;
}
.acf-form .acf-field-group .acf-fields .acf-field,
.acf-form .acf-field-repeater .acf-fields .acf-field,
#personil-edit .acf-field,
#personil-tambah .acf-field {
	float:left;
	width:50%;
	padding:0 10px;
	clear:none;
}
#personil-edit .acf-form-fields,
#personil-tambah .acf-form-fields {
	margin:0 -10px;
}
.acf-form .acf-field-group .acf-field .acf-label label,
.acf-form .acf-field-repeater .acf-field .acf-label label {
	font-size:13px;
	font-weight:normal;
}
.acf-checkbox-custom + input,
.acf-radio-list input[type="text"] {
	display:inline-block;
	height:30px;
}
.acf-label > label {
	color:#111;
}
.acf-input .acf-label > label,
.acf-field p.description {
	color:#666;
}
.acf-ui-datepicker .ui-widget-content {
	/*margin-top:-53px;*/
	border-color:#CCC !important;
}
.acf-form .acf-repeater .acf-row-handle .acf-icon.-minus {
	top: 26px;
}
.acf-form .acf-icon.small, 
.acf-form .acf-icon.-small {
	width:20px;
	height:20px;
	line-height:20px;
}
.acf-form .acf-repeater .acf-row-handle .acf-icon,
.acf-form .acf-taxonomy-field .acf-actions.-hover {
	display:block;
}
.acf-form .acf-repeater .acf-row-handle {
	vertical-align:top !important;
}
.acf-form .acf-repeater .acf-row-handle.order {
	color:#111;
}
@media (max-width:559px) {
	.acf-form .acf-field-group .acf-fields .acf-field,
	.acf-form .acf-field-repeater .acf-fields .acf-field {
		float:none;
		width:100%;
		clear:both;
	}
	#personil-edit .acf-field,
	#personil-tambah .acf-field {
		padding:0 6px;
	}
}
.acf-popup-box [data-name="term_name"] .acf-label,
.acf-popup-box [data-name="term_parent"] {
	display:none !important;
}
.acf-tooltip {
	margin-top:-60px !important;
}
.acf-tooltip.left {
	margin-right:60px !important;
}
.acf-field .acf-input .acf-notice {
	margin-bottom:0;
}
div[data-name="wb_data_luas_lantai"] {
	display:none !important;
}
.card {
	font-size:13px;
	margin-bottom:20px;
	padding-bottom:5px;
	border:1px solid #DDD;
}
.card header::before, 
.card header::after,
.card main::before, 
.card main::after {
	content:" ";
	display:table;
}
.card header::after,
.card main::after {
	clear:both;
}
.card header {
	position:relative;
	padding:0 12px 0 15px;
	margin-bottom:15px;
	border-bottom:1px solid #DDD;
	background-color:#f0f0f0;
}
.card header h6 {
	float:left;
	width:calc(100% - 143px);
	margin:0;
	padding:10px 0;
	font-weight:bold;
}
.card header > a,
.card header > [type="checkbox"],
.card header > [type="radio"],
.card header > button {
	float:right;
	display:block;
	padding:10px;
	border:0 none;
	cursor:pointer;
	line-height:inherit;
}
.card header > [type="checkbox"],
.card header > [type="radio"] {
	margin:12px 10px 8px;
	padding:0;
}
.card header h6 label {
	color:#111;
	font-weight:bold;
	cursor:pointer;
}
.card header h6 label [type="checkbox"] {
	margin-bottom:0;
	cursor:pointer;
}
.card main img {
	float:left;
	width:80px;
	margin:0 0 15px 15px;
}
.card dl {
	float:left;
	margin:0 0 15px 15px;
	width:calc(100% - 110px);
}
.card dl > dt {
	width:110px;
}
.card dl > dd {
	width:calc(100% - 110px);
}
.card footer {
	padding:8px 15px 6px;
	border-top:1px solid #e6e6e6;
}
.card footer .fa {
	color:#111;
}
.card header .arrow_box_top {
	position: absolute;
    top: 0;
    right: 8px;
    margin-top: 38px;
    padding: 11px 15px;
    text-align: left;
	font-weight:bold;
}
.card header .arrow_box_top span {
	display:block;
	margin-bottom:4px;
}
.card header .arrow_box_top a {
	text-decoration:underline;
	font-weight:normal;
}
.card header .arrow_box_top:after, 
.card header .arrow_box_top:before {
	left: 90px;
}
@media (max-width:479px) {
	.card dl > dt,
	.card dl > dd {
		float:none;
		color:#888;
		margin-bottom:0;
		width:100%;
	}
	.card dl > dd {
		color:#000;
		margin-bottom:4px;
	}
}
/* ======== TABEL ============ */
.tabel {
	margin-bottom:20px;
}
.tabel.tahun-penilaian {
	font-size:12px;
	max-width:520px;
	padding:12px 0 5px 12px;
	border:1px solid #111;
	margin-bottom:30px;
	background-color:#f0f0f0;
}
dl.tahun-penilaian > dt {
	width:40%;
}
dl.tahun-penilaian > dd {
	width:60%;
}
.tabel-wb-base {
	position:relative;
	font-size:12px;
	margin-bottom:40px;
	overflow:hidden;
}
.tabel-wb-base.analisa-tanah {
	margin-bottom:20px;
}
.tabel-wb {
	overflow:auto;
}
.tabel-wb > .clearfix {
	width:3160px;
}
.analisa-tanah .tabel-wb > .clearfix {
	width:100%;
	min-width:800px;
}
.analisa-tanah2 .tabel-wb > .clearfix {
	min-width:1500px;
}
.kol-kuning {
	float:left;
	width:600px;
	padding:0 20px 20px 0;
}
.kol-hijau {
	float: left;
	width: calc(3160px - 600px);
	margin-bottom: 20px;
	background-color: #e3e3e3;
}
.kol-analisa-tanah {
	margin-bottom: 20px;
	background-color: #e3e3e3;
}
.kol-hijau > table {
	margin-bottom:0;
}
.kol-kuning h6 {
	font-weight:bold;
}
.kol-hijau th,
.kol-analisa-tanah th {
	color:#fff;
	padding:0.5rem;
	vertical-align:middle;
	background-color:#C51D24;
}
.kol-hijau td {
	text-align:right;
}
.kol-hijau .text-left {
	text-align:left;
}
.kol-analisa-tanah td {
	text-align:center;
}
.kol-analisa-tanah .text-left {
	text-align:left;
}
.kol-analisa-tanah .text-right {
	text-align:right;
}
.kol-analisa-tanah img {
	max-width:130px;
	display:inline-block;
	border:1px solid #CCC;
}
.tabel.data-bangunan dt {
	width: 270px;
}
.tabel.data-bangunan dd {
	width: calc(100% - 270px);
}
.tabel.data-bangunan dd span:first-child {
	float: left;
	width: 60px;
}
.tabel.data-bangunan dd span:last-child {
	float: left;
	width: calc(100% - 60px);
}
.tabel-wb img.obyek-penilaian {
	margin-bottom:26px;
}
.skrolki, 
.skrolka {
	position:absolute;
	top:50px;
	left:-34px;
	right:0;
	bottom:50px;
	font-size:16px;
	width:34px;
	text-align:center;
	color:#fff;
	border:0 none;
	cursor:pointer;
	background-color:rgba(0,0,0,0.2);
	border-radius: 0 20px 20px 0;
	/*transform:translateY(-50%);*/ 
	transition:left 0.15s ease;
}
.skrolka {
	left:auto;
	right:-34px;
	border-radius: 20px 0 0 20px; 
	transition:right 0.15s ease;
}
.tabel-wb-base:hover .skrolki {
	left:0;	
}
.tabel-wb-base:hover .skrolka {
	right:0;	
}
/*
.analisa-tanah2 .skrolki, 
.analisa-tanah2 .skrolka {
	top:45%;
	height:1000px;
}
*/
@media (max-width:767px) {
	.skrolki, 
	.skrolka {
		display:none;
	}
}
@media (min-width:1900px) {
	.analisa-tanah2 .skrolki, 
	.analisa-tanah2 .skrolka {
		display:none !important;
	}
}
.tabs,
.tabs2 {
	font-size:12px;
	font-weight:bold;
	margin-bottom:30px;
	border-bottom:1px solid #C51D24;
	display:block;
}
.tabs > button,
.tabs2 > a {
	position:relative;
	display:inline-block;
	font-weight:bold;
	bottom:-1px;
	margin-right:4px;
	padding:8px 15px;
	color:#fff;
	border:1px solid #C51D24;
	background-color:#C51D24;
	transition:all 0.3s ease;
}
.tabs > button:hover,
.tabs > button:focus,
.tabs > button:active,
.tabs > button.active,
.tabs2 > a:hover,
.tabs2 > a:focus,
.tabs2 > a:active,
.tabs2 > a.active {
	color:#111;
	cursor:pointer;
	background-color:#fff;
}
.tabs > button.active,
.tabs2 > a.active {
	border-bottom:1px solid #fff;
	cursor:default;
}
@media (max-width:459px) {
	.tabs {
		border-bottom:0 none;
	}
	.tabs > button {
		bottom:0;
		margin-bottom:5px;
	}
	.tabs > button.active {
		border-bottom:1px solid #111;
	}
}
.tabel-wb-analisa {
	display:none;
}
.tabel-wb-analisa.active {
	display:block;
}
.pesan-error {
	padding:10px 15px;
	color:red;
	border:2px solid red;
}
.deviasi-data {
	overflow:auto;
	margin-bottom:20px;
}
.deviasi-data > div {
	width:100%;
	max-width:600px;
	min-width:500px;
	font-size:13px;
	background-color:#e3e3e3;
}
.analisa-data {
	margin-bottom:30px;
}
.analisa-data > div {
	width:2000px;
	max-width:none;
}
.analisa-data th {
	color: #fff;
    padding: 0.5rem;
    vertical-align: middle;
    background-color: #111;
}
.indikasi-likuidasi {
	font-size:12px;
	max-width:300px;
}
.indikasi-likuidasi h5 {
	font-size:13px;
	font-weight:bold;
}
.penyesuaian {
	max-width:none;
	margin:0 !important;
	padding:0 !important;
}
.penyesuaian .acf-label {
	display:none;
}
.penyesuaian .acf-input-wrap:after {
	content:" %";
}
.penyesuaian input,
input.rekap {
	max-width:60px;
	height:24px !important;
	font-size:12px !important;
	text-align:right;
	padding:0 2px !important;
	display:inline-block;
	border-color: #939393;
	color:#111;
}
.penyesuaian textarea,
.penyesuaian select {
	max-width:none;
	font-size:12px !important;
	display:inline-block;
	border-color: #939393;
	color:#111;
	height:40px;
}
.penyesuaian select {
	height:auto;
}
/*
.status-data-pembanding {
	display:none;
}
.data-lengkap .status-data-pembanding {
	display:block;
}
*/
.but-tambahan {
	font-style:italic;
	color:red;
}
.text-left.but-tambahan::after {
	content:" (diluar spek)";
}
.kjpp-google-map {
	height:600px;
	margin:0 auto 30px;
	background-color:#ddd;
}
/*
.infowindow {
	width:100px;
	height:50px;
	font-weight:bold;
	color:#111;
	background:#FFF;
}
.gm-style-iw + div {display:none;}
.gm-style-iw {text-align:center;}
*/
.kjpp-radio {
	font-size:13px;
	color:#000;
	margin:0 20px 10px 0;
	display:inline-block;
}
.progres-laporan table tbody th,
.progres-laporan table tbody td {
    padding: 0.5rem;
    vertical-align: middle;
}
.ket-role {
	font-size:11px;
}
.desktop {
	display:none;
}
@media (min-width:768px) {
	.desktop {
		display:block;
	}
	.ket-role, .mobile {
		display:none;
	}
}
.progres-laporan .fa-times {
	color:#CCC;
}
.progres-laporan .fa-check {
	color:green;
}
.acf-field input[type="number"] {
	letter-spacing:1px;
}
.warning {
	padding:20px;
	border:1px solid red;
	color:red;
	font-weight:bold;
	margin-bottom:20px;
}
.alert {
	padding:20px;
	border:1px solid orange;
	color:orange;
	font-weight:bold;
	margin-bottom:20px;
}
.acf-form.disabled {
	position:relative;
	pointer-events: none !important;
}
.acf-form.disabled .overlay {
	position:absolute;
	top:0;
	left:0;
	right:-10px;
	bottom:0;
	background-color:rgba(255,255,255,.25);
	z-index:10;
}
.kjpp-print-button {
	display:inline-block;
	padding:8px 0;
}
.kjpp-print-button .fa {
	color: #F00;
}
#map_canvas {
	width:100%;
	height: 600px;
	background-color:#f0f0f0;
	margin-bottom:30px;
}
.form-search {
	max-width:400px;
	margin-bottom:20px;
}
.form-search label {
	font-size:13px;
}
.form-search input {
	width: 100%;
    padding: 2px 8px;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
	height: 34px;
	margin-bottom:10px;
	border: 1px solid #BBB;
    font-weight: normal;
    border-radius: 3px;
    color: #000;
}
.form-search select {
	margin-bottom:10px;
}
.gm-style-iw + div {display:none;}
.gm-style-iw {text-align:left;}

.edit-tanah-kosong [data-name="obyek_penilaian"],
.tambah-tanah-kosong [data-name="obyek_penilaian"] {
	display:none !important;
}
.acf-form [data-name="upload_laporan_ringkas"] {
	margin-bottom:1rem !important;
}
.display-table .acf-true-false > label { display:table; }

#map_updateLokasi {
	position:relative;
	height: 650px;
	background-color:#ddd;
}
#map_updateLokasi.loading::after {
	content:" ";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: transparent url(../img/ajax-loader.gif) no-repeat center center;
}
.map-dp {
	width:auto;
	max-width:160px;
	height:auto;
	margin:0;
	padding:0;
	text-align:left;
	line-height:1.4;
	display:block;
}

#map_updateLokasi {
	background: #eee url(../img/ajax-loader.gif) no-repeat center center;
}
.pac-item-query {
	color:#111;
}
.pac-item {
	line-height:36px;
	color:#666;
}
.acf-form .acf-fields > .acf-field[data-name="peta_rdtr_upload"] {
	margin-bottom:0.5rem;
}


