.toast-enter {
    animation: slideInRight 0.3s ease-out;
}

.toast-exit {
    animation: slideOutRight 0.3s ease-in;
}

.toast-enter.left-4 {
    animation: slideInLeft 0.3s ease-out;
}

.toast-exit.left-4 {
    animation: slideOutLeft 0.3s ease-in;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.toast-progress-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    animation-name: progress;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

:root {
    --ll-color-primary: #2659dc;
    --ll-color-secondary: #00AC81;
    --ll-color-background: #ffffff;
    --ll-color-text-primary: #181822;
    --ll-color-text-secondary: #8b8b9e;
    --ll-font-heading: Arial;
    --ll-font-body: Arial;
}

#itv41g {
    opacity: 1;
}

#iu7bl9 {
    position: relative;
}

#iqygawg {
    width: 40px;
    height: 40px;
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
    border-bottom-right-radius: 300px;
    border-bottom-left-radius: 300px;
}

#i7ujmpg {
    width: 40px;
    height: 40px;
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
    border-bottom-right-radius: 300px;
    border-bottom-left-radius: 300px;
}

@keyframes slideInRight {
    from {
        transform: translateX(calc(100% + 1rem));
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(calc(100% + 1rem));
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(calc(-100% - 1rem));
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(calc(-100% - 1rem));
        opacity: 0;
    }
}

@keyframes progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}
.ad-disclosure-bar {
  width: 100%;
  position: relative;
  z-index: 9999;
  background: linear-gradient(135deg, #154F5A, #216978);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ad-disclosure-bar__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

.ad-disclosure-bar__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-disclosure-bar__text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

@media (max-width: 640px) {
  .ad-disclosure-bar__inner {
    flex-direction: column;
    gap: 6px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .ad-disclosure-bar__label {
    font-size: 10px;
    padding: 3px 8px;
  }
}