@charset "UTF-8";
/*  최근 본 상품 페이지 스타일 파일입니다. */

.header > * {
  display: none;
}
.header .header__title {
  display: flex;
  text-align: left;
  line-height: 1.3;
  margin: 0 20px;
  border-bottom: 2px solid var(--gray200);
  width: 100%;
  max-width: 760px;
  padding-top: 15px;
}
.header .header__back {
  display: block;
  position: fixed;
  top: auto;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.header .header__back .ico {
  width: 35px;
  height: 35px;
  background: url(/assets/images/geek/ico_x_circle.svg) 50% / contain no-repeat;
}
.recent-product-wrap {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  height: calc(100vh - 200px);
  padding: 15px 20px;
  line-height: 1;
  max-width: 760px;
  margin: 0px auto;
}
.recent-product-wrap .recent-product-item-wrap {
  width: 100%;
}
.recent-product-wrap .recent-product-item {
  border: 0;
  gap: 12px;
  height: auto;
}
.recent-product-wrap .recent-product-item__img {
  width: 65px;
  height: 65px;
  border-radius: 6px;
}
.recent-product-wrap .recent-product-item__info-name {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  line-height: 1.4;
}
.recent-product-wrap .origin-price s {
  color: var(--gray500);
  font-size: 14px;
  font-weight: 500;
}
.recent-product-wrap .recent-product-item__info-price .percent {
  font-size: 14px;
  font-weight: 900;
  color: var(--color-error);
}
.recent-product-wrap .btn_delete {
  width: 100%;
  border: 0;
  background: none;
  font-size: 12px;
  color: var(--gray500);
  text-align: right;
  text-decoration: underline;
  margin: 15px 0;
}
.recent-product-wrap .notice {
  padding: 100px 0;
}
.recent-product__fab {
  background-color: initial;
}
.recent-product__fab .ico--x-white-24 {
  background: url(/assets/images/icons/ico-x-black-12.png) 50% / 15px no-repeat;
}
