body.lm-popup-open {
  overflow: hidden;
}

.lm-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 0;
  z-index: 9999;
  opacity: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transition: all 0.3s ease;
}

.lm-popup.open {
  opacity: 1;
}

.lm-popup * {
  box-sizing: border-box;
}

.popup-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.lm-popup-wrapper {
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  min-height: 400px;
  color: white;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background-size: cover;
  background-position: center;
  margin: auto 0;
}

.lm-popup-image,
.lm-popup-content {
  min-width: 0;
}

.lm-popup-image {
  flex: 1 1 100%;
  position: relative;
  z-index: 2;
}

.lm-popup-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.lm-popup-content {
  flex: 1 1 100%;
  padding: 4rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 769px) {
  .lm-popup-has-image .lm-popup-image {
    flex: 0 0 calc(40% - 1rem);
    max-width: calc(40% - 1rem);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .lm-popup-has-image .lm-popup-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .lm-popup-has-image .lm-popup-content {
    flex: 0 0 calc(60% - 1rem);
    max-width: calc(60% - 1rem);
  }
}
@media (max-width: 768px) {
  .lm-popup {
    padding: 2rem 0;
    align-items: flex-start;
  }
  .lm-popup-wrapper {
    min-height: 0;
    margin: 0 auto;
    gap: 1.5rem;
  }
  .lm-popup-content {
    padding: 2rem 1.5rem;
  }
  .lm-popup h1,
  .lm-popup h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .lm-popup p {
    font-size: 0.95rem;
  }
  .lm-popup .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    margin-top: 1rem;
  }
}
.lm-popup h1,
.lm-popup h2 {
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--lm-popup-text-color, #ffffff);
}

.lm-popup p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.lm-popup .btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  margin-top: 1.5rem;
  background: #96c948;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.lm-popup .btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lm-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  z-index: 3;
  text-decoration: none !important;
}

/*# sourceMappingURL=style.css.map */
