@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_slnt,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Italic-VariableFont_slnt,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* ========================== ROOT COLOR ==========================*/
  --c-primary: #3d58a7;
  /* Deep navy - Primary */
  --c-secondary: #fdfcef;
  --c-hover-card: #d8e0ff;
  --c-body: #f5f5f5;
  --c-body-2: #eceff4;
  --c-black: #1e1e1e;
  --c-info: #8a8f94;
  --c-white: #ffffff;
  --c-grey: #b0b0b0;
  --c-green: #4caf50;
  --c-red: #c62828;
  --c-card: #ecedf8;
  --c-border: #1e1e1e;
  --c-disabled: #dee1e8;
  --c-transparent: transparent;
  --c-skeleton: #a9c42f1d;
  --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-body:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji",
    sans-serif;

  --f-s-xs: 10px;
  --f-s-s: 12px;
  --f-s-sm: 14px;
  --f-s-base: 16px;
  --f-s-lg: 18px;
  --f-s-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-primary);
  color: var(--c-white);
}

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

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-y: overlay;
  transition: ease 0.3s;
}

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

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

h1 {
  font-size: 6rem;
  font-weight: var(--f-w-xxbold);
  line-height: 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-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
}

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.2;
  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 {
  line-height: 1.2;
  transition: all 0.3s;
}

figure {
  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;
}

.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);
}

/* ========================== 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: #fff;
}

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;
}

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

.form-label {
  margin-bottom: 0;
  color: var(--c-primary);
}

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

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

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

.form-group-icon .clear-input {
  right: 15px;
}

.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;
}

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

.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-primary);
  border-radius: var(--rd-lg);
  opacity: 1;
}

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

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: 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;
}

.form-check .form-check-input {
  margin-left: -1.25rem;
  margin-right: 0.5rem;
}

.form-check-input:checked {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
}

.form-check-input:focus {
  border-color: var(--c-primary);
  /* box-shadow: 0 0 0 .25rem rgb(1 61 49 / 25%); */
  box-shadow: none;
}

.form-check-input:checked:focus {
  box-shadow: none;
}

select.form-control {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  color: var(--c-black);
  font-weight: 500;
  background-color: var(--c-black);
  border: 1px solid var(--c-primary);
  border-radius: var(--rd-lg);
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: 85% 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);
  background-color: var(--c-white);
  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;
}

label {
  word-break: break-word;
}

label.control-label {
  position: relative;
  font-size: 0.875rem;
  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 {
  /* position: fixed; */
  overflow: hidden !important;
  padding-right: 0 !important;
}

.modal-content {
  max-height: 90vh;
  /* height: 100%; */
  background-color: var(--c-tertiary);
  border: 0;
  border-radius: 1.25rem;
}

.modal-header {
  padding: 1.5rem 2rem 0.5rem 2rem;
  border-bottom: 1px solid var(--c-primary);
}

.modal-header .modal-close {
  z-index: 3;
  opacity: 1;
  position: absolute;
  top: 16px;
  right: 16px;
  transition: all 0.3s;
}

.modal-header .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background-color: #f54036;
  color: var(--c-white);
  background-image: none;
  opacity: 1;
  position: relative;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.modal-header .btn-close span {
  font-size: 16px;
  line-height: 1;
}

.modal-close .btn-close:hover,
.modal-header .btn-close:hover {
  opacity: 1;
  background-color: #c62828;
}

.modal-header .btn-close:focus {
  box-shadow: none;
}

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

.modal.fade {
  overflow: hidden;
}

.modal.fade .modal-dialog {
  transition:
    transform 0.5s ease-in-out,
    filter 1s ease-out;
  filter: blur(5px);
  transform: translate(30px, 999px) rotate(0) scale(0);
}

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

.modal.fade.show .modal-dialog .modal-content {
  background-color: var(--c-body-2);
  overflow-y: auto;
}

.modal.modal-sidebar {
  backdrop-filter: blur(0);
}

.modal.modal-sidebar.fade .modal-dialog {
  background-color: var(--c-body-2);
  filter: blur(0);
  transform: translate(128px, 0) rotate(0) scale(1);
  margin: 0 0 0 auto;
  height: 100%;
  transition: all 0.3s;
}

.modal.modal-sidebar.fade .modal-dialog .modal-content {
  height: 100%;
}

.modal.modal-sidebar.fade.show .modal-dialog {
  filter: blur(0);
  transform: translate(0, 0) rotate(0) scale(1);
  width: 100%;
}

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

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

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

.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: var(--c-white);
  border: 1px solid var(--c-secondary);
  outline: none;
  padding: 0.75rem 1rem;
  border-radius: var(--rd-xxl);
  font-weight: var(--f-w-bold);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0, 1);
}

.btn-primary:hover,
.btn-primary:focus:hover {
  background-color: var(--c-primary);
  border-color: var(--c-secondary);
  color: var(--c-secondary);
  transform: scale(0.95);
}

.btn-primary:focus {
  background: var(--c-secondary);
  color: var(--c-primary);
  border: 1px solid var(--c-secondary);
  box-shadow: none;
}

.btn-primary[disabled] {
  opacity: 0.6;
  background-color: var(--c-grey);
  border-color: var(--c-grey);
}

.btn-primary[disabled]:hover {
  cursor: default;
  transform: none;
  color: var(--c-white);
}

.btn-secondary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-transparent);
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
  outline: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--rd-xxl);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0, 1);
}

.btn-secondary:hover,
.btn-secondary:focus:hover {
  background-color: var(--c-primary);
  color: var(--c-white);
  transform: scale(0.95);
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  background: var(--c-transparent);
  color: var(--c-primary);
  border-color: var(--c-primary);
  box-shadow: none;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
}

.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
}

.btn-primary-rd {
  width: 40px;
  height: 40px;
  border-radius: var(--rd-50);
  position: relative;
  overflow: hidden;
  outline: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0, 1);
}

.btn-rd--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--c-primary);
  color: var(--c-white);
  border: 1px solid var(--c-primary);
  border-radius: var(--rd-50);
  transition: all 2s cubic-bezier(0.4, 0, 0, 1);
}

.btn-primary-rd > span {
  color: var(--c-white);
}

.btn-primary-rd:hover,
.btn-primary-rd:hover span {
  transform: scale(0.925);
}

.btn-inline {
  position: relative;
  overflow: hidden;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-transparent);
  color: var(--c-primary);
  border: 1px solid var(--c-transparent);
  outline: none;
  padding: 0;
  border-radius: var(--rd-50);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0, 1);
}

.btn-inline:hover {
  border-color: var(--c-tertiary);
}

.btn-inline:hover span {
  transform: scale(0.8);
}

.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-tertiary {
  border-bottom: 1px solid var(--c-transparent);
  transition: var(--ts-slow);
}

.btn-tertiary:hover {
  border-bottom: 1px solid var(--c-primary);
}

.btn-link {
  background-color: var(--c-transparent);
  color: var(--c-primary);
  text-decoration: underline;
}

.btn-filter {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  color: var(--c-black);
  font-weight: 500;
  background-color: var(--c-white);
  border: 1px solid var(--c-primary);
  border-radius: var(--rd-lg);
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: 85% 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;
}

.btn-del {
  background-color: var(--c-red);
  color: var(--c-white);
  border: 0;
  padding: 0.25rem 0.5rem;
  font-weight: var(--f-w-semibold);
  box-shadow: none;
  outline: 0;
  border-radius: var(--rd-sm);
  transition: all 0.3s;
}

.btn-del:hover {
  background-color: var(--c-red);
  color: var(--c-white);
  transform: scale(0.95);
}

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

/* ANIMATION BTN BULK DELETE */
#bulk-delete-button {
  opacity: 0;
  transform: translateX(20px) scale(0.95); /* start di kanan + sedikit kecil */
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); /* bounce */
}

#bulk-delete-button.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.btn-link:hover,
.btn-link:active,
.btn-link:focus {
  background-color: var(--c-transparent);
  color: var(--c-primary);
  text-decoration: underline;
}

.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;
}

.btn-back {
  transition: var(--ts-slow);
}

.btn-back:hover .btn-rd--icon {
  transform: scale(1.05);
}

#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;
}

table.dataTable tbody tr {
  transition: var(--ts-fast);
}

table.dataTable tbody tr:hover {
  background-color: var(--c-hover-card);
}

.dt-action {
  transition: var(--ts-fast);
}

.dt-action .dt-action-del {
  opacity: 0;
  transition: var(--ts-fast);
  transform: translateX(24px);
}

tr:hover .dt-action .dt-action-del {
  transform: translateX(0);
  opacity: 1;
}

/*====================================== SECTION COMPONENT WORDING ======================================*/
.f-main {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--c-black);
  transition: all 0.3s;
}

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

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

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

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

.f-l {
  font-size: 1.5rem !important;
}

.f-m {
  font-size: 1.25rem !important;
  font-weight: 300;
}

.f-s {
  font-size: 1rem !important;
  line-height: 1.2;
}

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

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

.f-xxs {
  font-size: 0.625rem;
}

span.f-xs {
  font-weight: 400;
}

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

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

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

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

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

.c-small {
  font-size: 0.625rem;
  line-height: 1.5;
}

.c-title,
footer .footer-list .c-title span {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.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-info {
  color: var(--c-info) !important;
}

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

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

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

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

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

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

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

.bg-body-2 {
  background-color: #f5f6fa !important;
}

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

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

.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-1 {
  line-height: 1;
}

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

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

.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;
}

.box-shadow-none {
  box-shadow: none !important;
}

.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);
}

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

.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-grey {
  background-color: var(--c-info) !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-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-180 {
  max-width: 11.25rem !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;
}

.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;
}

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

.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;
}

.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;
}

/*====================================== SECTION NAVBAR ======================================*/
header {
  background-color: var(--c-transparent);
  position: relative;
  /* top: 0;
  left: 0; */
  width: 100%;
  height: auto;
  z-index: 777;
  will-change: transform;
  transition:
    background 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 0.3s;
  transition:
    transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
    background 0.3s,
    -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

header nav {
  background-color: var(--c-body);
  position: relative;
  /* overflow: hidden; */
  width: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

header nav#navigation {
  border-bottom: 1px solid var(--c-primary);
}

header nav#navigation.scrolled {
  /* background-color: var(--c-tertiary); */
  border-bottom: 1px solid var(--c-primary);
}

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

.container-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.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;
}

.menu-navbar {
  z-index: 9999;
  position: static;
  transition: 0.25s ease;
}

.menu-navbar.active-abs {
  position: absolute;
  left: -48px;
}

.menu-navbar.active-abs button {
  border: 2px solid var(--c-body);
  font-size: 20px;
}

.menu-navbar button {
  width: 3rem;
  height: 3rem;
  outline: 0;
  border: 0;
  background-color: var(--c-primary);
  border-radius: var(--rd-50);
  color: var(--c-white);
  border: 1px solid var(--c-white);
  font-size: 12px;
  font-weight: var(--f-w-bold);
  transition: var(--ts-slow);
}

.menu-navbar:hover button {
  transform: scale(1.05);
}

.menu-name--wrapper {
  min-width: 0;
}

nav#navigation .menu-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

nav#navigation .menu-mid {
  flex: 1;
  min-width: 0;
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 128px;
}

nav#navigation .menu-user {
  position: relative;
  flex: 1;
  cursor: pointer;
}

.dropdown-menu-wrapper {
  display: none;
  opacity: 0;
  top: 40px;
  right: 0;
  position: absolute;
  border: 1px solid var(--c-grey);
  background-color: var(--c-body);
  min-width: 10rem;
  transition: all 0.3s;
}

.dropdown-menu-wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.dropdown-menu-wrapper.show {
  overflow: hidden;
  display: block;
  opacity: 1;
  transition: all 0.3s;
}

.dropdown-menu-list {
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid var(--c-grey);
  transition: all 0.3s;
}

.dropdown-menu-list:nth-last-child(1) {
  border-bottom: none;
}

.dropdown-menu-list:hover {
  background-color: #e6ecff;
}

.container-nav .nav-menu {
  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: 12px;
  text-align: center;
  margin: 0 auto;
}

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

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

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

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

.accordion-button,
.card,
.card.accordion-item,
.nav-item-mobile-accordion .accordion-item,
.nav-item-mobile-accordion .accordion-collapse,
.accordion-item:last-of-type .accordion-collapse,
.accordion-item:last-of-type {
  border-radius: 0 !important;
}

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

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

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

.nav-item-mobile-accordion .accordion-header {
  border-bottom: unset;
}

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

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

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

.faq-package .accordion-button::after {
  width: 2.5rem;
  height: 2.5rem;
  background-size: 2.5rem;
}

.faq-package.accordion-item {
  border-left: 0;
  border-right: 0;
  border-color: var(--c-primary);
  transition: all 0.3s;
}

.accordion-body {
  padding: 0 1.25rem;
}

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

.accordion-button.collapsed:hover {
  background-color: rgba(2, 70, 56, 0.14) !important;
}

.accordion-button:focus {
  border-color: var(--c-transparent);
  box-shadow: none;
}

.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}

.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;
}

.menu-container-mobile {
  z-index: 99999;
  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;
}

.container-nav .nav-menu li a {
  font-size: 16px;
}

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

.swiper {
  overflow: clip;
}

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

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

.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-prev {
  opacity: 1;
  left: 0;
  background-image: url("../images/general/arrow-left.svg");
  /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
}

.swiper-button-next {
  opacity: 1;
  right: 0;
  background-image: url("../images/general/arrow-right.svg");
  /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 45%;
  width: 2rem !important;
  height: 2rem !important;
  color: var(--c-black);
  border: 1px solid var(--c-transparent);
  background-color: var(--c-transparent);
  background-repeat: no-repeat;
  border-radius: var(--rd-50);
  background-size: 48px;
  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-transparent);
  /* color: var(--c-white); */
}

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

.swiper-pagination-wrapper {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  height: 20px;
  width: 100%;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0px !important;
  right: 0px;
}

.bullet-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  pointer-events: none;
  cursor: pointer;
}

.bullet-wrapper:first-child .bullet-line {
  display: none;
}

.bullet-line {
  position: relative;
  height: 2px;
  background: var(--c-white);
  padding: 0 1rem;
  z-index: 1;
  transition: width 0.4s ease;
}

.bullet-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--c-primary);
  transition: width 0.4s ease;
  z-index: 2;
}

.bullet-wrapper.bullet-filled .bullet-line::before {
  width: 100%;
}

.swiper-pagination-bullet {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  z-index: 2;
  pointer-events: auto !important;
  position: relative;
  border: 2px solid var(--c-white);
  background: var(--c-transparent);
  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-menu {
  /* min-height: 90dvh;
  padding-top: 6rem; */
  padding-top: 0;
}

.section-menu-add {
  /* min-height: 90dvh;
  padding-top: 6rem; */
  padding-top: 0;
}

.container-fluid {
  margin: 0 auto;
}

/*====================================== SECTION SIDEBAR ======================================*/

.layout-screen {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.sidebar-screen {
  min-width: 240px;
  width: 240px;
  height: 100vh;
  overflow-y: auto;
  background: #fff;
  border-right: 1px solid #e5e8ed;
  transition: 0.25s ease;
}

.main-screen {
  flex: 1;
  width: 80%;
  /* min-height: 100vh;
  overflow-y: auto; */
}

.sidebar-screen.collapsed {
  min-width: 0px;
  width: 0px;
  opacity: 0;
  pointer-events: none;
}

.layout-screen.sidebar-collapsed .sidebar-screen {
  min-width: 0px;
  width: 0px;
}

.layout-screen.sidebar-collapsed .main-screen {
  flex: 1;
}

/* .header {
    background: #fff;
    border-bottom: 1px solid #e5e8ed;
    position: sticky;
    top: 0;
    z-index: 20;
} */

main.content {
  /* position: relative; */
  padding: 24px;
  flex: 1;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  /* overflow-y: auto; */
}

.menu-sidebar--head {
  max-width: 204px;
  padding: 1rem 1rem 0 1rem;
  margin: 0 auto;
}

.menu-sidebar--content {
  padding: 0 1rem 1rem 1rem;
}

.menu-sidebar--nav .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.menu-sidebar--nav .menu-sidebar--ul {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--c-primary);
}

.menu-sidebar--nav .menu-sidebar--ul:last-child {
  border-bottom: 0;
}

.menu-sidebar--nav .menu-sidebar--content {
  padding: 0 1rem 1rem 1rem !important;
}

.menu-sidebar--nav .menu-sidebar--content .menu-sidebar--header h6 {
  font-size: 16px !important;
}

.menu-sidebar--nav .menu-sidebar--content .sub-header button {
  padding: 8px !important;
}

.menu-sidebar--nav .sub-header .accordion-header button span {
  font-size: 15px !important;
}

.menu-sidebar--nav .menu-sidebar--list a {
  font-size: 14px;
  padding: 0.75rem 1rem 0.75rem 1rem !important;
}

.menu-sidebar--nav .menu-sidebar--list:last-child {
  border-bottom: 0;
}

.menu-sidebar--nav .menu-sidebar--list a:hover .sidebar--icon {
  transform: translateX(8px);
}

.menu-sidebar--nav .sub-header {
  border: 0;
  border-bottom: 1px solid var(--c-primary);
}

.menu-sidebar--nav .sub-header:last-child {
  border-bottom: 0;
}

.menu-sidebar--nav .accordion-button.collapsed:hover {
  background-color: var(--c-hover-card) !important;
}

.menu-sidebar--nav .accordion-body {
  padding: 0;
}

/*====================================== SECTION COMPONENT ELEMENT ======================================*/
.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: var(--c-primary);
  font-weight: var(--f-w-medium);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb-list li + li::before {
  content: "/";
  margin: 0 8px;
  color: #9db5d4;
}

.breadcrumb-list a {
  text-decoration: none;
  color: #9db5d4;
  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;
}

.card-menu {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 204px;
  background-color: var(--c-white);
  border-radius: var(--rd-lg);
  border: 1px solid var(--c-primary);
  margin-bottom: 1rem;
  transition: var(--ts-slow);
}

.card-menu .card-menu--icon {
  background-color: #f9f9f9;
  border-radius: var(--rd-50);
  padding: 0.75rem;
}

.card-menu .cta {
  border-radius: var(--rd-50);
  transform: translateX(24px);
  opacity: 0;
  transition: var(--ts-fast);
}

.card-menu .cta .btn-rd--icon {
  background-color: var(--c-white);
  color: var(--c-primary);
}

.card-menu:hover {
  background-color: var(--c-hover-card);
  border-color: var(--c-secondary);
}

.card-menu:hover .card-menu--icon {
  background-color: #f9f9f97d;
}

.card-menu:hover .cta {
  opacity: 1;
  transform: translateX(0);
  box-shadow: 0px 4px 18px 4px rgb(152 169 219);
}

.card-menu a {
  position: relative;
  padding: 0.75rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.card-menu a::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, #ffffff00 0%, #ffffff 100%) 0%
    0% no-repeat padding-box;
  transition: var(--ts-fast);
}

.card-menu a:hover::before {
  width: 100%;
  background: transparent linear-gradient(180deg, #3d58a700 0%, #3d58a7 100%) 0%
    0% no-repeat padding-box;
}

.card-menu a:hover .card-menu--text p {
  color: var(--c-body) !important;
}

.menu-sidebar .menu-sidebar--content {
  padding: 0 0 1rem 0;
}

.menu-sidebar--list {
  border-bottom: 1px solid var(--c-primary);
}

.menu-sidebar--list a {
  display: block;
  padding: 0.75rem 0 0.75rem 0;
  transition: var(--ts-slow);
  overflow: hidden;
}

.menu-sidebar--list .sidebar--icon {
  opacity: 0;
  transform: translateX(24px);
  transition: var(--ts-fast);
}

.menu-sidebar--list a:hover {
  background-color: var(--c-hover-card);
}

.menu-sidebar--list a:hover .sidebar--icon {
  opacity: 1;
  transform: translateX(-8px);
}

.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-lg);
  justify-content: center;
  background-color: rgb(246 246 246);
}

.nav-primary li.nav-item {
  background-color: rgb(246 246 246);
  border: 1px solid var(--c-primary);
  border-radius: var(--rd-xl);
}

.nav-primary li.nav-item .nav-link {
  color: var(--c-info);
  border: 1px solid var(--c-transparent);
  border-radius: var(--rd-lg);
  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;
}

/*====================================== SECTION INVOICE - DATA TAGIHAN ======================================*/
.data-filter {
  background-color: var(--c-hover-card);
  border-radius: var(--rd-lg);
}
.data-filter--sticky {
  z-index: 7;
  position: sticky;
  top: -12px;
}

.data-filter--sticky .data-filter {
  background-color: #d8e0ffb3;
  backdrop-filter: blur(3px);
}

.periode-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 12px;
  border-radius: var(--rd-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.periode-dropdown select {
  min-width: 150px;
}

.card-summary {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  background-color: var(--c-white);
  border-radius: var(--rd-lg);
  border: 1px solid var(--c-primary);
  padding: 1rem;
  transition: var(--ts-slow);
}

.card-summary .card-summary--bg {
  position: absolute;
  top: 15%;
  right: 5%;
  transform: translate(-5%, 0%);
}

.card-menu .card-menu--icon {
  background-color: #f9f9f9;
  border-radius: var(--rd-50);
  padding: 0.75rem;
}

.draft-list--data {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--ts-fast);
}

.draft-list--data:hover {
  padding-left: 16px;
}

.draft-data--del {
  opacity: 0;
  position: absolute;
  left: -32px;
  transition: var(--ts-fast);
}

.draft-list--data:hover .draft-data--del {
  opacity: 1;
}

.draft-data--del .btn-transparent {
  border: 0;
  padding: 4px 6px;
  border-radius: var(--rd-sm);
  color: var(--c-red);
}

.draft-data--del .btn-transparent:hover {
  background-color: var(--c-red);
  color: var(--c-white);
}

.draft-list--data .draft-data--name {
  min-width: 86px;
}

.draft-list--data .draft-data--date {
  min-width: 160px;
}

.draft-list--data:last-child {
  margin-bottom: 0;
}

.hvr-ef {
  transition: var(--ts-fast);
}

.hvr-ef:hover {
  background-color: var(--c-hover-card);
}

/*====================================== SECTION INVOICE - INPUT TAGIHAN ======================================*/

.erp-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  background: #fff;
}

.erp-table-wrapper .wrap-text {
  min-width: 120px;
}

.erp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.erp-table.add-tagihan {
  min-width: 1000px;
}

.erp-table th,
.erp-table td {
  width: 60px;
  font-size: 11px;
  border: 1px solid #e3e6e9;
  padding: 6px 8px;
  /* white-space: nowrap; */
}

.erp-table thead th {
  width: 60px;
  background: #f7f8fa;
  font-size: 11px;
  font-weight: 800;
  position: sticky;
  top: 0;
  z-index: 10;
}

.erp-table input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.erp-table td.erp-customer {
  max-width: 200px;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.3;
  position: sticky;
  left: 0;
  z-index: 9;
  background: #fff;
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.08);
  transition: var(--ts-slow);
}

.erp-table td.erp-name-business {
  position: sticky;
  left: 140px;
  z-index: 9;
  background: #fff;
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.08);
  transition: var(--ts-slow);
}

.erp-table tbody tr {
  transition: var(--ts-slow);
}

.erp-table tbody tr:hover,
.erp-table tbody tr:hover td.erp-customer,
.erp-table tbody tr:hover td.erp-name-business {
  background: var(--c-hover-card);
}

.erp-table .erp-link {
  font-size: 11px;
}

.erp-table .erp-kva {
  max-width: 60px;
  white-space: normal;
  word-wrap: break-word;
}

.erp-max-th {
  max-width: 80px;
  white-space: normal;
  word-wrap: break-word;
}

.input-num {
  width: 60px;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-period {
  width: 220px;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-small {
  width: 60px;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.erp-table .form-control-sm {
  width: 100px;
  font-size: 10px;
}

.erp-table .file-upload,
.erp-table .upload-progress {
  width: 160px;
}

.erp-table .checkbox-table {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .erp-table .col-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} */

/* Responsive for 11 inch screens */
@media (max-width: 1152px) {
  .erp-table {
    font-size: 10px;
  }

  .erp-table th,
  .erp-table td {
    padding: 4px 6px;
  }
}

.cta-tagihan--draft {
  position: fixed;
  z-index: 99;
  bottom: 8px;
  left: 15%;
  transform: translate(20%, 0);
}

.cta-tagihan--draft .btn-secondary {
  background-color: var(--c-white);
  flex-direction: column;
  padding: 0.5rem 1rem;
}

.cta-tagihan--draft .btn-secondary span {
  line-height: 16px;
}

.cta-tagihan--draft .btn-secondary:hover,
.cta-tagihan--draft .btn-secondary:active,
.cta-tagihan--draft .btn-secondary:focus {
  border-color: var(--c-primary);
  background-color: var(--c-white);
  color: var(--c-primary);
}

.cta-tagihan--submit {
  position: fixed;
  z-index: 99;
  bottom: 16px;
  right: 16px;
}

.cta-tagihan--submit .btn-primary {
  box-shadow: 0 4px 20px rgb(0 0 0 / 30%);
}

.cta-tagihan--submit .btn-primary:active,
.cta-tagihan--submit .btn-primary:focus {
  background-color: var(--c-primary);
  border-color: var(--c-white);
  color: var(--c-white);
}

/*====================================== SECTION INVOICE - EDIT TAGIHAN ======================================*/
.payment-tagihan--status.unpaid {
  color: var(--c-info);
}

.payment-tagihan--status.partial {
  color: var(--c-grey);
}

.payment-tagihan--status.paid {
  color: var(--c-green);
}

.payment-tagihan--status.overdue {
  color: var(--c-red);
}

.payment-status {
  border: 1.5px solid;
  padding: 2px 12px;
}

.payment-tagihan--status.unpaid .payment-status {
  border-color: var(--c-info);
}

.payment-tagihan--status.partial .payment-status {
  border-color: var(--c-grey);
}

.payment-tagihan--status.paid .payment-status {
  border-color: var(--c-green);
  color: var(--c-green);
}

.payment-tagihan--status.overdue .payment-status {
  border-color: var(--c-red);
  color: var(--c-red);
}

.data-tagihan--list {
  /* background-color: #efefef; */
  background-color: var(--c-card);
}

.data-tagihan--list .form-group {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.data-tagihan--list .form-group:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

/*====================================== SECTION INVOICE - DETAIL TAGIHAN ======================================*/
.invoice-collapse {
  border: 1px solid #e4e6eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 0;
}

.invoice-collapse__header {
  cursor: pointer;
  background: #f7f8fa;
  transition: var(--ts-fast);
}

.invoice-collapse__header:hover {
  background: #f0f2f5;
}

.invoice-collapse__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.invoice-collapse__body .data-tagihan--list .form-group label {
  margin-bottom: 0;
}

.invoice-collapse__body .data-tagihan--list .form-group {
  padding-top: 0.5rem;
  margin-bottom: 0;
  transition: var(--ts-fast);
}

.invoice-collapse__body .data-tagihan--list .form-group:hover {
  background-color: var(--c-hover-card);
  padding: 0.5rem 1rem;
  transform: scale(1.05);
}

.invoice-collapse__body .data-tagihan--list .form-group:last-child {
  padding-bottom: 0.5rem;
}

.image-upload--container .image-upload--wrapper {
  width: 140px;
  height: 140px;
}

/*====================================== SECTION ENGINEERING PAGE ======================================*/

.engineering-data-content .erp-table-wrapper {
  border-radius: 0px;
}

.erp-engineering-accordion .accordion-button {
  padding: 1rem 1rem 1rem 0.75rem;
  box-shadow: none;
  outline: 0;
}

.erp-engineering-accordion .accordion-body {
  padding: 1rem;
}

.erp-engineering-accordion .accordion-item {
  padding: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.erp-engineering-accordion .accordion-item:nth-last-child(1),
.erp-engineering--data:nth-last-child(1) {
  border: 1px solid transparent;
}

.erp-engineering-accordion .accordion-item .accordion-button {
  justify-content: space-between;
  padding: 1rem 1rem 1rem 0.5rem;
  font-size: 14px;
}

.erp-engineering-accordion .accordion-item .accordion-button::after {
  margin-left: 0.5rem;
}

.erp-engineering-accordion .accordion-body {
  padding: 0;
  margin: 0.5rem 0.25rem;
}

.erp-engineering--data {
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px solid;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
}

.erp-engineering--data img {
  width: 10rem;
}

.qr-camera,
.capture-camera {
  background-color: var(--c-hover-card);
  min-width: 280px;
  min-height: 245px;
}

/*====================================== SECTION 404 ======================================*/
section.section-notfound {
  min-height: 100vh;
  height: 100%;
}

.section-notfound {
}

.not-found-content {
  /* height: 100vh; */
}

.modal-detail--ornament {
  display: none;
  z-index: 1;
  position: absolute;
  bottom: -72px;
  right: -48px;
  max-width: 160px;
  pointer-events: none;
}

/*====================================== SECTION EMPTY WRAPPER ======================================*/
.empty-state-wrapper .empty-state-image {
  max-width: 20rem;
}

/*====================================== SECTION FOOTER ======================================*/

footer {
  /* margin-top: 3rem; */
  padding: 0 0 0 0;
  position: relative;
  z-index: 55;
  background-color: var(--c-primary);
}

.footer-logo {
  border-top: 1px solid var(--c-white);
  border-bottom: 1px solid var(--c-white);
}

.footer-container {
  padding: 2rem;
  border-left: 1px solid var(--c-white);
  border-right: 1px solid var(--c-white);
}

.footer-menu ul {
  margin: 0;
}

.footer-menu ul li {
  display: inline-block;
  transition: all 0.3s !important;
}

.footer-menu ul li a {
  display: inline-block;
  width: auto;
  font-weight: 500;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 0.125rem;
  transition: all 0.3s !important;
}

.footer-location--link a {
  padding: 0.125rem;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s !important;
}

.footer-menu ul li a:hover,
.footer-location--link a:hover {
  color: var(--c-secondary) !important;
  border-top: 1px solid var(--c-secondary);
  border-bottom: 1px solid var(--c-secondary);
}

.footer-socmed--wrapper:hover a {
  background-color: var(--c-secondary);
  transform: scale(1.1);
}

.footer-menu-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  border-top: 1px solid var(--c-white);
}

.wa-floating {
  z-index: 999;
  position: fixed;
  bottom: 2%;
  right: 20px;
  transition: all 0.3s;
}

.wa-floating:hover {
  transform: translateY(-10px);
  /*box-shadow: 0 8px 18px 0 rgba(0,0,0,.18);*/
}

.wa-floating a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

.wa-floating p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 16px;
  color: #0303c6;
}

.wa-floating .image {
  max-width: 60px;
}

@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);
}

.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;
}

.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: 2.5rem;
}

.row-gap-4 {
  row-gap: 3rem;
}

.row-gap-5 {
  row-gap: 3.5em;
}

/*====================================== SECTION LOGIN PAGE & SECTION REGISTER PAGE ======================================*/

.section-login {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: #3d58a7;
  background: linear-gradient(
    140deg,
    rgba(61, 88, 167, 0.53) 0%,
    rgba(245, 245, 245, 1) 50%,
    rgba(61, 88, 167, 1) 100%
  );
}

.checkbox-label {
  font-size: 0.85rem;
  color: #333;
}

.show-pwd {
  position: absolute;
  z-index: 2;
  right: 16px;
  top: 45%;
  transform: translate(0, 50%);
}

.form-pass input.form-control {
  padding-right: 2.5rem;
}

.form-phone-number .select2-container--default {
  border-bottom: 1px solid var(--c-black);
  max-width: 6rem;
}

.form-phone-number .select2-container--default .select2-selection--single {
  background-color: transparent;
  border-bottom: none !important;
}

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

/*====================================== 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;
  transform: scale(1) !important;
  /* animation: shimmer 0.3s infinite linear; */
}

.skeleton-picture,
.skeleton-text {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: var(--c-skeleton);
  border-radius: 1rem;
}

.skeleton-card .card-group--time .wrapper .skeleton-text,
.skeleton-card .group--body-wrapper .group--body-coach .skeleton-text {
  width: 7.5rem;
}

.skeleton-card.booking-card .booking-card--link::before {
  content: unset;
}

.skeleton-card .player-avatar {
  background-color: unset;
  border: none;
}

.skeleton-picture.xs {
  height: 1rem;
}

.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(2, 70, 57, 0.5) 0%,
    rgba(2, 70, 57, 0.5) 30%,
    rgba(2, 70, 57, 0.2) 70%,
    rgba(2, 70, 57, 0.05) 100%
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}
