@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'],
  input[type='radio'] {
    --active: #2450B7;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #163580;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background .3s, border-color .3s, -webkit-box-shadow .2s;
    transition: background .3s, border-color .3s, -webkit-box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s, -webkit-box-shadow .2s;
  }
  input[type='checkbox']:after,
  input[type='radio']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  }
  input[type='checkbox']:checked,
  input[type='radio']:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type='checkbox']:disabled,
  input[type='radio']:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: .9;
  }
  input[type='checkbox']:disabled:checked,
  input[type='radio']:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type='checkbox']:disabled + label,
  input[type='radio']:disabled + label {
    cursor: not-allowed;
  }
  input[type='checkbox']:hover:not(:checked):not(:disabled),
  input[type='radio']:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type='checkbox']:focus,
  input[type='radio']:focus {
    -webkit-box-shadow: 0 0 0 var(--focus);
            box-shadow: 0 0 0 var(--focus);
  }
  input[type='checkbox']:not(.switch),
  input[type='radio']:not(.switch) {
    width: 21px;
  }
  input[type='checkbox']:not(.switch):after,
  input[type='radio']:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type='checkbox']:not(.switch):checked,
  input[type='radio']:not(.switch):checked {
    --o: 1;
  }
  input[type='checkbox'] + label,
  input[type='radio'] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
  input[type='checkbox']:not(.switch) {
    border-radius: 7px;
  }
  input[type='checkbox']:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    -webkit-transform: rotate(var(--r, 20deg));
            transform: rotate(var(--r, 20deg));
  }
  input[type='checkbox']:not(.switch):checked {
    --r: 43deg;
  }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    -webkit-transform: translateX(var(--x, 0));
            transform: translateX(var(--x, 0));
  }
  input[type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: .6;
  }
  input[type='radio'] {
    border-radius: 50%;
  }
  input[type='radio']:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
            transform: scale(var(--s, 0.7));
  }
  input[type='radio']:checked {
    --s: .5;
  }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-weight: 600;
}

body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  background-color: #F4F5F8;
  color: #232F4B;
}

a {
  color: #2450B7;
}

a.hover-1:hover {
  text-decoration: none;
  color: #163580;
}

.bg-primary {
  background-color: #2450B7 !important;
}

.bg-danger-light {
  background-color: #ffe9d3 !important;
}

.bg-primary-light {
  background-color: #EEF3FE !important;
}

.bg-primary-darker {
  background-color: #163580 !important;
}

.bg-dark {
  background-color: #1A2C5A !important;
}

.bg-dark-2 {
  background-color: #232F4B !important;
}

.bg-lightgrey {
  background-color: #F4F5F8 !important;
}

.bg-lightgrey-2 {
  background-color: #FAFAFA !important;
}

.text-primary {
  color: #2450B7 !important;
}

.text-dark {
  color: #1A2C5A !important;
}

.text-dark-2 {
  color: #232F4B !important;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 18px;
}

.text-lg {
  font-size: 24px;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.row-sm {
  margin-left: -10px;
  margin-right: -10px;
}

.row-sm .col, .row-sm .col-1, .row-sm .col-10, .row-sm .col-11, .row-sm .col-12, .row-sm .col-2, .row-sm .col-3, .row-sm .col-4, .row-sm .col-5, .row-sm .col-6, .row-sm .col-7, .row-sm .col-8, .row-sm .col-9, .row-sm .col-auto, .row-sm .col-lg, .row-sm .col-lg-1, .row-sm .col-lg-10, .row-sm .col-lg-11, .row-sm .col-lg-12, .row-sm .col-lg-2, .row-sm .col-lg-3, .row-sm .col-lg-4, .row-sm .col-lg-5, .row-sm .col-lg-6, .row-sm .col-lg-7, .row-sm .col-lg-8, .row-sm .col-lg-9, .row-sm .col-lg-auto, .row-sm .col-md, .row-sm .col-md-1, .row-sm .col-md-10, .row-sm .col-md-11, .row-sm .col-md-12, .row-sm .col-md-2, .row-sm .col-md-3, .row-sm .col-md-4, .row-sm .col-md-5, .row-sm .col-md-6, .row-sm .col-md-7, .row-sm .col-md-8, .row-sm .col-md-9, .row-sm .col-md-auto, .row-sm .col-sm, .row-sm .col-sm-1, .row-sm .col-sm-10, .row-sm .col-sm-11, .row-sm .col-sm-12, .row-sm .col-sm-2, .row-sm .col-sm-3, .row-sm .col-sm-4, .row-sm .col-sm-5, .row-sm .col-sm-6, .row-sm .col-sm-7, .row-sm .col-sm-8, .row-sm .col-sm-9, .row-sm .col-sm-auto, .row-sm .col-xl, .row-sm .col-xl-1, .row-sm .col-xl-10, .row-sm .col-xl-11, .row-sm .col-xl-12, .row-sm .col-xl-2, .row-sm .col-xl-3, .row-sm .col-xl-4, .row-sm .col-xl-5, .row-sm .col-xl-6, .row-sm .col-xl-7, .row-sm .col-xl-8, .row-sm .col-xl-9, .row-sm .col-xl-auto {
  padding-left: 10px;
  padding-right: 10px;
}

.btn {
  border-radius: 6px;
  font-weight: 500;
}

.btn .icon-lucide {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn:focus, .btn:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn.btn-icon {
  height: 38px;
  width: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.btn.btn-primary {
  background-color: #2450B7;
  color: #ffffff;
  border-color: #2450B7;
}

.btn.btn-primary:hover, .btn.btn-primary:focus {
  background-color: #163580;
  color: #ffffff;
  border-color: #163580;
}

.btn.btn-outline-primary {
  background-color: #ffffff;
  color: #2450B7;
  border-color: #2450B7;
}

.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
  background-color: #2450B7;
  color: #ffffff;
  border-color: #2450B7;
}

.btn.btn-white {
  border: 1px solid #dee2e6;
  background-color: #ffffff;
}

.btn.btn-white.btn-active {
  background-color: #EEF3FE;
  color: #2450B7;
}

.btn.btn-white:hover, .btn.btn-white:focus {
  background-color: #F4F5F8;
}

.btn.btn-white-2 {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn.btn-white-2:hover, .btn.btn-white-2:focus {
  background-color: #ffffff;
  color: #232F4B;
}

.full-h100 {
  display: block;
  height: 100vh;
  width: 100%;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.list-group-2 {
  border-top: 1px solid #dee2e6;
}

.list-group-2 .list-group-item {
  background-color: transparent;
  padding: 8px 0px !important;
}

.list-group-2 .list-group-item:last-child {
  padding-bottom: 0px !important;
}

.dropdown-menu {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  max-height: 320px;
  overflow-y: auto;
}

.dropdown-menu .dropdown-item {
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
}

.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
  background-color: #ffffff;
  color: #2450B7;
  outline: none;
}

.dropdown-menu .dropdown-item.active {
  background-color: #EEF3FE;
  color: #2450B7;
}

.section {
  display: block;
  position: relative;
}

.section-home-banner:before,
.section-sign:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32%;
  background-color: #163580;
}

.section-sign:before {
  background-color: #2450B7;
}

.modal-gallery .modal-dialog {
  height: 100vh;
  margin: 0px auto;
  max-width: 100%;
}

.modal-gallery .modal-content {
  height: 100vh;
  background-color: transparent;
  border-radius: 0px;
  border: 0px;
}

.modal-gallery .modal-gallery-btn {
  display: block;
  height: 100%;
}

.modal-gallery .modal-gallery-btn .modal-btn-prev,
.modal-gallery .modal-gallery-btn .modal-btn-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.modal-gallery .modal-gallery-btn .modal-btn-prev {
  left: 20px;
}

.modal-gallery .modal-gallery-btn .modal-btn-next {
  right: 20px;
}

.modal-gallery .modal-gallery-btn .modal-btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal-gallery .modal-img-item {
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: 80%;
  left: 10%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0);
  z-index: 8;
}

.card {
  border-radius: 6px !important;
  border: 1px solid #dee2e6;
  position: relative;
}

a.card {
  color: #232F4B;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a.card:hover, a.card:focus {
  text-decoration: none;
  background-color: #FAFAFA;
}

.card-hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-hover:hover, .card-hover:focus {
  text-decoration: none;
  background-color: #FAFAFA;
}

.card-block-img {
  display: block;
  width: 100%;
  padding-top: 80%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F4F5F8;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.card-block-img.hovered:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-block-img.hovered:hover:before {
  opacity: 0;
}

.card-block-img.have-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.card-block-img.have-content .card-block-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}

.card-block-img.size-2 {
  padding-top: 60%;
}

.form-control {
  height: 38px;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #232F4B;
  font-weight: 500;
  border-color: #dee2e6;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #2450B7;
  background-color: #EEF3FE;
  color: #2450B7;
}

.form-control-icon {
  position: relative;
}

.form-control-icon .icon-lucide {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 14px;
}

.form-control-icon .form-control {
  padding-left: 42px;
}

.icon-lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2.5;
}

.side-nav {
  display: block;
  position: fixed;
  top: 18px;
  left: 18px;
  bottom: 18px;
  width: 240px;
  overflow: hidden;
  border-radius: 6px;
  background-color: #F4F5F8;
  border: 1px solid #dee2e6;
}

.side-nav-btn,
.pill-btn {
  margin: 0;
  padding: 0;
}

.side-nav-btn .icon-lucide,
.pill-btn .icon-lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2.5;
}

.side-nav-btn li,
.pill-btn li {
  list-style: none;
  display: block;
  margin-bottom: 8px;
  margin-left: -12px;
  margin-right: -12px;
}

.side-nav-btn li:last-child,
.pill-btn li:last-child {
  margin-bottom: 0px;
}

.side-nav-btn li a, .side-nav-btn li button,
.pill-btn li a,
.pill-btn li button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  padding: 8px 12px 9px 12px;
  color: #232F4B;
  border-radius: 6px;
  background-color: #F4F5F8;
  border: 1px solid #F4F5F8;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.side-nav-btn li a:hover, .side-nav-btn li a:focus, .side-nav-btn li button:hover, .side-nav-btn li button:focus,
.pill-btn li a:hover,
.pill-btn li a:focus,
.pill-btn li button:hover,
.pill-btn li button:focus {
  text-decoration: none;
  color: #2450B7;
}

.side-nav-btn li a.active, .side-nav-btn li button.active,
.pill-btn li a.active,
.pill-btn li button.active {
  background-color: #ffffff;
  color: #2450B7;
  border-color: #dee2e6;
}

.pill-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pill-btn li {
  margin-left: 0px;
  margin-right: 8px;
  margin-bottom: 0px;
}

.pill-btn li a, .pill-btn li button {
  font-weight: 600;
  background-color: #F4F5F8;
}

.pill-btn li a.active, .pill-btn li button.active {
  background-color: #EEF3FE;
  color: #2450B7;
  border-color: #EEF3FE;
}

.pill-btn-2 li a, .pill-btn-2 li button {
  background-color: #ffffff;
  border-color: #ffffff;
}

.pill-btn-2 li a:hover, .pill-btn-2 li button:hover {
  background-color: #EEF3FE;
  border-color: #EEF3FE;
  color: #2450B7;
}

.pill-btn-2 li a.cta, .pill-btn-2 li button.cta {
  background-color: #2450B7;
  border-color: #2450B7;
  color: #ffffff;
}

.pill-btn-2 li a.cta:hover, .pill-btn-2 li button.cta:hover {
  background-color: #163580;
  border-color: #163580;
  color: #ffffff;
}

.content {
  display: block;
  margin-left: calc(240px + 18px);
  padding-top: 18px;
  padding-right: 18px;
}

.user-avatar,
.icon-circle {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F4F5F8;
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.user-avatar.sm,
.icon-circle.sm {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}

.user-avatar.lg,
.icon-circle.lg {
  width: 48px;
  height: 48px;
  border-radius: 24px;
}

.icon-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-ellipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.block-ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.block-ellipsis-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-tab {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

  overflow-x: scroll;
  white-space: nowrap;
  overflow-y: hidden;
}

.main-tab li {
  list-style: none;
  margin-left: 18px;
  margin-right: 18px;
}

.main-tab a {
  display: block;
  padding-bottom: 16px;
  font-weight: 500;
  position: relative;
  color: #232F4B;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.main-tab a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background-color: #2450B7;
  opacity: 0;
}

.main-tab a:hover, .main-tab a:focus {
  text-decoration: none;
  color: #2450B7;
}

.main-tab a.active {
  color: #2450B7;
  opacity: 1;
}

.main-tab a.active:before {
  opacity: 1;
}

.calendar-card .col-md-3:nth-child(1) .icon-circle, .calendar-card .card:nth-child(1) .icon-circle {
  background-color: #FFECE8;
  color: #FF512B;
}

.calendar-card .col-md-3:nth-child(2) .icon-circle, .calendar-card .card:nth-child(2) .icon-circle {
  background-color: #FFF6D6;
  color: #E68F1E;
}

.calendar-card .col-md-3:nth-child(3) .icon-circle, .calendar-card .card:nth-child(3) .icon-circle {
  background-color: #F0FAD4;
  color: #89B809;
}

.calendar-card .col-md-3:nth-child(4) .icon-circle, .calendar-card .card:nth-child(4) .icon-circle {
  background-color: #E2FFDB;
  color: #30AB13;
}

.calendar-card .col-md-3:nth-child(5) .icon-circle, .calendar-card .card:nth-child(5) .icon-circle {
  background-color: #E1F7EE;
  color: #109E64;
}

.calendar-card .col-md-3:nth-child(6) .icon-circle, .calendar-card .card:nth-child(6) .icon-circle {
  background-color: #E3FAFF;
  color: #139EBD;
}

.calendar-card .col-md-3:nth-child(7) .icon-circle, .calendar-card .card:nth-child(7) .icon-circle {
  background-color: #E8EEFC;
  color: #1143B8;
}

.calendar-card .col-md-3:nth-child(8) .icon-circle, .calendar-card .card:nth-child(8) .icon-circle {
  background-color: #F2EBFF;
  color: #6622E3;
}

.calendar-card .col-md-3:nth-child(9) .icon-circle, .calendar-card .card:nth-child(9) .icon-circle {
  background-color: #FAEBFC;
  color: #CE20E6;
}

.calendar-card .col-md-3:nth-child(10) .icon-circle, .calendar-card .card:nth-child(10) .icon-circle {
  background-color: #F7E1ED;
  color: #ED2190;
}

.calendar-card .col-md-3:nth-child(11) .icon-circle, .calendar-card .card:nth-child(11) .icon-circle {
  background-color: #F7DFE2;
  color: #C9142B;
}

.calendar-card .col-md-3:nth-child(12) .icon-circle, .calendar-card .card:nth-child(12) .icon-circle {
  background-color: #E6FCF4;
  color: #1CBA81;
}

.home-banner {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F4F5F8;
  overflow: hidden;
}

.home-banner.have-content .home-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.home-banner-swiper {
  border-radius: 6px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: white;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFC000;
}

.pointer {
  cursor: pointer;
}
/*# sourceMappingURL=style.css.map */

.filepond--list {
  justify-content: flex-start;   /* nempel kiri */
}
.filepond--item {
  width: 180px;                  /* ukuran kartu */
  max-width: 180px;
}

.border-bold {
  border: 2px solid #000000 !important;
}

.table td, .table th{
  vertical-align: middle !important;
}

.pagination{
  gap: 11px;
}

.side-nav {
  overflow-y: scroll; /* tetap bisa scroll vertikal */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.side-nav::-webkit-scrollbar {
  display: none; /* sembunyikan scroll bar */
}

.pointer-style{
    cursor: pointer;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative;
    min-height: 38px;
    font-size: 14px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #232F4B;
    font-weight: 500;
    border-color: #dee2e6;
    padding-left: 10px;
    padding-top: 4px;
}

.pt-md-2 {
  padding-top: 25px !important;
}

.main-tab {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  cursor: grab;
  user-select: none; /* supaya teks tidak terseleksi saat drag */
}

.main-tab::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.main-tab li {
  flex: 0 0 auto;
  white-space: nowrap;
}

.form-check {
  padding-left: 0px !important;
  padding-right: 1.25rem !important;
}

.dropdown-menu.show {
  left: auto !important;
  right: 0px !important;
}

.page-item.active .page-link {
  background: #004aad !important;
  color: #FFFFFF !important;
}

.main-tab-swiper {
  padding: 8px 0;
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  justify-content: flex-start; /* pastikan semua slide menempel di kiri */
}

.swiper-slide {
  width: auto;
  flex-shrink: 0; /* jangan mengecil */
}

.main-tab-swiper a {
    align-items: center;
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #000000;
    transition: background 0.3s;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.main-tab-swiper a.active {
  border-bottom: 3px solid #2450B7;
}

.main-tab-swiper .swiper-slide {
  width: auto !important;
  text-align: center;
  flex-shrink: 0;   
}
