:root {
  --primary-color: #073c64;
  --secondary-color: #fdcb2b;
  --secondary-color-hover: #e6b726;
  --text-color: #333;
  --white: #fff;
  --text-height-xs: 1rem;
  /* 16px */
  --text-height-sm: 1.25rem;
  /* 20px */
  --text-height-base: 1.5rem;
  /* 24px */
  --text-height-lg: 1.75rem;
  /* 28px */
  --text-height-xl: 1.75rem;
  /* 28px */
  --text-height-2xl: 2rem;
  /* 32px */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-md: 1rem;
  /* 16px */
  --text-base: 1.2rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */ 
  --text-4xl: 2rem;
  /* 24px */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.busy-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background-color: rgba(0, 0, 0, .5); */
  /* background-color: rgba(255, 255, 255, 0.5); */
  background-color: rgba(50, 121, 183, 0.61);
  z-index: 99999;
}
    
a {
  text-decoration: none;
  color: #073C64;
}

h1 {
  font-size: var(--text-4xl);
  margin-bottom: 10px;
}
h2 {
  font-size: var(--text-2xl);
  margin-bottom: 10px;
}
h3 {
  font-size: var(--text-xl);
  margin-bottom: 10px;
}
h4 {
  font-size: var(--text-lg);
  margin-bottom: 10px;
}

.box-loading {
  position: relative;
  left: 50%;
  top: 40px;
  margin-left: -18px;
}

#nav-links a:hover::after {
  width: 100%;
}

#nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}
#nav-links a {
  /* font-size: var(--text-md); */
  /* line-height: var(--text-height-base); */
  font-weight: 800;
  padding: 8px 20px;
  position: relative;
  text-decoration: none;
  /* justify-content: start; */
  display: inline-flex;
  font-size: var(--text-base);
  line-height: var(--text-height-base);
  /* color: var(--text-color); */
  padding-inline: 1rem;
}

#nav-links button:hover::after {
  width: 100%;
}

#nav-links button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}
#nav-links button {
  /* font-size: var(--text-md); */
  /* line-height: var(--text-height-base); */
  font-weight: 800;
  padding: 8px 20px;
  position: relative;
  text-decoration: none;
  /* justify-content: start; */
  display: inline-flex;
  font-size: var(--text-base);
  line-height: var(--text-height-base);
  color: var(--text-color);
  padding-inline: 1rem;
}

/* Container */
.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Button */
.dropbtn {
  background: transparent;
  border: none;
  cursor: pointer;
  /* padding: 6px 10px; */
  /* border-radius: 6px; */
  transition: background 0.2s;
}

/* .dropdown .dropbtn svg {
  fill: #444 !important;
} */

.dropbtn:hover {
  background: #f0f0f0;
}

/* Dropdown container */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  min-width: 220px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.42);
  /* border-radius: 6px; */
  overflow: hidden;
  z-index: 1000;
  border: 1px solid #e0e0e0;
}

/* Item dropdown */
.dropdown-content .btn-dropdown {
  /* display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid #e0e0e0; */
  width: 100%;
  height: 100%;
  line-height: 1;
}

/* Hapus border di item terakhir */
.dropdown-content .btn-dropdown:last-child {
  border-bottom: none;
  border-radius: 0px;
}

/* Hover effect */
.dropdown-content .btn-dropdown:hover {
  background: #3279b7;
  color: #fff;
}

/* Items */
.dropdown-content a {
  color: #333;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  border-bottom: 1px solid #e0e0e0;
}

/* Show on hover */
/* .dropdown:hover .dropdown-content {
	display: block;
} */

.dropdown-content a:hover {
  background: #3279b7;
  color: #fff;
}

.dropdown-content.show {
  display: block;
}

.hidden {
    display: none !important;
}

.card1 {
  position: absolute;
  width: 36px;
  height: 20px;
  background-color: #FDCB2B;
  opacity: 0.2;
  left: -60px;
  border-radius: 10px 0px 10px 0px;
  animation: card1 1120ms infinite;
  animation-delay: 0ms;
  transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
}

@keyframes card1 {
  0% {}

  28.5% {
    transform: scale(1.2);
    opacity: 1;
  }

  57% {
    transform: scale(1);
    opacity: 0.2;
  }
}

.card2 {
  position: absolute;
  width: 36px;
  height: 20px;
  /* background-color: #D8534E; */
  background-color: #04638D;
  opacity: 0.2;
  border-radius: 10px 0px 10px 0px;
  animation: card2 1120ms infinite;
  animation-delay: 214ms;
  transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
}

@keyframes card2 {
  0% {}

  28.5% {
    transform: scale(1.2);
    opacity: 1;
  }

  57% {
    transform: scale(1);
    opacity: 0.2;
  }
}

.card3 {
  position: absolute;
  width: 36px;
  height: 20px;
  /* background-color: #04638D; */
  background-color: #051524;
  opacity: 0.2;
  left: 60px;
  border-radius: 10px 0px 10px 0px;
  animation: card2 1120ms infinite;
  animation-delay: 428ms;
  transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
}

@keyframes card3 {
  0% {}

  28.5% {
    transform: scale(1.2);
    opacity: 1;
  }

  57% {
    transform: scale(1);
    opacity: 0.2;
  }
}

button,
input,
select,
textarea {
  /* -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; */
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
}

input:disabled,
select:disabled,
textarea:disabled {
  background-color: #dde4ea;
  color: #6c757d;
  border: 1px solid #ced4da !important;
  cursor: not-allowed;
  opacity: 1;
}

input[readonly] {
  background-color: #dde4ea;
  color: #6c757d;
  border: 1px solid #ced4da !important;
  cursor: not-allowed;
  opacity: 1;
}

body {
  font-family: "Urbanist", serif !important;
  line-height: 1.5;
  scroll-behavior: smooth;
  margin: 0px !important;

}

/* --- SHOW / HIDE --- */
.modal.show {
  display: flex;
  /* gunakan flex, bukan block */
  animation: fadeIn .3s ease-in-out;
}

/* --- BACKDROP --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background-color: rgba(0, 0, 0, .5); */
  /* background-color: rgba(255, 255, 255, 0.5); */
  background-color: rgba(50, 121, 183, 0.61);
  z-index: 1050;
}

.modal-backdrop.in {
  opacity: .5;
  filter: alpha(opacity=50);
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.fade.in {
  opacity: 1;
}

/* --- MODAL WRAPPER --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1051;
  display: none;
  width: 100%;
  height: 100%;
  outline: 0;

  /* --- Centering with flex --- */
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
  overflow: visible !important;
  /* supaya gak geser2 */
}

/* --- MODAL DIALOG --- */
.modal-dialog {
  position: relative;
  width: 50%;
  max-width: 70%;
  pointer-events: none;
  margin: 0;
  min-width: 400px;

}

.modal-lg {
  width: 70%;
  max-width: 80%;
}

/* --- MODAL CONTENT --- */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  /* border: 1px solid rgba(0, 0, 0, .2); */
  border: 1px solid rgb(255, 255, 255);
  border-radius: .5rem;
  outline: 0;
  pointer-events: auto;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}

/* --- HEADER --- */
.modal-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #dee2e6;
  border-radius: .5rem .5rem 0 0;
  background: #3279b7;
  color: white;
}

.modal-title {
  flex: 1;
  /* isi ruang kiri -> dorong tombol ke kanan */
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal-footer {
  border-top: 1px solid #dee2e6;
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.25rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Tombol close */
.close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: .25rem;
  cursor: pointer;
  opacity: .6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20pt;
}

.close:hover {
  background-color: #073c64;
  color: #fff;
}

.close:focus {
  outline: 2px solid rgba(0, 0, 0, .15);
  outline-offset: 2px;
}

/* Default header style */
.modal-default .modal-header {
  background: #f8f9fa;
  color: #212529;
  border-bottom: 1px solid #dee2e6;
}

.modal-primary .modal-header {
  background: #3279b7;
  color: #fff;
}

.modal-danger .modal-header {
  background: #dc3545;
  color: #fff;
}

/* Dark as overlay effect (can be combined) */
.modal-dark .modal-content,
.modal-dark .modal-header {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  border-color: #f19a1f;
  background-image: -webkit-gradient(linear,
      0 100%,
      100% 0,
      color-stop(0.25, rgba(255, 255, 255, 0.06)),
      color-stop(0.25, transparent),
      color-stop(0.5, transparent),
      color-stop(0.5, rgba(255, 255, 255, 0.06)),
      color-stop(0.75, rgba(255, 255, 255, 0.06)),
      color-stop(0.75, transparent),
      to(transparent));
  background-blend-mode: overlay;
}

/* kalau mau scroll seluruh modal */
.modal-dialog {
  max-height: 98vh;
  /* overflow-y: auto; */
}

/* kalau mau scroll hanya isi */
.modal-body {
  max-height: 90vh;
  overflow-y: auto;
}

.select2-container--default .select2-results__option--selected {
  background-color: #5897fb;
  color: #fff;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3279b7;
  color: white;
}

.select2-container--default .select2-results__option--selected {
  background-color: #3279b7;
}

.select2-container {
  flex: 1;
}

.text-left {
  text-align: left;
  justify-content: start;
}

.text-center {
  text-align: center;

}

.text-right {
  text-align: right;
  justify-content: end;
}

.form-loading,
.switcher-indicator {
  -webkit-user-select: none;
  user-select: none;
}

.form-loading,
.ps-container:hover.ps-in-scrolling.ps-in-scrolling,
.ps-in-scrolling {
  pointer-events: none;
}

.form-loading {
  position: relative;
  cursor: default;
  -moz-user-select: none;
  user-select: none;
}

.form-loading:after,
.form-loading:before {
  position: absolute;
  display: block;
  content: "";
}

.form-loading:before {
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
}

.form-loading:after {
  z-index: 1001;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  -webkit-animation: form-spin 0.6s linear;
  animation: form-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-width: 2px;
  border-style: solid;
  border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  border-radius: 999px;
}

.form-loading.form-loading-inverted:before {
  background: rgba(0, 0, 0, 0.45);
}

.form-loading.form-loading-inverted:after {
  border-color: #fff rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.2);
}

.modal-dialog .form-loading:before {
  z-index: 2080;
}

.modal-dialog .form-loading:after {
  z-index: 2081;
}

@-webkit-keyframes form-spin {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes form-spin {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.alert {
  background: #f9f1c7;
  border-color: #f6deac;
  color: #af8640;
  background-size: 20px 20px;
  padding: 5px;
  margin-bottom: 10px;;
}

.alert.alert-danger {
  background: #f2dede;
  border-color: #ebccd1;
  color: #b94a48;
  background-size: 20px 20px;
}

.note {
  background: #54a5ec;
  border-color: #4987bd;
  color: #ffffff;
  background-size: 20px 20px;
  padding: 5px;
}

.note.note-danger {
  background: 0 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  border-color: #df3c28;
  background-color: #e66454;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .04)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .04)), color-stop(0.75, rgba(255, 255, 255, .04)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .04)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .04)50%, rgba(255, 255, 255, .04)75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .04)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .04)50%, rgba(255, 255, 255, .04)75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .04)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .04)50%, rgba(255, 255, 255, .04)75%, transparent 75%, transparent);
  background-size: 20px 20px;
}

.alert.alert-info {
  background: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
  background-size: 20px 20px;
}

.alert.alert-success {
  background: #dff0d8;
  border-color: #d0e6be;
  color: #468847;
  background-size: 20px 20px;
}

.alert.alert-dark {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .2);
  background: 0 0;
  border-color: #f19a1f;
  /* background-color: #f4b04f; */
  background-color: #282117;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .06)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .06)), color-stop(0.75, rgba(255, 255, 255, .06)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-size: 20px 20px;
}

.alert.alert-danger.alert-dark {
  background: 0 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  border-color: #df3c28;
  background-color: #c63838;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .04)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .04)), color-stop(0.75, rgba(255, 255, 255, .04)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .04)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .04)50%, rgba(255, 255, 255, .04)75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .04)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .04)50%, rgba(255, 255, 255, .04)75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .04)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .04)50%, rgba(255, 255, 255, .04)75%, transparent 75%, transparent);
  background-size: 20px 20px;
}

.alert.alert-success.alert-dark {
  background: 0 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  border-color: #43a543;
  background-color: #50a850;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .06)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .06)), color-stop(0.75, rgba(255, 255, 255, .06)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-size: 20px 20px;
}

.alert.alert-info.alert-dark {
  background: 0 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  border-color: #31b0d5;
  background-color: #2a7e97;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .06)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .06)), color-stop(0.75, rgba(255, 255, 255, .06)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-size: 20px 20px;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-bottom: 0;
  color: #959595;
}

hr.list-hr {
  border: 0;
  height: 1px;
  background: #5897fb;
  margin: 1.5rem 0;
  padding: 0;
  position: relative;
}

hr {
  border: 0;
  height: 1px;
  background: #000000;
  margin: 1.5rem 0;
  padding: 0;
  position: relative;
}

hr.list-hr::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #3279B7;
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  top: -2px;
}

.modal-footer {
  border-top: 1px solid #dee2e6;
  padding: 10px 10px;
  text-align: right;
  background: 0 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-size: auto;
  border-color: #31b0d5;
  background-color: #5bc0de;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .06)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .06)), color-stop(0.75, rgba(255, 255, 255, .06)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .06)25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .06)50%, rgba(255, 255, 255, .06)75%, transparent 75%, transparent);
  background-size: 20px 20px;
  border-radius: 0 0 .5rem .5rem;
}

.action-line {
  display: block;
  float: right;
  padding: 10px 0;
}

.bg-blue {
  background-color: #3279b7;
}

.action-line.text-right {
  padding: 5px;
  text-align: right;
  justify-content: end;
  margin-bottom: 10px;
}

.action-line button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 12px;
  height: 36px;
  gap: 6px;
  background: var(--primary-color);
  color: white;
  border-radius: 6px;
}

.action-line button p {
  font-size: 14px;
  font-weight: 500;
}

.action-line button svg {
  height: 18px;
  width: 18px;
  fill: white;
}

.search-side {
  background: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  border-radius: 6px;
  width: 300px;
  height: 36px;
  position: relative;
  display: flex;
  align-items: center;
}

.icon-search {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search {
  /* padding: 40px 40px; */
  width: 100%;
}

.search::placeholder {
  color: #a0a0a0;
}

.icon-search svg {
  width: 14px;
  height: 14px;
  fill: white;
}

/* --- FORM GLOBAL --- */
form {
  width: 100%;
  max-width: 100%;
  font-family: "Urbanist", serif;

}

.form {
  margin: 20px auto;
  /* border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc; */
  padding-top: 20px;
  padding-top: 10px;
}

/* --- FORM GROUP (default = vertical) --- */
.form-group {
  display: flex;
  /* flex-direction: column; */
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.form-horizontal .form-group>div.flex {
  width: 50%;
  flex: auto !important;
}

form#form-search {
  gap: 15px;
}

.flex {
  display: flex;
  /* gap: 15px; */
}

.form-horizontal .form-group > div {
  width: 100%;
  
}

.form-horizontal .form-group > div#variable_fields {
  width: 100%;
  padding: 0.5rem 0.75rem;
  /* border: 1px solid #ccc; */
  border-radius: 0.35rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  margin-left: 0px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.35rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3279b7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(50, 121, 183, 0.2);
}

/* --- FORM HORIZONTAL --- */
.form-horizontal .form-group {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
  align-items: flex-start;
}

.form-horizontal .form-group>label {
  width: 220px;
  margin-bottom: 0;
  text-align: right;
  padding-right: 1rem;
  word-wrap: break-word;
}

.form-group.items-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* .form-horizontal .form-group label {
  width: 150px;
  margin-bottom: 0;
  text-align: right;
  padding-right: 1rem;
} */

.form-horizontal .form-group input,
.form-horizontal .form-group select,
.form-horizontal .form-group textarea {
  flex: 1;
}

.form-horizontal .form-group>.checkbox-container {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

/* --- HELP TEXT / ERROR --- */
.form-text {
  font-size: 0.875rem;
  color: #6c757d;
}

.form-error {
  color: #c20600;
  font-size: 0.875rem;
}

.form-horizontal .form-group .form-text,
.form-horizontal .form-group .form-error {
  flex-basis: calc(100% - 150px);
  margin-left: 220px;
  margin-top: 0.25rem;
}

.form-help {
  margin-left: 220px;
  font-size: 12px;
  font-style: italic;
  color: #053356;
}

/* --- TOMBOL di HORIZONTAL --- */
.form-horizontal .form-group.btn-group,
.form-horizontal .form-group .form-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

/* text-right opsional */
.form-horizontal .form-group.text-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.checkbox-container {
  margin-right: 10px;
}

.title-form-input {
  border-bottom: 2px solid var(--primary-color);
}

/* --- BASE BUTTON --- */

.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* min-height: 32px; 
  min-width: 32px;  */
  padding: 0.4rem 0.75rem;
  /* padding: 0.4rem 0.4rem; */
  border: none;
  border-radius: 0.35rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  width: max-content;
}

.custom-btn.icon-only i {
  padding: 0;
  transform: scale(2.5);
}

.custom-btn i {
  font-size: 16px;
  line-height: 1;
}

.btn-flat {
  border-radius: 0px;
}

.btn-group.btn-flat {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.input-group a,
.input-group button {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.input-group input,
.input-group select,
.input-group textarea {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;

}

.input-group-addon {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #d6d6d6;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgb(214, 214, 214);
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgb(214, 214, 214);
  border-radius: 2px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.input-group i#icon {
  font-size: 40px;
  color: #073c64;
}
.input-group .icon-red {
  font-size: 40px;
  color: #e93609;
}

.label-icon {
  font-size: 16px;
}

.icon-link {
  background-color: #3279b7;
  color: #fff;
  text-decoration: none;
}

/* --- PRIMARY --- */
.custom-btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.custom-btn-primary:hover {
  background-color: #285a95;
}

.custom-btn-primary:focus {
  outline: 2px solid rgba(50, 121, 183, 0.5);
  outline-offset: 2px;
}

/* --- DANGER --- */
.custom-btn-danger {
  background-color: #dc3545;
  color: #fff;
}

.custom-btn-danger:hover {
  background-color: #b02a37;
}

.custom-btn-danger:focus {
  outline: 2px solid rgba(220, 53, 69, 0.5);
  outline-offset: 2px;
}

/* --- SUCCESS --- */
.custom-btn-success {
  background-color: #28a745;
  color: #fff;
}

.custom-btn-success:hover {
  background-color: #1e7e34;
}

.custom-btn-success:focus {
  outline: 2px solid rgba(40, 167, 69, 0.5);
  outline-offset: 2px;
}

/* --- DARK --- */
.custom-btn-dark {
  background-color: #343a40;
  color: #fff;
}

.custom-btn-dark:hover {
  background-color: #1d2124;
}

.custom-btn-dark:focus {
  outline: 2px solid rgba(52, 58, 64, 0.5);
  outline-offset: 2px;
}

/* --- DEFAULT / SECONDARY --- */
.custom-btn-default {
  background-color: #f8f9fa;
  color: #212529;
  border: 1px solid #ced4da;
}

.custom-btn-default:hover {
  background-color: #e2e6ea;
}

.custom-btn-default:focus {
  outline: 2px solid rgba(108, 117, 125, 0.5);
  outline-offset: 2px;
}

a.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* hilangkan underline */
  font-size: inherit;
  line-height: 1;
  vertical-align: middle;
  width: max-content;
}

.custom-btn,
.custom-btn:link,
.custom-btn:visited {
  text-decoration: none;
  font-size: inherit;
  line-height: 1;
  vertical-align: middle;
}

.custom-btn {
  margin-right: 0.5rem;
}

.custom-btn:last-child {
  margin-right: 0;
  /* biar tombol terakhir nggak ada jarak kosong */
}

.actions a:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.list-hr.hr-danger {
  background: #e66454;
}

hr.list-hr.hr-danger::after {
  background: #e66454;
}

.active-login {
  background-color: #3981b7;
  color: #fff !important;
}

#container {
  background: #fff;
  margin: 0px !important;
}

.page-header h1 {
  background: #fff;
  margin: 10px;
  display: block;
  flex: fit-content;
  font-size: 25px;
}

.checkbox-container .checkbox-inline {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  white-space: nowrap;
  cursor: pointer;
}

.checkbox-container .checkbox-inline input {
  margin-right: 0.35rem;
}

.checkbox-container .checkbox-inline span.lbl {
  margin: 0;
  font-weight: normal;
}

.list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list li {
  /* padding: 8px 12px;
    margin-bottom: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9; */
  font-size: 14px;
}

.list li strong {
  display: inline-block;
  width: 120px;
  font-weight: 600;
}

.list li a {
  color: #1a73e8;
  text-decoration: none;
}

.list li a:hover {
  text-decoration: underline;
}

/* CSS untuk editor */
#content-editor {
  min-height: 300px;
  /* ganti sesuai kebutuhan */
}

/* CSS untuk editor */
.content-editor {
  min-height: 300px;
  /* ganti sesuai kebutuhan */
}

.ck-editor__editable_inline {
  min-height: 300px;
}

.pd-25 {
  padding: 25px;
}

.about-gambar{
  width: 100%;
  /* aspect-ratio: 225/338; */
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.header-text {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-text h1::after {
  content: "";
  height: 5px;
  width: 400px;
  border-radius: 5px;
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.header-text h1 {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary-color);
}

.head-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.head-right select {
  background-color: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-align: center;
  padding-inline: 6px;
  height: 36px;
  font-weight: 600;
  font-size: 14px;
}

.about-container {
  padding: 20px;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.fasilitas-view > a {
  padding: 8px 28px;
  border-radius: 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
  font-size: var(--text-base);
  margin-top: auto;
  margin-left: auto;
  cursor: pointer;
}

.keluaran-gambar > img {
  height: auto;
  top: auto;
  bottom: auto;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #fff;
}

.title-keluaran {
  padding: 5px !important;
  border: 5px solid #627f95 !important;
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.break-word {
  overflow-wrap: break-word; /* modern */
  word-wrap: break-word;     /* legacy alias */
}

.break-all {
  word-break: break-all;
}

.navbar {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

/* tombol toggle default disembunyikan */
.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.badge {
  padding: 5px;
  border-radius: 50px;
  color: #000;
  border: 1px solid #ccc;
}

.badge.badge-white {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid #ffffff;
}
.badge.badge-danger {
  background-color: #c84e49d9;
  color: #fff;
  border: 1px solid #ffffff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #003564;
}

input, select, textarea {
  color: #003564;
}

.actions a.btn-full {
  width: auto;
  height: auto;
  border-radius: 4px;
}
span.icon-downloads{
  text-wrap: nowrap;
}

.times {
  font-size: 10px;
}

.ph {
  margin-right: 5px;
}

.icon-user {
  display: inline-flex;
  align-items: center;
}
.icon-user i{
    font-size: 20px;
}

.text-danger {
  color: #ff4848;
}
.justyfied {
  text-align: justify;
}
.choices, .normalize, .others  {
  flex: 1;
}