/**
 * Product Specifications Table Block Styles
 */
.product-specifications-table {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .product-specifications-table h2 {
    order: 1;
  }
  .product-specifications-table__container {
    order: 2;
  }
  .product-specifications-table__footnote {
    order: 4;
  }
  .product-specifications-table__specs {
    order: 3;
    min-height: 200px;
  }
}
.product-specifications-table h2 {
  margin-bottom: 16px;
}
.product-specifications-table__container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-specifications-table__filter {
  display: flex;
  align-items: center;
  gap: 38px;
  order: 1;
}
.product-specifications-table__filter-label {
  margin: 0;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.product-specifications-table__filter-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M3.47328 5.0962C3.70953 4.6237 4.18203 4.31995 4.72203 4.31995H19.302C19.8083 4.31995 20.2808 4.6237 20.517 5.0962C20.7195 5.5687 20.652 6.14245 20.3145 6.54745L14.172 14.0737V18.3599C14.172 18.7987 13.9358 19.1699 13.5645 19.3387C13.1933 19.5074 12.7545 19.4737 12.417 19.2374L10.257 17.6174C9.98703 17.4149 9.85203 17.1112 9.85203 16.7399V14.0737L3.67578 6.54745C3.33828 6.14245 3.27078 5.5687 3.47328 5.0962Z' fill='black'/%3e%3c/svg%3e");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.product-specifications-table__filter-select {
  color: #1E1E1E;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 6px 4px 6px 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: #FFF;
}
.product-specifications-table__dots {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  order: 3;
  gap: 24px;
}
.product-specifications-table__dot {
  width: 16px;
  height: 16px;
  background-color: #D9D9D9;
  border-radius: 100%;
}
.product-specifications-table__dot--active {
  background-color: #E24A02;
}
.product-specifications-table__desktop {
  display: block;
  order: 2;
}
.product-specifications-table__mobile {
  display: none;
  order: 2;
}
.product-specifications-table__mobile-panel {
  display: none;
}
.product-specifications-table__mobile-panel--active {
  display: block;
}
.product-specifications-table__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 16px;
  line-height: 1;
  background-color: white;
  border: 1px solid #000;
}
.product-specifications-table__table th {
  background: black;
  color: white;
  padding: 1rem 1.5rem;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  line-height: 20px;
  border: none;
}
.product-specifications-table__table th:not(:last-child) {
  border-right: 1px solid #7F7F7F;
}
.product-specifications-table__table td {
  padding: 12px 16px;
}
.product-specifications-table__table td:not(:last-child) {
  border-right: 1px solid #D9D9D9;
}
.product-specifications-table__row:nth-child(even) {
  background: #F5F5F5;
}
.product-specifications-table__row[hidden] {
  display: none;
}
.product-specifications-table__model {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
}
.product-specifications-table__value {
  font-family: "Roboto", sans-serif;
  text-align: center;
}
.product-specifications-table__footnote {
  font-size: 14px;
  line-height: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .product-specifications-table__footnote {
    padding-bottom: 0;
  }
}
.product-specifications-table__specs {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .product-specifications-table__specs {
    position: relative;
    flex-direction: row;
    justify-content: flex-end;
    gap: 30px;
    border: 1px solid black;
    border-top: 0;
  }
  .product-specifications-table__specs::before {
    content: "";
    height: 1px;
    width: 100%;
    background: black;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 3;
  }
  .product-specifications-table__specs::after {
    content: "";
    height: 2px;
    width: 100%;
    background: black;
    position: absolute;
    top: auto;
    bottom: -1px;
    left: 0;
    z-index: 3;
  }
}
.product-specifications-table__specs h4,
.product-specifications-table__specs .product-specifications-table__spec-value {
  font-size: 18px;
  line-height: normal;
}
.product-specifications-table__specs-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  row-gap: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .product-specifications-table__specs-grid {
    flex-direction: row;
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) {
  .product-specifications-table__specs-grid {
    flex-direction: row;
    align-items: center;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 40px;
    flex: 1;
  }
  .product-specifications-table__specs-grid:has(.product-specifications-table__spec-image) {
    padding-bottom: 63px;
  }
}
.product-specifications-table__spec {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .product-specifications-table__spec {
    width: 33%;
  }
}
.product-specifications-table__spec .product-specifications-table__spec-image {
  order: 1;
}
.product-specifications-table__spec h4 {
  order: 3;
  color: #000;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 30px;
  text-transform: uppercase;
}
.product-specifications-table__spec .product-specifications-table__spec-value {
  order: 2;
  color: #E24A02;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.24px;
}
.product-specifications-table__spec-image {
  display: flex;
  justify-content: center;
}
.product-specifications-table__cta {
  background-color: #000;
  padding-top: 168px;
  padding-bottom: 108px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.product-specifications-table__cta::before {
  content: "";
  background-color: white;
  height: 110px;
  width: 100%;
  clip-path: polygon(0 0, calc(100% + 1px) 0, 0 calc(100% + 1px));
  position: absolute;
  top: -1px;
  left: -1px;
}
@media only screen and (min-width: 576px) {
  .product-specifications-table__cta {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .product-specifications-table__cta {
    padding-top: 0;
    padding-right: 30px;
    padding-bottom: 0;
    padding-left: 80px;
  }
  .product-specifications-table__cta::before {
    height: 100%;
    width: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-specifications-table__cta {
    padding-right: 99px;
    padding-left: 157px;
  }
  .product-specifications-table__cta::before {
    width: 110px;
  }
}
.product-specifications-table__cta-link:hover {
  background-color: #FFF;
  border-color: #FFF;
  color: #E24A02 !important;
}

@media only screen and (max-width: 991px) {
  .product-specifications-table__desktop {
    display: none;
  }
  .product-specifications-table__mobile {
    display: block;
  }
  .product-specifications-table th {
    padding: 12px 16px;
  }
  .product-specifications-table th:first-of-type {
    width: 139px;
    border-color: #7F7F7F;
  }
  .product-specifications-table td:not(:last-child) {
    border-color: black;
  }
}
@media only screen and (min-width: 992px) {
  .product-specifications-table__mobile, .product-specifications-table__dots {
    display: none;
  }
}

/*# sourceMappingURL=product-specifications-table-style.css.map */
