@font-face {
	font-family: 'changa'; 
	src: url('../fonts/Changa/Changa-VariableFont_wght.ttf') format('truetype');
	font-weight: normal; 
	font-style: normal; 
}

.changa {
	font-family: 'changa'; 
}

.divNama {
	font-family: 'changa';
	padding-left:2%;
	color:#FFF;
	display: table-cell;
	vertical-align: middle;
	line-height: 1;
}
.namaMPP {
	font-size:32px;
	font-weight:800;
	white-space: nowrap;
} 
.subMPP {
	font-size:22px;
	white-space: nowrap;
}


.divNama_sm {
	font-family: 'changa';
	color:#000;
	text-align: center;
	line-height: 1;
}
.namaMPP_sm {
	font-size:24px;
	font-weight:800;
	white-space: nowrap;
} 
.subMPP_sm {
	font-size:16px;
	white-space: nowrap;
}


.global-img {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Example for a responsive grid */
  gap: 10px;
}

.global-img img {
  width: 100%; /* Image takes full width of its grid cell */
  height: 350px; /* Fixed height */
  object-fit: cover;
}

.box-date {
  background-color:#c7b273;
  color : #fff;
}

/* sweet alert */
.swal2-container {
        z-index: 99999 !important; 
    }
.colored-toast.swal2-icon-success {
  background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
  background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
  background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
  background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
  background-color: #87adbd !important;
}

.colored-toast .swal2-title {
  color: white;
}

.colored-toast .swal2-close {
  color: white;
}

.colored-toast .swal2-html-container {
  color: white;
}

/* scrollbar */
body {
  --sb-track-color: #30373a;
  --sb-thumb-color: #c7b273;
  --sb-size: 7px;
}

body::-webkit-scrollbar {
  width: var(--sb-size)
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 4px;
  
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

/* modal */

.modal-backdrop {
    z-index: 1050 !important; 
}
.modal {
    z-index: 1051 !important; 
}
	
.modal-header {
  background-color: #c7b273 !important; 
  color: #FFF !important; 
}

/* button */
.btn-label {
	position: relative;
	left: -15px;
	display: inline-block;
	padding: 6px 12px;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 3px 0 0 3px;
}

.btn-labeled {
	padding-top: 0;
	padding-bottom: 0;
}

.btn {
	margin-bottom: 10px;
}

.tab-container {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
}

.tab-wrap {
    display: flex;
    border-bottom: 2px solid #C7B273;
}

.tab-link {
    flex-grow: 1;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-link:hover {
    color: #C7B273;
}

.tab-link.active {
    color: #C7B273;
    border-bottom-color: #C7B273;
}

.tab-content-container {
    padding: 25px;
}

.tab-content {
    line-height: 1.8;
    color: #343a40;
    display: none; 
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.infographic-container {
    display: flex; 
    gap: 20px; 
    padding: 20px;
    justify-content: center;
}

.cardStat {
    padding: 15px 25px;
    border-radius: 8px;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 

    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);

    display: flex;
    align-items: center; 
    justify-content: center; 
}

.iconStat {
    font-size: 1.5em; 
    color: #ffffff; 
    margin-right: 10px; 
    margin-bottom: 10px; 
	
}

.cardStat:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


.tab-heading-style2 {
	padding: 25px;
    font-weight: 700; 
    color: #ffffff; 
    margin: 0; 
    margin-bottom: 15px;
	border-bottom: 1px dashed #ffffff;	
	background-color: #c7b273;
}

.tab-container-style2 {
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
	margin-bottom:5%;
}

.tab-wrap-style2 {
    display: flex;
    border-bottom: 2px solid #c7b273;
}

.tab-link-style2 {
    flex-grow: 1;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-link-style2:hover {
    color: #C7B273;
}

.tab-link-style2.active {
    color: #C7B273;
    border-bottom-color: #C7B273;
}

.tab-content-container-style2 {
    padding: 25px;
}

.tab-content-style2 {
    line-height: 1.8;
    color: #343a40;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content-style2.active {
    display: block;
}


.infographic-container2 {
    display: flex; 
    gap: 20px; 
    padding: 20px;
    justify-content: space-between;
	margin-bottom : 5%;
	margin-top:-5%;
}

.cardStatDanger {
    padding: 15px 25px;
    border-radius: 8px;
    min-width: 250px;
    display: flex;
    justify-content: space-between;
    margin-right: 10px; 
    margin-bottom: 10px;	
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border: 1px solid #DC3545;
	color:#DC3545; 	
}

.cardStatInfo {
    padding: 15px 25px;
    border-radius: 8px;
    min-width: 250px;
    display: flex;
    justify-content: space-between;
    margin-right: 10px; 
    margin-bottom: 10px;	
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border: 1px solid #3858D5;
    color: #3858D5;
}
.cardStatWarning {
    padding: 15px 25px;
    border-radius: 8px;
    min-width: 200px;
    display: flex;
    justify-content: space-between;
    margin-right: 10px; 
    margin-bottom: 10px;	
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
	color:rgb(255, 193, 7);	
}
.cardStatSuccess {
    padding: 15px 25px;
    border-radius: 8px;
    min-width: 250px;
    display: flex;
    justify-content: space-between;
    margin-right: 10px; 
    margin-bottom: 10px;	
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border: 1px solid #28A745;
	color:#28A745; 
}

.chat-container {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: #fff; 
  font-family: sans-serif;
  margin: 20px auto;
}

.message {
  display: flex;
  margin-bottom: 8px;
}

.bubble {
  padding: 10px 14px;
  border-radius: 18px;
  position: relative;
  word-wrap: break-word;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); 
  color: #333; 
  display: flex;
  flex-direction: column;
}

.incoming {
  justify-content: flex-start;
}

.incoming .bubble {
  background-color: #ffffff; 
  border-bottom-left-radius: 4px;
}

.outgoing {
  justify-content: flex-end;
}

.outgoing .bubble {
  background-color: #ffffff; 
  border-bottom-right-radius: 4px;
}

.incoming .bubble::after {
  content: '';
  position: absolute;
  left: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: #ffffff;
  border-left: 0;
  border-bottom: 0;
  filter: drop-shadow(-2px 1px 1px rgba(0, 0, 0, 0.1));
}

.outgoing .bubble::after {
  content: '';
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #ffffff;
  border-right: 0;
  border-bottom: 0;
  filter: drop-shadow(2px 1px 1px rgba(0, 0, 0, 0.1));
}

.bubble.info {
  background-color: #e3f2fd; 
  color: #0d47a1;
}
.bubble.success {
  background-color: #e8f5e9; 
  color: #1b5e20;
}
.bubble.danger {
  background-color: #ffebee;
  color: #b71c1c;
}

.incoming .bubble.info::after { border-right-color: #e3f2fd; }
.incoming .bubble.success::after { border-right-color: #e8f5e9; }
.incoming .bubble.danger::after { border-right-color: #ffebee; }

.outgoing .bubble.info::after { border-left-color: #e3f2fd; }
.outgoing .bubble.success::after { border-left-color: #e8f5e9; }
.outgoing .bubble.danger::after { border-left-color: #ffebee; }


.tujuan {
  font-size: 10px;
  color: #888;
  text-align: left;
  margin-top: 5px;
}
.timestamp {
  font-size: 10px;
  color: #888;
  text-align: right;
  margin-top: 5px;
}
.bubble.info .timestamp,
.bubble.success .timestamp,
.bubble.danger .timestamp {
  color: rgba(0, 0, 0, 0.5); 
}

	.termsList {
	  list-style: none;
	  counter-reset: my-awesome-counter;
	  display: flex;
	  flex-wrap: wrap;
	  margin: 0;
	  padding: 0;
	  border-bottom: 1px dashed;
	  border-top: 1px dashed;
	  padding-top: 10px;
	}
	.termsList li {
	  counter-increment: my-awesome-counter;
	  display: flex;
	  width: 100%;
	  font-size: 16px;
	  margin-bottom: 1.5rem;
	  margin-right: 1rem;
	  margin-left: 1rem;
	  text-align:justify;
	  color:#000000;
	  line-height:15px;
	  padding-top:5px;
	}
	.termsList li::before {
	  content: "0" counter(my-awesome-counter);
	  font-weight: bold;
	  font-size: 2rem;
	  margin-right: 0.6rem;
	  font-family: 'Abril Fatface', serif;
	  line-height: 1;
	  color:#293C4E;
	}

	#termsLabel{
	  font-family: 'Abril Fatface', serif;	
	  color:#293C4E;
	}
	
	.termsList_title{
	  font-family: 'Abril Fatface', serif;	
	  color:#293C4E;
	}