.wrapper {
  overflow: auto;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.strong {
  font-weight: 600;
  color: rgba(0, 104, 183);
}

/* product list */
.notice,
.list-notice {
  height: fit-content;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
  text-align: center;
}
#productList {
  table-layout: auto;
  width: 100%;
  padding: 10px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.7);
}

#productList thead tr td {
  background-color: rgba(0, 104, 183, 0.8);
}
#productList thead tr td:nth-child(1) {
  background-color: transparent;
}
#productList thead tr td:last-child {
  background-color: rgba(67, 188, 197, 0.8);
}
#productList thead tr td {
  padding: 4px 8px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
}

#productList tbody tr td {
  padding: 4px;
  font-size: 0.8rem;
}

#productList tbody tr td:last-child {
  text-align: center;
}

#productList tbody tr .info {
  display: flex;
  gap: 4px;
}

#productList tbody tr .info .info-img {
  width: 50px;
  padding: 3px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 12px;
}

#productList tbody tr .info .info__right {
  margin-left: 5px;
}

#productList tbody tr .info .info__right div:first-child {
  font-size: 0.7rem;
  color: rgb(0, 104, 183);
  padding: 3px 5px;
}

.move:hover {
  cursor: pointer;
}

/* product detail */
.container {
  /* width: 400px; */
  height: 420px;
  display: flex;
  align-items: center;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.1);
}

.list-button {
  display: flex;
  align-items: center;
  margin-top: -48px;
  margin-bottom: 22px;
  gap: 12px;
}

.list-button > div {
  font-size: 0.9rem;
}

#prev {
  transform: rotateY(180deg);
}

.list-button:hover,
#next:hover,
#prev:hover {
  cursor: pointer;
}

#productDetailDesc {
  width: 100%;
  box-sizing: border-box;
}

.desc-container {
  position: relative;
  text-align: center;
  padding: 10px;
}
.desc-container input[type="checkbox"] {
  position: absolute;
  top: 60px;
  right: 20px;
  cursor: pointer;
}

.desc-container > div {
  border-bottom: 1px solid rgb(220, 220, 220);
}
.desc-container > div:first-child {
  font-size: 1.5rem;
}

.detail-img {
  width: 80%;
  height: 200px;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .notice {
    font-size: 1rem;
    margin-left: 31px;
    margin-bottom: 10px;
    text-align: left;
  }
}
