.nft {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 300px;
  margin: 5rem auto;
  border-radius: 0.7rem;
  overflow: hidden;
  transition: 0.5s all;
}
.nft hr {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(136, 136, 136, 0.3333333333);
  margin-top: 0;
}
.nft ins {
  text-decoration: none;
}
.nft figcaption {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #ecf0f1;
  margin-top: 15px;
  background: #3f51b5;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;   
  justify-content: center; 
}
.nft a {
  text-decoration: none;
}
.nft .main {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.nft .main .tokenImage {
  border-radius: 0.5rem;
  max-width: 100%;
  height: 150px;
}
.nft .main .description {
  margin: 0.5rem 0;
  color: #a89ec9;
}
.nft .main .tokenInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nft .main .tokenInfo .price {
  display: flex;
  align-items: center;
  color: #ee83e5;
  font-weight: 700;
}
.nft .main .tokenInfo .price ins {
  margin-left: -0.3rem;
  margin-right: 0.5rem;
}
.nft .main .tokenInfo .duration {
  display: flex;
  align-items: center;
  color: #a89ec9;
  margin-right: 0.2rem;
}
.nft .main .tokenInfo .duration ins {
  margin: 0.5rem;
  margin-bottom: 0.4rem;
}
.nft .main .creator {
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
  margin-bottom: -0.3rem;
}
.nft .main .creator ins {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  font-family: inherit;
}
.nft .main .creator .wrapper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  padding: 0.3rem;
  margin: 0;
  margin-right: 0.5rem;
  border-radius: 100%;
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.6666666667);
}
.nft .main .creator .wrapper img {
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  width: 2rem;
  height: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.nft:hover {
  transform: scale(1.015);
}
.nft:hover ::before {
  filter: brightness(0.5);
  top: -100%;
  left: 200%;
}/*# sourceMappingURL=pr_card.css.map */