@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(10%);
  }
  to {
    transform: translateX(0);
  }
}

.ll-popup {
  display: none !important;
  inset: 0;
  overflow: auto;
  opacity: 0;
  padding: 10px;
  position: fixed;
  z-index: 101;

  ul {
    margin-left: 1.5em;
  }

  li {
    margin-bottom: 0.25em !important;
  }
}

.ll-popup-content {
  margin-bottom: auto !important;
  position: relative;
}

.ll-popup--visible {
  display: flex !important;
}

.ll-popup--fadeIn {
  animation: fadeIn 0.5s forwards;

  .ll-popup-content {
    animation: fadeIn 0.5s forwards;
  }
}

/* Close button */
.ll-popup-close {
  color: var(--contrast-3);
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  padding: 5px 15px;
  position: absolute;
  right: 0;
  top: 0;
}

.ll-popup-close:hover,
.ll-popup-close:focus {
  color: var(--contrast);
  text-decoration: none;
}

/* Prevent body scrolling when popup is open */
body.no-scroll {
  overflow: hidden;
}

.ll-newsletter-optin {
  column-gap: 5px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -12px;

  /*   .cr_button:hover,
  .cr_button:focus {
    background-color: white !important;
    color: var(--contrast);
  } */
}
