.auction_wrap {
  padding-top: 100px;
}
.auction_wrap .gallery {
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  height: 550px;
}
@media screen and (max-width: 991px) {
  .auction_wrap .gallery {
    display: flex;
    height: max-content;
    margin: 0;
    gap: 20px;
  }
}
.auction_wrap .gallery::-webkit-scrollbar {
  width: 0px;
}
.auction_wrap .gallery .sub-image {
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
  cursor: pointer;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.auction_wrap .gallery .sub-image:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .auction_wrap .gallery .sub-image {
    margin: 0;
    width: 100px;
    aspect-ratio: 1.3/1;
    height: auto;
  }
}
.auction_wrap .main_image img {
  width: 100%;
  height: 540px;
  border-radius: 5px;
  object-fit: cover;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .auction_wrap .main_image img {
    height: 300px;
  }
}
.auction_wrap .content {
  padding-left: 40px;
}
@media screen and (max-width: 991px) {
  .auction_wrap .content {
    padding: 0;
    margin-top: 40px;
  }
}
.auction_wrap .content .lot_no {
  font-size: 15px;
  background-color: rgba(1, 170, 133, 0.15);
  font-weight: 600;
  color: #01aa85;
  padding: 5px 20px;
  border-radius: 5px;
  display: inline-block;
  width: max-content;
}
.auction_wrap .content .title {
  color: #0b0c0c;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-top: 20px;
  margin-bottom: 10px;
}
.auction_wrap .content .price span {
  color: rgba(35, 41, 31, 0.7333333333);
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 2px;
}
.auction_wrap .content .price .amount {
  color: #01aa85;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.auction_wrap .content .auction-time {
  color: rgba(35, 41, 31, 0.7333333333);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 15px;
  margin-top: 40px;
}
.auction_wrap .content .auction-time .main-auction {
  margin-top: 10px;
}
.auction_wrap .content .auction-time .main-auction .countdown_row {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 391px) {
  .auction_wrap .content .auction-time .main-auction .countdown_row {
    gap: 7px;
  }
}
.auction_wrap .content .auction-time .main-auction .countdown_row .countdown_section {
  color: rgba(11, 12, 12, 0.7);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  padding: 10px 20px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  width: auto;
  min-width: 80px;
  display: block;
  float: left;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .auction_wrap .content .auction-time .main-auction .countdown_row .countdown_section {
    padding: 10px;
  }
}
@media screen and (max-width: 391px) {
  .auction_wrap .content .auction-time .main-auction .countdown_row .countdown_section {
    padding: 10px 15px;
    font-size: 13px;
    min-width: 60px;
  }
}
.auction_wrap .content .auction-time .main-auction .countdown_row .countdown_section .countdown_amount {
  color: #0b0c0c;
  font-size: 32px;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: -10px;
}
@media screen and (max-width: 991px) {
  .auction_wrap .content .auction-time .main-auction .countdown_row .countdown_section .countdown_amount {
    font-size: 25px;
  }
}
@media screen and (max-width: 391px) {
  .auction_wrap .content .auction-time .main-auction .countdown_row .countdown_section .countdown_amount {
    font-size: 23px;
  }
}
.auction_wrap .content .auction_ends {
  color: rgba(35, 41, 31, 0.7333333333);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-top: 30px;
}
.auction_wrap .content .bid_price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.auction_wrap .content .bid_price .control {
  min-width: 50px;
  height: 50px;
  background-color: #e6e6e6;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 22px;
  font-weight: bold;
}
.auction_wrap .content .bid_price .bid_amount {
  width: 100%;
  height: 50px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  color: #0b0c0c;
  outline: none;
}
.auction_wrap .content .bid_price .bid_amount::placeholder {
  color: #b3b3b3;
}
.auction_wrap .content .bid_price .bid_amount::-webkit-outer-spin-button, .auction_wrap .content .bid_price .bid_amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.auction_wrap .content .bid_btn button {
  background-color: #01aa85;
  border: none;
  outline: none;
  width: 100%;
  border-radius: 5px;
  height: 50px;
  color: #fff;
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
}
.auction_wrap .content .wishlist a {
  display: flex;
  gap: 5px;
  font-size: 15px;
  margin-top: 30px;
  color: rgba(35, 41, 31, 0.7333333333);
}/*# sourceMappingURL=custom.css.map */