@charset "UTF-8";
/*
* Copyright inpleworks, Co.
* https://xetemplate.com
*/
#itemlist > div + div {
  margin-top: 1rem;
}
#itemlist .form {
  overflow: hidden;
  margin-bottom: 1rem;
}
#itemlist .form .order-type {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#itemlist .form .order-type a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: 38px;
  font-size: 12px;
  border: 1px solid var(--xet-theme-border-color);
  border-left: 0;
  color: var(--xet-theme-text-base-color);
}
#itemlist .form .order-type a:first-child {
  border-left: 1px solid var(--xet-theme-border-color);
}
#itemlist .form .order-type a.active {
  background-color: var(--xet-theme-color);
  border-color: var(--xet-theme-color);
  color: #fff;
}
#itemlist .form .order-type-select {
  min-width: 100px;
  height: 38px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid var(--xet-theme-border-color);
}
#itemlist .itemlist__product-list .itemlist__product-list__item {
  z-index: 0;
  /* 수량선택 */
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-thumbnail {
  position: relative;
  /* 판매중지 */
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-thumbnail .item-header {
  display: none;
  height: 20px;
  background: url(../img/common/browserIcon.png) 3% 50% no-repeat #ebedef;
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-thumbnail a {
  position: relative;
  display: block;
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-thumbnail a img {
  width: 100%;
  vertical-align: top;
  transition: all 0.3s linear;
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-thumbnail a .linkWrp {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0.5);
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-thumbnail a .linkWrp span {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 48px;
  font-size: 18px;
  transform: translateY(-30%);
  transition: all 0.2s;
  color: #fff;
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-thumbnail .sold-out {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--xet-theme-color);
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-quantity .quantity {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 22px;
  text-align: left;
  border: 1px solid #d2d2d2;
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-quantity .quantity input[type=text] {
  padding: 0 2px;
  width: 100%;
  height: 20px;
  font-weight: bold;
  color: #555;
  border: 0px;
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-quantity .quantity .iconUp {
  position: absolute;
  right: 0px;
  top: 1px;
  width: 17px;
  height: 10px;
  cursor: pointer;
  background: url(../img/common/icon_up.gif) no-repeat;
}
#itemlist .itemlist__product-list .itemlist__product-list__item .item-quantity .quantity .iconDown {
  position: absolute;
  right: 0px;
  bottom: 1px;
  width: 17px;
  height: 10px;
  cursor: pointer;
  background: url(../img/common/icon_down.gif) no-repeat;
}
#itemlist .no-items {
  text-align: center;
  padding: 20px;
}
#itemlist .item-pagination {
  border-top: 1px solid var(--xet-theme-border-color);
}
#itemlist .item-search form {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}
#itemlist .item-search form > div {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  #itemlist {
    /* 정렬 버튼 */
  }
  #itemlist > div + div {
    margin-top: 2rem;
  }
  #itemlist .form {
    margin-bottom: 2rem;
  }
  #itemlist .form .order-type {
    justify-content: flex-start;
  }
  #itemlist .form .order-type a {
    padding: 0 14px;
    width: auto;
    min-width: 100px;
    font-size: 14px;
  }
}