/* Products List ============================================================== */
.product-list {
  text-align: center;
  border: 1px solid #eaeaea;
  margin-top: 20%;
  box-shadow: 2px 9px 10px -3px rgba(0, 0, 0, 0.1);
}
.product-list .product-pic {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 74%;
}
.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 0.5rem 1rem 0;
}

.btn-basic {
  padding: 0 25px 0 45px;
  display: block;
  border: 1px solid #c8cf72;
  color: #999 !important;
  border-radius: 3px;
}
.btn-basic:hover {
  color: #fff !important;
  border: 1px solid #c8cf72;
}

.btn-hover {
  position: relative;
}
.btn-hover:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(#dbe27e, #c8cf72);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: all 0.3s;
}
.btn-hover:hover:before {
  transform: scaleX(1);
}

.btn-inquiry {
  color: #fff !important;
  background: linear-gradient(#dbe27e, #c8cf72);
  padding: 7px 25px 7px 45px;
  border-radius: 3px;
  position: relative;
}
.btn-inquiry:hover {
  color: #fff;
  background: linear-gradient(#c8cf72, #dbe27e);
}
.btn-inquiry:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 20px;
  background: url(icons/icon-inquiry-2.svg) no-repeat;
  width: 15px;
  height: 15px;
}

.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;
}
.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 ease-in-out;
}
.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 ease-in-out;
}
.btn-next:hover:after {
  background: url(icons/icon-next-2.svg) no-repeat;
}

.tab-list {
  text-align: center;
  padding-left: 0;
  background: #c8cf72;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  border-top: solid 1px rgba(255, 255, 255, 0.5);
}
.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;
}
@media (max-width: 760px) {
  .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: 98%;
  max-width: 1360px;
  margin: 2% auto;
  font-size: 1rem;
  line-height: 2rem;
}
.pro-detail-tab-title {
  text-align: center;
  margin: 2% 0;
  font-size: 2rem;
}
.pro-detail-tab-title span {
  color: #c8cf72;
}

.related-product-bg {
  background-color: #fffbf9;
  border: 1px solid #ffe2d5;
  border-radius: 3px;
  padding: 2% 2% 5% 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: 80%;
  margin: 0 15px;
}
.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: #c8cf72;
}