@font-face {
  font-family: "Marcellus";
  src: url("../fonts/Marcellus/Marcellus-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 800;
  font-style: italic;
  font-display: swap;
}

:root {
  /* ========================== ROOT COLOR ==========================*/
  --c-primary: #2d3393;
  /* Deep navy - Primary */
  --c-secondary: #1eaca5;
  --c-tertiary: #1b1f5a;
  --c-body: ##ffffff;
  --c-black: #181c24;
  --c-menu: #515661;
  --c-label: #a5a9b7;
  /* Soft black */
  --c-info: #8a8f94;
  /* Cool gray */
  --c-primary-20: #ced9ea;
  --c-white: #ffffff;
  --c-green: #7ed957;
  --c-grey: #b0b0b0;
  /* Neutral grey */
  --c-yellow: #ffc008;
  --c-br: #cfd0ee;
  --c-red: #c62828;
  --c-border: #1e1e1e;
  --c-disabled: #dee1e8;
  --c-transparent: transparent;
  --c-skeleton: #2f72c40c;
  --c-hover: #2f73c4;
  --c-wa: #25d366;
  --shadow-bg: 0px 6px 18px rgb(0 0 0 / 8%);
  --shadow-skeleton: 0px 6px 18px rgb(0 0 0 / 3%);
  --ts-cubic: all 0.3s cubic-bezier(0.47, 0.71, 0.66, 0.84);

  /* ========================== ROOT TYPOGRAPHY ==========================*/
  --f-heading: "Plus Jakarta Sans", sans-serif;
  --f-heading-frontend: "Marcellus", serif;
  --f-body: "Plus Jakarta Sans", sans-serif;

  --fs-xxs: 8px;
  --fs-xs: 10px;
  --fs-s: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 24px;

  --l-h-s: 1;
  --l-h-sm: 1.25;
  --l-h-base: 1.6;
  --l-h-lg: 1.85;
  --f-w-light: 300;
  --f-w-regular: 400;
  --f-w-medium: 500;
  --f-w-semibold: 600;
  --f-w-bold: 700;
  --f-w-xbold: 800;
  --f-w-xxbold: 900;

  /* ========================== ROOT SPACING ==========================*/
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-xxl: 64px;
  --space-xxxl: 80px;

  /* ========================== ROOT RADIUS ==========================*/
  --rd-none: 0;
  --rd-sm: 4px;
  --rd-md: 8px;
  --rd-lg: 12px;
  --rd-xl: 16px;
  --rd-xxl: 20px;
  --rd-xxxl: 24px;
  --rd-50: 50%;

  /* ========================== ROOT TRANSITION ==========================*/
  --ts-fast: 0.2s ease-in-out;
  --ts-slow: 0.4s ease;
  --ts-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
::before,
::after,
hr,
hr::before,
hr::after,
input[type="search"],
input[type="search"]::before,
input[type="search"]::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::selection {
  background: var(--c-secondary);
  color: var(--c-white);
}

html,
body {
  font-family: var(--f-body);
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: normal;
  font-weight: 400;
  font-style: normal;
  background-color: var(--c-body);
  color: var(--c-black);
  width: 100%;
  height: 100%;
  /* overflow-x: hidden; */
  overflow-y: overlay;
  transition: ease 0.3s;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-heading);
}

body.page-frontend h1,
body.page-frontend h2,
body.page-frontend h3,
body.page-frontend h4,
body.page-frontend h5,
body.page-frontend h6 {
  font-family: var(--f-heading-frontend);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 2.5rem;
  font-weight: 700;
}

h4 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  font-size: 1.5625rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.25rem;
  line-height: 1.2;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0px;
}

small {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
}

ul {
  list-style: none;
  padding: 0px;
  margin-left: 12px;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  /* text-decoration: none; */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-font-smoothing: antialiased;
}

a:hover,
a:focus,
a:active {
  color: var(--c-primary);
}

span,
i {
  transition: all 0.3s;
}

figure,
address {
  margin: 0;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

img.icon-16 {
  width: 1rem;
  height: 1rem;
}

img.icon-24 {
  width: 1.5rem;
  height: 1.5rem;
}

img.icon-32 {
  width: 2rem;
  height: 2rem;
}

img.icon-48 {
  width: 3rem;
  height: 3rem;
}

img.icon-64 {
  width: 4rem;
  height: 4rem;
}

.img-128 {
  width: 8rem;
}

.img-192 {
  width: 12rem;
}

.img-240 {
  width: 15rem;
}

.img-280 {
  width: 17.5rem;
}

.img-352 {
  width: 22rem;
}

.img-512 {
  width: 32rem;
}

.img-rounded {
  border-radius: 50%;
}

.shadow-bg {
  box-shadow: var(--shadow-bg);
}

hr {
  margin-top: 1.2496px;
  margin-bottom: 1.2496px;
  border: 0;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

i {
  transition: all 0.3s;
}

.cursor-pointer {
  cursor: pointer;
}

.ts-03 {
  transition: ease-in-out 0.3s;
}

.ts-05 {
  transition: ease-in-out 0.5s;
}

.ts-spring {
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

dl,
dt,
dd {
  margin-bottom: 0;
}

/* ========================== FORM FIELD ==========================*/

.form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus,
.has-success .form-control:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  color: var(--c-black);
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

input[type="search"]::-moz-search-clear-button {
  display: none;
}

.form-control[disabled] {
  border: 0;
  background-color: var(--c-disabled);
}

.form-control[disabled]:hover {
  border: 0;
  background-color: var(--c-disabled);
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-group-icon {
  position: relative;
  height: 100%;
}

.form-group-icon input.form-control {
  padding-right: 1rem;
}

.form-group-icon .search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #555;
  z-index: 10;
}

.form-group-icon input.form-control:focus {
  outline: none;
}

.form-group-icon input.form-control {
  padding-left: 3rem;
  border-radius: 14px 0px 0px 14px;
  border: 1px solid #ddd;
  font-size: 1rem;
  height: 100%;
}

.form-group-icon .clear-icon {
  position: absolute;
  right: 68px;
  font-size: 1rem;
  color: #999;
  cursor: pointer;
}

.section-contact-hero select.form-control {
  border: 1px solid #ddd;
}

.form-control::placeholder {
  opacity: 0.2;
}

.has-error .form-control {
  box-shadow: none;
}

input.form-control,
textarea.form-control {
  padding: 0.75rem;
  color: var(--c-black);
  font-weight: 500;
  background-color: var(--c-white);
  border: 1px solid var(--c-grey);
  border-radius: 8px;
  opacity: 1;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: #292929;
}

input.form-control:hover,
input.form-control:focus,
input.form-control:active {
  color: var(--c-black);
  background-color: var(--c-white);
  border-color: var(--c-primary);
}

input.form-control[readonly] {
  background-color: var(--c-disabled);
  cursor: default;
  border: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

select.form-control {
  cursor: pointer;
  height: auto;
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-black);
  border: 1px solid var(--c-grey);
  border-radius: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: 90% 50%;
  background-repeat: no-repeat;
  background-image: url("../images/general/angle-down.svg");
  background-size: 0.75rem;
  box-shadow: none;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

select.form-control:hover,
select.form-control:focus,
select.form-control:active {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.placeholder-select option[disabled] {
  opacity: 0.7;
}

.select2-container--default .select2-selection--single {
  height: 2.5rem !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--c-black) !important;
  font-size: 1rem !important;
  font-weight: 600;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0.3125rem !important;
}

ul.select2-results__options > li:hover {
  color: var(--c-black) !important;
  /* background-color: #ffe3b8 !important; */
}

.select2-container--default .select2-results__option--selected {
  color: var(--c-white) !important;
  background-color: var(--c-primary) !important;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected.select2-results__option--highlighted {
  color: var(--c-white) !important;
  background-color: var(--c-primary) !important;
}

li.select2-results__option--selectable {
  color: var(--c-black) !important;
}

input.form-control:hover,
input.form-control:focus,
input.form-control:active,
textarea.form-control:hover,
textarea.form-control:focus,
textarea.form-control:active {
  color: #09041e;
  background-color: var(--c-white);
  border: 1px solid var(--c-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

label {
  word-break: break-word;
}

label.control-label {
  position: relative;
  font-size: 1rem;
  color: var(--c-black);
  /* letter-spacing: .0625rem; */
  font-weight: 400;
  border-radius: 0;
  margin-left: 0;
  margin-bottom: 0.25rem;
}

.underline {
  text-decoration: underline;
}

/*====================================== SECTION MODAL SECTION ======================================*/
.modal {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-open {
  overflow: hidden !important;
  padding-right: 0 !important;
}

.modal-content {
  background-color: #fff;
  border: 0;
  border-radius: var(--rd-xl);
}

.modal-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  /* margin: 0 1.5rem; */
  border-top-left-radius: var(--rd-xl);
  border-top-right-radius: var(--rd-xl);
  border-color: var(--c-transparent);
  background-color: rgba(45, 52, 147, 0.1);
  border-bottom: 1px solid #d2d4dc;
}

.modal-title {
  padding: 0 2rem 0 0;
}

.modal-header .modal-close {
  z-index: 999;
  opacity: 1;
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-header .btn-close {
  opacity: 1;
  background-image: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 0;
  padding: 0;
  border-radius: var(--rd-50);
  background-color: #f54036;
  color: var(--c-white);
  font-size: 18px;
  font-weight: var(--f-w-semibold);
  position: relative;
  transition: all 0.3s;
  box-shadow:
    0px 20px 50px rgba(0, 0, 0, 0.12),
    0px 6px 20px rgba(0, 0, 0, 0.26);
}

.modal-close .btn-close:hover,
.modal-header .btn-close:hover {
  outline: 0;
  opacity: 1;
  color: var(--c-white);
  background-color: #f54036;
}

.modal-body {
  height: 100%;
  padding: 1rem 1.5rem;
}

.modal.fade {
  overflow: hidden;
}

.modal.fade .modal-dialog {
  /* transition: transform 0.5s ease-in-out, filter 1s ease-out; */
  filter: blur(5px);
  transform: scale(1.2);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.fade.show .modal-dialog {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.modal-footer {
  border-top: 0.0625rem solid rgb(222, 226, 230);
  padding: 1rem;
  /*border: 0;*/
  text-align: center;
}

.modal-footer > * {
  margin: 0;
}

/*====================================== SECTION COMPONENT BUTTON ======================================*/

.btn {
  --bg-y: 100%;
  --r1: 50%;
  --r2: 50%;
  --r3: 0%;
  --r4: 0%;
  overflow: hidden;
  position: relative;
  border-radius: var(--rd-md);
  outline: none;
  padding: 0.625rem 1rem;
  font-weight: var(--f-w-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  isolation: isolate;
  will-change: transform;
  transition: all 0.3s;
}

.btn:hover {
  transform: scale(1.02);
}

.btn:focus-visible {
  outline: none;
}

.btn:focus {
  background-color: var(--c-primary);
}

.btn.disabled,
.btn:disabled {
  color: var(--c-black);
  background-color: var(--c-disabled);
  border-color: var(--c-disabled);
}

.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
}

.btn-primary:hover {
  background: var(--c-tertiary);
  color: var(--c-white);
}

.btn-secondary {
  background: var(--c-secondary);
  color: var(--c-white);
  border: 1px solid var(--c-white);
}

.btn-secondary:hover {
  background-color: var(--c-secondary);
  border-color: var(--c-white);
}

.btn-secondary:focus,
.btn-secondary:active {
  background-color: var(--c-secondary);
  border-color: var(--c-white);
}

.btn-secondary span {
  color: var(--c-white);
}

.btn-tertiary {
  background: var(--c-white);
  color: var(--c-primary);
  border: 1px solid var(--c-white);
}

.btn-tertiary:focus,
.btn-tertiary:active {
  color: var(--c-white);
}

.btn-yellow {
  background: var(--c-yellow);
  color: var(--c-primary);
  border: none;
}

.btn-yellow:hover {
  background-color: var(--c-yellow);
}

.btn-yellow:focus,
.btn-yellow:active {
  background-color: var(--c-yellow);
}

.btn-yellow span {
  color: var(--c-primary);
}

.btn-check:focus + .btn,
.btn:focus,
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus,
.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none !important;
}

.btn-link {
  color: var(--c-primary);
  text-decoration: underline;
  font-weight: var(--f-w-bold);
}

.btn-icon-r {
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: var(--c-primary);
  border-radius: var(--rd-50);
  color: var(--c-white);
  transition: all 0.3s;
}

.btn-icon-r:hover {
  color: var(--c-white) !important;
}

.btn-transparent,
.btn-transparent:focus {
  background-color: transparent;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  transition: all 0.3s;
}

.btn-transparent:hover {
  color: var(--c-white);
  background-color: var(--c-primary);
}

.btn-transparent:hover i {
  color: var(--c-white);
}

.btn-back {
  background-color: transparent;
  font-size: 1.25rem !important;
  border: 1px solid var(--c-white);
  color: var(--c-primary);
  border-radius: var(--rd-50);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0px 0px 18px 0px rgb(170 170 180 / 50%);
}

.btn-back:hover,
button.btn-back:focus:not(:focus-visible) {
  color: var(--c-primary);
  background-color: var(--c-white);
}

.btn-back:hover,
.btn-back:active,
.btn-back:focus {
  text-decoration: none;
}

.btn-line,
.btn-line:focus {
  background-color: transparent;
  border: 1px solid var(--c-white);
  color: var(--c-white);
  transition: all 0.3s;
}

.btn-line:hover,
button.btn-line:focus:not(:focus-visible) {
  color: var(--c-primary);
  background-color: var(--c-white);
}

.btn-line:hover,
.btn-line:active,
.btn-line:focus {
  text-decoration: none;
}

.btn-line-primary,
.btn-line-primary:focus,
.btn-line-primary:active {
  background-color: transparent;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  transition: all 0.3s;
}

.btn-line-primary:hover,
button.btn-line-primary:focus:not(:focus-visible) {
  color: var(--c-white);
  background-color: var(--c-primary);
}

.btn-line-primary:hover {
  text-decoration: none;
  color: var(--c-white);
  background-color: var(--c-primary);
}

.btn-load {
  color: var(--c-secondary);
}

.btn-load:before,
.btn-load:active,
.btn-load:focus {
  background-color: var(--c-secondary) !important;
}

.underline-cta {
  opacity: 0.4;
  width: 100%;
  height: 2px;
  background: transparent linear-gradient(90deg, #ee85ff 0%, #1eadc3 100%) 0% 0%
    no-repeat padding-box;
  opacity: 1;
}

.btn-google {
  border: 1px solid #e7e7e9;
  background-color: var(--c-white) !important;
  color: var(--c-black) !important;
}

.btn-google:hover {
  color: var(--c-black) !important;
  border-color: #dbdbde !important;
  box-shadow: none !important;
}

.btn-fb {
  background-color: #4267b2;
  color: var(--c-white) !important;
}

.btn-fb:hover {
  box-shadow: none !important;
}

.wa-bg {
  background-color: #25d366;
}

.btn-modal {
  background-color: var(--c-transparent);
  border: 0;
  padding: 0 !important;
  box-shadow: none;
}

#select-dropdown {
  margin-top: 0.25rem;
  background: transparent;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  outline: 0;
  display: block;
  text-align: left;
  font-size: 1rem;
  width: 100%;
  color: #5a5957;
  text-decoration: none;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

#select-dropdown.open {
  opacity: 0;
}

.button-group {
  position: relative;
  width: 13.5rem;
}

.button-group .marka {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 9999;
}

.button-group .marka i {
  background: grey !important;
}

.marka-icon-times {
  border: 1px solid grey;
  border-radius: 50%;
  top: 0.25rem !important;
  right: 0.25rem !important;
}

#dropdown-menu {
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  margin: 1rem auto;
  padding: 0.5rem 1rem;
  width: 100%;
  list-style: none;
  text-align: left;
  border-radius: 0.25rem;
  background: var(--c-white);
  transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: box-shadow 0.5s ease-out;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
}

#dropdown-menu li {
  position: relative;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  opacity: 0;
}

#dropdown-menu li:nth-last-child(1) {
  margin-bottom: 0;
}

#dropdown-menu li:hover {
  background-color: #33b8c41a;
}

#dropdown-menu li a {
  color: #5a5957;
  text-decoration: none;
  font-size: 1rem;
}

#dropdown-menu.open {
  -webkit-transform: scale(1);
  transform: scale(1);
}

#dropdown-menu.open li {
  transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.open li:nth-child(1) {
  transition-delay: 0.07s !important;
}

.open li:nth-child(2) {
  transition-delay: 0.14s !important;
}

.open li:nth-child(3) {
  transition-delay: 0.21s !important;
}

.open li:nth-child(4) {
  transition-delay: 0.28s !important;
}

.open li:nth-child(5) {
  transition-delay: 0.35s !important;
}

/*====================================== SECTION COMPONENT WORDING ======================================*/

.c-primary {
  color: var(--c-primary) !important;
}

.c-secondary {
  color: var(--c-secondary) !important;
}

.c-tertiary {
  color: var(--c-tertiary) !important;
}

.c-white {
  color: var(--c-white) !important;
}

.c-black {
  color: var(--c-black) !important;
}

.c-menu {
  color: var(--c-menu) !important;
}

.c-label {
  color: var(--c-label) !important;
}

.c-info {
  color: var(--c-info) !important;
}

.c-primary-20 {
  color: var(--c-primary-20) !important;
}

.c-red {
  color: var(--c-red) !important;
}

.c-grey {
  color: var(--c-grey) !important;
}

.c-border {
  color: var(--c-border) !important;
}

.c-green {
  color: var(--c-y-green) !important;
}

.c-card {
  color: var(--c-card) !important;
}

.c-br {
  color: var(--c-br) !important;
}

.c-warning {
  color: #fdda28;
}

.bg-card {
  background-color: var(--c-card) !important;
}

.bg-body {
  background-color: var(--c-body) !important;
}

.c-wa {
  color: var(--c-wa) !important;
}

.c-disabled {
  color: var(--c-disabled) !important;
}

.f-head {
  font-family: var(--f-heading) !important;
}

.f-body {
  font-family: var(--f-body) !important;
}

.f-xxxl {
  font-size: 3.75rem !important;
}

.f-xxl {
  font-size: 3rem !important;
}

.f-xl {
  font-size: 2.5rem !important;
}

.f-lg {
  font-size: 2rem !important;
}

.f-sl {
  font-size: 1.5625rem !important;
}

.f-md {
  font-size: 1.25rem !important;
}

.dashboard-title h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

.f-base {
  font-size: 1rem !important;
}

.f-sm {
  font-size: 0.875rem !important;
}

.f-xs {
  font-size: 0.75rem !important;
}

.f-xxs {
  font-size: 0.5rem !important;
}

.light {
  font-weight: var(--f-w-light) !important;
}

.regular {
  font-weight: var(--f-w-regular) !important;
}

.medium {
  font-weight: var(--f-w-medium) !important;
}

.semi-bold {
  font-weight: var(--f-w-semibold) !important;
}

.bold {
  font-weight: var(--f-w-bold) !important;
}

.x-bold {
  font-weight: var(--f-w-xbold) !important;
  /* letter-spacing: 1; */
}

.xx-bold {
  font-weight: var(--f-w-xxbold);
}

.lh-0-8 {
  list-style: 0.8;
}

.lh-0-7 {
  list-style: 0.7;
}

.lh-0-6 {
  line-height: 0.6;
}

.lh-0-5 {
  line-height: 0.5;
}

.lh-1 {
  line-height: 1;
}

.lh-1-1 {
  line-height: 1.1;
}

.lh-1-2 {
  line-height: 1.2;
}

.lh-1-3 {
  line-height: 1.3;
}

.lh-1-4 {
  line-height: 1.4;
}

.lh-1-5 {
  line-height: 1.5;
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.ls-3 {
  letter-spacing: 3px;
}

.f-break {
  white-space: normal;
  word-wrap: break-word;
}

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

.box-shadow {
  -webkit-transition: box-shadow 0.5s ease-out;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.5s ease-out;
}

.no-pad {
  padding: 0;
}

.rd-none {
  border-radius: var(--rd-none) !important;
}

.rd-sm {
  border-radius: var(--rd-sm) !important;
}

.rd-md {
  border-radius: var(--rd-md) !important;
}

.rd-lg {
  border-radius: var(--rd-lg) !important;
}

.rd-xl {
  border-radius: var(--rd-xl) !important;
}

.rd-xxl {
  border-radius: var(--rd-xxl) !important;
}

.rd-xxxl {
  border-radius: var(--rd-xxxl) !important;
}

.rd-50 {
  border-radius: var(--rd-50) !important;
}

.rdtl-rdtr {
  border-top-left-radius: var(--rd-xl) !important;
  border-top-right-radius: var(--rd-xl) !important;
}

.rdbl-rdbr {
  border-bottom-left-radius: var(--rd-xl) !important;
  border-bottom-right-radius: var(--rd-xl) !important;
}

.rdtr-rdbr {
  border-top-right-radius: var(--rd-xl) !important;
  border-bottom-right-radius: var(--rd-xl) !important;
}

.br-primary {
  border-color: var(--c-primary);
}

.br-red {
  border-color: var(--c-red);
}

.br-dark {
  border-color: var(--c-border);
}

.no-transform {
  text-transform: none !important;
}

.bg-primary {
  background-color: var(--c-primary) !important;
}

.bg-primary-gd {
  background: var(--primary-gd) !important;
}

.bg-secondary {
  background-color: var(--c-secondary) !important;
}

.bg-white {
  background-color: var(--c-white) !important;
}

.bg-grey {
  background-color: var(--c-grey) !important;
}

.bg-black {
  background-color: var(--c-black) !important;
}

.bg-red {
  background-color: var(--c-red) !important;
}

.bg-transparent {
  background-color: var(--c-transparent) !important;
}

.bg-wa {
  background-color: #25d366 !important;
}

.bg-fb {
  background-color: #4267b2 !important;
}

.c-whatsapp {
  color: #25d366 !important;
}

.w-fit {
  width: fit-content;
}

.h-fit {
  height: fit-content;
}

.max-w-none {
  max-width: none;
}

.max-16 {
  max-width: 1rem !important;
}

.max-24 {
  max-width: 1.5rem !important;
}

.max-32 {
  max-width: 2rem !important;
}

.max-40 {
  max-width: 2.5rem !important;
}

.max-48 {
  max-width: 3rem !important;
}

.max-64 {
  max-width: 4rem !important;
}

.max-84 {
  max-width: 5.25rem !important;
}

.max-100 {
  max-width: 6.25rem !important;
}

.max-112 {
  max-width: 7rem !important;
}

.max-128 {
  max-width: 8rem !important;
}

.max-140 {
  max-width: 8.75rem !important;
}

.max-160 {
  max-width: 10rem !important;
}

.max-240 {
  max-width: 15rem !important;
}

.max-280 {
  max-width: 17.5rem !important;
}

.max-320 {
  max-width: 20rem !important;
}

.max-360 {
  max-width: 22.5rem !important;
}

.max-400 {
  max-width: 25rem !important;
}

.max-480 {
  max-width: 30rem !important;
}

.max-560 {
  max-width: 35rem !important;
}

.max-640 {
  max-width: 40rem !important;
}

.max-720 {
  max-width: 45rem !important;
}

.max-840 {
  max-width: 52.5rem !important;
}

.max-1024 {
  max-width: 64rem !important;
}

.max-1140 {
  max-width: 71.25rem !important;
}

.max-1440 {
  max-width: 90rem !important;
}

.z-m-3 {
  z-index: -3;
}

.z-m-2 {
  z-index: -2;
}

.z-m-1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.subject-title {
  max-width: 48rem;
}

.subject-desc,
.subject-info {
  max-width: 64rem;
}

.sticky-subhead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.no-result {
  background-color: var(--c-primary-500);
  padding: 1rem;
  text-align: center;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.cover {
  object-fit: cover;
}

.c-default {
  cursor: default;
}

.pointer {
  cursor: pointer;
}

.no-selection {
  user-select: none;
}

.p-none {
  pointer-events: none;
}

.line-clamp-1 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.line-clamp-2 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.line-clamp-3 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.line-clamp-4 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.line-clamp-5 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
}

.wrap-text {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.custom-choose {
  display: flex;
}

.custom-choose input[type="checkbox"],
.custom-choose input[type="radio"] {
  display: none;
}

.custom-choose input[type="checkbox"] + label,
.custom-choose input[type="checkbox"]:not(checked) + label,
.custom-choose input[type="radio"] + label,
.custom-choose input[type="radio"]:not(checked) + label {
  cursor: pointer;
  padding: 12px 32px;
  border: solid 1px var(--c-transparent);
  background-color: var(--c-body);
  border-radius: 0.5rem;
  text-align: center;
  font-size: 16px;
  transition: all ease-in-out 0.3s;
}

.custom-choose input[type="checkbox"]:checked + label,
.custom-choose input[type="radio"]:checked + label {
  position: relative;
  border: solid 1px var(--c-primary);
  background-color: var(--c-body);
  color: var(--c-primary);
  transition: all ease-in-out 0.3s;
}

.faq-accordion .accordion-item .accordion-body :where(ul),
.modalcareer-applicant--body :where(ul),
.pillar-card--surface :where(ul),
.about-intermezo-left--desc :where(ul),
.section-obd-intermezo .about-content--body-desc :where(ul) {
  list-style: disc;
  padding-left: 1rem;
  margin-left: 0;
  list-style-position: outside;
}

.finance-accordion .accordion-item .accordion-body :where(ol),
.modalcareer-applicant--body :where(ol),
.pillar-card--surface :where(ol),
.about-intermezo-left--desc :where(ol),
.section-obd-intermezo .about-content--body-desc :where(ol) {
  list-style: decimal;
  padding-left: 1rem;
  margin-left: 0;
  list-style-position: outside;
}

/*====================================== SECTION COMPONENT - WIDGET ======================================*/

/*====================================== SECTION NAVBAR ======================================*/
header {
  background-color: var(--c-transparent);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 777;
  will-change: transform;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  transition: all 0.5s;
}

header nav {
  position: relative;
  /* overflow: hidden; */
  padding: 16px 0px 0px 0px;
  margin: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.page-frontend header nav {
  padding: 16px 8px 0px 8px;
}

header nav .container-fluid {
  max-width: 1320px;
  margin: 0;
}

header nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.close-menu {
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 85%;
}

.close-menu span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 20px;
  color: #000233;
  text-align: center;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
}

#navigation {
  transition: all 0.3s;
}

/* .scroll#navigation {
  background-color: var(--c-primary) !important;
}

.scroll#navigation .container-nav .nav-menu li a:hover {
  color: var(--c-white) !important;
} */

.container-nav {
  backdrop-filter: blur(180px);
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.56) 100%
  );
  /* background-color: #ffffff; */
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  box-shadow: 0 0 14px 4px #2d33931a;
  transition: all 0.3s;
}

header.open nav {
  padding: 0;
  margin: 0;
}

header.open .container-nav {
  max-width: 100%;
  border-radius: 0;
}

.container-nav .nav-logo {
  width: 128px;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

select.form-control:has(+ input:focus),
select.form-control:has(+ input:focus-within) {
  opacity: 0;
}

.container-nav .nav-menu {
  /* position: relative; */
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  flex-basis: auto;
  gap: 16px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
}

.container-nav .nav-menu > ul {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  text-align: center;
}

.container-nav .nav-menu > ul li a {
  position: relative;
  padding-left: 16px;
}

.container-nav .nav-menu > ul li:first-child a {
  padding-left: 0px;
}

.container-nav
  .nav-menu
  > ul
  li:not(:first-child)
  a.nav-link-what-we-do::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 6px;
  background-color: #adb1b6;
}

.container-nav .nav-menu > li a {
  font-size: 16px;
  font-weight: 500;
  /* padding: 8px; */
  color: var(--c-black);
  transition: all 0.3s;
}

.container-nav .nav-menu > li a:hover {
  color: var(--c-black) !important;
}

.container-nav .nav-menu > li.active > a,
.menu-container-mobile .menu-nav-mobile li.active > a {
  color: var(--c-primary);
  font-weight: 700;
}

.nav-toggle {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  display: none;
  z-index: 10;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  box-shadow: none;
  border: none;
  background-color: var(--c-transparent);
}

.nav-toggle span {
  display: block;
  opacity: 1;
  width: 20px;
  height: 2px;
  border-radius: 20px;
  background-color: var(--c-primary);
  font-size: 16px;
  transition: var(--trans-cubic);
}

.nav-toggle span:nth-child(2) {
  width: 15px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(-45deg);
}

.nav-toggle.active span:nth-child(2) {
  transform: translateX(-30px);
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(45deg);
}

.nav-logo .text-logo {
  max-width: 120px;
}

.nav-submenu-wrapper {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.nav-submenu-wrapper a span {
  color: var(--c-black);
}

.nav-item-what-we-do.show-submenu .nav-submenu-wrapper {
  display: block;
  z-index: 9;
}

.nav-item-what-we-do.show-submenu.animate-submenu .nav-submenu-wrapper {
  flex-direction: column;
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
  top: 4.5rem;
}

.nav-item-what-we-do.show-submenu .nav-submenu-wrapper a {
  padding: 4px 4px 4px 0;
  display: block;
  width: 100%;
}

.container-nav .nav-menu li.active > a,
.menu-container-mobile .menu-nav-mobile li.active > a {
  color: var(--c-primary);
  font-weight: 700;
}

.nav-submenu-wrapper .nav-submenu-content li:hover a.active {
  background-color: var(--c-transparent);
}

.nav-submenu-bottom {
  margin-left: 0;
}

.nav-submenu-bottom li:hover a {
  background-color: rgba(45, 52, 147, 0.133);
}

.nav-item-mobile-accordion .accordion-item,
.nav-item-mobile-accordion .accordion-collapse {
  border-bottom-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
}

.nav-submenu-wrapper .nav-submenu-content {
  text-align: left;
  background-color: var(--c-white);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-submenu-wrapper .nav-submenu-content a.active span {
  color: var(--c-primary);
  font-weight: 700;
}

.nav-item-mobile-accordion.active .accordion-button {
  font-weight: 700;
}

.nav-item-mobile-accordion .accordion-button {
  padding: 0rem !important;
  box-shadow: unset !important;
}

.nav-item-mobile-accordion .accordion-button::after {
  background-image: url("/images/general/chevron-down-b.svg");
}

.nav-item-mobile-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("/images/general/chevron-down-w.svg");
}

.menu-container-mobile .menu-nav-mobile li:last-child {
  margin-bottom: 0;
}

.nav-link-main {
  cursor: default;
}

.nav-menu .menu-nav {
  display: block;
}

.nav-hamburger {
  display: none;
  width: auto;
  height: auto;
  flex-direction: column;
  gap: 6px;
}

.nav-hamburger span.bar {
  display: block;
  background-color: var(--c-black);
  height: 2px;
  border-radius: var(--rd-xl);
}

.nav-hamburger .bar-top,
.nav-hamburger .bar-bot {
  width: 16px;
}

.nav-hamburger .bar-top {
  transition: all 0.6s ease;
  transition-delay: 0.2s;
}

.nav-hamburger .bar-middle {
  transition: all 0.6s ease;
  transition-delay: 0.3s;
}

.nav-hamburger .bar-bot {
  transition: all 0.8s ease;
  transition-delay: 0.1s;
}

.nav-hamburger .bar-middle {
  width: 24px;
}

/* === ACTIVE STATE === */
.nav-hamburger.active .bar-top {
  width: 24px;
  transform: rotate(45deg) translate(7px, 9px);
}

.nav-hamburger.active .bar-middle {
  width: 24px;
  transform: rotate(-45deg) translate(-3px, 1px) translateX(0px);
}

.nav-hamburger.active .bar-bot {
  filter: blur(4px);
  -webkit-filter: blur(4px);
  transform: scale(2) translate(-1px, -4px);
  height: 8px;
  /* border-radius: 50%; */
  opacity: 0.4;
}

.menu-container-mobile {
  z-index: 480;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 100%;
  position: fixed;
  background-color: white;
  box-shadow: -4px 0px 18px 4px rgb(0 0 0 / 14%);
  bottom: 0;
  right: 0;
}

.cursor-none {
  cursor: default !important;
}

.pointer-none {
  pointer-events: none !important;
}

/* .swiper {
  overflow: clip;
} */

.swiper-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.cta-swiper-wrapper {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.swiper-slide {
  background: transparent;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-wrapper .swiper-slide > a {
  width: 100%;
}

.swiper-button-next {
  opacity: 1;
  right: 0px;
  padding: 18px;
  border-radius: 50%;
  /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
}

.swiper-button-prev {
  opacity: 1;
  left: 0px;
  padding: 18px;
  border-radius: 50%;
  /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
}

.swiper-button-next,
.swiper-button-prev {
  position: static;
  top: 45%;
  width: 2rem !important;
  height: 2rem !important;
  background-color: var(--c-primary);
  color: var(--c-white);
  border-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: all 0.3s;
}

.swiper-button-next span,
.swiper-button-next i,
.swiper-button-prev span,
.swiper-button-prev i {
  transition: all 0s !important;
  line-height: normal !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  /* transform: scale(1.1); */
  background-color: var(--c-primary);
  color: var(--c-white);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  opacity: 0;
  display: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}

.swiper-button-next.br-white,
.swiper-button-prev.br-white {
  top: 45%;
  width: 2rem !important;
  height: 2rem !important;
  color: var(--c-white);
  border: 1px solid var(--c-white);
  background-color: var(--c-transparent);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: all 0.3s;
}

.cta-swiper-home .swiper-bp-prev,
.cta-swiper-home .swiper-home-services-prev {
  left: 0;
}

.cta-swiper-home .swiper-bp-next,
.cta-swiper-home .swiper-home-services-next {
  right: 0;
}

.swiper-button-prev.br-white:hover,
.swiper-button-next.br-white:hover {
  /* transform: scale(1.1); */
  background-color: var(--c-white);
  color: var(--c-black);
}

.section-career-testimoni
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--c-white);
  opacity: 1;
}

.bullet-wrapper.bullet-filled .swiper-pagination-bullet {
  border: 2px solid var(--c-transparent);
  background: var(--c-primary);
  opacity: 1;
}

.clipped-path {
  padding: 5px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 1s;
}

.outline-font {
  color: rgba(170, 49, 250, 1);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--c-primary);
}

.outline-font.outline-green {
  color: rgba(117, 231, 248, 1);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--c-secondary);
}

section {
  margin: 0 auto;
  padding: 2rem 0;
}

.section-hero-top {
  padding-top: 8rem;
}

.container-fluid {
  margin: 0 auto;
}

.section-hero {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(180deg, #202833 0%, #1f1f219e 100%);
  opacity: 0.8;
  transition:
    background-color 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}

/*====================================== SECTION COMPONENT ELEMENT ======================================*/
.hero-pad {
  padding-top: 8rem;
}

.join-member-content,
.faq-cta-content {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 26rem 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.join-member-content::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 600%;
  height: 320px;
  z-index: 1;
  background: radial-gradient(
    ellipse at bottom,
    rgba(45, 51, 147, 1) 10%,
    rgba(45, 51, 147, 0.6) 35%,
    rgba(45, 51, 147, 0) 60%,
    rgba(45, 51, 147, 0) 100%
  );
}

.faq-cta-content::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 600%;
  height: 50%;
  z-index: 1;
  background: radial-gradient(
    ellipse at bottom,
    rgba(45, 51, 147, 1) 10%,
    rgba(45, 51, 147, 0.6) 35%,
    rgba(45, 51, 147, 0) 60%,
    rgba(45, 51, 147, 0) 100%
  );
}

.breadcrumb-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-base);
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumb-list li {
  min-width: 0;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  color: rgba(45, 52, 147, 0.4);
  font-weight: var(--f-w-medium);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb-list li + li::before {
  content: "/";
  margin: 0 8px;
  color: var(--c-primary);
}

.breadcrumb-list a {
  text-decoration: none;
  color: var(--c-primary);
  font-weight: var(--f-w-medium);
}

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

.breadcrumb-list li[aria-current="page"] {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.text-animate-wrap {
  padding: 5px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 1s;
}

.text-animate {
  perspective: 500px;
}

.about-content--head-desc {
  max-width: 75%;
}

[id^="section-"] {
  scroll-margin-top: 80px;
}

.menu-sidebar-mobile {
  display: none;
}

.chev {
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease;
}

.menu-sidebar--list.is-open .chev {
  transform: rotate(180deg);
}

.menu-sidebar--toggle {
  outline: 0;
  width: 100%;
  box-shadow: none;
  border: none;
  overflow: hidden;
  background: var(--c-white);
  cursor: pointer;
  text-decoration: none;
  color: var(--c-menu);
  font-weight: var(--f-w-semibold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--rd-lg);
  transition: all 0.3s;
}

.menu-sidebar--list.is-open .menu-sidebar--toggle {
  background-color: #edf5fe;
  color: var(--c-primary);
}

.menu-sidebar--submenu > li.submenu-sidebar--list .submenu-link {
  list-style: none;
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--rd-lg);
  /* font-weight: var(--f-w-semibold); */
  color: var(--c-menu);
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.menu-sidebar--toggle:hover,
.menu-sidebar--submenu > li.submenu-sidebar--list .submenu-link:hover,
.menu-sidebar--submenu > li.submenu-sidebar--list.active .submenu-link {
  color: var(--c-primary);
}

.menu-sidebar--submenu > li.submenu-sidebar--list.active .submenu-link {
  background-color: var(--c-tertiary);
}

@media (prefers-reduced-motion: reduce) {
  .chev {
    transition: none;
  }
}

.nav-primary {
  padding: 0.25rem;
}

.nav-primary .nav-pills {
  gap: 0.5rem;
  width: fit-content;
  padding: 0.25rem;
  margin-left: 0;
  border-radius: var(--rd-xxl);
  justify-content: center;
  background-color: rgb(246 246 246);
}

.nav-primary li.nav-item {
  background-color: rgb(246 246 246);
  border-radius: var(--rd-xxl);
}

.nav-primary li.nav-item .nav-link {
  color: var(--c-info);
  border: 1px solid var(--c-transparent);
  border-radius: var(--rd-xl);
  padding: 0.5rem 1rem;
  font-weight: var(--f-w-medium);
  transition: all 0.3s;
}

.nav-primary .nav-pills .nav-link.active,
.nav-primary .nav-pills .show > .nav-link {
  background-color: var(--c-primary);
  font-weight: var(--f-w-semibold);
}

.nav-primary .nav-pills .nav-link.active {
  color: var(--c-white);
  padding: 0.5rem 1.5rem;
}

.nav-primary .nav-pills .nav-link.active:focus,
.nav-primary .nav-pills .nav-link.active:hover,
.nav-primary .nav-pills .nav-link.active:active,
.nav-primary .nav-pills .nav-link.active:target {
  color: var(--c-white) !important;
}

.nav-secondary {
  padding: 0.25rem;
  width: fit-content;
  margin: 0 auto;
  background-color: #e5edf6;
  border-radius: var(--rd-xxl);
}

.nav-secondary .nav-pills {
  width: fit-content;
  display: flex;
  gap: 1rem;
  justify-content: start;
  flex-wrap: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0.5rem;
  border-radius: var(--rd-xxl);
  background-color: #e5edf6;
}

.nav-secondary .nav-pills:active {
  cursor: grabbing;
}

.nav-secondary .nav-pills::-webkit-scrollbar {
  display: none;
}

.nav-secondary li.nav-item {
  background-color: #e5edf6;
  border-radius: var(--rd-xxl);
}

.nav-secondary li.nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--c-menu);
  border: 1px solid var(--c-transparent);
  border-radius: var(--rd-xl);
  padding: 0.75rem 1rem;
  font-weight: var(--f-w-semibold);
  box-shadow: 0 0 0 rgba(22, 65, 148, 0);
  transition: all 0.3s;
}

.nav-secondary li.nav-item,
.nav-secondary .nav-pills .nav-link {
  flex-shrink: 0;
}

.nav-secondary li.nav-item .nav-link .nav-item--icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: all 0.3s;
}

.nav-secondary .nav-pills .nav-link.active,
.nav-secondary .nav-pills .show > .nav-link {
  background-color: var(--c-white);
  font-weight: var(--f-w-semibold);
}

.nav-secondary .nav-pills .nav-link.active {
  color: var(--c-primary);
  transform: scale(1.025);
  box-shadow:
    0 1px 16px rgba(22, 65, 148, 0.1),
    0 1px 32px rgba(22, 65, 148, 0.01);
}

.nav-secondary .nav-pills .nav-link.active .nav-item--icon {
  transform: scale(1.1);
}

.nav-secondary .nav-pills .nav-link.active:focus,
.nav-secondary .nav-pills .nav-link.active:hover,
.nav-secondary .nav-pills .nav-link.active:active,
.nav-secondary .nav-pills .nav-link.active:target {
  color: var(--c-primary) !important;
}

.menu-container-mobile .header-nav-tabs {
  border: none;
  background: #f5f5f5;
  padding: 0.25rem;
  margin: 0 2rem;
  border-radius: 8px;
}

.menu-container-mobile .header-nav-tabs .nav-item {
  padding: 0;
}

.menu-container-mobile .header-nav-tabs .nav-link {
  background: transparent;
  color: var(--c-black);
  font-weight: 700;
  font-size: 14px;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-container-mobile .header-nav-tabs .nav-link:hover {
  color: var(--c-primary);
}

.menu-container-mobile .header-nav-tabs .nav-link.active {
  background: var(--c-primary);
  color: var(--c-white);
}

.empty-page--asset {
  max-width: 240px;
}

/*====================================== SECTION HOME PAGE ======================================*/

.section-hero-all {
  padding: 0;
}

.section-hero-all .hero-container {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 5rem 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-hero-all .hero-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
}

.section-hero-all .hero-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #ffffff);
}

.ppl-card-swiper--pagination-wrapper {
  position: absolute;
  bottom: 1.25rem;
  left: 60%;
  transform: translateX(-50%);
  z-index: 10;
  background-color: var(--c-white);
  border-radius: 2rem;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
}

.ppl-card-swiper--pagination {
  position: static;
  display: flex;
  gap: 0.25rem;
}

.section-faq-cta {
  margin-top: -1px;
}

.stat-home--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.stat-home--item {
  flex: 1;
  padding: 1rem 0.5rem 0rem 1rem;
  border-left: 4px solid var(--c-primary);
}

.section-benefit-join {
  position: relative;
  overflow: hidden;
  background: var(--c-white);
}

.section-benefit-join::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url(/images/ornament-org-l.jpg) top left / 15% auto no-repeat,
    url(/images/ornament-org-r.jpg) top right / 15% auto no-repeat;
  z-index: 2;
  pointer-events: none;
}

.benefit-join--globe-bg {
  position: absolute;
  bottom: -80px;
  width: 100%;
  height: 620px;
  pointer-events: none;
  z-index: 0;
}

.benefit-join--globe-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-join--globe-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--c-white) 15%, transparent 60%);
}

.section-benefit-join .benefit-join-body {
  padding-bottom: 12rem;
}

.benefit-join-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.benefit-join-card--center {
  grid-column: 2;
  grid-row: 1;
}

.benefit-join-card--left {
  grid-column: 1;
  grid-row: 2;
}

.benefit-join-card--right {
  grid-column: 3;
  grid-row: 2;
}

.benefit-why-card {
  background-image: url("/images/bg-tile.png");
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--rd-md);
  padding: 2rem;
  box-shadow: 0px 8px 32px rgba(45, 51, 147, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  text-align: center;
  height: 100%;
}

.benefit-join-cards-grid > div:nth-child(1) .benefit-why-card {
  text-align: center;
}

.benefit-join-cards-grid > div:nth-child(2) .benefit-why-card {
  text-align: right;
}

.benefit-join-cards-grid > div:nth-child(3) .benefit-why-card {
  text-align: left;
}

.article-home-swiper--prev,
.article-home-swiper--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.article-home-swiper--prev {
  left: -20px;
}

.article-home-swiper--next {
  right: -20px;
}

.section-join-member-home {
  padding: 4rem 0 0 0;
}

.join-member-home--card {
  min-height: 340px;
  display: flex;
  padding: 2rem;
  background-color: var(--c-primary);
  border-radius: var(--rd-md);
  overflow: visible;
}

.join-member-home--left {
  flex: 1;
  background-color: var(--c-primary);
  position: relative;
  overflow: hidden;
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--rd-md);
}

.join-member-home--left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(45, 51, 147, 0.4);
  background-image: url("/images/bg-tile.png");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

.join-member-home--left-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join-member-home--right {
  position: relative;
  width: 40%;
  border-radius: var(--rd-md);
  background-image: url("/images/home-member-cta-bg.png");
  background-size: cover;
  background-position: center;
  overflow: visible;
}

.join-member-home--right figure {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: -80px;
  margin: 0;
  z-index: 1;
}

.join-member-home--right figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.section-home-contact-card {
  position: relative;
  margin-top: -4rem;
  padding: 0rem;
}

.home-contact-card {
  display: flex;
  height: 480px;
}

.home-contact-card--left {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.home-contact-card--left figure {
  width: 100%;
  height: 100%;
  margin: 0;
}

.home-contact-card--left figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-contact-card--left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(27, 31, 90, 0.72);
  z-index: 1;
}

.home-contact-card--right {
  flex: 1;
  background-color: #f3f4fb;
  display: flex;
  align-items: center;
  padding: 5rem 2rem 2rem 2rem;
}

.home-contact-card--right-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
}

/*====================================== SECTION ABOUT PAGE OVERVIEW ======================================*/

.section-profile-overview .hero-container {
  padding: 10rem 0 4rem 0;
}

.section-profile-overview .ppl-card {
  min-height: 30rem;
}

.section-profile-overview .ppl-card.skeleton-card {
  width: 100%;
  height: 100%;
}

.section-profile-overview .ppl-card.skeleton-card .skeleton-picture {
  width: 100%;
  height: 30rem;
}

.section-profile-overview .ppl-card .ppl-card--right {
  width: 40%;
  flex: none;
}

.about-background-card-wrapper .code-ethics--card .code-ethics--card-wrapper {
  height: 100%;
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.section-about-history {
  padding: 4rem 0rem;
  position: relative;
  background-color: #eaebf4;
  background-image: url("/images/bg-tile.png");
  background-repeat: repeat;
  background-size: 100%;
}

.section-overview-tabs {
  padding: 4rem 0;
  background-color: #f8f9fc;
}

.overview-tabs--nav-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.overview-tabs--nav-wrapper::-webkit-scrollbar {
  display: none;
}

.overview-tabs--nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--c-grey);
  width: max-content;
  margin: 0 auto;
}

.overview-tabs--nav .nav-item .nav-link {
  padding: 0.625rem 1.25rem;
  color: var(--c-black);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: all 0.3s;
  border: 2px solid var(--c-transparent);
  background: transparent;
}

.overview-tabs--nav .nav-item .nav-link.active,
.overview-tabs--nav .nav-item .nav-link.active:hover {
  border-bottom: 2px solid var(--c-primary);
  color: var(--c-primary);
}

.overview-tabs--nav .nav-item .nav-link:hover {
  border-bottom: 2px solid rgba(45, 51, 147, 0.25);
}

.overview-tab--content-card {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2.5rem;
  background-color: var(--c-white);
  border-radius: var(--rd-md) !important;
  position: relative;
  isolation: isolate;
}

.overview-tab--content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/bg-tile.png");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

.overview-tab--content-image {
  position: sticky;
  top: 2rem;
  flex-shrink: 0;
  height: 30rem;
  width: 100%;
  max-width: 50%;
  border-radius: var(--rd-md);
  overflow: hidden;
}

.overview-tab--content-desc {
  padding: 2rem 2rem 2rem 0rem;
}

.overview-tab--list {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.overview-tab--plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.overview-tab--plain-list-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.overview-tab--plain-list-item::before {
  content: "•";
  color: var(--c-primary);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.section-overview-org {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background:
    url("/images/ornament-org-l.jpg") top left / 15% auto no-repeat,
    url("/images/ornament-org-r.jpg") top right / 15% auto no-repeat,
    var(--c-white);
}

.section-overview-contact .overview-contact-wrapper {
  position: relative;
  margin-top: -2rem;
}

.section-overview-contact .contact-overview--address {
  padding-top: 4rem;
}

.contact-overview--map {
  min-height: 420px;
  height: 100%;
  width: 100%;
  border-radius: var(--rd-md);
  overflow: hidden;
  border: none;
}

.contact-overview--info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-overview--info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-overview--info-item a {
  text-decoration: none;
  position: relative;
}

.contact-overview--info-item a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-overview--info-item a:hover::after {
  transform: scaleX(1);
}

/*====================================== SECTION ABOUT PAGE CODE ETHICS ======================================*/
.code-ethics--row {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.code-ethics--card {
  position: relative;
  height: 100%;
  border-radius: var(--rd-md);
  padding: 2rem;
  background-color: var(--c-tertiary);
  background-size: cover;
  background-position: right center;
  overflow: hidden;
}

.code-ethics--card::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(27, 31, 90, 1) 45%,
    rgba(27, 31, 90, 0.65)
  );
  z-index: 1;
}

.code-ethics--card-wrapper {
  position: relative;
  max-width: 620px;
  z-index: 2;
}

.code-ethics--card-accent {
  width: 60px;
  height: 6px;
  background-color: var(--c-secondary);
  margin: 0.75rem 0 1rem;
}

.code-ethics--card-list,
.ppl-card--list {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/*====================================== SECTION ABOUT PAGE BEHAVIORAL STANDARDS ======================================*/
.lang-switcher-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: rgba(45, 51, 147, 0.1);
  border-radius: 50px;
}

.lang-switcher--pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--c-primary);
  border-radius: 50px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.lang-switcher--btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 50px;
  border: none;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-black);
  cursor: pointer;
  transition: color 0.3s ease;
}

.lang-switcher--btn.active {
  background-color: var(--c-primary);
  color: var(--c-white);
}

.lang-switcher-wrapper.has-pill .lang-switcher--btn.active {
  background-color: transparent;
}

.lang-switcher--btn img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.behavioral-standards--wrapper {
  max-width: 720px;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.behavioral-standards--wrapper.is-fading {
  opacity: 0;
}

.behavioral-standards--accordion .accordion-item {
  border: 1px solid var(--c-br);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background-color: var(--c-white);
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.behavioral-standards--accordion .accordion-button {
  background-color: var(--c-white);
  border-radius: 12px !important;
  padding: 1rem 2.5rem 1rem 1rem;
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary);
  box-shadow: none;
}

.behavioral-standards--accordion .accordion-button:not(.collapsed) {
  color: var(--c-primary);
  background-color: var(--c-white);
  box-shadow: none;
}

.behavioral-standards--accordion .accordion-button::before {
  content: "";
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-color: rgba(45, 51, 147, 0.1);
  border-radius: var(--rd-md);
  z-index: 0;
}

.behavioral-standards--accordion .accordion-button::after {
  background-image: url("../images/general/chevron-down-b.svg");
  background-position: center;
  filter: none;
  position: relative;
  z-index: 1;
  left: 1.5rem;
}

.behavioral-standards--accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/general/chevron-down-b.svg");
  filter: none;
}

.behavioral-standards--accordion .accordion-collapse {
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.behavioral-standards--accordion .accordion-item:has(.accordion-collapse.show) {
  box-shadow: 0 12px 24px -6px rgba(45, 51, 147, 0.15);
}

.behavioral-standards--accordion .accordion-body {
  padding: 0 1rem 1rem;
}

/*====================================== SECTION MAIN MEMBER PAGE ======================================*/
.section-overlay-top {
  position: relative;
  margin-top: -4rem;
  z-index: 9;
}

.member-list--search {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.member-list--search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-label);
  pointer-events: none;
  font-size: 0.875rem;
}

.member-list--search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--c-br);
  border-radius: var(--rd-md);
  font-size: 0.875rem;
  color: var(--c-black);
  background-color: var(--c-white);
  outline: none;
  transition: border-color 0.2s;
}

.member-list--search-input::placeholder {
  color: var(--c-label);
}

.member-list--search-input:focus {
  border-color: var(--c-primary);
}

.main-member--card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--rd-md);
  z-index: 9;
}

.main-member--card-body {
  background-color: rgba(45, 51, 147, 0.1);
  border-radius: var(--rd-md);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
}

.main-member--card-body::before {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  border-radius: var(--rd-md);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 25%,
    rgba(20, 30, 90, 1) 75%,
    rgba(20, 30, 90, 1) 100%
  );
}

.main-member--card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.main-member--card-image.is-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-member--card-image.is-logo img {
  width: 50%;
  height: auto;
}

.main-member--divider {
  width: 100%;
  height: 1px;
  background-color: var(--c-grey);
  opacity: 0.2;
  flex-shrink: 0;
}

.main-member--row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.main-member--row p:last-child {
  max-width: 60%;
}

/*====================================== SECTION REGULAR MEMBER PAGE ======================================*/
.regular-member-list--card,
.representative-member-list--card,
.pps-schedule--card {
  background: var(--c-white);
  border: 1px solid var(--c-br);
  border-radius: var(--rd-md);
  padding: 1rem;
  height: 100%;
}

.regular-member-list--card-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.regular-member-list--card-name p {
  min-height: 38px;
}

.regular-member-list--card-divider,
.representative-member-list--card-divider {
  border: none;
  border-top: 1px solid var(--c-br);
}

.regular-member-list--card-body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.regular-member-list--card-row,
.pps-schedule--card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.regular-member-list--card-value.regular-member-list--card-value--empty p {
  font-weight: 400;
}

/*====================================== SECTION INFO PWMII - BERITA & PENGUMUMAN ======================================*/
.news-card--link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.news-card--media {
  position: relative;
  overflow: hidden;
  border-radius: var(--rd-md);
  aspect-ratio: 5 / 3;
}

.news-card--image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--rd-md);
  margin: 0;
}

.news-card--image img {
  transition: transform 1s ease;
}

.news-card:hover .news-card--image img {
  transform: scale(1.1);
}

.news-card--badge {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  background-color: var(--c-primary);
  border-top-right-radius: var(--rd-md);
  padding: 0.5rem 1rem;
  z-index: 2;
}

.news-card--title {
  min-height: 40px;
}

/*====================================== SECTION INFO PWMII - Artikel Kami ======================================*/

.article-recommend--card {
  position: relative;
  height: 100%;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--rd-md);
  overflow: hidden;
  background-size: 100%;
  background-position: center;
  transition: all 1s ease;
}

.article-recommend--card:hover {
  background-size: 110%;
}

.article-recommend--card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(27, 31, 90, 1) 45%,
    rgba(27, 31, 90, 0.65)
  );
  z-index: 1;
  transition: all 1s ease;
}

.article-recommend--card:hover::before {
  transform: scale(1.1);
  opacity: 0.8;
  transition: all 3s ease;
}

.article-recommend--card-wrapper {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

/*====================================== SECTION INFO PWMII - Artikel Detail ======================================*/
.article-detail--actions .icon-d-base {
  padding: 1.5rem;
  background-color: var(--c-primary);
  color: var(--c-white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.article-detail--actions .icon-d-base:hover {
  transform: scale(1.02);
}

.article-detail--cover-figure {
  width: 100%;
  height: 480px;
  margin: 0;
  border-radius: var(--rd-md);
  overflow: hidden;
}

/*====================================== SECTION INFO PWMII - Career ======================================*/

.careers-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.careers-filter--count {
  flex-shrink: 0;
}

.careers-filter--controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.careers-filter--select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--c-br);
  border-radius: 2rem;
  background-color: var(--c-white);
  cursor: pointer;
  white-space: nowrap;
}

.careers-filter--select select {
  border: none;
  outline: none;
  background-color: transparent;
  font-size: var(--fs-sm);
  color: var(--c-black);
  cursor: pointer;
  padding: 0;
}

.careers-filter--select i {
  font-size: 0.75rem;
  color: var(--c-info);
}

.job-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-br);
  border-radius: var(--rd-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.job-card-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 240px;
  flex-shrink: 0;
}

.job-card--badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: var(--rd-md);
  font-size: 0.75rem;
  font-weight: 500;
  width: fit-content;
}

.job-card--badge.kontrak {
  background: #fae6e6;
  color: #5a606b;
}

.job-card--badge.part-time {
  background: #fae7f9;
  color: #5a606b;
}

.job-card--badge.tetap {
  background: #e7e8fa;
  color: #5a606b;
}

.job-card--meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.job-card--meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex-shrink: 0;
  width: 160px;
}

.job-card--meta-item:first-child {
  width: 180px;
}

.job-card--meta-value {
  overflow-wrap: break-word;
  word-break: break-word;
}

.job-card--cta {
  width: 260px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.job-modal--info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.job-modal--info p:not(:last-child)::after {
  content: "•";
  margin-left: 0.5rem;
  color: var(--c-info);
}

.job-modal--cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.job-modal--divider {
  border: none;
  border-top: 1px solid var(--c-br);
  margin: 0;
}

.job-modal--section-title {
  margin-bottom: 0.75rem;
}

.job-modal--list {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0;
}

.job-modal--list li {
  font-size: var(--fs-sm, 0.875rem);
  color: var(--c-black);
  line-height: 1.6;
}

/*====================================== SECTION LAYANAN - Pendidikan Profesi Lanjutan (PPL) ======================================*/
.ppl-card {
  border-radius: var(--rd-md);
  overflow: hidden;
  display: flex;
}

.ppl-card--left {
  position: relative;
  overflow: hidden;
  background-color: var(--c-tertiary);
  background-image: url("/images/bg-tile.png");
  background-size: cover;
  background-position: center;
  padding: 0;
  flex: 1;
}

.ppl-card--left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(45, 51, 147, 0.4);
  z-index: 1;
}

.ppl-card--wrapper {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.ppl-card--group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ppl-card--right {
  background-size: cover;
  background-position: center;
  flex: 1;
  min-height: 400px;
}

/*====================================== SECTION Prosedur ======================================*/

.terms-list {
  list-style: decimal;
  padding-left: 1.25rem;
  margin-bottom: 0;
  color: var(--c-white);
}

.terms-list li {
  margin-bottom: 0.5rem;
}

.terms-list li:last-child {
  margin-bottom: 0;
}

.terms-list-ordered {
  list-style: lower-alpha;
  padding-left: 1.25rem;
  color: var(--c-white);
}

.terms-list-ordered li {
  margin-bottom: 0.25rem;
}

.terms-list-inner {
  list-style: lower-roman;
  padding-left: 1.25rem;
  color: var(--c-white);
}

.terms-list-inner li {
  margin-bottom: 0.25rem;
}

/*====================================== SECTION REGISTER PAGE ======================================*/
/* .section-register .ruta-back {
  position: sticky;
  z-index: 9;
} */
.register-wrapper {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.register--left {
  display: block;
  position: relative;
  width: 45%;
  flex-shrink: 0;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.register--left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    var(--c-primary) 15%,
    rgba(27, 31, 90, 0.9) 45%,
    rgba(27, 31, 90, 0.6) 85%,
    rgba(27, 31, 90, 0.15) 100%
  );
  z-index: 1;
}

.register--left::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/grid-asset.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  opacity: 0.12;
  pointer-events: none;
  z-index: 2;
}

.register--right {
  flex: 1;
  gap: 2rem;
  position: relative;
  background-color: var(--c-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1rem 2rem 1rem;
}

.register--right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/grid-asset.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.register--body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 44rem;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register--form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.register--form-row {
  display: flex;
  gap: 1rem;
}

.register--form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.register--body .form-control:disabled {
  border: 0 !important;
  background-color: var(--c-disabled) !important;
  cursor: not-allowed;
  pointer-events: none;
}

.register--wizard-steps {
  display: flex;
  align-items: flex-start;
}

.register--wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.register--step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--c-label);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-label);
  background-color: transparent;
  transition: all 0.3s;
}

.register--wizard-step.active .register--step-number {
  border-color: var(--c-secondary);
  background-color: var(--c-secondary);
  color: var(--c-white);
}

.register--wizard-step.completed .register--step-number {
  font-weight: var(--f-w-bold);
  border-color: var(--c-secondary);
  color: var(--c-secondary);
}

.register--step-label {
  font-size: var(--fs-xs);
  font-weight: var(--f-w-bold);
  color: var(--c-label);
  white-space: nowrap;
}

.register--wizard-step.active .register--step-label,
.register--wizard-step.completed .register--step-label {
  color: var(--c-white);
}

.register--wizard-connector {
  flex: 1;
  height: 2px;
  background-color: var(--c-label);
  margin: 1.05rem 0.5rem 0;
  border-radius: 1px;
  transition: background 0.3s;
}

.register--wizard-connector.completed {
  background-color: var(--c-secondary);
}

.register--wizard-panel {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.register--wizard-panel.info-form {
  gap: 2rem;
}

.register--wizard-panel.active {
  display: flex;
}

.register--wizard-nav {
  display: flex;
  gap: 0.75rem;
}

.register--wizard-nav .cta {
  flex: 1;
}

.register--form select {
  background-position: 95% 50%;
}

.register--section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.register--section-label::before,
.register--section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--c-label);
}

.register--body .select2-container {
  width: 100% !important;
}

.register--body .select2-container--default .select2-selection--multiple {
  padding: 0.5rem;
  border-radius: var(--rd-md);
}

.register--body
  .select2-container--default
  .select2-search--inline
  .select2-search__field {
  height: 24px;
}

.register--body
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__clear {
  margin-top: 0;
}

.register--body .select2-container ul {
  margin: 0;
  padding: 0;
}

.register--body
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  margin-top: 0;
}

.register--body .select2-container {
  width: 100% !important;
}

.register--body .select2-container--default .select2-selection--multiple {
  padding: 0.5rem;
}

.register--body
  .select2-container--default
  .select2-search--inline
  .select2-search__field {
  height: 24px;
}

.register--body
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__clear {
  margin-top: 0;
}

.register--body .select2-container ul {
  margin: 0;
  padding: 0;
}

.register--body
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  margin-top: 0;
}

.register--body .select2-container--default .select2-selection--single {
  height: auto !important;
  padding: 0.5rem;
  border-radius: var(--rd-md) !important;
}

.register--body
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding: 0;
  line-height: 24px;
}

.register--body
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  height: auto;
}

.register--body
  .select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  height: 35px;
}

.register--accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.7rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rd-md);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-align: left;
}

.register--accordion-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.register--accordion-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.register--accordion-toggle:not(.collapsed) .register--accordion-icon {
  transform: rotate(180deg);
}

.register--form .experience-card {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.register--form .experience-card .form-group {
  margin-bottom: 0.5rem;
}

.register--btn-remove {
  display: inline-block;
  color: var(--c-red);
  font-weight: var(--f-w-bold);
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.register--foto-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.register--foto-preview {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.register--foto-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.register--foto-preview.has-photo {
  border-color: var(--c-secondary);
}

.register--body .member-card--upload .member-card-header--file {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.register--body .member-card--upload .member-card-header--file:hover,
.register--body .member-card--upload .member-card-header--file.dragover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.register--body .member-card--upload .file-name {
  color: var(--c-white);
}

.register--body .member-card--upload p {
  color: var(--c-info);
}

.register--sk-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.register--login-link a {
  color: var(--c-white);
  text-decoration: underline;
  font-weight: 700;
}

.register--login-link a:hover {
  color: var(--c-secondary);
}

.register--page-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
}

/*====================================== SECTION LOGIN PAGE ======================================*/
.section-login .ruta-back {
  z-index: 9;
}

.input-password-toggle:focus {
  outline: none;
}

.section-login {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--c-primary);
  overflow: hidden;
}

.section-login::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/grid-asset.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.login-wrapper .login-assets {
  position: absolute;
  bottom: 0;
  left: 0;
}

.login-wrapper .login-assets .image {
  max-width: 720px;
}

.login-wrapper .login-box-wrapper {
  width: 100%;
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* background-color: var(--c-white); */
  /* padding: 2rem 0 0 0; */
  border-radius: 8px 0 0 8px;
  z-index: 2;
}

input.form-control.input-br-g {
  border-left: 6px solid #20aca5;
}

input.form-control.input-br-b,
select.form-control.input-br-b {
  border-left: 6px solid #d3dae4;
}

.input-password-wrapper {
  position: relative;
}

.input-password-wrapper .form-control {
  padding-right: 2.75rem;
}

.input-password-toggle {
  position: absolute;
  top: 0;
  right: 0.75rem;
  height: calc(3rem + 2px);
  /* padding(0.75×2) + line-height(1.5rem) + border(2px) — matches input height */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--c-info);
  line-height: 1;
  display: flex;
  align-items: center;
}

.login-box-wrapper .form-control {
  background-color: var(--c-white);
  transition: all 0.3s;
}

.login-box-wrapper .form-control:hover {
  border-left: 0px solid transparent;
}

.login-box-wrapper .form-control:hover {
  border-left: 1px solid var(--c-grey) !important;
}

/*====================================== SECTION DASHBOARD USER  ======================================*/
.icon-d-base {
  width: 24px;
  height: 24px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(45, 51, 147, 0.1);
  border-radius: 50%;
}

.clipboard-btn {
  color: var(--c-primary);
  transition: var(--ts-slow);
}

.clipboard-btn:hover {
  background-color: var(--c-primary);
  color: var(--c-white);
}

.dashboard-screen {
  margin-top: 0 !important;
  margin-bottom: 15vh;
}

.dashboard-headline {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: var(--c-white);
  padding: 1rem 1rem 0.5rem 1rem;
  border-radius: var(--rd-md);
}

.card-d-icon {
  margin-left: -16px;
  max-width: 204px;
  width: 100%;
  height: 100%;
  background-color: var(--c-white);
}

.card-d-bg {
  max-width: 260px;
  z-index: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.d-headline--list {
  position: relative;
}

.d-headline--list li {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.dashboard-headline .d-headline--cta a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  background-color: var(--c-primary);
  color: var(--c-white);
  padding: 0.625rem 1rem;
  border-radius: var(--rd-md);
}

/*====================================== SECTION DASHBOARD USER - NAVBAR  ======================================*/
.nav-dashboard-user {
  position: relative !important;
  box-shadow: none;
}

.nav-dashboard-user .container-nav .nav-logo {
  max-width: 80px;
}

.menu-bottombar-m--nav-wrapper {
  display: none;
}

.menu-bottombar-mobile {
  display: none;
}

/*====================================== SECTION DASHBOARD USER - MENU  ======================================*/
.dashboard-screen {
  margin-top: 2rem;
}

/*====================================== SECTION DASHBOARD USER - SIDEBAR  ======================================*/
.sidebar-screen {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  will-change: transform;
  transition:
    background-color 0.3s,
    -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition:
    transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
    background-color 0.3s;
  transition:
    transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
    background-color 0.3s,
    -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.menu-sidebar {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--c-primary);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
  backdrop-filter: blur(4px);
  max-width: fit-content;
  width: auto;
  margin: 0 auto;
  padding: 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-br);
  border-radius: var(--rd-lg);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  /* transform: scale(1); */
  transform: translateY(0) scale(0.75);
  transform-origin: center bottom;
}

.sidebar-dashboard--top:hover a {
  background-color: rgba(45, 52, 147, 0.133);
}

.sidebar-upcoming {
  position: absolute;
  top: -8px;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-upcoming span {
  background-color: var(--c-primary);
  border-radius: 0.5rem;
  padding: 2px 6px;
  width: auto;
}

.notif-indicator--o {
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: var(--c-red);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.sidebar-dashboard--body .sidebar-dashboard--pp {
  width: 40px;
  height: 40px;
}

.sidebar-dashboard--body ul li {
  position: relative;
}

.sidebar-dashboard--body ul li a {
  display: flex;
  gap: 4px;
  padding: 0.5rem 0.5rem;
  border-radius: 0.5rem;
}

.sidebar-dashboard--body ul li:hover a,
.menu-bottombar-m--ul .accordion-button:not(.collapsed),
.accordion-menu-bottombar .accordion-item.active .accordion-button {
  background-color: rgba(45, 51, 147, 0.075);
}

.sidebar-dashboard--body ul li a.active,
.sidebar-dashboard--body ul li .dashboard-submenu-link a.active {
  background-color: rgba(45, 51, 147, 0.25);
}

.sidebar-dashboard--body ul li.dashboard-menu-list a.active {
  position: relative;
}

.sidebar-dashboard--body ul li.li-disabled a,
.sidebar-dashboard--body ul li.li-disabled:hover a {
  color: var(--c-disabled);
}

.sidebar-dashboard--body ul li.li-disabled a {
  background-color: inherit;
}

.sidebar-screen:has(#contenMenuSidebarAll li.show-submenu) .menu-sidebar,
.menu-sidebar:hover,
.sidebar-screen.expanded .menu-sidebar {
  transform: translateY(0px) scale(1.05);
}

.dashboard-submenu-wrapper {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
  bottom: 110%;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.sidebar-dashboard--body .show-submenu .dashboard-submenu-wrapper {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

.sidebar-dashboard--body ul li:last-child .dashboard-submenu-wrapper {
  right: 0;
}

.sidebar-dashboard--body ul li:nth-last-child(2) .dashboard-submenu-wrapper {
  right: 10%;
}

.dashboard-submenu-content {
  opacity: 0;
  padding: 1rem;
  transform: translateY(20px);
  text-align: left;
  background-color: var(--c-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.sidebar-dashboard--body .show-submenu .d-list-icon {
  transform: rotate(180deg);
}

.sidebar-dashboard--body .show-submenu .dashboard-submenu-content {
  opacity: 1;
  transform: translateY(0);
}

.sidebar-dashboard--body ul li:hover .dashboard-submenu-content a {
  background-color: transparent;
}

.sidebar-dashboard--body ul li:hover .dashboard-submenu-content a.active {
  background-color: rgba(45, 51, 147, 0.25);
}

.sidebar-dashboard--body
  .dashboard-submenu-content
  .dashboard-submenu-link:hover
  a {
  background-color: rgba(45, 51, 147, 0.075);
}

.dashboard-submenu-content .dashboard-submenu-link {
  position: relative;
}

.dashboard-submenu-content .dashboard-submenu-link .notif-indicator--o {
  left: auto;
  right: 2px;
}

/*====================================== SECTION DASHBOARD USER - DASHBOARD  ======================================*/
.card-d-notif a {
  background-color: var(--c-white);
  overflow: hidden;
  padding: 8px 16px;
  border: 1px solid var(--c-transparent);
}

.card-d-notif.d-notif-info a {
  background-color: rgba(13, 202, 240, 0.25);
}

.card-d-notif.d-notif-danger a {
  background-color: rgba(220, 38, 38, 0.25);
}

.card-d-notif.d-notif-warning a {
  background-color: rgba(255, 204, 0, 0.25);
}

.d-notif--icon {
  width: 24px;
  height: 24px;
  background-color: var(--c-primary);
  border-radius: var(--rd-50);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-d-notif.d-notif-info .d-notif--icon {
  background-color: rgba(13, 202, 240, 1);
}

.card-d-notif.d-notif-danger .d-notif--icon {
  background-color: rgba(220, 38, 38, 1);
}

.card-d-notif.d-notif-warning .d-notif--icon {
  background-color: rgba(255, 204, 0, 1);
}

.card-d-notif:hover a {
  border-color: var(--c-primary);
}

.card-d-notif .cta {
  transform: translateX(32px);
}

.card-d-notif:hover .cta {
  transform: translateX(0);
}

.card-d-schedule a {
  width: 100%;
  height: 100%;
  background-color: var(--c-white);
  border: 1px solid var(--c-transparent);
  padding: 16px;
}

.card-d-schedule .d-schedule--icon {
  background-color: rgba(243, 157, 18, 0.2);
  max-width: 80px;
  padding: 12px;
  transition: all 0.3s;
}

.card-d-schedule:hover a {
  border-color: var(--c-primary);
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.08);
}

.card-d-schedule:hover .d-schedule--icon {
  padding: 12px;
}

.dashboard-swiper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: var(--rd-md);
}

.dashboard-event-banner {
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: var(--rd-md);
}

.dashboard-event-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(
    to right,
    rgba(45, 51, 147, 0.9) 0%,
    rgba(45, 51, 147, 0.8) 10%,
    rgba(45, 51, 147, 0.5) 45%,
    rgba(45, 51, 147, 0.2) 70%,
    rgba(45, 51, 147, 0) 100%
  );
  z-index: 2;
}

.dashboard-event-banner--image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}

.dashboard-event-banner--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-event-banner--content {
  width: 100%;
  /* height: 100%; */
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.dashboard-event-banner--desc {
  max-width: 640px;
}

.dashboard-swiper-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dashboard-swiper--pagination {
  position: relative;
  top: 0px !important;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--c-primary);
}

/*====================================== SECTION DASHBOARD USER - BIODATA DIRI  ======================================*/
.bio-card {
  position: relative;
  border: 1px solid var(--c-br);
  border-radius: var(--rd-md);
  padding: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bio-card .bio-card--photo {
  max-width: 9rem;
  width: 100%;
  border-radius: var(--rd-md);
}

.bio-card .bio-card--photo img {
  border-radius: var(--rd-md);
}

.bio-card--qr .card-qr--image {
  max-width: 6.5rem;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--c-primary);
  border-radius: var(--rd-md);
  text-align: center;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.08);
}

.bio-card--qr .card-qr--image:hover {
  cursor: zoom-in !important;
}

.bio-card--point {
  width: 104px;
  height: 104px;
  background-color: var(--c-primary);
  border: 1px solid var(--c-primary);
  border-radius: var(--rd-50);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.card-qr--dl .btn-primary {
  padding: 0.5rem 1rem;
  background-color: var(--c-transparent);
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}

.bio-email {
  overflow-wrap: break-word;
  word-break: break-word;
}

.bio-form {
  background-color: var(--c-white);
  border-radius: var(--rd-md);
  padding: 16px;
}

.bio-form--list {
  display: grid;
  gap: 0px;
}

.bio-form--row {
  display: grid;
  grid-template-columns: 200px auto 1fr;
  align-items: start;
  gap: 4px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bio-form--row:first-child {
  padding-top: 0;
}

.bio-form--row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.bio-form--row .bio-form__label {
  position: relative;
}

.bio-form--row .bio-form__label::after {
  content: ":";
  position: absolute;
  top: -1px;
  right: 0px;
}

.timeline-level {
  max-height: 399px;
  overflow: auto;
}

.timeline-level .timeline {
  line-height: 1.4em;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.timeline-level .timeline .timeline-item {
  padding-left: 2rem;
  position: relative;
}

.timeline-level .timeline:last-child {
  padding-bottom: 0;
}

.count-date-exp {
  margin-top: -8px;
}

.timeline-level .timeline .timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
}

.timeline-level .timeline .timeline-marker:before {
  background-color: var(--c-primary);
  border: 3px solid transparent;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  transition:
    background-color 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

.timeline-level .timeline .timeline-marker:after {
  content: "";
  width: 3px;
  background-color: #ccd5db;
  display: block;
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 6px;
}

.timeline-level .timeline .timeline-item:last-child .timeline-marker:after {
  content: none;
}

.timeline-level .timeline .timeline-content {
  padding-bottom: 1.5rem;
}

.timeline-level .timeline .timeline-content:last-child {
  padding-bottom: 1rem;
}

.timeline-level .timeline .timeline-content p:last-child {
  margin-bottom: 0;
}

.dashboard-doc-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(198, 40, 40, 0.05);
  border: 1px solid var(--c-red);
  border-radius: var(--rd-md);
  transition: var(--ts-fast);
}

.dashboard-doc-list:hover {
  border-color: var(--c-primary);
}

.dashboard-doc-list .doc-list--icon {
  width: 24px;
  height: 24px;
  background-color: var(--c-red) !important;
  border-radius: var(--rd-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.dashboard-doc-list.is-done .doc-list--icon {
  background-color: rgba(45, 147, 118, 1) !important;
}

.dashboard-doc-list.is-done {
  background-color: var(--c-white);
  border-color: rgba(45, 147, 118, 0.1);
}

.dashboard-doc-list.is-done:hover {
  border-color: var(--c-primary);
}

.dashboard-doc-list.is-done .doc-list--icon {
  background-color: rgba(45, 147, 118, 1);
}

.document-modal-content .document-modal--photo {
  width: 100%;
  height: 100%;
  background-color: rgba(45, 52, 147, 0.1);
}

.document-modal-wrapper .upload-box {
  height: 400px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  padding: 0.5rem;
  position: relative;
  background-color: #fafafa;
  border: 2px dashed var(--c-grey);
  border-radius: var(--rd-md);
  cursor: pointer;
  transition: 0.3s;
}

.upload-box-preview {
  /* height: 100%; */
  width: 100%;
  overflow: hidden;
}

.document-modal-wrapper .upload-box img {
  height: 420px;
}

.document-modal-wrapper .upload-box.upload-box-landscape {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.document-modal-wrapper .document-modal--photo.upload-box-landscape img,
.document-modal-wrapper .upload-box.upload-box-landscape img {
  width: 100%;
  height: 200px;
}

.document-modal-wrapper .upload-box:hover {
  background-color: rgba(45, 52, 147, 0.1);
  border-color: var(--c-primary);
}

.document-modal-wrapper .upload-icon i {
  font-size: 48px;
  color: var(--c-primary);
}

/*====================================== SECTION DASHBOARD USER - BIODATA DIRI UPLOAD ======================================*/
.section-dashboard-user-edit .bio-form-left {
  position: sticky;
  top: 5rem;
}

.experience-card {
  border: 1px solid var(--c-grey);
  border-radius: var(--rd-md);
  padding: 1rem;
}

.bio-form .select2-container {
  width: 100% !important;
}

.bio-form .select2-container--default .select2-selection--single {
  height: auto !important;
  padding: 0.75rem !important;
  border: 1px solid var(--c-info) !important;
  border-radius: 8px !important;
  background-color: var(--c-white);
}

.bio-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding: 0 !important;
  line-height: 1.5 !important;
  color: #212529 !important;
  font-weight: normal !important;
  font-size: 1rem !important;
}

.bio-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: var(--c-info) !important;
}

.bio-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  height: auto;
}

.bio-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  line-height: 1.5;
}

.bio-form
  .select2-container--default.select2-container--focus
  .select2-selection--single,
.bio-form
  .select2-container--default.select2-container--open
  .select2-selection--single {
  border-color: var(--c-primary) !important;
  box-shadow: 0 0 0 0.15rem rgba(27, 31, 90, 0.15) !important;
}

/*====================================== SECTION DASHBOARD USER - RIWAYAT SERTIFIKASI  ======================================*/
.hc-type-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--rd-md);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.hc-type-badge.is-ppk {
  background: rgba(45, 147, 118, 0.05);
  color: var(--c-secondary);
}

.hc-type-badge.is-ppl {
  background: rgba(45, 52, 147, 0.05);
  color: var(--c-primary);
}

/*====================================== SECTION DASHBOARD USER - USERNAME & PASSWORD SETUP ======================================*/

.form-password-wrapper input {
  padding: 0.75rem 2.5rem 0.75rem 0.75rem;
}

.form-password-wrapper .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--c-grey);
}

/*====================================== SECTION DASHBOARD USER - KEANGGOTAAN  ======================================*/

.member-card a {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: var(--rd-md);
  background-color: var(--c-white);
  border: 1px solid var(--c-transparent);
  padding: 16px;
}

.member-card a:hover {
  border-color: var(--c-primary);
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.08);
}

.member-card a .d-schedule--icon {
  background-color: rgba(243, 157, 18, 0.2);
  max-width: 80px;
  padding: 12px;
  transition: all 0.3s;
}

.card-d-schedule:hover a {
  border-color: var(--c-primary);
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.08);
}

.recomm-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--c-br);
  border-radius: var(--rd-md);
  background-repeat: no-repeat;
  background-position: right -128px bottom;
  background-size: contain;
}

.recomm-card .recomm-card--pp,
.recomm-card .recomm-card--pp img {
  width: 120px;
  height: 148px;
  aspect-ratio: 9 / 16;
  border-radius: var(--rd-md);
}

.recomm-card--profile {
  width: 100%;
}

.copy-tooltip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--c-black);
  color: var(--c-white);
  padding: 4px 8px;
  border-radius: var(--rd-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.copy-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/*====================================== SECTION DASHBOARD USER - RIWAYAT SERTIFIKASI ======================================*/

.dashboard-filter-wrapper {
  background-color: rgb(45 51 147 / 5%);
  padding: 1rem;
  border-radius: var(--rd-md);
}

.dashboard-filter-wrapper select.form-control {
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  border-radius: var(--rd-md);
}

.dashboad-table {
  background-color: var(--c-white);
  padding: 1rem;
  width: 100%;
  overflow-x: auto;
}

table.dataTable {
  width: 100% !important;
}

.dashboad-table .dataTables_wrapper .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dashboad-table .dataTables_length label,
.dashboad-table .dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.dashboad-table #datatable thead {
  background-color: rgba(45, 51, 147, 0.1);
}

.dashboad-table #datatable td,
.dashboad-table #datatable th {
  vertical-align: middle;
}

.dashboad-table .dataTables_paginate {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 4px;
}

.dashboad-table .dataTables_paginate .paginate_button {
  display: inline-block;
  height: 100%;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  border: 1px solid var(--c-grey) !important;
  background: var(--c-white) !important;
  color: var(--c-black) !important;
  cursor: pointer;
}

.dashboad-table .dataTables_paginate .paginate_button:hover {
  background: var(--c-primary) !important;
  color: var(--c-white) !important;
  border-color: var(--c-primary) !important;
}

.dashboad-table .dataTables_paginate .paginate_button.current {
  background: var(--c-primary) !important;
  color: var(--c-white) !important;
  border-color: var(--c-primary) !important;
}

.dashboad-table .dataTables_paginate .paginate_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/*====================================== SECTION DASHBOARD USER - PPL REGISTRASI ======================================*/

.dashboad-schedule-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--c-white);
  padding: 1rem;
  border-radius: var(--rd-md);
}

.dashboard-schedule-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--c-white);
  border: 1px solid var(--c-br);
  border-radius: var(--rd-md);
  transition: var(--ts-slow);
}

.dashboard-schedule-list:hover {
  border-color: var(--c-primary);
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.08);
}

.dashboard-schedule-list.joined .dsl-date {
  background-color: rgba(45, 147, 118, 0.1);
}

.dashboard-schedule-list.joined {
  background-color: rgba(207, 208, 238, 0.25);
}

.dashboard-schedule-list.joined:hover {
  border-color: rgba(45, 147, 118, 0.8);
}

.dashboard-schedule-list .dsl-date {
  /* position: sticky;
  top: 176px; */
  position: relative;
  width: 140px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 2rem 0.75rem;
  gap: 0.25rem;
  border-radius: var(--rd-md);
  background-color: rgba(45, 51, 147, 0.1);
}

.dashboard-schedule-list .dsl-date .dsl-date-year {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.15rem 0.25rem 0.15rem 0.25rem;
  border-bottom: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
  border-bottom-right-radius: var(--rd-md);
}

.dashboard-schedule-list.joined .dsl-date .dsl-date-year {
  border-color: rgba(207, 208, 238, 0.25);
}

.dashboard-schedule-list .dsl-wrapper-l .dsl-content--meta:first-child {
  flex-shrink: 0;
}

.dashboard-doc-list .doc-list--icon,
.dashboard-schedule-list .dsl-content--meta-icon,
.dashboard-schedule-list .dsl-date .dsl-status-icon,
.history-certif-preview .hc-content--meta-icon,
.dashboard-member-billing .dmb-status-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(45, 51, 147, 0.1);
  border-radius: var(--rd-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.dashboard-schedule-list .dsl-date .dsl-status-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: rgba(45, 147, 118, 1);
}

.dashboard-schedule-list.joined .dsl-cta .btn {
  background-color: var(--c-red);
}

.dashboard-schedule-list.joined .dsl-cta.dsl-history-cta .btn {
  background-color: var(--c-primary);
}

.dashboard-data-filter .select2-container .select2-selection--single {
  height: auto !important;
  padding: 0.56rem 2rem 0.56rem 0.56rem !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--c-primary) !important;
  border: 1px solid var(--c-grey) !important;
  border-radius: var(--rd-md) !important;
  background-color: var(--c-white) !important;
  background-image: url(../images/general/angle-down.svg) !important;
  background-repeat: no-repeat !important;
  background-position: 90% 50% !important;
  background-size: 0.75rem !important;

  display: flex !important;
  align-items: center !important;
}

.dashboard-data-filter .select2-container .select2-selection--single:hover {
  border: 1px solid var(--c-primary) !important;
}

.dashboard-data-filter
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0;
  color: var(--c-primary);
  line-height: normal;
}

.dashboard-data-filter
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none;
}

.dashboard-data-filter
  .select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: var(--c-primary);
  box-shadow: none;
}

.dashboard-data-filter .select2-dropdown {
  border-radius: var(--rd-lg);
  border: 1px solid var(--c-primary);
}

.dashboard-data-filter .select2-results__option {
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.dashboard-data-filter .select2-results__option--highlighted {
  background-color: var(--c-primary);
  color: var(--c-white);
}

.dashboard-body .header-nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  border: none;
  background-color: rgb(45 51 147 / 10%);
  padding: 0.5rem;
  margin: 0rem;
  border-radius: var(--rd-md);
}

.dashboard-body .header-nav-tabs .nav-item {
  padding: 0;
}

.dashboard-body .header-nav-tabs .nav-link {
  background-color: rgba(176, 176, 176, 0.2);
  color: var(--c-black);
  font-weight: 700;
  font-size: 14px;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: var(--rd-md);
  transition: all 0.3s ease;
}

.dashboard-body .header-nav-tabs .nav-link:hover {
  background-color: rgba(45, 51, 147, 0.25);
}

.dashboard-body .header-nav-tabs .nav-link.active {
  background-color: var(--c-primary);
  color: var(--c-white);
}

.flatpickr-input.form-control {
  padding: 0.75rem;
  color: var(--c-black);
  font-weight: 500;
  background-color: var(--c-white) !important;
  border: 1px solid var(--c-grey) !important;
  border-radius: 8px;
  opacity: 1;
}

.flatpickr-input.form-control:hover {
  cursor: pointer;
  border-color: var(--c-primary) !important;
}

.dsl-content--item a:hover {
  text-decoration: underline;
}

.dsl-add-point {
  position: absolute;
  top: 0;
  right: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-point--wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: var(--c-transparent);
  border: 1px solid var(--c-secondary);
  border-top-right-radius: var(--rd-sm);
  border-bottom-left-radius: var(--rd-lg);
  border-top: 0;
  border-right: 0;
  padding: 4px 6px 6px 4px;
}

/*====================================== SECTION DASHBOARD USER - PPK MANDIRI ======================================*/
.ppk-indie-wrapper .form-group select {
  background-position: 97% 50%;
}

/*====================================== SECTION DASHBOARD USER - PPK RIWAYAT ======================================*/
.btn-info-popover {
  background: none;
  border: none;
  padding: 0;
  color: var(--c-info);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-info-popover:hover {
  color: var(--c-primary);
}

.konversi-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: rgba(45, 51, 147, 0.06);
  border: 1px solid rgba(45, 51, 147, 0.2);
  border-radius: var(--rd-md);
}

.konversi-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.konversi-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(45, 51, 147, 0.1);
  border-radius: 999px;
}

.konversi-counter-badge.is-complete {
  background-color: rgba(45, 147, 118, 0.15);
}

.konversi-counter-badge.is-complete #konversiCounterIcon,
.konversi-counter-badge.is-complete #konversiSelectedCount {
  color: #065f46;
}

.konversi-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.konversi-card-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.konversi-card-item .dashboard-schedule-list {
  width: 100%;
  min-width: 0;
}

.dsl-select {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  order: -1;
}

.dsl-checkbox-wrap {
  position: relative;
  width: 24px;
  height: 24px;
}

.dsl-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
  z-index: 2;
}

.dsl-checkbox-box {
  width: 24px;
  height: 24px;
  border: 2px solid var(--c-br);
  border-radius: 6px;
  background-color: var(--c-white);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dsl-checkbox-box i {
  font-size: 1rem;
  color: var(--c-white);
  opacity: 0;
  transition: opacity 0.15s;
}

.dsl-checkbox-input:checked ~ .dsl-checkbox-box {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
}

.dsl-checkbox-input:checked ~ .dsl-checkbox-box i {
  opacity: 1;
}

.dsl-checkbox-input:disabled ~ .dsl-checkbox-box {
  background-color: var(--c-white);
  border-color: var(--c-br);
  cursor: not-allowed;
}

.dsl-checkbox-input:disabled {
  cursor: not-allowed;
}

.dsl-checkbox-input:checked:disabled ~ .dsl-checkbox-box {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
  opacity: 0.6;
}

.konversi-card-item.is-selected .dashboard-schedule-list {
  border-color: var(--c-primary);
  background-color: rgba(45, 51, 147, 0.04);
}

.konversi-card-item.is-selected .dashboard-schedule-list.joined {
  border-color: rgba(45, 147, 118, 0.8);
  background-color: rgba(207, 208, 238, 0.3);
}

.konversi-card-item.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.konversi-card-item.is-disabled .dsl-checkbox-input {
  pointer-events: auto;
  cursor: not-allowed;
}

/*====================================== SECTION DASHBOARD USER - PPL RIWAYAT SERTIFIKAT ======================================*/

.history-certif-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: var(--c-white);
  border: 1px solid var(--c-br);
  border-radius: var(--rd-md);
  transition: var(--ts-fast);
}

.history-certif-preview:hover {
  border-color: var(--c-primary);
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.08);
}

.history-certif-preview .hc-content-name {
  max-height: 80px;
}

/*====================================== SECTION DASHBOARD USER - QUESTIONER ======================================*/

.questioner--info-card {
  background-color: var(--c-white);
  border-radius: var(--rd-md);
  border: 1px solid var(--c-br);
}

.questioner--info-card-header {
  background-color: var(--c-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--rd-md) var(--rd-md) 0 0;
}

.questioner--info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--c-br);
}

.questioner--info-row:last-child {
  border-bottom: none;
}

.questioner--info-key {
  flex-shrink: 0;
  width: 9rem;
}

.questioner--attendance-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 0.5rem;
}

.questioner--attendance-table {
  width: 100%;
  border-collapse: collapse;
}

.questioner--attendance-table th,
.questioner--attendance-table td {
  border: 1px solid var(--c-br);
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm);
  vertical-align: middle;
}

.questioner--attendance-table thead th {
  background-color: #f0f4ff;
  color: var(--c-primary);
  font-weight: 700;
  text-align: center;
}

.questioner--attendance-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.attendance-col-session {
  width: 6rem;
}

.attendance-col-status {
  width: 10rem;
}

.attendance-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: var(--fs-sm);
}

.attendance-badge.present {
  background-color: #d1fae5;
  color: #065f46;
}

.attendance-badge.absent {
  background-color: #fee2e2;
  color: #991b1b;
}

.questioner--intro {
  background-color: var(--c-white);
  border-radius: var(--rd-md);
  padding: 1rem;
}

.questioner--scale-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.questioner--scale-table th {
  width: 20%;
  background-color: var(--c-primary);
  border: 1px solid var(--c-br);
  color: var(--c-white);
  text-align: center;
  padding: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.questioner--form-wrapper {
  border: 1px solid var(--c-br);
  border-radius: var(--rd-md);
}

.modal-questioner .questioner--form-table,
.modal-questioner .questioner--form-table * {
  pointer-events: none;
  cursor: default;
}

.modal-questioner .questioner--form-table tbody tr:hover {
  background-color: transparent;
}

.modal-questioner .questioner--saran {
  min-height: 100px;
  pointer-events: auto;
  cursor: default;
  user-select: none;
  resize: none;
}

.modal-questioner .questioner--saran:hover {
  background-color: #e9ecef !important;
  border: 1px solid var(--c-grey);
}

.questioner--form-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-br);
  background-color: var(--c-white);
  overflow: hidden;
  border-radius: var(--rd-md);
}

.questioner--form-table th,
.questioner--form-table td {
  border: 1px solid var(--c-br);
  padding: 0.5rem 1rem;
  vertical-align: middle;
}

.questioner--form-table thead th {
  background-color: var(--c-primary);
  color: var(--c-white);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-align: center;
}

.questioner--form-table .group-header th {
  background-color: #f0f4ff;
  color: var(--c-primary);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 0.5rem 1rem;
}

.questioner--form-table td.q-number {
  text-align: center;
  width: 2.5rem;
  color: var(--c-info);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.questioner--form-table td.q-answer {
  text-align: center;
  width: 4.5rem;
}

.questioner--form-table td.q-answer-wide {
  text-align: center;
}

.q-yn-wrapper {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.q-yn-wrapper .q-radio-label-wide {
  flex: 1;
}

.questioner--form-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.questioner--form-table tbody tr:hover {
  background-color: #f5f8ff;
}

.questioner--form-table .group-header:hover {
  background-color: transparent;
}

.q-radio-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--c-br);
  background-color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-info);
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}

.q-radio-input {
  display: none;
}

.q-radio-input:checked + .q-radio-label {
  border-color: var(--c-primary);
  background-color: var(--c-primary);
  color: var(--c-white);
}

.q-radio-label:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.q-radio-label-wide {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.375rem 1.25rem;
  border-radius: 2rem;
  border: 2px solid var(--c-br);
  background-color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-info);
  transition: all 0.3s ease-in-out;
}

.q-radio-input:checked + .q-radio-label-wide {
  border-color: var(--c-primary);
  background-color: var(--c-primary);
  color: var(--c-white);
}

.q-radio-label-wide:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.questioner--textarea.form-control {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

.questioner--agreement {
  background-color: #f0f4ff;
  border-radius: var(--rd-md);
  padding: 1rem 1.25rem;
  border: 1px solid var(--c-br);
}

.questioner--partial-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.725rem;
  background-color: #fff8e1;
  border: 1px solid #ffe082;
  border-left: 4px solid #f59e0b;
  border-radius: var(--rd-md);
  padding: 0.75rem 1rem;
}

.questioner--partial-notice-icon {
  color: #f59e0b;
  font-size: var(--fs-sm);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.questioner--form-table .form-control:disabled {
  background-color: #e9ecef !important;
  pointer-events: none !important;
}

/*====================================== SECTION DASHBOARD USER - KEANGOTAAN ======================================*/
.dashboard-doc-list.is-pending {
  background-color: rgba(251, 140, 0, 0.05);
  border-color: rgba(251, 140, 0, 0.5);
}

.dashboard-doc-list.is-pending:hover {
  border-color: rgba(251, 140, 0, 0.5);
}

.dashboard-doc-list.is-pending .doc-list--icon {
  background-color: rgba(251, 140, 0, 1) !important;
}

.card-d-notif > div {
  overflow: hidden;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: var(--rd-md);
}

.card-d-notif.d-notif-info > div {
  background-color: rgba(13, 202, 240, 0.25);
}

.doc-status-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--rd-md);
}

.doc-status-bar.status-done {
  background: rgba(45, 147, 118, 0.07);
  border: 1px solid rgba(45, 147, 118, 0.2);
  color: rgba(45, 147, 118, 1);
}

.doc-status-bar.status-pending {
  background: rgba(251, 140, 0, 0.07);
  border: 1px solid rgba(251, 140, 0, 0.25);
  color: rgba(251, 140, 0, 1);
}

.dashboard-doc-list.is-rejected {
  background-color: rgba(220, 53, 69, 0.05);
  border-color: rgba(220, 53, 69, 0.4);
}

.dashboard-doc-list.is-rejected:hover {
  border-color: rgba(220, 53, 69, 0.5);
}

.dashboard-doc-list.is-rejected .doc-list--icon {
  background-color: var(--c-red) !important;
}

.doc-status-bar.status-rejected {
  background: rgba(220, 53, 69, 0.07);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: var(--c-red);
}

.modal-header--subtitle {
  margin-top: 0.125rem;
}

.doc-view-wrap {
  display: block;
  position: relative;
  border-radius: var(--rd-md);
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.doc-view-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.doc-view-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  cursor: zoom-in;
}

.doc-view-wrap:hover .doc-view-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.doc-view-overlay--icon {
  width: 48px;
  height: 48px;
  background-color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--c-primary);
  transform: scale(0.8);
  transition: transform 0.4s;
}

.doc-view-wrap:hover .doc-view-overlay--icon {
  transform: scale(1);
}

/*====================================== SECTION DASHBOARD USER - KEANGOTAAN UPLOAD ======================================*/

.member-card--upload {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.member-card-header--file {
  border: 2px dashed var(--c-grey);
  border-radius: var(--rd-md);
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.member-card-header--file.dragover,
.member-card-header--file:hover {
  background-color: rgba(45, 52, 147, 0.1);
  border-color: var(--c-primary);
}

.member-card--file-icon {
  font-size: 24px;
  color: var(--c-red);
}

.cta-floating-top {
  position: sticky;
  top: 20px;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.cta-floating-top > * {
  pointer-events: auto;
}

.btn-floating-back {
  width: 52px;
  height: 52px;
  padding: 1rem;
  font-size: 1.5rem;
  border-radius: 50%;
  background-color: var(--c-primary);
  color: var(--c-white);
  border: 1px solid var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-floating-back:hover {
  transform: scale(1.02);
}

.btn-floating-discard {
  display: flex;
  align-items: center;
  background-color: var(--c-white);
  color: var(--c-red, #dc3545);
  border: 1px solid var(--c-red, #dc3545);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px) scale(0.8);
  pointer-events: none;
  transition:
    background-color 0.2s,
    color 0.2s,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.btn-floating-discard.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.btn-floating-discard:hover,
.btn-floating-discard:focus {
  background-color: var(--c-red, #dc3545);
  color: var(--c-white);
}

.save-bottom-bar {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rd-md) var(--rd-md) 0 0;
  z-index: 9;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.save-bottom-bar.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.save-bottom-bar .btn {
  border-radius: var(--rd-md) var(--rd-md) 0 0;
}

/*====================================== SECTION DASHBOARD USER - KEANGOTAAN PENGKINIAN DATA ======================================*/

.pkd-modal-preview {
  border-radius: var(--rd-md);
  overflow: hidden;
  background: #f5f7fa;
  border: 1px dashed var(--c-br);
}

.pkd-modal-preview--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  font-size: 2.5rem;
}

.pkd-modal-preview img {
  width: 100%;
  height: auto;
  display: none;
}

.pkd-modal-preview.has-image .pkd-modal-preview--placeholder {
  display: none;
}

.pkd-modal-preview.has-image img {
  display: block;
}

.modal-upload-section {
  border-top: 1px solid var(--c-br);
  padding-top: 1rem;
}

/*====================================== SECTION DASHBOARD USER - IURAN KEANGOTAAN ======================================*/

.dashboard-member-billing {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--c-white);
  border: 1px solid rgba(45, 147, 118, 0.8);
  border-radius: var(--rd-md);
  transition: var(--ts-fast);
}

.dashboard-member-billing .dmb-status-icon {
  background-color: rgba(45, 147, 118, 1);
}

.dashboard-member-billing.is-unpaid {
  border-color: var(--c-info);
}

.dashboard-member-billing:hover,
.dashboard-member-billing.is-unpaid:hover {
  border-color: var(--c-primary);
}

.dashboard-member-billing.is-paid {
  background-color: rgba(45, 147, 118, 0.05);
}

.dashboard-member-billing.is-unpaid .dmb-status-icon {
  background-color: var(--c-info);
}

/*====================================== SECTION DASHBOARD USER - USER GUIDE ======================================*/
.user-guide-wrapper .pdf-preview-wrapper iframe {
  height: 720px;
}

/*====================================== SECTION DASHBOARD USER - DISCLAIMER ======================================*/

.disclaimer-card {
  color: var(--c-white);
  border-radius: var(--rd-md);
  padding: 2rem;
  background:
    radial-gradient(
      circle at 240% 0%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 0%,
      var(--c-primary) 75%
    ),
    url(/images/bg-disclaimer.png), var(--c-primary);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position:
    right top,
    right top,
    center;
  background-size: cover, cover, cover;
}

.membershipfee-modal-table .table-membershipfee {
  width: 100%;
  background-color: #f1f2f3;
  border-radius: var(--rd-md);
  overflow: hidden;
  border: 1px solid var(--c-grey);
  border-collapse: collapse;
}

.membershipfee-modal-table .table-membershipfee tr {
  border-bottom: 1px solid var(--c-grey);
}

.membershipfee-modal-table .table-membershipfee tr:last-child {
  border-bottom: none;
}

.membershipfee-modal-table .table-membershipfee td {
  padding: 16px 8px;
}

.membershipfee-modal-table .table-membershipfee .label {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-black);
  width: 40%;
  letter-spacing: 0.5px;
}

.membershipfee-modal-table .table-membershipfee .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-black);
  text-align: left;
}

.membershipfee-modal-table .table-membershipfee .highlight {
  color: var(--c-primary);
  font-weight: 700;
}

.membershipfee-modal-table .table-membershipfee .membership-fee-badge {
  background-color: var(--c-green);
  color: var(--c-black);
  padding: 8px 16px;
  border-radius: var(--rd-md);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.membershipfee-modal-table .table-membershipfee .membership-fee-badge.danger {
  background-color: var(--c-red);
  color: var(--c-white);
}

.membershipfee-modal-wrapper .payment-info-box {
  display: flex;
  gap: 8px;
  padding: 1rem;
  background-color: #eef4ff;
  border: 1px solid #cfe0ff;
  color: var(--c-primary);
  border-radius: var(--rd-md);
}

/* ========================== RUTA - CAMPAIGN ==========================*/
.section-campaign {
  padding: 10rem 0 8rem 0;
  position: relative;
  min-height: 100vh;
  background-color: var(--c-primary);
}

.section-campaign::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/grid-asset.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.nominee-profile {
  position: relative;
  max-width: 340px;
  width: 100%;
  /* aspect-ratio: 3 / 4; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* padding: 1rem; */
  border-radius: var(--rd-md);
  transition: var(--ts-slow);
  z-index: 9;
}

.nominee-profile:hover {
  transform: scale(1.015);
}

.nominee-profile .nominee-number {
  z-index: 4;
  position: absolute;
  top: -16px;
  left: -16px;
}

.nominee-profile .nominee-number .nominee-number--wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--c-primary);
  border: 1px solid var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nominee-number--wrapper span {
  font-size: 18px;
}

.nominee-since {
  z-index: 4;
  position: absolute;
  top: 8px;
  right: 8px;
}

.nominee-since--wrapper {
  background-color: rgba(45, 52, 147, 1);
  backdrop-filter: blur(4px);
  padding: 6px 8px;
  border-radius: var(--rd-sm);
}

.nominee-body {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 0.75rem;
  border: 1px solid var(--c-br);
  border-radius: var(--rd-md);
  transition: var(--ts-slow);
}

.nominee-profile:hover .nominee-body {
  border-color: var(--c-primary);
}

.nominee-body::before {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--rd-md);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 25%,
    rgba(20, 30, 90, 1) 75%,
    rgba(20, 30, 90, 1) 100%
  );
  transition: transform 1s ease;
}

.nominee-profile:hover .nominee-body::before {
  transform: scale(1.1) translateY(48px);
  transition: transform 3s ease;
}

.nominee-profile:hover .nominee-body:hover {
  box-shadow: 0 8px 18px 0 rgba(45, 52, 147, 0.4);
}

.campaign-profile {
  position: sticky;
  top: 160px;
  margin-bottom: 2rem;
}

.campaign-flyer {
  position: relative;
  max-width: 400px;
  width: 100%;
  padding: 4px;
  border-radius: var(--rd-md);
  overflow: hidden;
  isolation: isolate;
  border: 0;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 8px 18px 0 rgba(255, 255, 255, 0.4);
}

.campaign-flyer::before {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: 2;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 0deg,
    #1eaca5 95deg,
    #1eaca5 115deg,
    transparent 140deg,
    transparent 360deg
  );
  animation: campaignBorderSpin 3s linear infinite;
}

.campaign-flyer img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border-radius: calc(var(--rd-md) - 2px);
}

@keyframes campaignBorderSpin {
  to {
    transform: rotate(360deg);
  }
}

.campaign-profile .nominee-body::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(20, 30, 90, 1) 100%,
    rgba(20, 30, 90, 1) 100%
  );
}

.campaign-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--c-primary);
  border: 2px solid var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign-number span {
  font-size: 18px;
}

.nominee-body .nominee-profile--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  transition: transform 1s ease;
}

.nominee-profile:hover .nominee-profile--image {
  /* box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.08); */
  box-shadow: 0 8px 18px 0 rgba(45, 51, 147, 0.5);
  transform: scale(1.1);
  transition: transform 3s ease;
}

.nominee-profile:hover .nominee-profile--image img {
  border-radius: var(--rd-md);
}

.nominee-body .nominee-profile--image img {
  border-radius: 7px !important;
}

.nominee-profile--bio {
  width: 100%;
  align-items: start;
  text-align: left;
}

.ul-campaign {
  list-style: disc;
  margin-top: 0;
  margin-left: 1rem;
  margin-bottom: 0;
}

ul.ul-campaign li::marker {
  color: var(--c-white);
}

.ul-campaign ul {
  list-style: circle;
}

.bottom-bar-nav {
  margin-top: 2rem;
  width: 100%;
  padding: 0 1rem;
}

.bottom-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.5rem;
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--c-white);
  border-bottom: 1px solid var(--c-white);
}

.bottom-bar-prev,
.bottom-bar-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ========================== RUTA - CAMPAIGN CANDIDATE ==========================*/

.socmed-bottom-bar {
  background-color: var(--c-white);
  max-width: fit-content;
  padding: 0.5rem 1rem;
  opacity: 1;
  bottom: 0;
  transform: translateY(0) scale(0.75);
  transform-origin: center bottom;
  pointer-events: auto;
}

.dashboard-back-bottom-bar {
  opacity: 1;
  bottom: 0;
  transform: translateY(0) scale(0.75);
  transform-origin: center bottom;
  pointer-events: auto;
}

.socmed-bottom-title {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--c-white);
  padding: 0 8px;
  border-radius: var(--rd-md);
}

.socmed-bottom-bar.expanded,
.socmed-bottom-bar:hover,
.dashboard-back-bottom-bar:hover,
.dashboard-back-bottom-bar.expanded {
  transform: translateY(0px) scale(1.05);
  opacity: 1;
}

.btn-socmed {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.btn-socmed:hover {
  transform: scale(1.02);
}

.btn-socmed.btn-copy-link {
  background-color: var(--c-white);
  border: 1px solid var(--c-br);
}

/* ========================== RUTA - UPCOMING ==========================*/
.ruta-container {
  height: 50vh;
}

.flip-clock-divider:first-child {
  width: 0 !important;
}

.flip-clock-divider .flip-clock-label {
  right: -84px !important;
  color: var(--c-black) !important;
}

.flip-clock-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 !important;
}

.flip-clock-wrapper ul {
  width: 55px;
  height: 80px;
  font-size: 60px;
}

.flip-clock-wrapper .flip {
  box-shadow: 0 8px 18px 0 rgba(45, 51, 147, 0.25) !important;
}

.flip-clock-wrapper ul li a div {
  font-size: 70px !important;
}

.flip-clock-wrapper ul li a div div.inn {
  font-size: 60px !important;
  color: var(--c-white) !important;
  text-shadow: 0 1px 2px #2d339340 !important;
  background-color: var(--c-primary) !important;
}

.flip-clock-dot {
  background: var(--c-primary) !important;
  width: 8px !important;
  height: 8px !important;
}

.flip-clock-dot.top {
  top: 36px !important;
}

.flip-clock-dot.bottom {
  bottom: 36px !important;
}

/* ========================== RUTA - WELCOME ==========================*/

.voting-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 3rem;
}

/* ========================== RUTA - VOTING ==========================*/
section.section-ruta-voting {
  background-color: var(--c-primary);
}

section.section-ruta-voting::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/grid-asset.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.ruta-back {
  position: fixed;
  top: 32px;
  left: 32px;
}

.voting-wrapper--cta .btn-secondary {
  box-shadow: 0px 0px 18px 0px rgb(170 170 180 / 50%);
}

.voting-wrapper--cta .btn-secondary:hover {
  transform: scale(1.1) !important;
}

.voting-container .nominee-profile:hover .nominee-body {
  border-color: var(--c-white);
  box-shadow: 0 8px 18px 0 rgba(255, 255, 255, 0.25);
}

.modal-share-vote {
  max-width: 420px;
}

.modal-share-vote .modal-body .modal-share-vote-container {
  /* padding: 1rem; */
  background-color: rgba(45, 51, 147, 1);
}

.modal-share-vote .modal-body .modal-share-vote-container .share-vote-wrapper {
  background-color: rgba(45, 51, 147, 1);
  aspect-ratio: 9 / 16;
  padding: 2rem;
}

.modal-share-vote .modal-footer {
  border-top: none;
}

.modal-share-vote .nominee-profile {
  aspect-ratio: 3 / 4;
  max-width: 100%;
  transform: translateY(0px);
  margin: 0;
  pointer-events: none;
}

.modal-share-vote .nominee-profile .nominee-body {
  padding: 0.5rem;
}

.modal-share-vote .nominee-profile .nominee-body::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 45%,
    rgba(20, 30, 90, 1) 75%,
    rgba(20, 30, 90, 1) 100%
  );
}

.modal-share-vote .nominee-profile .nominee-number {
  top: 8px;
  left: 8px;
}

.modal-share-vote .share-vote-desc .nominee-logo--wrapper {
  max-width: 120px;
  background-color: var(--c-white);
  padding: 0.5rem 1rem;
  border-radius: var(--rd-md);
}

.share-vote-actions-wrapper {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom-left-radius: var(--rd-xl);
  border-bottom-right-radius: var(--rd-xl);
  background-color: var(--c-white);
}

.share-vote-footer-label-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  width: 100%;
  text-align: center;
}

.share-vote-footer-label-wrapper .share-vote-footer--label {
  max-width: fit-content;
  margin: 0 auto;
  border-radius: var(--rd-md);
  background-color: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 0.25rem 0.75rem;
}

.share-vote-footer--actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.75rem;
  width: 100%;
}

.share-vote-socmed {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.share-vote-cta-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.share-vote-btn-socmed {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    opacity 0.3s,
    transform 0.3s;
  flex-shrink: 0;
}

.share-vote-btn-socmed:hover {
  opacity: 0.88;
  transform: scale(1.1);
}

.share-vote-btn-socmed.bg-fb {
  background-color: #1877f2;
}

.share-vote-btn-socmed.share-vote-btn-x {
  background-color: #111;
}

.share-vote-btn-socmed.bg-wa {
  background-color: #25d366;
}

.share-vote-btn-link {
  background-color: transparent;
  border: 1.5px solid #ddd !important;
  color: var(--c-primary);
}

/* ========================== RUTA - RESULT ==========================*/
.nominee-winner {
  transform: translateY(-32px);
}

.nominee-winner .nominee-body,
.nominee-winner:hover .nominee-body:hover {
  border-color: var(--c-secondary);
  box-shadow: 0 8px 18px 0 rgba(30, 172, 165, 0.7);
}

.nominee-winner:hover {
  transform: translateY(-32px);
}

.winner-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.winner-confetti span {
  position: absolute;
  top: -10%;
  width: 10px;
  height: 18px;
  border-radius: 2px;
  opacity: 0.9;
  animation: confettiFall linear infinite;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.winner-confetti span:nth-child(4n + 1) {
  background: #ffffff;
}

.winner-confetti span:nth-child(4n + 2) {
  background: #1eaca5;
}

.winner-confetti span:nth-child(4n + 3) {
  background: #7ef9ff;
}

.winner-confetti span:nth-child(4n + 4) {
  background: #d9ff00;
}

.winner-confetti span:nth-child(1) {
  left: 5%;
  animation-duration: 7s;
  animation-delay: 0s;
}

.winner-confetti span:nth-child(2) {
  left: 10%;
  animation-duration: 9s;
  animation-delay: 1s;
}

.winner-confetti span:nth-child(3) {
  left: 15%;
  animation-duration: 8s;
  animation-delay: 2s;
}

.winner-confetti span:nth-child(4) {
  left: 20%;
  animation-duration: 11s;
  animation-delay: 1s;
}

.winner-confetti span:nth-child(5) {
  left: 25%;
  animation-duration: 7s;
  animation-delay: 3s;
}

.winner-confetti span:nth-child(6) {
  left: 30%;
  animation-duration: 10s;
  animation-delay: 0s;
}

.winner-confetti span:nth-child(7) {
  left: 35%;
  animation-duration: 8s;
  animation-delay: 2s;
}

.winner-confetti span:nth-child(8) {
  left: 40%;
  animation-duration: 12s;
  animation-delay: 1s;
}

.winner-confetti span:nth-child(9) {
  left: 45%;
  animation-duration: 9s;
  animation-delay: 0s;
}

.winner-confetti span:nth-child(10) {
  left: 50%;
  animation-duration: 7s;
  animation-delay: 2s;
}

.winner-confetti span:nth-child(11) {
  left: 55%;
  animation-duration: 10s;
  animation-delay: 1s;
}

.winner-confetti span:nth-child(12) {
  left: 60%;
  animation-duration: 8s;
  animation-delay: 3s;
}

.winner-confetti span:nth-child(13) {
  left: 65%;
  animation-duration: 9s;
  animation-delay: 0s;
}

.winner-confetti span:nth-child(14) {
  left: 70%;
  animation-duration: 11s;
  animation-delay: 2s;
}

.winner-confetti span:nth-child(15) {
  left: 75%;
  animation-duration: 7s;
  animation-delay: 1s;
}

.winner-confetti span:nth-child(16) {
  left: 80%;
  animation-duration: 9s;
  animation-delay: 3s;
}

.winner-confetti span:nth-child(17) {
  left: 85%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.winner-confetti span:nth-child(18) {
  left: 90%;
  animation-duration: 8s;
  animation-delay: 2s;
}

.winner-confetti span:nth-child(19) {
  left: 95%;
  animation-duration: 10s;
  animation-delay: 1s;
}

.winner-confetti span:nth-child(20) {
  left: 98%;
  animation-duration: 7s;
  animation-delay: 0s;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
  }

  100% {
    transform: translateY(120vh) rotate(720deg) translateX(40px);
  }
}

/* ========================== SECTION RUTA YEARLY - REGISTER ==========================*/
.register-choice-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rd-md);
  padding: 1rem;
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
}

.register-choice-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.register-choice-card.selected {
  border-color: var(--c-secondary);
  background: rgba(255, 255, 255, 0.12);
}

.register-choice-card input[type="radio"] {
  display: none;
}

.register-choice-card--radio {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.register-choice-card.selected .register-choice-card--radio {
  border-color: var(--c-secondary);
}

.register-choice-card--radio::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--c-secondary);
  display: none;
}

.register-choice-card.selected .register-choice-card--radio::after {
  display: block;
}

.register-choice-card--icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--rd-md);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.register-choice-card.selected .register-choice-card--icon {
  background: var(--c-secondary);
}

.register-wakil-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rd-md);
  padding: 0.875rem 1rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  background: rgba(255, 255, 255, 0.05);
}

.register-wakil-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.register-wakil-card.selected {
  border-color: var(--c-secondary);
  background: rgba(255, 255, 255, 0.12);
}

.register-wakil-card input[type="radio"] {
  display: none;
}

.register-wakil-card--check {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.register-wakil-card.selected .register-wakil-card--check {
  border-color: var(--c-secondary);
  background: var(--c-secondary);
}

.register-wakil-card--check i {
  display: none;
  font-size: 0.5rem;
  color: var(--c-white);
}

.register-wakil-card.selected .register-wakil-card--check i {
  display: block;
}

.register-panel {
  display: none;
}

.register-panel.active {
  display: flex;
}

.register-panel--header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.register-panel--choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.register-panel--cta {
  width: 100%;
}

.register-choice-card--body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.register-wakil-card--inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.register-wakil-card--body {
  display: flex;
  flex-direction: column;
}

.register-wakil-card {
  position: relative;
}

.register-wakil-card--inner {
  padding-right: 3.5rem;
}

.register-wakil-card--actions {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.register-wakil-card--action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--c-white);
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.register-wakil-card--action-btn:hover {
  opacity: 0.8;
  color: var(--c-white);
}

.register-wakil-card--action-btn.wa {
  background: var(--c-wa);
}

.register-wakil-card--action-btn.email {
  background: var(--c-primary);
}

/* ========================== SECTION RUTA YEARLY - WAITING ==========================*/
.btn-zoom {
  background-color: #2d8cff;
  color: var(--c-white);
  border: none;
}

.btn-zoom:hover {
  background-color: #1a7ae0;
  color: var(--c-white);
}

/* ========================== SECTION RUTA YEARLY - ONBOARDING ==========================*/

.section-ruta-yearly:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(/images/grid-asset.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.ruta-onboarding--container {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  padding: 2rem 1rem 6rem;
}

.ruta-onboarding--icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ruta-onboarding--icon i {
  font-size: 2.75rem;
  color: var(--c-white);
}
/* ========================== SECTION RUTA YEARLY - Voting ==========================*/
.ruta-yearly-vote--container {
  min-height: 100dvh;
  padding: 4rem 0 8rem 0;
  max-width: 1024px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.vote-question--card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rd-md);
  padding: 1.5rem;
}

.vote-question--label {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.vote-answer--card {
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rd-md);
  padding: 1.5rem;
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vote-answer--card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.vote-answer--card.selected-yes {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
}

.vote-answer--card.selected-no {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.1);
}

.vote-answer--card input[type="radio"] {
  display: none;
}

.vote-answer--radio {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.vote-answer--card.selected-yes .vote-answer--radio {
  border-color: #4ade80;
  background: #4ade80;
}

.vote-answer--card.selected-no .vote-answer--radio {
  border-color: #f87171;
  background: #f87171;
}

.vote-answer--radio::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--c-white);
  display: none;
}

.vote-answer--card.selected-yes .vote-answer--radio::after,
.vote-answer--card.selected-no .vote-answer--radio::after {
  display: block;
}

.vote-slide {
  display: none;
}

.vote-slide.active {
  display: flex;
}

.ruta-yearly-vote--bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 31, 90, 0.8);
  backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

/* ========================== SECTION RUTA YEARLY - SUMMARY ==========================*/
.ruta-tahunan-summary--container {
  min-height: 100dvh;
  padding: 2rem 0 6rem;
}

.ruta-tahunan-summary--header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-vote--group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-result--card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rd-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-pct--row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-pct--header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.summary-pct--label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-pct--dot-yes {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  flex-shrink: 0;
}

.summary-pct--dot-no {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f87171;
  display: inline-block;
  flex-shrink: 0;
}

.summary-bar--track {
  height: 8px;
  border-radius: var(--rd-sm);
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.summary-bar--fill-yes {
  height: 100%;
  border-radius: var(--rd-sm);
  background: #4ade80;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.summary-bar--fill-no {
  height: 100%;
  border-radius: var(--rd-sm);
  background: #f87171;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.summary-pct--big {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.summary-pct--yes {
  color: #4ade80;
}

.summary-pct--no {
  color: #f87171;
}

.summary-result--badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.summary-result--yes {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #4ade80;
}

.summary-result--no {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #f87171;
}

.summary-result--draw {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fbbf24;
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/*====================================== SECTION DASHBOARD USER - KORWIL NOTIF USER ======================================*/
.dsl-kuasa-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  text-align: center;
}

.dsl-kuasa-cta {
  flex-shrink: 0;
}

.ruta-kuasa--action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--c-white);
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.ruta-kuasa--action-btn:hover {
  opacity: 0.8;
  color: var(--c-white);
}

.ruta-kuasa--action-btn.wa {
  background: var(--c-wa);
}

.ruta-kuasa--action-btn.email {
  background: var(--c-primary);
}

/* ========================== ACCOUNT FREEZE ==========================*/
.section-freeze {
  position: relative;
  display: flex;
  align-items: end;
  background-color: var(--c-primary);
  overflow: hidden;
}

.section-freeze::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/grid-asset.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.freeze-container {
  min-height: 100vh;
  padding: 5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.cta-back {
  position: absolute;
  top: 16px;
  left: 16px;
}

/* ========================== PENGKINIAN DATA ==========================*/
.section-pkd {
  position: relative;
  display: flex;
  align-items: end;
  background-color: var(--c-primary);
  overflow: hidden;
  padding: 0;
  padding-bottom: 4rem;
}

.section-pkd::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/grid-asset.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.pkd-container {
  min-height: 100vh;
  padding: 5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.save-bottom-pkd {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  border-top-left-radius: var(--rd-md);
  border-top-right-radius: var(--rd-md);
  background-color: var(--c-white);
  border-top: 3px solid var(--c-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*====================================== SECTION 404  ======================================*/

.section-not-found,
.section-maintenance {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-primary);
  overflow: hidden;
}

.section-not-found::before,
.section-maintenance::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/bg-tile.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.not-found--wrapper,
.maintenance--wrapper {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.not-found--lottie,
.maintenance--lottie {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/*====================================== SECTION 503  ======================================*/

/*====================================== SECTION EMPTY WRAPPER ======================================*/

.empty-state-wrapper .empty-state-image {
  max-width: 20rem;
}

/*====================================== SECTION FOOTER ======================================*/

footer {
  position: relative;
  z-index: 1;
  padding: 4rem 0 0rem 0;
  border-top: 8px solid #5156a5;
  background-color: var(--c-primary);
}

.footer--top {
  padding-bottom: 4rem;
}

.footer--brand {
  padding-right: 3rem;
}

.footer--logo figure {
  max-width: 160px;
}

.footer--logo figure img {
  width: 100%;
  height: auto;
}

address.footer--tagline {
  font-style: normal;
  max-width: 380px;
}

.footer--links {
  padding-left: 4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
}

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

.footer--link-item {
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: 400;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.footer--link-item:hover {
  opacity: 1;
  color: var(--c-white);
}

.footer--link-list a {
  font-weight: var(--f-w-medium);
}

.footer--link-list a.active {
  font-weight: var(--f-w-bold);
}

.footer-copyright {
  background-color: var(--c-tertiary);
  border-top: 1px solid #5156a5;
  padding: 2rem 0;
}

.footer-brand--address a:hover {
  color: var(--c-tertiary) !important;
}

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.footer-menu .footer-menu--link a {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  color: var(--c-white);
}

.footer-contact--wrapper .footer-link--list a::before,
.footer-menu .footer-menu--link a::before,
.footer-menu .footer-menu--link.active a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-white);
  transition: all 0.5s ease-in-out;
}

.footer-menu .footer-menu--link:hover a {
  color: var(--c-white);
}

.footer-contact--wrapper .footer-link--list:hover a::before,
.footer-menu .footer-menu--link:hover a::before,
.footer-menu .footer-menu--link.active a::before,
.footer-menu .footer-menu--link:hover.active a::before {
  width: 100%;
}

.footer-menu {
  gap: 2rem;
}

.footer-menu .footer-menu--link.active a {
  color: var(--c-white);
  font-weight: var(--f-w-bold);
}

.footer-nav .footer-menu li {
  position: relative;
  padding-left: 2rem;
}

.footer-nav .footer-menu li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #5156a5;
}

.footer-question-card {
  padding: 1.25rem 2rem;
  border-radius: 12px;
  box-shadow: 0px 5px 20px 0px
    rgba(118.93125915527345, 118.93125915527345, 118.93125915527345, 0.2);
}

footer .footer-list a span {
  display: block;
  line-height: 1.5;
  font-weight: 400;
  font-size: 0.75rem;
}

@keyframes maka {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

footer.footer .footer-copyright span {
  display: inline-block;
  margin-right: 1px;
}

.footer-sosmed-list span {
  color: black;
}

.footer-sosmed-list span i {
  font-size: 1rem;
  width: 16px;
}

.footer-list a:hover,
.footer-sosmed-list a:hover span {
  color: var(--c-primary);
}

.maka-color {
  color: #ceebf8 !important;
}

footer.footer .footer-copyright span a {
  color: #ceebf8 !important;
}

footer.footer .footer-copyright:hover span:nth-child(1) {
  animation: maka 0.9s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(2) {
  animation: maka 1.1s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(3) {
  animation: maka 1.3s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(4) {
  animation: maka 1.5s ease-in-out;
}

.m-none {
  margin: 0 !important;
}

.mb0 {
  margin-bottom: 0px;
}

.mb4 {
  margin-bottom: 4px;
}

.mb8 {
  margin-bottom: 8px;
}

.mb16 {
  margin-bottom: 16px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb64 {
  margin-bottom: 64px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt0 {
  margin-top: 0px;
}

.mt8 {
  margin-top: 8px;
}

.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.mt32 {
  margin-top: 32px;
}

.mt48 {
  margin-top: 48px;
}

.mt64 {
  margin-top: 64px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mt100 {
  margin-top: 100px;
}

.row-gap-1 {
  row-gap: 1rem;
}

.row-gap-2 {
  row-gap: 2rem;
}

.row-gap-3 {
  row-gap: 3rem;
}

/*====================================== SECTION SKELETON ======================================*/

.skeleton-card,
.skeleton-card:hover,
.skeleton-card::before {
  border: 0px solid #f5f3f3 !important;
  background: var(--c-transparent) !important;
  background-color: var(--c-transparent) !important;
  box-shadow: none;
  transform: scale(1) !important;
  /* animation: shimmer 0.3s infinite linear; */
}

.skeleton-card::before {
  content: unset;
}

.skeleton-picture,
.skeleton-text {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: var(--c-skeleton);
  border-radius: 1rem;
}

.article-list.skeleton-card,
.article-list.skeleton-card:hover,
.home-stock.skeleton-card,
.home-stock.skeleton-card:hover,
.skeleton-pagination.skeleton-card,
.bocd-card.skeleton-card,
.ob-card.skeleton-card,
.career-testi-list.skeleton-card,
.career-list.skeleton-card,
.obd-gallery-card.skeleton-card {
  background-color: var(--c-white) !important;
}

.regular-member-list--card.skeleton-card,
.representative-member-list--card.skeleton-card,
.pps-schedule--card.skeleton-card,
.job-card.skeleton-card,
.dashboard-schedule-list.skeleton-card,
.history-certif-preview.skeleton-card,
.recomm-card.skeleton-card,
.dashboard-member-billing.skeleton-card {
  border: 1px solid var(--c-br) !important;
}

.card-person.skeleton-card {
  background: linear-gradient(
    180deg,
    rgb(242 247 255) 12.89%,
    rgba(115, 170, 236, 1) 100%
  ) !important;
}

.nominee-profile.skeleton-card .nominee-body::before {
  content: unset !important;
}

.nominee-profile.skeleton-card .nominee-body {
  border: 0 !important;
}

.nominee-profile.skeleton-card .nominee-number--wrapper {
  background-color: var(--c-skeleton) !important;
  border-color: transparent !important;
}

.nominee-profile.skeleton-card .nominee-number--wrapper span {
  color: transparent;
}

.nominee-profile.skeleton-card .nominee-since--wrapper {
  background-color: var(--c-skeleton) !important;
  min-width: 90px;
  min-height: 28px;
}

.nominee-profile.skeleton-card .nominee-since--wrapper span {
  color: transparent;
}

.hero-container.skeleton-card::before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #194495 !important;
  background: linear-gradient(
    180deg,
    rgba(25, 68, 149, 1) 0%,
    rgba(54, 97, 166, 0.9) 20%,
    rgb(255 255 255 / 15%) 90%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}

.skeleton-card figure::before,
.skeleton-card.bocd-card::after,
.skeleton-card .pillar-card .pillar-card--info::before {
  content: unset;
}

.skeleton-card.awards-list {
  border: 1px solid #d2d4dc !important;
}

.skeleton-picture.xs {
  width: 100%;
}

.skeleton-picture.sm {
  height: 2.25rem;
}

.skeleton-picture.md {
  height: 3rem;
}

.skeleton-picture.lg {
  height: 4rem;
}

.skeleton-picture.xl {
  height: 5.25rem;
}

.skeleton-picture.xxl {
  height: 8rem;
}

.skeleton-picture.xl-3 {
  height: 10rem;
}

.skeleton-picture.xl-4 {
  height: 15rem;
}

.skeleton-picture.xl-5 {
  height: 20rem;
}

.skeleton-picture.xl-6 {
  height: 22.5rem;
}

.skeleton-picture.xl-7 {
  height: 25rem;
}

.skeleton-picture.xl-8 {
  height: 30rem;
}

.skeleton-text.xs {
  height: 0.5rem;
}

.skeleton-text.sm {
  height: 0.75rem;
}

.skeleton-text.md {
  height: 1rem;
}

.skeleton-text.lg {
  height: 1.5rem;
}

.skeleton-text.xl {
  height: 2rem;
}

.skeleton-text.xxl {
  height: 2.5rem;
}

.skeleton-text.xl-3 {
  height: 3rem;
}

.skeleton-text.xl-4 {
  height: 4rem;
}

.skeleton-text.xl-5 {
  height: 5rem;
}

.skeleton-text::before,
.skeleton-picture::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(22, 64, 148, 0.05) 0%,
    rgba(22, 64, 148, 0.2) 30%,
    rgba(22, 64, 148, 0.2) 70%,
    rgba(22, 64, 148, 0.05) 100%
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}
