.home-page {
  padding-top: 56px;
}
.home-page .sticky-section {
  position: relative;
}
.home-page .sticky-section .sticky-header {
  position: absolute;
  background: var(--primary-white);
  width: 100%;
  top: 0;
  z-index: 98;
}
.home-page .participate-live-auction-section .participate-live-auction-header {
  padding: 17px 16px;
}
.home-page .participate-live-auction-section .participate-live-auction-header p.user-name-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: var(--secondary-black);
  margin-bottom: 8px;
}
.home-page .participate-live-auction-section .participate-live-auction-header h2.auction-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
.home-page .participate-live-auction-section .participate-live-auction-container {
  padding: 80px 16px 6px 16px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -moz-column-gap: 16px;
       column-gap: 16px;
  -ms-scroll-type: none;
  scrollbar-width: none;
}
.home-page .participate-live-auction-section .participate-live-auction-container::-webkit-scrollbar {
  display: none;
}
.home-page .participate-live-auction-section .auction-item {
  flex: 1 0 50%;
  max-width: 156px;
}
.home-page .list-auction-section .list-auction-header {
  padding: 17px 16px;
}
.home-page .list-auction-section .list-auction-header p.user-name-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: var(--secondary-black);
  margin-bottom: 8px;
}
.home-page .list-auction-section .list-auction-header h2.auction-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
.home-page .list-auction-section .list-auction-header .auction-status-container {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-top: 30px;
}
.home-page .list-auction-section .list-auction-header .auction-status-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  width: 87px;
  height: 36px;
  background: var(--primary-background-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}
.home-page .list-auction-section .list-auction-header .auction-status-container button.live {
  width: 100px;
}
.home-page .list-auction-section .list-auction-header .auction-status-container button.active {
  background: var(--primary-blue);
  color: var(--primary-white);
}
.home-page .list-auction-section .list-auction-container {
  padding: 146px 16px 0 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 24px;
}
.home-page .list-auction-section .list-auction-container .auction-item {
  width: 100%;
}
.home-page .auction-item .auction-image-container {
  width: 100%;
  padding-top: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.home-page .auction-item .auction-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-page .auction-item .auction-image-container span {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-blue);
  color: var(--primary-white);
  z-index: 2;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}
.home-page .auction-item .auction-product-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--secondary-black);
  margin-bottom: 8px;
}
.home-page .auction-item .auction-product-description {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: pre-line;
}
.home-page .auction-item .auction-price {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  margin-bottom: 16px;
}
.home-page .auction-item .auction-price span {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}
.home-page .auction-item .auction-tags {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  margin-bottom: 16px;
}
.home-page .auction-item .auction-tags span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--primary-background-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}
.home-page .auction-item .auction-remain-time {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: var(--secondary-black);
}