@import url("http://fonts.cdnfonts.com/css/typo-grotesk-rounded");
* {
  font-family: "Typo Grotesk Rounded", sans-serif;
}

.wrap-table {
  margin-left: 10%;
  margin-right: 10%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

img {
  width: 80px;
  height: auto;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

tbody {
  display: block;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(127deg, #ecf7cf, #bbf7e0);
  margin-top: 10px;
}

.rarity-quantity {
  display: flex;
  justify-content: space-between;
}

.img-name{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.table-image {
  width: 70px;
  height: auto;
}

#table thead {
  display: none;
}

#table tr {
  margin-bottom: 10px;
}

#table td {
  position: relative;
}

#table td::before {
  position: absolute;
  left: 0;
  width: 50%;
  padding-left: 15px;
  font-size: 15px;
  font-weight: bold;
  text-align: left;
}

.rareza0 {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #555555;
}

.rareza1 {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #adec48;
}

.rareza2 {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #2ccaf1;
}

.rareza3 {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #f548de;
}

.rareza4 {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #f12a2a;
}

.rareza5 {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #ff8f0f;
}

#btn-volver {
  margin-top: 30px;
  height: 50px;
  width: 130px;
  cursor: pointer;
  border-radius: 10px;
  border: 0 solid;
  background-color: #353535;
  color: #fff;
  font-size: 30px;
}

#btn-volver:hover {
  background-color: black;
}

#btn-delete {
  margin-top: 100px;
  height: 30px;
  width: 120px;
  cursor: pointer;
  border-radius: 10px;
  border: 0 solid;
  background-color: #ff0000;
  color: #fff;
  font-size: auto;
}

#btn-delete:hover {
  background-color: rgb(247, 75, 75);
}

#table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

tbody {
  margin: 5px;
}

@media screen and (max-width: 600px) {
  
  #table {
    display: flex;
    flex-direction: column;
  }
  
  tbody {
    margin: 5px;
  }
  
  .wrap-table {
    background: none;
  }

  tbody {
    display: block;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(127deg, #ecf7cf, #bbf7e0);
    margin-top: 10px;
  }

  .rarity-quantity {
    display: flex;
    justify-content: space-between;
  }

  .img-name{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }

  .table-image {
    width: 70px;
    height: auto;
  }

  #table thead {
    display: none;
  }

  #table tr {
    margin-bottom: 10px;
  }

  #table td {
    position: relative;
  }

  #table td::before {
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }
}

/*# sourceMappingURL=colOut.css.map */
