.purchase__popup2 {
  height: 100vh;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background-color: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
}

.purchase__popup2.visible {
  opacity: 1;
  visibility: visible;
}

.popup2 {
  background-color: #141414;
  padding: 0.3cm 0.5cm;
  border-radius: 12px;
  margin-inline: 0.5cm;
  width: 100%;
  max-width: 600px;
  border: 2px solid rgba(46, 46, 46, 0.3);
}

.popup2__title-dec {
  background-color: #f3f3f3;
  width: 100px;
  height: 4px;
  border-radius: 20px;
}

.popup2__title {
  font-family: inherit;
  font-weight: bold;
  font-size: 2.5rem;
  margin-top: 0.3cm;
  line-height: 1;
  margin-inline: 15px;
  text-align: center;
}

.popup2__desc {
  color: #5c5c5c;
  font-family: inherit;
  font-size: 0.9rem;
  margin-top: 0.3cm;
  margin-inline: 15px;
  line-height: 1.1;
  text-align: center;
}

.popup2__desc span {
  color: #f3f3f3;
}

.popup2__btns {
  margin-top: 25px;
  display: flex;
  gap: 1cm;
}

.popup2__btn2 {
  border: 2px solid #4554fd;
  border-radius: 20px;
  background-color: #5865f2;
  padding: 0.7rem 1.2rem;
  color: inherit;
  transition: 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.popup2__btn2:hover {
  border: 2px solid #3444fd;
  color: #d6d6d6;
  background-color: #4f5dfa;
}

.popup2__btn2 i {
  margin-right: 7px;
}

.popup2__btn {
  border: 2px solid rgba(46, 46, 46, 0.2);
  border-radius: 20px;
  background-color: rgba(46, 46, 46, 0.1);
  padding: 0.75rem 1rem;
  color: inherit;
  transition: 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.popup2__btn:hover {
  border: 2px solid rgba(46, 46, 46, 0.4);
  color: #d6d6d6;
  background-color: rgba(46, 46, 46, 0.3);
}

.popup2__btn i {
  margin-right: 7px;
}

.title__anim::after {
  content: ".";
  animation: titleanim 2s steps(3, end) infinite;
}

@keyframes titleanim {
  0% {
    content: ".";
  }
  33% {
    content: "..";
  }
  66% {
    content: "...";
  }
  100% {
    content: ".";
  }
}
