.loading__icon_small {
  display: inline-flex;
  width: 26px;
  height: 26px;
  animation: rotateLinear 1s linear infinite;
  transform-origin: center;
}

.invalid-feedback {
  margin-top: 8px;
  color: #C62828;
}

.qr__image_container {
  margin-bottom: 11px;
}

.happy-woman-img {
  width: 300px;
  position: absolute;
  top: -260px;
  left: 120px;
  z-index: -1;
}

.badge-container-small,
.badge-container-medium,
.badge-container-large {
  font-size: 22px;
}

.display-desktop {
  display: none;
}

.display-mobile {
  display: block;
}

.d-none {
  display: none !important;
}

@media (min-width: 1025px) {
  .badge-container-small {
    font-size: 28px;
  }

  .badge-container-meduim {
    font-size: 36px;
  }

  .badge-container-large {
    font-size: 50px;
  }

  .display-desktop {
    display: block;
  }

  .display-mobile {
    display: none;
  }
}

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.toast {
  color: white;
  background: #007bff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
  min-width: 300px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s ease;
}

/* Slide up to appear */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: #28a745;
}

.toast.error {
  background: #b72635;
}

.bg-success {
  background-color: rgb(40, 167, 69) !important;
}

.bg-danger {
  background-color: rgb(220, 53, 69) !important;
}

.bg-primary {
  background-color: rgb(13, 110, 253) !important;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
}

.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.ai-icon {
  position: absolute;
  top: -30px;
}

.inactivity-modal {
  display: none;
  position: fixed;

  inset: 0;
  z-index: 20;
  overflow: hidden;
}

.inactivity-modal main {
  height: 100%;
}

.inactivity-modal.show {
  display: flex;
}

.left-arrow {
  position: absolute;
  left: 200px;
  top: 75px;
}

.right-arrow {
  position: absolute;
  width: 60px;
  right: 300px;
  top: 50px;
  transform: rotate(15deg);
}

.inactivity-robot-desktop {
  display: inline;
}

.inactivity-robot-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .left-arrow {
    width: 86px;
    left: 220px;
    top: 20px;
  }

  .right-arrow {
    width: 50px;
    right: 215px;
    top: 150px;
    transform: rotate(20deg);
  }

  .inactivity-robot-desktop {
    display: none;
  }

  .inactivity-robot-mobile {
    display: inline;
  }
}

@media (max-width: 400px) {
  .left-arrow {
    width: 76px;
    left: 200px;
  }

  .right-arrow {
    right: 195px;
  }
}

.inactivity-buttons-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}

.inactivity-buttons-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 300px;
  gap: 32px;
}

.hero-profil-1__detail.scroll .custom-scrollbar {
  background-color: #144be0;
  display: none;
}

.summary__block {
  max-height: 400px;
  height: auto !important;
  overflow: auto;
  scrollbar-width: none;
  display: none;
}

.summary__block::-webkit-scrollbar {
  display: none;
}

.summary__block.active {
  display: block;
}

.summary__block.scroll {
  padding: 0 43px 0 0;
}

.summary__block.scroll .custom-scrollbar {
  display: block;
  top: 20px;
  bottom: 20px;
  height: auto;
}

.hero-profil-1__detail.scroll .summary__block {
  max-height: 320px;
}
.subfooter__body {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}