.overlay--purchased {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay--purchased.show {
  opacity: 1;
  visibility: visible;
}

.overlay__wrapper--purchased {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 99.75%;

  transform: translateY(100%);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.overlay--purchased.show .overlay__wrapper--purchased {
  transform: translateY(0);
}

.overlay__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.overlay__image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 15px;
  border-radius: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay__details {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 15px;
}

.overlay__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.overlay__row:first-child {
  padding-top: 0;
}

.overlay__row:last-child {
  border: none;
  padding-bottom: 0;
}

.overlay__row-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.overlay__row-icon {
  height: 20px;
}

.overlay__row-content {
  color: rgba(255, 255, 255, 0.5);
}
