.products-image {
  position: relative;
}
.products-image__preview {
  width: 100%;
  height: 340px;
  background-color: #ffffff;
}
.products-image__preview > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.products-image__show {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  color: #666666;
  font-family: 'Roboto', sans-serif;
}
.products-image__show > i {
  font-size: 1.3rem;
}
.products-image__thumbs {
  display: flex;
  justify-content: center;
}
@media screen and (max-width:767px) {
  .products-image__thumbs {
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
  }
}
.products-image__wrapper {
  display: flex;
}
.products-image__thumb {
  width: 50px;
  height: 50px;
  border: 1px solid #e6e6e6;
}
@media screen and (max-width:767px) {
  .products-image__thumb {
    width: 40px;
    height: 40px;
  }
}
.products-image__thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-image__thumb--active {
  border: 2px solid #0e80db;
  position: relative;
}
.products-image__thumb--active:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: 7px;
  height: 7px;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 7px solid rgba(0, 0, 0, 0);
  border-right: 7px solid rgba(0, 0, 0, 0);
  border-bottom: 7px solid #0e80db;
}
.products-image__zoomed {
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
  bottom: 0;
  width: 600px;
  background-color: #FFFFFF;
  border: 1px solid #bdc3c7;
  display: none;
  z-index: 1000;
}
.products-image__zoomed--active {
  display: block;
  overflow: hidden;
}
.products-image__zoom-result {
  position: absolute;
  left: 0;
  top: 0;
}
.products-image__zoom-result > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.products-image__lens {
  position: absolute;
  border: 1px solid #bdc3c7;
  width: 30%;
  height: 30%;
  background-color: rgba(255, 255, 255, 0.7);
}
.product-directory {
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
  font-size: 0.8rem;
  margin-top: -5px;
  margin-bottom: 10px;
}
@media screen and (max-width:767px) {
  .product-directory {
    display: none;
  }
}
.product-directory__link {
  display: inline-block;
  color: #4d4d4d;
  padding-left: 0.5rem;
  margin-left: 0.5rem;
  position: relative;
}
.product-directory__link:before {
  position: absolute;
  right: calc(100% - 5px);
  content: '\f105';
  font-family: 'Line Awesome Free';
  font-weight: 900;
}
.product-directory__link--first {
  margin-left: 0;
  padding-left: 0;
}
.product-directory__link--first::before {
  content: '';
}
.product-details__header {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
}
@media screen and (max-width:767px) {
  .product-details__header {
    font-size: 1rem;
    margin-top: 1rem;
  }
}
.product-details__min-order {
  padding: 0.4rem 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width:767px) {
  .product-details__min-order {
    background-color: #e6e6e6;
  }
}
.min-order {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}
@media screen and (max-width:767px) {
  .min-order {
    flex-direction: column;
  }
}
.min-order__price {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  color: #0e80db;
  display: flex;
  align-items: center;
}
@media screen and (max-width:767px) {
  .min-order__price {
    font-family: 'Roboto', sans-serif;
    color: #e17055;
  }
}
.min-order__unit {
  margin-left: 0.5rem;
  font-size: 0.85rem;
  padding-right: 0.5rem;
  color: #808080;
  font-weight: 400;
}
.min-order__quantity {
  padding-left: 0.5rem;
  margin-left: 0.5rem;
  position: relative;
}
.min-order__quantity:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width:767px) {
  .min-order__quantity:before {
    display: none;
  }
}
.min-order__ref {
  color: #999999;
  font-size: 0.8rem;
}
.product-checkbox {
  margin-bottom: 0;
  position: relative;
}
.product-checkbox__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.product-checkbox__span {
  border: 1px solid #b3b3b3;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 0.1rem 0.2rem;
  font-size: 0.8rem;
  margin-right: 0.4rem;
  margin-bottom: 0.2rem;
  display: block;
}
.product-checkbox__input:checked ~ .product-checkbox__span {
  border: 1px solid #df7c72;
  background-color: #f2c9c5;
  color: #ffffff;
}
.filters {
  margin-top: 1.5rem;
}
.filters__row {
  margin-bottom: 1rem;
}
.filters__title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #666666;
}
.filters__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.filters__input {
  border: 1px solid #b3b3b3;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 0.1rem 0.2rem;
  font-size: 0.8rem;
  margin-right: 0.4rem;
  margin-bottom: 0.2rem;
}
.topics {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}
@media screen and (max-width:767px) {
  .topics {
    flex-direction: column;
  }
}
.topics__field {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #2c3e50;
  margin-right: 0.3rem;
}
.topics__topic {
  font-size: 0.8rem;
  color: #737373;
}
.topics__icon {
  width: 18px;
  height: 18px;
  margin-right: 0.4rem;
  position: relative;
}
.topics__icon:after {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
}
.topics__icon--trade:after {
  content: '\f3ed';
  font-size: 1.3rem;
  top: -7px;
}
.topics__icon--shipment:after {
  font-family: 'Font Awesome 5 Brands';
  content: '\f3ec';
  font-size: 1.3rem;
  top: -8px;
}
.topics__link {
  font-size: 0.8rem;
  color: #0984e3;
  padding-left: 0.6rem;
  margin-left: 0.1rem;
  position: relative;
}
.topics__link:after {
  position: absolute;
  left: 0;
  top: 0.1rem;
  bottom: 0.1rem;
  width: 1px;
  background-color: #b3b3b3;
  content: '';
}
.payment {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.payment__txt {
  font-size: 0.8rem;
  color: #2c3e50;
  margin-right: 0.5rem;
}
.payment__method {
  border: 1px solid #b3b3b3;
  height: 22px;
  margin-right: 0.3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.1rem;
}
.payment__method > img {
  width: auto;
  height: calc(100% - 0.2rem);
  object-fit: contain;
}
.payment__method--banking {
  border: 1px solid #27ae60;
  color: #27ae60;
  background-color: #ffffff;
  font-size: 0.8rem;
  font-style: italic;
  padding: 0 0.2rem;
}
.lead-time {
  max-width: 100%;
  margin-bottom: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #e6e6e6 rgba(0, 0, 0, 0);
}
.lead-time::-webkit-scrollbar {
  height: 5px;
}
.lead-time::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}
.lead-time::-webkit-scrollbar-thumb {
  background-color: #e6e6e6;
}
.lead-time__table {
  background-color: #FFFFFF;
  margin-bottom: 0;
}
@media screen and (max-width:767px) {
  .lead-time__table {
    display: flex;
  }
}
@media screen and (max-width:767px) {
  .lead-time__tbody {
    display: flex;
    flex: 1;
    flex-direction: row;
  }
}
@media screen and (max-width:767px) {
  .lead-time__title {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
  }
}
@media screen and (max-width:767px) {
  .lead-time tr {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
  }
}
.lead-time__td {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  white-space: nowrap;
}
.customization__item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}
.customization__item > span {
  display: inline-block;
  margin-left: 0.5rem;
  color: #636e72;
}
.samples {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.samples__wrapper {
  display: flex;
}
.samples__item {
  position: relative;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}
.samples__item:after {
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #cccccc;
  content: '';
}
.checkout {
  font-family: 'Poppins', sans-serif;
}
@media screen and (max-width:767px) {
  .checkout {
    top: 0 !important;
    width: 100% !important;
    margin-top: 1rem;
  }
}
.checkout__wrapper {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  box-shadow: 3px 3px 3px #e6e6e6;
}
.checkout__header {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.checkout__inquiry {
  background-color: #3498db;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.checkout__inquiry > i {
  font-size: 1.8rem;
}
.checkout__btn {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 0.3rem 0.5rem;
  margin-bottom: 1rem;
}
.checkout__btn:hover {
  color: #000000;
}
.checkout__btn > i {
  font-size: 1.3rem;
}
.checkout__contact {
  background-color: #f39c12;
  color: #FFFFFF;
}
.checkout__order {
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
}
.checkout__cart {
  display: flex;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0.5rem;
  margin: 0 auto 1rem auto;
  font-size: 0.8rem;
}
.checkout__cart > i {
  font-size: 1.6rem;
  color: #f39c12;
}
.recommenced {
  padding: 2rem 0 3rem 0;
  background-color: #fafafa;
}
.recommenced__header {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  position: relative;
}
.recommenced__header:after {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 50%;
  height: 1px;
  background-color: #0984e3;
  content: '';
}
.details {
  font-family: 'Poppins', sans-serif;
  padding: 1rem 0;
}
.details__header {
  display: inline-block;
  padding: 0.7rem 1rem;
  background-color: #FFFFFF;
  border-radius: 10px 10px 0 0;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  margin-bottom: -1px;
}
.details__description {
  background-color: #FFFFFF;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  font-family: 'Poppins', sans-serif;
}
@media screen and (max-width:767px) {
  .details__description {
    overflow: hidden;
    max-width: 100%;
  }
}
.details__description p:nth-child(1) > strong {
  display: block;
  font-size: 1.3rem;
  border-bottom: 1px dashed #cccccc;
  color: #2c3e50;
  margin-bottom: 2.5rem;
}
.details__description .table {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
}
.details__description .table td,
.details__description .table th {
  padding: 0.2rem 0.75rem;
  vertical-align: top;
  border-top: none;
  color: #808080;
  font-weight: 400;
}
.details__description .table td:nth-child(odd),
.details__description .table th:nth-child(odd) {
  white-space: nowrap;
  font-weight: 700;
  color: #2c3e50;
}
@media screen and (max-width:767px) {
  .details__description .table td:nth-child(odd),
  .details__description .table th:nth-child(odd) {
    white-space: normal;
  }
}
@media screen and (max-width:767px) {
  .details__description .table td,
  .details__description .table th {
    flex: 0 0 50%;
    max-width: 50%;
    border-bottom: 1px solid #e6e6e6;
    padding: 0.3rem 0;
  }
}
@media screen and (max-width:767px) {
  .details__description .table tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.quantity {
  margin: 1.5rem 0;
  font-family: 'Poppins', sans-serif;
}
.quantity__row {
  display: flex;
  align-items: center;
}
.quantity__col {
  margin-right: 4rem;
}
@media screen and (max-width:767px) {
  .quantity__col {
    margin-right: 1rem;
  }
}
.quantity__col--input {
  flex: 1;
  margin-right: 0;
}
.quantity__col--unit {
  padding-right: 4rem;
}
.quantity__title {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
}
.quantity__unit {
  font-size: 0.9rem;
}
.quantity__wrapper {
  white-space: nowrap;
}
.quantity__price {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.quantity__group {
  display: flex;
}
.quantity__control {
  width: 15%;
  background-color: #ffffff;
  border: 1px solid #0e80db;
  color: #0e80db;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.quantity__control:hover {
  background-color: #0e80db;
  color: #ffffff;
}
.quantity__control--next {
  border-radius: 0 5px 5px 0;
}
.quantity__control--prev {
  border-radius: 5px 0 0 5px;
}
.quantity__input {
  width: 70%;
  border: 1px solid #dddddd;
  border-left: none;
  border-right: none;
  background-color: rgba(0, 0, 0, 0.03);
  text-align: center;
  padding: 0.3rem 1rem;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.quantity__input::-webkit-inner-spin-button,
.quantity__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.product-prices-all {
  margin-top: 1rem;
  background-color: #ffffff;
  padding: 0.5rem 0;
  border: 1px solid #dddddd;
}
.product-prices-all__wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width:767px) {
  .product-prices-all__wrapper {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
  }
}
.product-prices-all__element {
  padding: 0 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}
.product-prices-all__quantity {
  color: #0e80db;
  font-family: 'Roboto', sans-serif;
  line-height: 1rem;
}
@media screen and (max-width:767px) {
  .product-prices-all__quantity {
    font-size: 0.7rem;
  }
}
.product-prices-all__amount {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}
@media screen and (max-width:767px) {
  .product-prices-all__amount {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
}
.do-entry {
  margin-bottom: 1rem;
}
.do-entry-separate {
  border-bottom: 1px dashed #e6e7eb;
  padding-bottom: 1rem;
}
.do-entry-title {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
}
.do-entry-list {
  display: flex;
  flex-wrap: wrap;
}
dl.do-entry-item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
  display: flex;
}
dl.do-entry-item table {
  width: auto;
  max-width: 100%;
}
dl.do-entry-item table td {
  padding: 6px 12px;
  text-align: left;
  border: 1px solid #c8d2e0;
  box-sizing: content-box;
}
dt.do-entry-item {
  font-weight: 400;
  flex: 0 0 30%;
  max-width: 30%;
  white-space: nowrap;
  overflow: hidden;
}
dt.do-entry-item-key {
  font-weight: 400;
  flex: 0 0 15%;
  max-width: 15%;
  white-space: nowrap;
  overflow: hidden;
}
.do-entry-full > .do-entry-list > dl.do-entry-item {
  flex: 0 0 100%;
  max-width: 100%;
}
.do-entry-full > .do-entry-list > dl.do-entry-item > dt {
  font-weight: 400;
  flex: 0 0 15%;
  max-width: 15%;
  white-space: nowrap;
  overflow: hidden;
}
.inquiry {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: none;
}
.inquiry--active {
  display: block;
}
.inquiry__wrapper {
  position: absolute;
  left: 0;
  right: 0;
  width: 60%;
  top: calc(100% + 30px);
  margin: auto;
  background-color: #2c3e50;
  padding: 1rem;
  border-radius: 10px;
}
.inquiry__close {
  display: block;
  position: absolute;
  bottom: calc(100% + 20px);
  left: 0;
  right: 0;
  width: 5%;
  margin: auto;
  text-align: center;
  font-size: 2rem;
}
.inquiry__form {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 0 1rem 1rem;
}
.inquiry__header {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.inquiry__title {
  background-color: #2c3e50;
  color: #FFFFFF;
  padding: 0.2rem 2rem 1rem 2rem;
  text-transform: uppercase;
  line-height: 0.3rem;
  border-radius: 0 0 10px 10px;
}
.inquiry__row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
.inquiry__label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.inquiry__group {
  display: flex;
  max-width: 70%;
}
.inquiry__col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.inquiry__col > span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}
.inquiry__col + .inquiry__col {
  padding-left: 1rem;
}
.inquiry__input {
  border: 1px solid #2c3e50;
  border-radius: 5px;
  max-width: 70%;
  padding: 0.2rem 0.5rem;
}
.inquiry__input:read-only {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}
.inquiry__group .inquiry__input {
  max-width: 100%;
}
.inquiry__text {
  border-radius: 5px;
  border: 1px solid #2c3e50;
}
.inquiry__btn {
  background-color: #2c3e50;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  padding: 0.5rem 2rem;
}
.message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 3000;
}
.message__box {
  position: absolute;
  left: 0;
  right: 0;
  width: 40%;
  top: calc(100% + 30px);
  margin: auto;
  background-color: #27ae60;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.message__close {
  display: block;
  position: absolute;
  bottom: calc(100% + 20px);
  left: 0;
  right: 0;
  width: 5%;
  margin: auto;
  text-align: center;
  font-size: 2rem;
}
.message__icon {
  font-size: 6rem;
  color: #0b311b;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #0b311b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.message__text {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 2rem 2.5rem;
}
/*# sourceMappingURL=products.css.map */