body.is_open {
  overflow: hidden;
}

.citric-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.citric-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border-radius: 2px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.citric-modal-header {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: flex-end;
}

.citric-modal-close {
  color: #aaa;
  font-size: 2em;
  font-weight: 100;
  cursor: pointer;
}

.citric-modal-close:hover {
  color: #000;
}

.citric-modal-body {
  padding: 1.5em 1.5em 5vh;
  position: relative;
}

.citric-modal-navigation {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 800px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.citric-nav-btn {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.75);
  border: 0;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  pointer-events: auto;
  width: 2.5em;
  height: 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.citric-nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.citric-prev-btn {
  visibility: hidden;
  opacity: 0;
  transform: translateX(10px);
}
.citric-prev-btn.active {
  visibility: visible;
  opacity: 1;
}

.citric-next-btn {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-10px);
}
.citric-next-btn.active {
  visibility: visible;
  opacity: 1;
}

.citric-category {
  background-color: #f0f0f0;
  padding: 0.5em 1em;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1em;
  font-size: 0.9em;
}

.citric-image img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  margin-bottom: 1em;
}

.citric-title {
  margin-bottom: 1.25em;
}

.citric-content {
  line-height: 1.8em;
}

.citric-modal-loading {
  text-align: center;
  padding: 50px;
}

@media (max-width: 768px) {
  .citric-modal-content {
    width: 95%;
    margin: 10px auto;
    max-height: 90vh;
  }
  .citric-nav-btn {
    margin: 0;
    position: relative;
  }
  .citric-modal-navigation {
    position: relative;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=citric-modal.css.map */