/* Products List ============================================================== */
.copywriting {
  margin-bottom: 20px;
  line-height: 2rem;
}
.copywriting ul, .copywriting ol {
  padding-left: 20px;
}
.copywriting a:hover {
  color: #fabc3d;
}

.pro-list {
  text-align: center;
  margin-bottom: 120px;
  -webkit-box-shadow: 2px 9px 10px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 9px 10px -3px rgba(0, 0, 0, 0.1);
}
.pro-list * {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.pro-list .pro-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}
.pro-list .pro-img:hover {
  cursor: pointer;
}
.pro-list .pro-img .hover-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(243, 213, 0, 0.9)), to(rgba(243, 213, 0, 0.5)));
  background: linear-gradient(to top, rgba(243, 213, 0, 0.9) 0%, rgba(243, 213, 0, 0.5) 100%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.pro-list .pro-img:hover .hover-mask {
  opacity: 1;
}
.pro-list .pro-img .hover-ico {
  position: absolute;
  left: 2.5%;
  top: 5%;
  z-index: 2;
  width: 95%;
  height: 90%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  -webkit-transform: scale(2);
          transform: scale(2);
  opacity: 0;
  pointer-events: none;
}
.pro-list .pro-img .hover-ico:before {
  position: absolute;
  top: 48%;
  left: 47%;
  content: "";
  background: url(icons/icon-arrow-2.svg) no-repeat;
  padding: 15px;
}
.pro-list .pro-img:hover .hover-ico {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.pro-list .pro-img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.pro-list .pro-img .img-center a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pro-list .pro-img .img-center img {
  max-height: 100%;
}
.pro-list .pro-text {
  border: 1px solid #eaeaea;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  position: relative;
  line-height: 1.5rem;
  padding: 20px 0 40px 0;
  font-weight: bold;
}
.pro-list .pro-text .pro-text-icon {
  position: absolute;
  bottom: -30px;
  left: calc(50% - 30px);
  border-radius: 100%;
  background-color: #c63c3c;
  width: 60px;
  height: 60px;
}
.pro-list .pro-text .pro-text-icon:before {
  position: absolute;
  top: 20px;
  left: 22px;
  content: "";
  background: url(icons/icon-arrow.svg) no-repeat;
  padding: 9px;
}
.pro-list .pro-text:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #c63c3c;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.pro-list:hover .pro-text:before {
  width: 100%;
}
.pro-list:hover .pro-text-icon {
  -webkit-transform: rotate(90deg) scale(0.8);
          transform: rotate(90deg) scale(0.8);
}

/* Product Detail ============================================================ */
.pro-detail-wrap {
  margin: 70px 0;
}
@media (max-width: 480px) {
  .pro-detail-wrap {
    margin: 0 0 70px 0;
  }
}

.pro-detail-left {
  width: 90%;
  margin: 2% auto 0 auto;
}
@media (max-width: 992px) {
  .pro-detail-left {
    margin: 2% auto 10% auto;
  }
}

.pro-detail-pic {
  position: relative;
  overflow: hidden;
  width: 95%;
  margin: 0 auto;
  margin-top: 10px;
  height: 0;
  padding-bottom: 60%;
}
.pro-detail-pic img {
  max-height: 100%;
}
.pro-detail-pic .img-center a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pro-detail-title h2 {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 35px;
  text-align: center;
}
.pro-detail-title h2:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #c63c3c;
  font-size: 2rem;
  position: absolute;
  bottom: -15px;
  left: calc(50% - 25px);
}
.pro-detail-title h2 span {
  color: #fabc3d;
}

.pro-detail-info {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #d6d6d6;
}
.pro-detail-info .pro-detail-desc {
  margin-top: 30px;
  font-size: 0.9rem;
  line-height: 2rem;
}
.pro-detail-info .pro-detail-desc a:hover {
  color: #fabc3d;
}
.pro-detail-info .pro-detail-spec a:hover {
  color: #fabc3d;
}
.pro-detail-info .pro-detail-spec .pro-detail-spec-title {
  margin: 3% 0;
  font-size: 1.2rem;
  color: #fabc3d;
  font-weight: bold;
}
.pro-detail-info ul {
  margin: 2% auto;
  list-style-type: disc;
}
.pro-detail-info ul li {
  margin: 3% 0 3% 20px;
  font-size: 0.9rem;
}
.pro-detail-info ul li span {
  display: inline-block;
}
.pro-detail-info ul li span.name {
  width: 30%;
  font-weight: 700;
}
.pro-detail-info ul li span.value {
  width: 60%;
  font-weight: 400;
  color: #888;
}

ol.pro-detail-button {
  margin: 2rem 0 1rem 0;
}
ol.pro-detail-button li {
  display: inline-block;
  list-style-type: none;
  margin: 0 0.5rem 1rem 0;
}

.btn-basic {
  padding: 7px 25px 7px 45px;
  display: block;
  border: 1px solid #d0d0d0;
  color: #999 !important;
  font-weight: 400;
  border-radius: 3px;
}
.btn-basic:hover {
  color: #fff !important;
  border: 1px solid #75c265;
}

.btn-hover {
  position: relative;
}
.btn-hover:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#84e071), to(#75c265));
  background: linear-gradient(#84e071, #75c265);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-hover:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.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;
  -webkit-transition: all 0.3s;
  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-2.svg) no-repeat;
  width: 17px;
  height: 17px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-prev:hover:after {
  background: url(icons/icon-prev.svg) no-repeat;
}

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

.social-icons-detail {
  text-align: center;
  margin-top: 50px;
}

.wrap-product-inquiry {
  margin: 0 auto;
  max-width: 960px;
}

.product-inquiry-table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#75c265), to(#7ed06c));
  background: linear-gradient(90deg, #75c265, #7ed06c);
  font-weight: bold;
  padding: 10px 30px 10px 60px;
  border-radius: 5px;
}
.product-inquiry-table-title li {
  list-style: none;
}
.product-inquiry-table-title li:nth-child(1) {
  width: calc(100% - 180px);
}
.product-inquiry-table-title li:nth-child(2) {
  width: 180px;
  text-align: center;
}

.product-inquiry-table-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 1rem;
}
.product-inquiry-table-list li {
  list-style: none;
  font-size: 0.9rem;
}
.product-inquiry-table-list li:nth-child(1) {
  width: calc(100% - 180px);
  padding-left: 30px;
}
.product-inquiry-table-list li:nth-child(2) {
  width: 180px;
}

.handle-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.handle-counter input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
}
.handle-counter .btn-counter {
  padding: 6px 12px;
  border: 1px solid transparent;
  color: #fff;
  background-color: #75c265;
}
.handle-counter .btn-counter:disabled, .handle-counter .btn-counter:disabled:hover {
  background-color: #ccc;
  cursor: not-allowed;
}
.handle-counter .btn-counter:hover {
  background-color: #7ed06c;
  cursor: pointer;
}

.btn-product-inquiry {
  padding: 10px 20px 10px 20px;
  margin: 0 auto;
  margin-top: 7%;
  border: none;
  width: 100%;
  max-width: 300px;
  text-align: center;
  display: block;
  color: #fff !important;
  background-color: #75c265;
  border-radius: 5px;
}
.btn-product-inquiry:hover {
  background-color: #75d461;
}

.related-pro-zone {
  padding: 30px;
  margin: 2% auto;
}
.related-pro-zone h2 {
  margin: 2% 0;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  text-align: center;
}
.related-pro-zone h2 span {
  color: #c63c3c;
}

.related-pro {
  padding-left: 0px !important;
}
.related-pro li {
  text-align: center;
  padding: 0 20px;
}
.related-pro li figure {
  position: relative;
  overflow: hidden;
  padding-bottom: 70%;
}
.related-pro li figure span a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.related-pro li h3 {
  padding-top: 20px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #000;
}
.related-pro li img {
  max-height: 100%;
}