:root {
  --dp-primary-color: #000;
  --dp-secondary-color: #000;
  --dp-tertiary-color: #fff;
}

@keyframes directory-plugin-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes directory-plugin-sonar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.directory-plugin-share-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.directory-plugin-share-popup {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(105, 151, 198, 0.2);
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  position: relative;
}
.directory-plugin-share-popup p {
  margin: 2rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  font-weight: 600;
  font-size: 18px;
  color: #333;
}
.directory-plugin-share-popup .directory-plugin-share-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.directory-plugin-share-popup .directory-plugin-share-links a {
  text-decoration: none;
  color: var(--dp-primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 36px;
  padding: 0.5rem;
  border-radius: 8px;
}
.directory-plugin-share-popup .directory-plugin-share-links a:hover {
  color: var(--dp-secondary-color);
  transform: scale(1.1);
}
.directory-plugin-share-popup .directory-plugin-copy-link-container {
  margin: 2rem;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.directory-plugin-share-popup .directory-plugin-copy-link-button {
  background-color: #f8f8f8;
  border: 1px solid #e6e5e5;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  padding: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.directory-plugin-share-popup .directory-plugin-copy-link-button:hover {
  background-color: #f0f0f0;
  border-color: #cccccc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.directory-plugin-share-popup .directory-plugin-copy-link-button i {
  font-size: 16px;
  margin-right: 5px;
}
.directory-plugin-share-popup .directory-plugin-copy-link-feedback {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #ffffff;
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.directory-plugin-share-popup .directory-plugin-copy-link-feedback.visible {
  opacity: 1;
  transform: translate(-50%, -10px);
}
.directory-plugin-share-popup .directory-plugin-share-close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 18px;
  color: #bcbcbc;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
}
.directory-plugin-share-popup .directory-plugin-share-close-button:hover {
  color: #dc3545;
  transform: scale(1.2);
}

@media (min-width: 768px) {
  .directory-plugin-share-popup .directory-plugin-share-links {
    gap: 2rem;
  }
  .directory-plugin-share-popup .directory-plugin-share-links a {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=share-popup.css.map */
