#pop-up {
  display: flex;
  color: var(--text-color);
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
#pop-up h3 {
  text-align: center;
  padding: 0 25px;
  margin-bottom: 15px;
}
#pop-up > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8px;
  min-width: 15vw;
  max-width: 70vw;
  background-color: var(--background-darker-hover);
  border-radius: 8px;
  margin: 0 20px 0 20px;
}
#pop-up > div > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#pop-up button {
  width: 50px;
  height: 50px;
  color: var(--text-color);
  margin: 0 3px;
  background-color: var(--orange);
  border: 2px solid var(--orange);
  padding: 5px;
  border-radius: 8px;
}
#pop-up button:hover {
  background-color: var(--orange);
  border: 2px solid var(--orange);
}
#pop-up button svg {
  width: 70%;
  height: 70%;
}
#pop-up button path {
  fill: whitesmoke;
}
#pop-up .taip {
  background-color: var(--background-darker-hover);
}
#pop-up .taip path {
  fill: var(--text-color);
}
#pop-up .round {
  border-radius: 50%;
}
#pop-up .scale {
  transition: transform 0.2s;
}
#pop-up .scale:hover {
  transform: scale(1.1);
}
#pop-up .cancel {
  padding: 0 10px;
  width: auto;
  height: 50px;
}
#pop-up .copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 10px;
}
#pop-up .copy input[type=text] {
  flex-grow: 1;
  margin: 0 5px;
  color: var(--text-color);
  background-color: var(--background-light);
  border-color: var(--background-light);
}
#pop-up .copy input[type=text]:focus {
  outline: none;
  box-shadow: none;
}
#pop-up .copy button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 50%;
  aspect-ratio: 1;
  height: 38px;
  width: 38px;
}
#pop-up .copy button path {
  fill: whitesmoke;
}
#pop-up .copy button.copied {
  background-color: var(--background-darker-hover);
}
#pop-up .copy button.copied path {
  fill: var(--text-color);
}
#pop-up .dismiss {
  width: 95%;
  margin: 15px 0 0 0;
  background-color: var(--background-darker-hover);
}
#pop-up .dismiss path {
  fill: var(--text-color);
}
#pop-up .dismiss.copied {
  background-color: var(--orange);
}
#pop-up .dismiss.copied:hover {
  background-color: var(--orange);
}
#pop-up .dismiss.copied path {
  fill: whitesmoke;
}
#pop-up .setSelect {
  margin-top: 5px;
}
#pop-up .setSelect button {
  width: clamp(14px, 8vw, 30px);
  background-color: var(--background-light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 8px;
}
#pop-up .setSelect button.active {
  border: 2px solid var(--orange);
  color: var(--orange);
}
#pop-up .setSelect button:hover {
  background-color: var(--background-darker-hover);
}
#pop-up .setSelect .cancel {
  width: auto;
  border: 2px solid var(--background-light);
}
#pop-up .setSelect .cancel:hover {
  background-color: var(--orange);
}
#pop-up .getShare {
  padding: 20px 20px;
}
#pop-up .getShare .btn-warining:hover {
  transform: scaleX(1) scaleY(1);
}
#pop-up .getShare h3 {
  margin-bottom: 0;
  padding: 0;
}
#pop-up .getShare .header {
  width: 100%;
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-left: 10px;
  flex: 0;
}
#pop-up .getShare .compatibility > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2%;
  margin: 5px 0;
}
#pop-up .getShare .compatibility > div svg {
  height: 40px;
  width: auto;
}
#pop-up .getShare .compatibility > div path {
  fill: var(--text-color);
}
#pop-up .getShare .parts {
  display: block;
  margin-bottom: 5px;
  max-height: 50vh;
  overflow-y: auto;
  padding: 0 5px;
}/*# sourceMappingURL=pop-up.css.map */