.top{
	margin:20px auto;
	display: flex;
	align-items: center;
}

.top img{
	height: 90px;
}
.lang{
	margin-top: 3px;
}
.lang img{
	height: 25px;
}
.lang a{
	color: black;
	text-decoration: none;
}
.lang .active{
	font-weight: bold;
}
.navbar{
	background: rgba(28, 57, 103, 0.7);
	z-index: 1; 
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding-top: 10px;
	padding-bottom: 10px;
}
.nav-link{
	color: #fff;
}
.banner{
	margin-top: -80px;
	background: url('../img/background.png');
}
.banner .banner-title{
	color: #fff;
	text-align: center;
}
@media (max-width: 768px) {
	.nav-link {
		color: #000;
	}
	#carousel{
		margin-top: 41px !important;
		aspect-ratio: 16/9 !important;
	}
	.carousel-inner{
		aspect-ratio: 16/9 !important;
	}
	.d-block{
		aspect-ratio: 16/9 !important;
	}
	.banner{
		margin-top: 0 !important;
	}
}

.section-about{
	padding-top: 50px;
	padding-bottom: 60px;
	background: #e4e8ed;
}
.section-about h3{
	position: relative;
	color: #1C3967;
}
.section-about h3:before{
	content: '';
	width: 67px;
	height: 4px;
	background-color: #B21E50;
	position: absolute;
	bottom: -20px;
}
.section-about .desc{
	line-height: 2;
	font-size: 15;
}

.section-faq{
	padding-top: 50px;
	padding-bottom: 60px;
	background: #bedbe0; 
}
.section-faq h3{
	position: relative;
	color: #1C3967;
}
.section-faq h3:before{
	content: '';
	width: 67px;
	height: 4px;
	background-color: #B21E50;
	position: absolute;
	bottom: -20px;
}
.section-faq .desc{
	line-height: 2;
	font-size: 15;
}

.section-mitra{
	padding-top: 50px;
	padding-bottom: 60px;
	background: #fff;
}

.section-mitra h3{
	position: relative;
	color: #1C3967;
}
.section-mitra h3:before{
	content: '';
	width: 67px;
	height: 4px;
	background-color: #B21E50;
	position: absolute;
	bottom: -20px;
}

.section-contact{
	padding-top: 50px;
	padding-bottom: 60px;
	/* background: #8d9cb3; */
	background: #a8bcdb;
}
.section-contact h3{
	position: relative;
	color: #FFF;
}
.section-contact h3:before{
	content: '';
	width: 67px;
	height: 4px;
	background-color: #B21E50;
	position: absolute;
	bottom: -20px;
}
.section-contact .desc{
	line-height: 2;
	font-size: 15;
	color: #fff;
}
.section-footer{
	background: #1C3967;
	color: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
}

.section-footer h6{
	position: relative;
}

.section-footer h6:before{
	content: '';
	width: 80%;
	height: 1px;
	background-color: #FFF;
	position: absolute;
	bottom: -12px;
}
.section-footer p{
	font-size: 13px;
}
.section-footer li{
	font-size: 13px;
}
.list-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 600px; /* Adjust maximum width as needed */
	margin: 0 auto;
	padding: 0;
	list-style-type: none;
}
.list-item {
	width: 48%; /* Adjust column width as needed */
	margin-bottom: 10px;
}

.socmed{
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
}
.socmed li{
	margin-right: 20px;
}
.socmed img{
	height: 20px;
}

/*carousel mitra*/
@media (max-width: 767px) {
	.carousel-inner-mitra .carousel-item > div {
		display: none;
	}
	.carousel-inner-mitra .carousel-item > div:first-child {
		display: block;
	}
}

.carousel-inner-mitra .carousel-item.active,
.carousel-inner-mitra .carousel-item-next,
.carousel-inner-mitra .carousel-item-prev {
	display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

	.carousel-inner-mitra .carousel-item-end.active,
	.carousel-inner-mitra .carousel-item-next {
		transform: translateX(25%);
	}

	.carousel-inner-mitra .carousel-item-start.active, 
	.carousel-inner-mitra .carousel-item-prev {
		transform: translateX(-25%);
	}
}

.carousel-inner-mitra .carousel-item-end,
.carousel-inner-mitra .carousel-item-start { 
	transform: translateX(0);
}
}

.search {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.search * {
	outline: none;
	box-sizing: border-box;
}
.search__wrapper {
	position: relative;
}
.search__field {
	width: 20px;
	height: 20px;
	color: transparent;
	font-family: Lato, sans-serif;
	font-size: 1em;
	padding: 0.35em 50px 0.35em 0;
	border: 1px solid transparent;
	border-radius: 0;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
.search__field:focus {
	border-bottom-color: #ccc;
	width: 50vw;
	color: #2b2b2b;
	cursor: default;
}
.search__field:focus ~ .search__icon {
	background-color: transparent;
	cursor: pointer;
	pointer-events: auto;
}
.search__icon {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #e9f1f4;
	width: 30px;
	height: 30px;
	font-size: 1em;
	text-align: center;
	border-color: transparent;
	border-radius: 50%;
	pointer-events: none;
	display: inline-block;
	transition: background-color 0.2s ease-in-out;
}
.search__field::-webkit-input-placeholder {
	position: relative;
	top: 0;
	left: 0;
	transition-property: top, color;
	transition-duration: .1s;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000;
	perspective: 1000;
}
.search__field:-moz-placeholder {
	position: relative;
	top: 0;
	left: 0;
	transition-property: top, color;
	transition-duration: .1s;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000;
	perspective: 1000;
}
.search__field::-moz-placeholder {
	position: relative;
	top: 0;
	left: 0;
	transition-property: top, color;
	transition-duration: .1s;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000;
	perspective: 1000;
}
.search__field:-ms-input-placeholder {
	position: relative;
	top: 0;
	left: 0;
	transition-property: top, color;
	transition-duration: .1s;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000;
	perspective: 1000;
}
.search__field::-webkit-input-placeholder[style*=hidden] {
	color: #83b0c1;
	font-size: .65em;
	font-weight: normal;
	top: -20px;
	opacity: 1;
	visibility: visible !important;
}
.search__field:-moz-placeholder[style*=hidden] {
	color: #83b0c1;
	font-size: .65em;
	font-weight: normal;
	top: -20px;
	opacity: 1;
	visibility: visible !important;
}
.search__field::-moz-placeholder[style*=hidden] {
	color: #83b0c1;
	font-size: .65em;
	font-weight: normal;
	top: -20px;
	opacity: 1;
	visibility: visible !important;
}
.search__field:-ms-input-placeholder[style*=hidden] {
	color: #83b0c1;
	font-size: .65em;
	font-weight: normal;
	top: -20px;
	opacity: 1;
	visibility: visible !important;
}

.vertical-line {
	display: inline-block;
	border-left: 1px solid black; /* Change the color and thickness as needed */
	height: 100%; /* Adjust height as needed */
	margin-left: 5px; /* Adjust spacing as needed */
}

.list-regulasi{
	display: flex;
	align-items: center;
	background: #fff;
	gap: 10px;
	padding: 10px;
	line-height: 1.3;
	border-radius: 4px;
}
.list-standar-layanan{
	display: flex;
	align-items: center;
	background: #e4e8ed;
	gap: 10px;
	padding: 10px;
	line-height: 0.5;
	border-radius: 4px;
}
.list-standar-layanan .num{
	border-right: 2px solid #B21E50;
	padding: 10px;
	font-size: 20px;
	font-weight: bold;
}
.list-regulasi .num{
	border-right: 2px solid #B21E50;
	padding: 10px;
	font-size: 20px;
	font-weight: bold;
}
.list-regulasi a{
	margin-left: auto;
	cursor: pointer;
	color: green;
	transition: transform 0.2s ease-in-out;
	margin-right: 5px;
}
.list-standar-layanan a:hover{
	transform: translateY(+5px);
}
.list-standar-layanan a{
	margin-left: auto;
	cursor: pointer;
	color: green;
	transition: transform 0.2s ease-in-out;
	margin-right: 5px;
}
.list-standar-layanan a:hover{
	transform: translateY(+5px);
}
.list-regulasi a:hover{
	transform: translateY(+5px);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
	color: #8d9cb3;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
	background-color: transparent; !important;
	border-bottom: 3px solid #B21E50;
	border-radius: 0;
	color: #1C3967;
}
.nav-pills .nav-link{
	color: gray;
}

.carousel-caption{
	background: rgba(28, 57, 103, 0.7);
}


.section-info-publik{
	padding-top: 50px;
	padding-bottom: 60px;
}

.pub{
	display: flex;
	flex-wrap: wrap;
}

.pub-item{
	background: rgba(28, 57, 103, 1);
	text-align: center;
	flex: 0 0 calc(20% - 20px);
	max-width: calc(20% - 20px);
	margin: 10px;
	box-sizing: border-box;
	/*border-top: 1px solid #fff;*/
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.pub-item:hover{
	transform: scale(1.05);
	color: #1C3967;
}

.pub-item img{
	height: 100px;
}

@media only screen and (max-width: 600px) {
	.pub-item {
		flex: 0 0 calc(100% - 20px); /* Full width minus margin */
		max-width: calc(100% - 20px); /* Full width minus margin */
	}
	.user-akun{
		margin-top: 20px;
	}
	.captcha-area{
		display: block !important;
	}
	.captcha-area button{
		margin-top: 20px;
	}
}

.register-form label{
	font-size: 10pt;
}

.captcha-area{
	display: flex;
	align-items: end;
}
.captcha-area button{
	margin-left: auto;
}

.section-layanan{
	padding-top: 50px;
	padding-bottom: 60px;
	background: #fff;
}
.section-layanan h3{
	position: relative;
	color: #1C3967;
}
.section-layanan h3:before{
	content: '';
	width: 67px;
	height: 4px;
	background-color: #B21E50;
	position: absolute;
	bottom: -20px;
}

.standar-left{
	flex: 0 0 42%;
}

.standar-right img{
	width: 100%;
}

.nav-link-standar.active{
	border: none !important;
	background: #607495 !important;
	color: #fff !important;
}

.layanan-jadwal div{
	color: #fff;
}

.carousel-control-next, .carousel-control-prev{
	width: 10% !important;
}

#loginModal .modal-header, h4, .close {
	background-color: #1C3967;
	color:white !important;
	text-align: center;
	font-size: 30px;
}
#loginModal .modal-footer {
	background-color: #f9f9f9;
}

#authSuccessModal p{
	margin-top:revert;
	color: green;
}

#authFailedModal p{
	margin-top:revert;
	color: red;
}

.profile-sidebar{
	list-style: none;
	padding: 0;
}

.profile-sidebar li{
	border-bottom: 1px solid #1C3967;
	padding: 10px;
	cursor:pointer;
	transition: text-indent 0.3s ease;
}
.profile-sidebar li a{
	text-decoration: none;
	color: #888;
}

.profile-sidebar li:hover{
	text-indent: 15px;
}

.profile-sidebar li.active{
	background: #1C3967;
	color: #fff;
}

@media (min-width: 577px) {
	.mobile {
		display: none !important;
	}
	.desktop{
		display: block !important;
	}
	.banner .banner-title{
		padding-top: 50px;
	}
	.carousel-caption{
		bottom: 7.25rem;
		color: #fff;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    margin-bottom: 8rem;
    padding: 1.25rem;
	}
	.carousel-indicators{
		margin-bottom: 5rem;
	}
}
@media (max-width: 577px) {
	.mobile {
		display: inline !important;
	}
	.content-wrapper{
		padding-top: 90px;
	}
	.top-head{
		position: fixed;
		z-index: 100;
		background-color: #fff;
		box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.2);
	}
	.desktop {
		display: none !important;
	}
	.nav-profil{
		margin-top: 30px;
		justify-content: flex-start !important;
	}
	.carousel-caption{
		bottom: 0.25rem;
		margin-bottom: 2rem;
		padding-bottom: 0;
	}
}

.hamburger {
	width: 50px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 1px solid lightgray;
	border-radius: 5px;
}

.hamburger-icon {
	width: 20px;
	height: 2px;
	background-color: gray;
	position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 2px;
	background-color: gray;
	margin-left: -10px;
}

.hamburger-icon::before {
	top: -8px;
}

.hamburger-icon::after {
	top: 8px;
}

@media (min-width: 992px) {
	.hamburger {
		display: none;
	}
}
.pl-20{
	padding-left: 20px !important;
}


/* Sidebar */
#sidebar {
	background-color: #f8f9fa; /* Light background color */
	color: #343a40; /* Dark text color */
	transition: all 0.3s;
}

#sidebar .sidebar-header {
	padding: 20px;
	background-color: #e9ecef; /* Lighter background color for the header */
}

#sidebar .sidebar-header h3 {
	margin-bottom: 0;
	color: #343a40; /* Dark text color for the header */
}

#sidebar ul.components {
	padding: 20px 0;
}

#sidebar ul.components li {
	position: relative;
}

#sidebar ul.components li a {
	text-decoration: none;
	color: #343a40; /* Dark text color for the links */
	padding: 10px 0 10px 20px;
	display: block;
}

#sidebar ul.components li a:hover {
	background-color: #e2e6ea; /* Light background color on hover */
}

/* Tree arrow icon */
#sidebar .arrow-icon {
	position: absolute;
	right: 10px; /* Adjust the distance from the right side */
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.8rem; /* Adjust the size of the icon */
}

#sidebar ul.components li.active{
	background-color: #e2e6ea;
}

.div-only-mobile {
	visibility: hidden;
	display: none;
}

@media screen and (max-width : 906px){
	.desk{
		display:none
	}
	.div-only-mobile{
		display:none
	}
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
	.w-50 {
		width: 100% !important;
		margin-left: auto;
		margin-right: auto;
	}
}

.dropdown-menu-desktop{
	background-color: rgba(28, 57, 103, 0.9);
	margin-top: 9px !important;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.dropdown-menu-desktop a{
	color: #fff;
}

.nav-link,.dropdown-item{
	font-weight: bold;
}

.info-publik-header{
	background: #e4e8ed;
}
.info-publik-header .container{
	margin-top: -60px;
	z-index: 1;
	position: relative;
}

.userway_buttons_wrapper{
	bottom: 0 !important;
	position: fixed !important;
	top: auto !important;
	left: 60px !important;
	margin-bottom: 20px !important;
}
.logo{
	margin-left: auto;
}
.back-button{
	height: 30px !important;
}

.list-standar-layanan2{
	border-radius: 8px;
	background: rgba(28, 57, 103, 1);
	display: flex;
	color: #fff;
	padding-bottom: 10px;
	min-height: 90px;
	transition: transform 0.3s ease, background-color 0.3s ease;
	cursor: pointer;
}
.list-standar-layanan2:hover{
	transform: scale(1.1);
  background-color: #2980b9;
}
.list-standar-layanan2 img{
	width: 50px;
	height: 50px;
	margin: 10px 15px;
}
.list-standar-layanan2 div{
	margin-top: 10px;
}
.list-standar-layanan2 div p{
	font-size: 10pt;
}
.list-standar-layanan2 a{
	text-decoration: none;
	color: #fff;
}
.list-standar-layanan2 a i{
	margin-left: 5px;
}