@charset "UTF-8";
.trade {
  border: 2px solid #E0E0E2;
  width: 400px;
  background-color: #F6F6F7;
  border-radius: 10px;
  text-align: center;
}
.trade .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding: 10px;
  margin: 5px;
}
.trade .price .countdown {
  color: #d18b00;
  font-weight: bold;
  font-size: 18px;
}
.trade .price .percentage {
  padding: 10px;
}
.trade .price .percentage del {
  text-decoration: line-through;
}
.trade .price .percentage span {
  color: white;
  font-weight: bold;
  background-color: red;
  padding: 5px;
  margin: 5px;
  border-radius: 10px;
  font-size: 18px;
}
.trade .price .discount {
  font-size: 20px;
  font-weight: bold;
}
.trade .info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  font-size: 18px;
}
.trade .info * {
  color: #000000;
  font-weight: bold;
}
.trade .info label {
  font-weight: normal;
  color: #303030;
}
.trade .invertory * {
  font-size: 20px;
  font-weight: bold;
}
.trade .invertory .quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px;
}
.trade .invertory .quantity .none {
  color: #cc8a00;
}
.trade .invertory .quantity .low {
  color: red;
}
.trade .actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trade .actions * {
  font-size: 20px;
}
.trade .actions .choose-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 3px;
  margin-top: 10px;
  height: 60px;
}
.trade .actions .choose-number layer1 {
  width: 150px;
  display: flex;
  align-items: center;
  padding: 10px;
  justify-content: space-around;
  border: 1px solid rgb(0, 138, 0);
  border-radius: 10px;
  margin: 10px;
}
.trade .actions .choose-number layer1 img {
  width: 20px;
  cursor: pointer;
  filter: invert(26%) sepia(69%) saturate(5706%) hue-rotate(120deg) brightness(96%) contrast(101%);
}
.trade .actions .choose-number layer1 data {
  color: rgb(0, 138, 0);
  font-size: 20px;
}
.trade .actions .choose-number .select-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.trade .actions .choose-number .select-wrapper:after {
  content: "⮟";
  top: 20px;
  left: 20px;
  position: absolute;
}
.trade .actions .choose-number .select-wrapper select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  margin: 10px;
  font-size: 20px;
  width: 60px;
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  height: 45px;
}
.trade .actions .choose-number #addToCart {
  width: 200px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  border: 1px solid rgb(0, 138, 0);
  border-radius: 10px;
  margin: 10px;
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 138, 0);
}
.trade .actions .buy-now {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  border-radius: 10px;
  margin: 20px;
  margin-top: 5px;
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: black;
}

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