/* Default Styles for Container */
.content-single-product-brand-container {
  width: 100%;
  max-width: 100%;
  /* Ensure no overflow */
  margin-left: auto;
  /* Center horizontally */
  margin-right: auto;
  /* Center horizontally */
  padding-left: 16px;
  /* Add some inner spacing */
  padding-right: 16px;
  /* Add some inner spacing */
  box-sizing: border-box;
  /* Include padding in width */
}

/* Small devices (up to 576px) */
@media (min-width: 576px) {
  .content-single-product-brand-container {
    max-width: 100%;
  }
}
/* Medium devices (up to 768px) */
@media (min-width: 768px) {
  .content-single-product-brand-container {
    max-width: 100%;
  }
}
/* Large devices (up to 992px) */
@media (min-width: 992px) {
  .content-single-product-brand-container {
    max-width: 1200px;
  }
}
/* Extra large devices (up to 1200px) */
@media (min-width: 1200px) {
  .content-single-product-brand-container {
    max-width: 1140px;
  }
}
/* Extra extra large devices (up to 1400px) */
@media (min-width: 1400px) {
  .content-single-product-brand-container {
    max-width: 1440px;
  }
}
.single-product-card-box-style {
  background-color: #ffffff;
  color: #222222;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 16px 24px;
  border: 1px solid #eaeaea;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .single-product-card-box-style {
    padding: 10px;
  }
}

.content-single-product-wrapper {
  padding-bottom: 20px;
  background-color: #f5f5f5;
}
.content-single-product-wrapper .route-wrapper {
  padding: 10px 0;
}
.content-single-product-wrapper .route-wrapper .routes {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .route-wrapper .routes i {
    font-size: 12px;
  }
}
.content-single-product-wrapper .route-wrapper .routes .route-name {
  color: rgb(34, 34, 34);
  font-size: 12px;
  font-weight: bold;
  color: #006769;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .route-wrapper .routes .route-name {
    font-size: 10px;
  }
}
.content-single-product-wrapper .route-wrapper .routes .right-arrow {
  font-size: 10px;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .route-wrapper .routes .right-arrow {
    font-size: 10px;
  }
}
.content-single-product-wrapper .route-wrapper .routes .route-link {
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}
.content-single-product-wrapper .route-wrapper .routes .route-link:hover {
  text-decoration: underline;
}
.content-single-product-wrapper .product-wrapper {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 20px;
}
@media (max-width: 1200px) {
  .content-single-product-wrapper .product-wrapper {
    grid-template-columns: 1fr 350px;
  }
}
@media (max-width: 992px) {
  .content-single-product-wrapper .product-wrapper {
    display: block;
  }
}
.content-single-product-wrapper .product-wrapper .product {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-single-product-wrapper .product-wrapper .product .product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 1400px) {
  .content-single-product-wrapper .product-wrapper .product .product-details {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .content-single-product-wrapper .product-wrapper .product .product-details {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .content-single-product-wrapper .product-wrapper .product .product-details {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .content-single-product-wrapper .product-wrapper .product .product-details {
    flex-direction: column;
    align-items: center;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-details .image-wrapper {
  width: 211px;
  height: 211px;
  flex-shrink: 0;
}
.content-single-product-wrapper .product-wrapper .product .product-details .image-wrapper .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-single-product-wrapper .product-wrapper .product .product-details .details {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .product-wrapper .product .product-details .details {
    width: 100%;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-details .details .table {
  width: 100%;
}
.content-single-product-wrapper .product-wrapper .product .product-details .details .table .thead {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
  display: block;
}
.content-single-product-wrapper .product-wrapper .product .product-details .details .table .tbody {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content-single-product-wrapper .product-wrapper .product .product-details .details .table .tbody .tr {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 12px;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .product-wrapper .product .product-details .details .table .tbody .tr {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-details .details .table .tbody .tr .td-title {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .product-wrapper .product .product-details .details .table .tbody .tr .td-title {
    font-weight: 700;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-details .details .table .tbody .tr .td-content {
  font-size: 13px;
  line-height: 18px;
  color: #444;
  word-break: break-word;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .product-wrapper .product .product-details .details .table .tbody .tr .td-content {
    font-size: 12px;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-details .details .table .tbody .tr .td-content a {
  color: #221abb;
  font-weight: bold;
  text-decoration-line: none;
}
.content-single-product-wrapper .product-wrapper .product .product-details .details .table .tbody .tr .td-content input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  width: 100%;
  max-width: 220px;
}
.content-single-product-wrapper .product-wrapper .product .cta-wrapper {
  display: none;
}
@media (max-width: 992px) {
  .content-single-product-wrapper .product-wrapper .product .cta-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .content-single-product-wrapper .product-wrapper .product .cta-wrapper .datasheet-link {
    text-align: center;
    margin-top: 4px;
    padding: 10px 20px;
    background: #006768;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .content-single-product-wrapper .product-wrapper .product .cta-wrapper .datasheet-link:hover {
    background: #006768;
  }
}
.content-single-product-wrapper .product-wrapper .product .contact-note {
  display: none;
}
@media (max-width: 992px) {
  .content-single-product-wrapper .product-wrapper .product .contact-note {
    display: block;
    font-size: 10px;
    margin-top: 4px;
    font-weight: 500;
    font-style: italic;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-attributes-section {
  padding: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  font-size: 13px;
}
.content-single-product-wrapper .product-wrapper .product .product-attributes-section .section-title {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid #eaeaea;
  background-color: #f7f7f7;
  margin: 0;
}
.content-single-product-wrapper .product-wrapper .product .product-attributes-section .description {
  color: #444;
  font-size: 13px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .product-wrapper .product .product-attributes-section .description {
    font-size: 12px;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-attributes-section .attributes-table .row {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .product-wrapper .product .product-attributes-section .attributes-table .row {
    grid-template-columns: 200px 1fr;
    gap: 5px;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-attributes-section .attributes-table .row.header {
  font-weight: bold;
  border-top: none;
}
.content-single-product-wrapper .product-wrapper .product .product-attributes-section .attributes-table .row .type {
  font-weight: 600;
  font-size: 13px;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .product-wrapper .product .product-attributes-section .attributes-table .row .type {
    font-size: 12px;
    font-weight: 700;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-attributes-section .attributes-table .row .description {
  color: #444;
  font-size: 13px;
}
@media (max-width: 576px) {
  .content-single-product-wrapper .product-wrapper .product .product-attributes-section .attributes-table .row .description {
    font-size: 12px;
  }
}
.content-single-product-wrapper .product-wrapper .product .product-attributes-section .attributes-table .row .description a {
  color: #221abb;
  font-weight: bold;
  text-decoration-line: none;
}
.content-single-product-wrapper .product-wrapper .product .product-tags-wrapper .section-title {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid #eaeaea;
  background-color: #f7f7f7;
  margin: 0;
}
.content-single-product-wrapper .product-wrapper .product .product-tags-wrapper .product-tags .tags {
  padding: 3px 7px;
  background-color: #0070c0;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  margin-right: 5px;
}
.content-single-product-wrapper .product-wrapper .product .explore-brand .title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.content-single-product-wrapper .product-wrapper .product-buy-options {
  display: block;
}
.content-single-product-wrapper .product-wrapper .product-buy-options .buy-options {
  background-color: #ffffff;
  color: #222222;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 16px 10px;
  border: 1px solid #eaeaea;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}
.content-single-product-wrapper .product-wrapper .product-buy-options .buy-options .contact-note {
  font-size: 10px;
  margin-top: 4px;
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 992px) {
  .content-single-product-wrapper .product-wrapper .product-buy-options {
    display: none;
  }
}/*# sourceMappingURL=content-single-product-default.css.map */