/* Products List ============================================================== */
.product-list {
  text-align: center;
  border: 1px solid #eaeaea;
  margin-bottom: 50px;
  box-shadow: 2px 9px 10px -3px rgba(0, 0, 0, 0.1);
}
.product-list .product-pic {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 75%;
}
.product-list .product-pic img {
  transition: all 0.5s ease-in-out;
  max-height: 100%;
}
.product-list .product-pic .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.product-list .product-pic:hover img {
  transform: scale(1.1);
}
.product-list .product-name {
  line-height: 1.5rem;
  padding: 15px 10px;
  font-weight: bold;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Product Detail ============================================================ */
.product-detail-bg {
  background: url(../images/product-detail-bg.jpg) no-repeat left top;
}
@media (max-width: 992px) {
  .product-detail-bg {
    background: url(../images/product-detail-bg-m.jpg) no-repeat left top;
  }
}
.product-detail-bg main .wrapper {
  padding-bottom: 4%;
}
@media (max-width: 1360px) {
  .product-detail-bg main .wrapper {
    padding-bottom: 6%;
  }
}

.wrap-product-detail {
  margin-bottom: 3%;
}

#secondary-slider {
  margin-top: -20%;
}

.product-detail-pic {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 75%;
}
.product-detail-pic img {
  max-height: 100%;
}
.product-detail-pic .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.product-detail-social-icons {
  text-align: center;
}

@media (max-width: 992px) {
  .product-detail-title {
    margin-top: 10%;
  }
}

.product-detail-info {
  padding: 1rem 0;
  border-bottom: 1px solid #d6d6d6;
}

.upload-file-zone {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.upload-file {
  margin: 0 30px 10px 0;
}

ol.product-detail-button {
  margin: 2rem 0 1rem 0;
  position: relative;
  z-index: 1;
  padding-left: 0;
}
ol.product-detail-button li {
  display: inline-block;
  list-style-type: none;
  margin: 0 1px 10px 0;
  font-size: inherit;
  line-height: inherit;
}

.btn-basic {
  padding: 1px 13px;
  display: flex; flex-flow: row-reverse; align-items: center;
  border: 1px solid #8fb8a7;
  color: #999 !important;
  font-weight: 400;
  border-radius: 3px;
}
.btn-basic:hover {
  color: #fff !important;
  border: 1px solid #8fb8a7;
}

.btn-hover {
  position: relative;
}
.btn-hover:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #8fb8a7;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: all 0.3s;
}
.btn-hover:hover:before {
  transform: scaleX(1);
}

.btn-inquiry {
  color: #fff !important;
  font-weight: 400;
  background: #499475;
  padding: 2px 15px;
  border-radius: 3px;
  position: relative; display: flex; flex-flow: row-reverse; align-items: center;
}
.btn-inquiry:hover {
  color: #fff;
  background: #8fb8a7;
}
.btn-inquiry:after {
  content: "";
  /*position: absolute;
  top: 9px;
  left: 20px;*/
  background: url(icons/icon-inquiry-2.svg) no-repeat;
  width: 15px;
  height: 15px;
  display: block; margin: 0 5px 0 0;
}

.btn-back {
  position: relative;
}
.btn-back:after {
  content: "";
  /*position: absolute;
  top: 7px;
  left: 20px;*/
  background: url(icons/icon-back.svg) no-repeat;
  width: 17px;
  height: 17px;
  transition: all 0.3s;
  display: block; margin: 0 5px 0 0;
}
.btn-back:hover:after {
  background: url(icons/icon-back-2.svg) no-repeat;
}

.btn-prev {
  position: relative;
}
.btn-prev:after {
  content: "";
  /*position: absolute;
  top: 7px;
  left: 20px;*/
  background: url(icons/icon-prev.svg) no-repeat;
  width: 17px;
  height: 17px;
  transition: all 0.3s;
  display: block; margin: 0 5px 0 0;
}
.btn-prev:hover:after {
  background: url(icons/icon-prev-2.svg) no-repeat;
}

.btn-next {
  position: relative;
}
.btn-next:after {
  content: "";
  /*position: absolute;
  top: 7px;
  left: 20px;*/
  background: url(icons/icon-next.svg) no-repeat;
  width: 17px;
  height: 17px;
  transition: all 0.3s;
  display: block; margin: 0 5px 0 0;
}
.btn-next:hover:after {
  background: url(icons/icon-next-2.svg) no-repeat;
}

.tab-list {
  text-align: center;
  padding-left: 0;
  background: #8fb8a7;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  position: sticky; top: 83px; z-index: 100; overflow-x: auto; display: flex; flex-flow: row; justify-content: center;
}
.tab-list li {
  display: inline-block;
  padding: 3px 2rem;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
  list-style: none;
  text-align: center;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 2.5em;
  cursor: pointer;
  white-space:nowrap;
}
@media (max-width: 991px) {
  .tab-list {justify-content: flex-start;}
  .tab-list li {padding: 3px 20px;}
}
@media (max-width: 760px) {
  .product-list {margin-bottom: 40px;}
  .tab-list li {
    /*display: block;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);*/
  }
}
.tab-list li:last-child {
  border-right: solid 1px rgba(255, 255, 255, 0.3);
}
.tab-list li a {
  color: #fff;
  transition: all 0.5s;
}
.tab-list li a:hover {
  font-weight: bold;
}

.tab-list-content {
  padding: 30px;
  width: 100%;
  max-width: 1258px;
  margin: 2% auto;
  font-size: 1rem;
  line-height: 2rem;
}
.pro-detail-tab-title {
  text-align: center;
  margin: 2% 0;
  font-size: 2rem;
}
@media (max-width: 760px) {
    .tab-list-content {padding: 20px;}
}
@media (max-width: 460px) {
  .pro-detail-tab-title {
    font-size: 1.5rem;
  } 
}
.pro-detail-tab-title span {
  color: #EB8683;
}

.related-product-bg {
  background-color: #fffbf9;
  border: 1px solid #ffe2d5;
  border-radius: 3px;
  padding: 2%;
}
@media (max-width: 640px) {
  .related-product-bg {
    padding-bottom: 12%;
  }
}

.related-product {
  padding-left: 0 !important;
}
.related-product .related-product-pic {
  position: relative;
  padding-bottom: 75%;
  margin: 0 10px;
}
@media (max-width: 576px) {
    .related-product .related-product-pic {margin: 0;}
}
.related-product .related-product-pic .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.related-product .related-product-pic .img-center img {
  max-height: 100%;
}
.related-product .related-product-name {
  text-align: center;
  font-size: 1rem;
  color: #000;
}
.related-product .slick-dots {
  bottom: -60px;
}
.related-product .slick-dots li button:before {
  color: #dedede;
  opacity: 1;
}
.related-product .slick-dots li.slick-active button:before {
  color: #8fb8a7;
}