@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
nav.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 100px;
  gap: 75px;
  z-index: 15;
}
nav.header img {
  width: 81px;
  height: 81px;
}
nav.header ul {
  display: flex;
  gap: 25px;
  color: #fff;
  margin: 0;
}
nav.header ul li {
  font-weight: 600;
  font-size: 20px;
  padding: 5px 10px;
  margin: 0;
  transition: color 0.35s ease;
  text-decoration: none;
  list-style: none;
  white-space: nowrap;
}
nav.header ul li:hover {
  color: rgba(255, 255, 255, 0.75);
}
nav.header .burger-menu {
  display: none;
}
@media (max-width: 1024px) {
  nav.header {
    box-sizing: border-box;
    padding: 0 30px;
    gap: 25px;
    justify-content: space-between;
  }
  nav.header ul {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    margin: 0;
    background-color: rgba(26, 26, 26, 0.75);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    padding: 60px 15px;
    box-sizing: border-box;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0 0 15px 15px;
    transform: translateY(-100%);
  }
  nav.header ul:not(.no-animation) {
    transition: all 0.5s ease;
  }
  nav.header ul li {
    width: 80%;
  }
  nav.header .burger-menu {
    display: block;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 2;
    color: #fff;
  }
  nav.header .burger-menu i {
    font-size: 25px;
  }
  nav.header .burger-menu:hover {
    color: rgba(255, 255, 255, 0.75);
  }
  nav.header .burger-menu:active {
    outline: none;
    border: none;
    color: rgb(255, 255, 255);
  }
  nav.header .burger-menu:focus {
    outline: none;
    border: none;
    color: rgb(255, 255, 255);
  }
  nav.header .burger-menu.active .burger-icon {
    transform: rotate(45deg);
  }
  nav.header.active ul {
    transform: translateY(0);
    transition: all 0.5s ease;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding: 0 100px;
  box-sizing: border-box;
  height: 70px;
  width: 100%;
  background: #343236;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
@media (max-width: 1024px) {
  footer {
    display: none;
  }
}

























body {
  position: relative;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  background: #303030; /* Fond foncé */
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8); /* Assombrissement du fond */
  background-image: linear-gradient(rgba(30, 29, 29, 0.6), rgba(30, 29, 29, 0.6)), url("../assets/wallpaper_site.jpg"), url("../assets/wallpaper_site.jpg");
  background-repeat: repeat-x; /* Répéter l'image de fond horizontalement */
  background-size: auto 100%; /* Garder les proportions de l'image et ajuster la hauteur */
  background-position: 0 0;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  z-index: -1;
  background-attachment: fixed;
  animation: animatedBackground 400s linear infinite; /* Accélérer l'animation */
}

@keyframes animate {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-1vw,-1vw);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(1vw,1vw);
    }
}

@keyframes animatedBackground {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 10000px 0;
    }
}

@keyframes scaleLogo {
    0% { 
        transform: scale(100%);
    }
    50% { 
        transform: scale(107%);
    }
    100% {
        transform: scale(100%);
    }
}

main {
  flex: 1;
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  min-height: 100%;
}





























.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #6C32C1;
  box-shadow: inset 0px 0px 14px rgba(255, 255, 255, 0.21);
  border-radius: 5px;
  border: none;
  outline: none;
  padding: 12px 48px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.btn i {
  font-size: 18px;
  margin: 0;
}
.btn:active {
  transform: translateY(1px);
}
.btn:hover {
  cursor: pointer;
  opacity: 85%;
}
.btn.account {
  background: #6d32c7;
}
.btn.twitch {
  background: #9146FF;
}
.btn.discord {
  background: #5865F2;
}

.selectMenu {
  position: relative;
  width: 220px;
  height: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.selectMenu .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  padding: 10px 10px;
  background: rgba(19, 19, 19, 0.75);
  border-radius: 5px;
}
.selectMenu .header i {
  margin-right: 10px;
  font-size: 16px;
  transition: all 0.2s ease;
}
.selectMenu .header .placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-left: 10px;
}
.selectMenu .header .placeholder span {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.35);
}
.selectMenu .header .placeholder p {
  margin: 0;
  font-size: 14px;
}
.selectMenu .header .placeholder.rarity::after {
  font-size: 14px;
  content: "Rareté";
}
.selectMenu .header .placeholder.commun span {
  background-color: rgb(164, 232, 179);
  box-shadow: 0px 0px 5px rgba(164, 232, 179, 0.35);
}
.selectMenu .header .placeholder.commun::after {
  content: "Commun";
}
.selectMenu .header .placeholder.rare span {
  background-color: rgb(12, 182, 255);
  box-shadow: 0px 0px 5px rgba(12, 182, 255, 0.35);
}
.selectMenu .header .placeholder.rare::after {
  content: "Rare";
}
.selectMenu .header .placeholder.epic span {
  background-color: rgb(138, 43, 226);
  box-shadow: 0px 0px 5px rgba(138, 43, 226, 0.35);
}
.selectMenu .header .placeholder.epic::after {
  content: "Épique";
}
.selectMenu .header .placeholder.legendaire span {
  background-color: rgb(255, 188, 18);
  box-shadow: 0px 0px 5px rgba(255, 188, 18, 0.35);
}
.selectMenu .header .placeholder.legendaire::after {
  content: "Légendaire";
}
.selectMenu .header .placeholder.unique span {
  background-color: rgb(237, 37, 193);
  box-shadow: 0px 0px 5px rgba(237, 37, 193, 0.35);
}
.selectMenu .header .placeholder.unique::after {
  content: "Unique";
}
.selectMenu .header .placeholder.event span {
  background-color: rgb(244, 57, 59);
  box-shadow: 0px 0px 5px rgba(244, 57, 59, 0.35);
}
.selectMenu .header .placeholder.event::after {
  content: "Event";
}
.selectMenu .header:hover {
  cursor: pointer;
}
.selectMenu .options {
  position: absolute;
  top: 56px;
  width: 100%;
  padding: 10px 10px;
  display: none;
  flex-direction: column;
  gap: 2.5px;
  background: rgba(19, 19, 19, 0.75);
  border-radius: 5px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 1;
}
.selectMenu .options .option {
  display: flex;
  flex-direction: row;
  padding: 6px 10px;
  border-radius: 5px;
}
.selectMenu .options .option a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
}
.selectMenu .options .option a span {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.35);
}
.selectMenu .options .option a p {
  margin: 0;
  font-size: 14px;
}
.selectMenu .options .option a.commun span {
  background-color: rgb(164, 232, 179);
  box-shadow: 0px 0px 5px rgba(164, 232, 179, 0.35);
}
.selectMenu .options .option a.rare span {
  background-color: rgb(12, 182, 255);
  box-shadow: 0px 0px 5px rgba(12, 182, 255, 0.35);
}
.selectMenu .options .option a.epic span {
  background-color: rgb(138, 43, 226);
  box-shadow: 0px 0px 5px rgba(138, 43, 226, 0.35);
}
.selectMenu .options .option a.legendaire span {
  background-color: rgb(255, 188, 18);
  box-shadow: 0px 0px 5px rgba(255, 188, 18, 0.35);
}
.selectMenu .options .option a.unique span {
  background-color: rgb(237, 37, 193);
  box-shadow: 0px 0px 5px rgba(237, 37, 193, 0.35);
}
.selectMenu .options .option a.event span {
  background-color: rgb(244, 57, 59);
  box-shadow: 0px 0px 5px rgba(244, 57, 59, 0.35);
}
.selectMenu .options .option a:hover {
  cursor: pointer;
}
.selectMenu .options .option .radio {
  display: none;
}
.selectMenu .options .option:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.selectMenu.active .header i {
  transform: rotate(90deg);
  transition: all 0.2s ease;
}
.selectMenu.active .options {
  display: flex;
}

.inputIcon {
  width: 220px;
  padding: 9.5px 10px;
  height: 20px;
  background: rgba(19, 19, 19, 0.75);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 7.5px;
}
.inputIcon i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.inputIcon input {
  background: none;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.inputIcon input::-moz-placeholder {
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.inputIcon input::placeholder {
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 1024px) {
  main {
    margin-bottom: 100px;
  }
}
@media (max-width: 1024px) {
  main {
    margin-bottom: 50px;
  }
}
a {
  text-decoration: none;
  color: #fff;
}

main {
  padding: 0 100px;
  gap: 75px;
  box-sizing: border-box;
  align-items: flex-start;
}

h2 {
  font-weight: 600;
  font-size: 22px;
  margin: 0;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.popupWrapper {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  box-sizing: border-box;
  z-index: 10;
  background-color: rgba(19, 19, 19, 0.5);
  -webkit-backdrop-filter: blur(10.5px);
          backdrop-filter: blur(10.5px);
}
.popupWrapper .card {
  background-color: rgba(19, 19, 19, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 5px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.popupWrapper .card p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.popupWrapper .card div {
  display: flex;
  gap: 15px;
}
.popupWrapper .card div .popupBtn {
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 500;
}
.popupWrapper .buyPopup, .popupWrapper .confirmPopup {
  background: rgba(19, 19, 19, 0.7);
  border-radius: 4px;
  width: 450px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.popupWrapper .buyPopup .headInfo, .popupWrapper .confirmPopup .headInfo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.popupWrapper .buyPopup .headInfo img, .popupWrapper .confirmPopup .headInfo img {
  width: 55px;
  height: 55px;
}
.popupWrapper .buyPopup .headInfo > div, .popupWrapper .confirmPopup .headInfo > div {
  display: flex;
  justify-content: space-between;
  gap: 3px;
  width: 100%;
}
.popupWrapper .buyPopup .headInfo > div > div.statsWrapper, .popupWrapper .confirmPopup .headInfo > div > div.statsWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.popupWrapper .buyPopup .headInfo > div > div p, .popupWrapper .confirmPopup .headInfo > div > div p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}
.popupWrapper .buyPopup .headInfo > div > div p.owner, .popupWrapper .confirmPopup .headInfo > div > div p.owner {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.popupWrapper .buyPopup .headInfo > div > .rarity, .popupWrapper .buyPopup .headInfo > div > div .rarity, .popupWrapper .confirmPopup .headInfo > div > .rarity, .popupWrapper .confirmPopup .headInfo > div > div .rarity {
  display: flex;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.popupWrapper .buyPopup .headInfo > div > .rarity span, .popupWrapper .buyPopup .headInfo > div > div .rarity span, .popupWrapper .confirmPopup .headInfo > div > .rarity span, .popupWrapper .confirmPopup .headInfo > div > div .rarity span {
  height: 8px;
  width: 8px;
  border-radius: 100%;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.35);
}
.popupWrapper .buyPopup .headInfo > div > .rarity.commun span, .popupWrapper .buyPopup .headInfo > div > div .rarity.commun span, .popupWrapper .confirmPopup .headInfo > div > .rarity.commun span, .popupWrapper .confirmPopup .headInfo > div > div .rarity.commun span {
  background-color: rgb(164, 232, 179);
  box-shadow: 0px 0px 5px rgba(164, 232, 179, 0.35);
}
.popupWrapper .buyPopup .headInfo > div > .rarity.commun::after, .popupWrapper .buyPopup .headInfo > div > div .rarity.commun::after, .popupWrapper .confirmPopup .headInfo > div > .rarity.commun::after, .popupWrapper .confirmPopup .headInfo > div > div .rarity.commun::after {
  content: "Commun";
}
.popupWrapper .buyPopup .headInfo > div > .rarity.rare span, .popupWrapper .buyPopup .headInfo > div > div .rarity.rare span, .popupWrapper .confirmPopup .headInfo > div > .rarity.rare span, .popupWrapper .confirmPopup .headInfo > div > div .rarity.rare span {
  background-color: rgb(12, 182, 255);
  box-shadow: 0px 0px 5px rgba(12, 182, 255, 0.35);
}
.popupWrapper .buyPopup .headInfo > div > .rarity.rare::after, .popupWrapper .buyPopup .headInfo > div > div .rarity.rare::after, .popupWrapper .confirmPopup .headInfo > div > .rarity.rare::after, .popupWrapper .confirmPopup .headInfo > div > div .rarity.rare::after {
  content: "Rare";
}
.popupWrapper .buyPopup .headInfo > div > .rarity.epic span, .popupWrapper .buyPopup .headInfo > div > div .rarity.epic span, .popupWrapper .confirmPopup .headInfo > div > .rarity.epic span, .popupWrapper .confirmPopup .headInfo > div > div .rarity.epic span {
  background-color: rgb(138, 43, 226);
  box-shadow: 0px 0px 5px rgba(138, 43, 226, 0.35);
}
.popupWrapper .buyPopup .headInfo > div > .rarity.epic::after, .popupWrapper .buyPopup .headInfo > div > div .rarity.epic::after, .popupWrapper .confirmPopup .headInfo > div > .rarity.epic::after, .popupWrapper .confirmPopup .headInfo > div > div .rarity.epic::after {
  content: "Épique";
}
.popupWrapper .buyPopup .headInfo > div > .rarity.legendaire span, .popupWrapper .buyPopup .headInfo > div > div .rarity.legendaire span, .popupWrapper .confirmPopup .headInfo > div > .rarity.legendaire span, .popupWrapper .confirmPopup .headInfo > div > div .rarity.legendaire span {
  background-color: rgb(255, 188, 18);
  box-shadow: 0px 0px 5px rgba(255, 188, 18, 0.35);
}
.popupWrapper .buyPopup .headInfo > div > .rarity.legendaire::after, .popupWrapper .buyPopup .headInfo > div > div .rarity.legendaire::after, .popupWrapper .confirmPopup .headInfo > div > .rarity.legendaire::after, .popupWrapper .confirmPopup .headInfo > div > div .rarity.legendaire::after {
  content: "Légendaire";
}
.popupWrapper .buyPopup .headInfo > div > .rarity.unique span, .popupWrapper .buyPopup .headInfo > div > div .rarity.unique span, .popupWrapper .confirmPopup .headInfo > div > .rarity.unique span, .popupWrapper .confirmPopup .headInfo > div > div .rarity.unique span {
  background-color: rgb(237, 37, 193);
  box-shadow: 0px 0px 5px rgba(237, 37, 193, 0.35);
}
.popupWrapper .buyPopup .headInfo > div > .rarity.unique::after, .popupWrapper .buyPopup .headInfo > div > div .rarity.unique::after, .popupWrapper .confirmPopup .headInfo > div > .rarity.unique::after, .popupWrapper .confirmPopup .headInfo > div > div .rarity.unique::after {
  content: "Unique";
}
.popupWrapper .buyPopup .headInfo > div > .rarity.event span, .popupWrapper .buyPopup .headInfo > div > div .rarity.event span, .popupWrapper .confirmPopup .headInfo > div > .rarity.event span, .popupWrapper .confirmPopup .headInfo > div > div .rarity.event span {
  background-color: rgb(244, 57, 59);
  box-shadow: 0px 0px 5px rgba(244, 57, 59, 0.35);
}
.popupWrapper .buyPopup .headInfo > div > .rarity.event::after, .popupWrapper .buyPopup .headInfo > div > div .rarity.event::after, .popupWrapper .confirmPopup .headInfo > div > .rarity.event::after, .popupWrapper .confirmPopup .headInfo > div > div .rarity.event::after {
  content: "Event";
}
.popupWrapper .buyPopup .headInfo > div > div .stats, .popupWrapper .confirmPopup .headInfo > div > div .stats {
  display: flex;
  align-items: center;
  gap: 15px;
}
.popupWrapper .buyPopup .headInfo > div > div .stats div, .popupWrapper .confirmPopup .headInfo > div > div .stats div {
  display: flex;
  align-items: center;
  gap: 2.5px;
}
.popupWrapper .buyPopup .headInfo > div > div .stats div img, .popupWrapper .confirmPopup .headInfo > div > div .stats div img {
  height: 16px;
  width: 16px;
}
.popupWrapper .buyPopup .headInfo > div > div .stats div span, .popupWrapper .confirmPopup .headInfo > div > div .stats div span {
  font-weight: 600;
  font-size: 12px;
}
.popupWrapper .buyPopup > .stats, .popupWrapper .confirmPopup > .stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.popupWrapper .buyPopup > .stats p, .popupWrapper .confirmPopup > .stats p {
  margin: 0;
}
.popupWrapper .buyPopup > .stats > div, .popupWrapper .confirmPopup > .stats > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.popupWrapper .buyPopup > .stats > div > p:first-child, .popupWrapper .confirmPopup > .stats > div > p:first-child {
  color: rgba(255, 255, 255, 0.5);
}
.popupWrapper .buyPopup > .stats > div.price, .popupWrapper .confirmPopup > .stats > div.price {
  justify-content: flex-start;
}
.popupWrapper .buyPopup > .stats > div.price img, .popupWrapper .confirmPopup > .stats > div.price img {
  width: 20px;
  height: 20px;
}
.popupWrapper .buyPopup > .stats > .separator, .popupWrapper .confirmPopup > .stats > .separator {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.popupWrapper .buyPopup > .actions, .popupWrapper .confirmPopup > .actions {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
.popupWrapper .buyPopup > .actions > .btn, .popupWrapper .confirmPopup > .actions > .btn {
  width: 100%;
  height: 40px;
  padding: 20px;
  font-weight: 600;
  font-size: 16px;
  background: #6C32C1;
}
.popupWrapper .buyPopup > .actions > .btn.close, .popupWrapper .confirmPopup > .actions > .btn.close {
  width: 40px;
  background: #5217A8;
}
.popupWrapper .confirmPopup {
  gap: 15px;
}
.popupWrapper .confirmPopup .btn.cancel {
  background: #5217A8;
}
.popupWrapper .confirmPopup p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.wrapper {
  flex: 1;
  display: flex;
  gap: 100px;
  width: 100%;
  position: relative;
}
.wrapper .col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wrapper .col a {
  width: 100%;
}
.wrapper .col .btn {
  width: 100%;
}

.head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head h3 {
  position: absolute;
  text-align: center;
}
.head .infos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.head .infos .photo {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.head .infos > div {
  display: flex;
  align-items: center;
  padding: 0 1px;
  height: 35px;
  background: #6C32C1;
  box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.25);
  border-radius: 0px 5px 5px 0px;
  font-weight: 600;
  font-size: 16px;
}
.head .infos > div i {
  font-size: 15px;
}
.head .infos > div img {
  height: 15px;
  width: 15px;
}
.head .infos > div div {
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
}
.head .infos > div div#userName {
  font-size: 18px;
}

.itemList {
  height: 100%;
  max-height: 100%;
  width: 400px;
  background: rgba(19, 19, 19, 0.5);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.itemList .container {
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  padding-right: 6px;
  box-sizing: border-box;
  overflow-y: auto;
}

.sellCard {
  width: 400px;
  padding: 15px;
  box-sizing: border-box;
  background: rgba(19, 19, 19, 0.5);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sellCard > .item {
  border: 1.25px solid rgba(108, 50, 193, 0.6);
}
.sellCard > .item > div > .header > p {
  max-width: 65%;
}
.sellCard > .priceWrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sellCard > .priceWrapper > .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
}
.sellCard > .priceWrapper > .price img {
  width: 15px;
  height: 15px;
}
.sellCard > .priceWrapper > .price p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.sellCard > .inputWrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sellCard > .inputWrapper h4 {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}
.sellCard > .inputWrapper p {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: rgb(244, 57, 59);
}
.sellCard > .inputWrapper > .input {
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 45px;
  width: 100%;
  background: rgba(19, 19, 19, 0.5);
  border-radius: 5px;
  gap: 10px;
}
.sellCard > .inputWrapper > .input img {
  width: 17.5px;
  height: 17.5px;
}
.sellCard > .inputWrapper > .input input {
  background: none;
  outline: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  width: 100%;
  color: rgba(255, 255, 255, 0.75);
}
.sellCard > .actions {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
.sellCard > .actions > .btn {
  height: 40px;
  padding: 20px;
  font-weight: 600;
  font-size: 14px;
  background: #6C32C1;
}
.sellCard > .actions > .btn.close {
  width: 40px;
  background: #5217A8;
}

.item {
  background: rgba(19, 19, 19, 0.5);
  border-radius: 5px;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.item.selected {
  background: rgba(108, 50, 193, 0.15);
  border: 1px solid rgba(108, 50, 193, 0.6);
}
.item:hover {
  cursor: pointer;
}
.item img {
  width: 55px;
  height: 55px;
}
.item p {
  margin: 0;
}
.item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.item > div > .header {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.item > div > .header > p {
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item > div > .header > .rarity {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 5px;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
}
.item > div > .header > .rarity span {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.35);
}
.item > div > .header > .rarity.commun span {
  background-color: rgb(164, 232, 179);
  box-shadow: 0px 0px 5px rgba(164, 232, 179, 0.35);
}
.item > div > .header > .rarity.commun::after {
  content: "Commun";
}
.item > div > .header > .rarity.rare span {
  background-color: rgb(12, 182, 255);
  box-shadow: 0px 0px 5px rgba(12, 182, 255, 0.35);
}
.item > div > .header > .rarity.rare::after {
  content: "Rare";
}
.item > div > .header > .rarity.epic span {
  background-color: rgb(138, 43, 226);
  box-shadow: 0px 0px 5px rgba(138, 43, 226, 0.35);
}
.item > div > .header > .rarity.epic::after {
  content: "Épique";
}
.item > div > .header > .rarity.legendaire span {
  background-color: rgb(255, 188, 18);
  box-shadow: 0px 0px 5px rgba(255, 188, 18, 0.35);
}
.item > div > .header > .rarity.legendaire::after {
  content: "Légendaire";
}
.item > div > .header > .rarity.unique span {
  background-color: rgb(237, 37, 193);
  box-shadow: 0px 0px 5px rgba(237, 37, 193, 0.35);
}
.item > div > .header > .rarity.unique::after {
  content: "Unique";
}
.item > div > .header > .rarity.event span {
  background-color: rgb(244, 57, 59);
  box-shadow: 0px 0px 5px rgba(244, 57, 59, 0.35);
}
.item > div > .header > .rarity.event::after {
  content: "Event";
}
.item > div .stats {
  display: flex;
  align-items: center;
  gap: 15px;
}
.item > div .stats div {
  display: flex;
  align-items: center;
  gap: 2.5px;
}
.item > div .stats div img {
  height: 20px;
  width: 20px;
}
.item > div .stats div span {
  font-weight: 600;
  font-size: 15px;
}

.itemsToBuy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.itemsToBuy > .head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.itemsToBuy > .head .selectMenu {
  width: 25%;
}
.itemsToBuy > .head .inputIcon {
  width: 25%;
}
.itemsToBuy > .content {
  height: 100%;
  width: 100%;
  position: relative;
  overflow-y: auto;
}
.itemsToBuy > .content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
  border-radius: 5px;
  position: absolute;
}
.itemsToBuy > .content table img {
  height: 25px;
  width: 25px;
}
.itemsToBuy > .content table th, .itemsToBuy > .content table td {
  text-align: left;
  padding: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.itemsToBuy > .content table th {
  font-size: 14px;
}
.itemsToBuy > .content table td {
  font-size: 16px;
}
.itemsToBuy > .content table td:first-child {
  border-radius: 5px 0 0 5px;
}
.itemsToBuy > .content table td:last-child {
  border-radius: 0 5px 5px 0;
}
.itemsToBuy > .content table tbody {
  background: rgba(19, 19, 19, 0.5);
  padding: 10px;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.itemsToBuy > .content table td .tableBtn {
  padding: 3px 15px;
  background: #6C32C1;
  box-shadow: inset 0px 0px 3px rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  border: none;
  outline: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}
.itemsToBuy > .content table .goldenCoin {
  width: 80px;
}
.itemsToBuy > .content table .icon {
  width: 20px;
}
.itemsToBuy > .content table .rarity {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.itemsToBuy > .content table .rarity span {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.35);
}
.itemsToBuy > .content table .rarity.commun span {
  background-color: rgb(164, 232, 179);
  box-shadow: 0px 0px 5px rgba(164, 232, 179, 0.35);
}
.itemsToBuy > .content table .rarity.commun::after {
  content: "Commun";
}
.itemsToBuy > .content table .rarity.rare span {
  background-color: rgb(12, 182, 255);
  box-shadow: 0px 0px 5px rgba(12, 182, 255, 0.35);
}
.itemsToBuy > .content table .rarity.rare::after {
  content: "Rare";
}
.itemsToBuy > .content table .rarity.epic span {
  background-color: rgb(138, 43, 226);
  box-shadow: 0px 0px 5px rgba(138, 43, 226, 0.35);
}
.itemsToBuy > .content table .rarity.epic::after {
  content: "Épique";
}
.itemsToBuy > .content table .rarity.legendaire span {
  background-color: rgb(255, 188, 18);
  box-shadow: 0px 0px 5px rgba(255, 188, 18, 0.35);
}
.itemsToBuy > .content table .rarity.legendaire::after {
  content: "Légendaire";
}
.itemsToBuy > .content table .rarity.unique span {
  background-color: rgb(237, 37, 193);
  box-shadow: 0px 0px 5px rgba(237, 37, 193, 0.35);
}
.itemsToBuy > .content table .rarity.unique::after {
  content: "Unique";
}
.itemsToBuy > .content table .rarity.event span {
  background-color: rgb(244, 57, 59);
  box-shadow: 0px 0px 5px rgba(244, 57, 59, 0.35);
}
.itemsToBuy > .content table .rarity.event::after {
  content: "Event";
}
.itemsToBuy > .content table .owner {
  width: 200px;
}
.itemsToBuy > .content table .action {
  width: 100px;
}
.itemsToBuy > .content table .action button:hover {
  cursor: pointer;
}
.itemsToBuy > .content table .action button:active {
  transform: translateY(1px);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #6C32C1;
  border-radius: 50px;
}

@media (max-width: 1600px) {
  main {
    padding: 25px 30px;
    margin: 0;
  }
  main > .head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  main > .head .infos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  main > .head .infos .photo {
    display: none;
  }
  main > .head .infos > div {
    width: 100%;
    border-radius: 5px;
  }
  main > .head .infos > div div {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
  }
  main > .head .infos > div div#userName {
    display: none;
  }
  main > .head .infos > div div:nth-child(3) {
    justify-content: center;
  }
  main > .head .infos > div div:last-child {
    justify-content: flex-end;
  }
  h2 {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
  }
  h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
  }
  .btn {
    width: 100%;
    font-size: 12px;
    background: #5F21BA;
  }
  .sellItem {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
  }
  .sellItem > h3 {
    display: none;
  }
  .sellItem .sellCard {
    background: rgba(19, 19, 19, 0.7);
    border-radius: 4px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px;
    box-sizing: border-box;
  }
  .item {
    gap: 5px;
    padding: 15px 10px;
  }
  .item img {
    width: 40px;
    height: 40px;
  }
  .item .header > p {
    font-size: 12px;
    max-width: 60%;
  }
  .item .header > .rarity {
    border: none;
    gap: 5px;
    font-size: 10px;
  }
  .item .header > .rarity span {
    width: 8px;
    height: 8px;
  }
  .item .stats {
    gap: 10px;
  }
  .item .stats div {
    gap: 2.5px;
  }
  .item .stats div img {
    height: 12px;
    width: 12px;
  }
  .item .stats div span {
    font-size: 12px;
  }
  .popupWrapper .buyCard .headInfo, .popupWrapper .confirmPopup .headInfo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .popupWrapper .buyCard .headInfo img, .popupWrapper .confirmPopup .headInfo img {
    width: 45px;
    height: 45px;
  }
  .popupWrapper .buyCard .headInfo > div, .popupWrapper .confirmPopup .headInfo > div {
    display: flex;
    justify-content: space-between;
    gap: 3px;
    width: 100%;
  }
  .popupWrapper .buyCard .headInfo > div > div.statsWrapper, .popupWrapper .confirmPopup .headInfo > div > div.statsWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
  }
  .popupWrapper .buyCard .headInfo > div > div p, .popupWrapper .confirmPopup .headInfo > div > div p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
  }
  .popupWrapper .buyCard .headInfo > div > div p.owner, .popupWrapper .confirmPopup .headInfo > div > div p.owner {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  .popupWrapper .buyCard .headInfo > div > .rarity, .popupWrapper .buyCard .headInfo > div > div .rarity, .popupWrapper .confirmPopup .headInfo > div > .rarity, .popupWrapper .confirmPopup .headInfo > div > div .rarity {
    display: flex;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
  }
  .popupWrapper .buyCard .headInfo > div > .rarity span, .popupWrapper .buyCard .headInfo > div > div .rarity span, .popupWrapper .confirmPopup .headInfo > div > .rarity span, .popupWrapper .confirmPopup .headInfo > div > div .rarity span {
    height: 6px;
    width: 6px;
    border-radius: 100%;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.35);
  }
  .popupWrapper .buyCard .headInfo > div > div .stats, .popupWrapper .confirmPopup .headInfo > div > div .stats {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .popupWrapper .buyCard .headInfo > div > div .stats div, .popupWrapper .confirmPopup .headInfo > div > div .stats div {
    display: flex;
    align-items: center;
    gap: 2.5px;
  }
  .popupWrapper .buyCard .headInfo > div > div .stats div img, .popupWrapper .confirmPopup .headInfo > div > div .stats div img {
    height: 14px;
    width: 14px;
  }
  .popupWrapper .buyCard .headInfo > div > div .stats div span, .popupWrapper .confirmPopup .headInfo > div > div .stats div span {
    font-weight: 600;
    font-size: 10px;
  }
  .popupWrapper .buyCard > .inputs, .popupWrapper .confirmPopup > .inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .popupWrapper .buyCard > .inputs > .inputWrapper, .popupWrapper .confirmPopup > .inputs > .inputWrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .popupWrapper .buyCard > .inputs > .inputWrapper h4, .popupWrapper .confirmPopup > .inputs > .inputWrapper h4 {
    font-weight: 600;
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
  }
  .popupWrapper .buyCard > .inputs > .inputWrapper p, .popupWrapper .confirmPopup > .inputs > .inputWrapper p {
    margin: 0;
    font-weight: 600;
    font-size: 12px;
    color: rgb(244, 57, 59);
  }
  .popupWrapper .buyCard > .inputs > .inputWrapper > .input, .popupWrapper .confirmPopup > .inputs > .inputWrapper > .input {
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 5px;
    gap: 10px;
  }
  .popupWrapper .buyCard > .inputs > .inputWrapper > .input img, .popupWrapper .confirmPopup > .inputs > .inputWrapper > .input img {
    width: 15.5px;
    height: 15.5px;
  }
  .popupWrapper .buyCard > .inputs > .inputWrapper > .input input, .popupWrapper .confirmPopup > .inputs > .inputWrapper > .input input {
    background: none;
    outline: none;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    color: rgba(255, 255, 255, 0.75);
  }
  .popupWrapper .buyCard > .stats, .popupWrapper .confirmPopup > .stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
  }
  .popupWrapper .buyCard > .stats p, .popupWrapper .confirmPopup > .stats p {
    margin: 0;
  }
  .popupWrapper .buyCard > .stats > div, .popupWrapper .confirmPopup > .stats > div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .popupWrapper .buyCard > .stats > div > p:first-child, .popupWrapper .confirmPopup > .stats > div > p:first-child {
    color: rgba(255, 255, 255, 0.5);
  }
  .popupWrapper .buyCard > .stats > div.price, .popupWrapper .confirmPopup > .stats > div.price {
    justify-content: flex-start;
  }
  .popupWrapper .buyCard > .stats > div.price img, .popupWrapper .confirmPopup > .stats > div.price img {
    width: 15px;
    height: 15px;
  }
  .popupWrapper .buyCard > .stats > .separator, .popupWrapper .confirmPopup > .stats > .separator {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
  }
  .popupWrapper .buyCard > .actions, .popupWrapper .confirmPopup > .actions {
    display: flex;
    gap: 20px;
    margin-top: 15px;
  }
  .popupWrapper .buyCard > .actions > .btn, .popupWrapper .confirmPopup > .actions > .btn {
    height: 40px;
    padding: 20px;
    font-weight: 600;
    font-size: 14px;
    background: #6C32C1;
  }
  .popupWrapper .buyCard > .actions > .btn.close, .popupWrapper .confirmPopup > .actions > .btn.close {
    width: 40px;
    background: #5217A8;
  }
  .popupWrapper .confirmPopup p {
    font-size: 12px;
  }
  .mobileWrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
    padding: 30px;
    padding-top: 100px;
    box-sizing: border-box;
    background: rgba(37, 37, 37, 0.2);
    -webkit-backdrop-filter: blur(10.5px);
            backdrop-filter: blur(10.5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
  }
  .mobileWrapper .btn.close {
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px;
    height: 35px;
    width: 35px;
  }
  .mobileWrapper .btn.close i {
    font-size: 16px;
  }
  .mobileWrapper .myItems, .mobileWrapper .mySellingItems {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    overflow-y: scroll;
  }
  .wrapper > .myItems, .wrapper > .sellItem, .wrapper > .mySellingItems {
    display: none;
  }
  .wrapper > .itemsToBuy > .head {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: normal;
    gap: 30px;
  }
  .wrapper > .itemsToBuy > .head .mobileActions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .wrapper > .itemsToBuy > .head .inputIcon {
    width: auto;
    padding: 7px 15px;
  }
  .wrapper > .itemsToBuy > .head .inputIcon i {
    font-size: 10px;
  }
  .wrapper > .itemsToBuy > .head .inputIcon input {
    font-size: 12px;
  }
  .wrapper > .itemsToBuy > .head .inputIcon input::-moz-placeholder {
    font-size: 12px;
  }
  .wrapper > .itemsToBuy > .head .inputIcon input::placeholder {
    font-size: 12px;
  }
  .wrapper > .itemsToBuy > .head .selectMenu {
    width: auto;
  }
  .wrapper > .itemsToBuy > .head .selectMenu .header {
    box-sizing: border-box;
    width: 100%;
    padding: 9.5px 10px;
  }
  .wrapper > .itemsToBuy > .head .selectMenu .header i {
    font-size: 12px;
    margin-right: 5px;
  }
  .wrapper > .itemsToBuy > .head .selectMenu .header .placeholder {
    margin-left: 5px;
  }
  .wrapper > .itemsToBuy > .head .selectMenu .header span {
    height: 6px;
    width: 6px;
  }
  .wrapper > .itemsToBuy > .head .selectMenu .header p {
    font-size: 12px;
  }
  .wrapper > .itemsToBuy > .head .selectMenu .options {
    box-sizing: border-box;
    width: 100%;
    top: 45px;
  }
  .wrapper > .itemsToBuy > .head .selectMenu .options .option {
    padding: 4px 5px;
  }
  .wrapper > .itemsToBuy > .head .selectMenu .options .option a span {
    height: 6px;
    width: 6px;
  }
  .wrapper > .itemsToBuy > .head .selectMenu .options .option a p {
    font-size: 12px;
  }
  .wrapper > .itemsToBuy .content {
    overflow-y: visible;
  }
  .wrapper > .itemsToBuy .content .owner, .wrapper > .itemsToBuy .content .action {
    display: none;
  }
  .wrapper > .itemsToBuy .content .goldenCoin {
    width: 30px;
  }
  .wrapper > .itemsToBuy .content .rarity {
    height: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .wrapper > .itemsToBuy .content .rarity span {
    height: 6px;
    width: 6px;
  }
  .wrapper > .itemsToBuy .content .rarity.commun::after, .wrapper > .itemsToBuy .content .rarity.rare::after, .wrapper > .itemsToBuy .content .rarity.epic::after, .wrapper > .itemsToBuy .content .rarity.legendaire::after, .wrapper > .itemsToBuy .content .rarity.unique::after, .wrapper > .itemsToBuy .content .rarity.event::after {
    content: "";
  }
  .wrapper > .itemsToBuy .content table {
    position: relative;
  }
  .wrapper > .itemsToBuy .content img {
    width: 18px;
    height: 18px;
  }
  .wrapper > .itemsToBuy .content th {
    font-size: 10px;
  }
  .wrapper > .itemsToBuy .content th.rarity {
    display: none;
  }
  .wrapper > .itemsToBuy .content td {
    font-size: 10px;
  }
  .wrapper > .itemsToBuy .content td:first-child {
    border-radius: 0;
  }
  .wrapper > .itemsToBuy .content td:last-child {
    border-radius: 0;
  }
}
@media (min-width: 1600px) {
  .mobileActions, .mobileWrapper, .mobileWrapper .myItems, .mobileWrapper .buyCard, .mobileWrapper .sellCard, .mobileWrapper .confirmPopup {
    display: none !important;
  }
}/*# sourceMappingURL=hdv.css.map */