/* move to navigation.css later */
.new-app-disclaimer {
  padding-left: 60px;
  background-color: rgb(245, 245, 247);
  margin: 0 auto;
  max-width: 980px;
  padding: 0 22px;
}

@media screen and (max-width: 1200px) {
  .new-app-disclaimer {
    padding: 0 22px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1200px) {
  .new-app-disclaimer {
    padding: 0 16px;
    margin: 0 auto;
  }
}

/*vertical spacer*/
.site-vert-spacer-150 {
  padding-top: 150px;
}

.site-vert-spacer-50 {
  padding-top: 50px;
}

.site-vert-spacer-25 {
  padding-top: 25px;
}

/* buttons and links*/
.site-page-buttons {
  justify-content: flex-start;
  display: flex;
  gap: 20px;
}

.site-page-button {
  padding: 10px 20px 11px 20px;
  font-size: 14px;
  border-radius: 20px;
  color: white;
  background-color: #2090FF;
  border: 1px solid #2090FF;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-page-button:hover {
  color: white;
  background-color: #086ED2;
  border: 1px solid #086ED2;
}

.site-page-link {
  color: #218fff;
  text-decoration: underline;
}

.site-page-link:hover {
  color: #218fff;
  text-decoration: underline;
}

/* BLOCKS */
.site-page-text-block {
  margin: 0 auto;
  width: 1050px;
}

.site-page-container-gray {
  background-color: #F5F5F5;
}

.site-page-infobox {
  background-color: #ffffff;
  padding: 75px 50px 100px 50px;
  margin: 100px 0;
}

.site-page-infobox-title {
  font-size: 30px;
  font-weight: 500;
}

.site-page-title {
  font-size: 60px;
  font-weight: 600;
}

.site-page-intro {
  font-size: 35px;
  font-weight: 500;
}

.site-page-header-wide {
  display: block;
  margin: 0 auto 100px;
  width: 100%;
  max-width: 1430px;
  aspect-ratio: 1430 / 650;
  object-fit: cover;
}

.site-page-header-high {
  display: block;
  margin: 0 auto 100px;
  width: 100%;
  max-width: 1430px;
  aspect-ratio: 1430 / 780;
  object-fit: cover;
}

.site-page-image-full {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
  max-width: unset;
}

.site-page-image-medium,
.site-page-image-small {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  object-fit: cover;
  background-color: #F8F8F8;
}

.site-page-image-medium {
  width: 730px;
  height: 340px;
}

.site-page-video-medium {
  display: block;
  margin: 0 auto;
  width: 730px;
  max-width: 100%;
}

.site-page-video-medium .site-page-caption {
  padding-left: 0;
  padding-right: 0;
}

.site-page-image-small {
  width: 560px;
  height: 260px;
}

.site-page-block-title {
  font-size: 45px;
  font-weight: 600;
}

.site-page-block-intro {
  font-size: 25px;
  font-weight: 500;
  line-height: 120%;
}

.site-page-p {
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.site-page-caption {
  padding: 35px 35px 55px;
  font-size: 18px;
  font-weight: 300;
  line-height: 135%;
}

.scroll-reveal,
p.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-reveal.is-visible,
p.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-page-listing-item {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-page-listing.is-visible .site-page-listing-item { opacity: 1; transform: translateY(0); }
.site-page-listing.is-visible .site-page-listing-item:nth-child(2) { transition-delay: 0.15s; }
.site-page-listing.is-visible .site-page-listing-item:nth-child(3) { transition-delay: 0.3s; }
.site-page-listing.is-visible .site-page-listing-item:nth-child(4) { transition-delay: 0.45s; }
.site-page-listing.is-visible .site-page-listing-item:nth-child(5) { transition-delay: 0.6s; }
.site-page-listing.is-visible .site-page-listing-item:nth-child(6) { transition-delay: 0.75s; }

/* LISTING */
.site-page-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 80px;
  width: 100%;
  margin-bottom: 100px;
}

.site-page-listing-item {
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

/* TECH SPECS */
.site-page-tech-specs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 55px auto;
  width: 601px;
  background-color: #F5F5F7;
  border-radius: 20px;
  padding: 55px;
  box-sizing: border-box;
}

.site-page-tech-specs-title {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.site-page-tech-specs-desc {
  width: 329px;
}

.site-page-tech-specs-desc p {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}

.site-page-tech-specs-desc p + p {
  margin-top: 12px;
}

@media screen and (max-width: 1200px) {
  .site-vert-spacer-150 {
    padding-top: 100px;
  }

  .site-vert-spacer-50 {
    padding-top: 30px;
  }

  .site-page-text-block {
    width: 100%;
    box-sizing: border-box;
    padding: 0 60px;
  }

  .site-page-title {
    font-size: 50px;
  }

  .site-page-intro {
    font-size: 25px;
    line-height: 120%;
  }

  .site-page-header-wide,
  .site-page-header-high {
    width: 100%;
    margin: 0 0 65px;
  }

  .site-page-image-medium {
    width: 636px;
    height: 290px;
  }

  .site-page-video-medium {
    width: 636px;
  }

  .site-page-image-small {
    width: 578px;
    height: 263px;
  }

  .site-page-block-title {
    font-size: 30px;
  }

  .site-page-block-intro {
    font-size: 20px;
    line-height: 130%;
  }

  .site-page-p {
    font-size: 18px;
    line-height: 130%;
  }

  .site-page-caption {
    line-height: 130%;
    padding: 27px 0px 40px;
  }

  .hardware-table-wrapper {
    padding: 0;
  }

  .site-page-infobox {
    margin: 65px 0;
    padding: 60px 30px 60px 30px;
  }
  
  .site-page-infobox-title {
    font-size: 25px;
  }
  
  .site-page-buttons {
    gap: 16px;
  }
  
  .site-page-button {
    padding: 9px 17px;
    font-size: 12px;
  }

  .site-page-listing {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 65px;
  }

  .site-page-tech-specs {
    width: 473px;
  }

  .site-page-tech-specs-desc {
    width: 320px;
  }
}


@media screen and (max-width: 768px) {
  .site-vert-spacer-150 {
    padding-top: 60px;
  }

  .site-vert-spacer-50 {
    padding-top: 30px;
  }

  .site-vert-spacer-25 {
    padding-top: 15px;
  }

  .site-page-text-block {
    width: 90%;
    max-width: 740px;
  }

  .site-page-header-wide,
  .site-page-header-high {
    margin: 0 0 60px;
  }

  .site-page-listing-item {
    font-size: 14px;
  }

  .site-page-tech-specs {
    width: 100%;
    padding: 55px 30px;
  }
}

@media screen and (max-width: 600px) {
  .site-page-listing {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .site-page-header-high {
    aspect-ratio: 393 / 246;
  }
}

/* TABLE */
.site-page-table {
  box-sizing: border-box;
  overflow: auto;
  width: 100%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  text-align: center;
  border-radius: 15px;
}

.site-page-table-row {
  display: contents;
}

.site-page-table-row > * {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-flow: column wrap;
}

.site-page-table-row > *[class^="site-page-table-cell"],
.site-page-table-row > *[class*="site-page-table-cell"] {
  background: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  transition: 0.3s all linear;
  font-size: 13px;
}

.site-page-table-row:hover > *[class^="site-page-table-cell"],
.site-page-table-row:hover > *[class*="site-page-table-cell"] {
  background: rgba(255, 255, 255, 0.5);
}

.site-page-table-row > *[class^="site-page-table-header"],
.site-page-table-row > *[class*="site-page-table-header"] {
  background: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  transition: 0.3s all linear;
}

.site-page-table-row:hover > *[class^="site-page-table-header"],
.site-page-table-row:hover > *[class*="site-page-table-header"] {
  background: rgba(255, 255, 255, 0.75);
}

.site-page-table-cell-short {
  grid-column: span 1;
  justify-content: flex-start;
  padding-right: 0.4rem;
  padding-left: 0.4rem;
  font-size: 12px;
  text-align: left;
  color: #000;
}

.site-page-table-header-short {
  grid-column: span 1;
  padding: 0.8rem 0.4rem 0.4rem 0.4rem;
  font-size: 14px;
  color: #000;
  background-color: #dadada;
  text-align: left;
}

.site-page-table-header-short:hover {
  color: #000;
  background-color: #dadada;
}

.left-anchors {
  justify-content: flex-start;
}

.site-page-table-header-short.left-anchors {
  font-size: 12px;
  font-weight: 500;
}

.table-text-align-left {
  text-align: left;
}

.site-page-table-cell-short.table-text-align-left {
  font-size: 12px;
  font-weight: 500;
}

.site-page-table .site-page-table-row p + p {
  margin-top: 8px;
}

.site-page-table.site-page-table-glass {
  gap: 0;
  background-color: #eeeeee;
  scroll-margin-top: 75px;
  margin: 0;
  width: 100%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.site-page-table.site-page-table-glass .site-page-table-row {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.site-page-table.site-page-table-glass > .site-page-table-row > * {
  border: 0;
  border-top: none !important;
  border-left: none !important;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.site-page-table.site-page-table-glass > .site-page-table-row > *:last-child {
  border-right: none !important;
}

.site-page-table.site-page-table-glass > .site-page-table-row:last-child > * {
  border-bottom: none !important;
}

.site-page-table.site-page-table-glass > .site-page-table-row:nth-child(n + 2) > * {
  min-height: 150px;
  align-self: stretch;
}

.site-page-table.site-page-table-glass .site-page-table-row > *[class^="site-page-table-cell"],
.site-page-table.site-page-table-glass .site-page-table-row > *[class*="site-page-table-cell"] {
  background: #F4F4F4 !important;
  font-weight: 500;
  transition: 0.3s all linear;
}

.site-page-table.site-page-table-glass .site-page-table-row:hover > *[class^="site-page-table-cell"],
.site-page-table.site-page-table-glass .site-page-table-row:hover > *[class*="site-page-table-cell"] {
  background: #C9C9C9 !important;
}

.site-page-table.site-page-table-glass .site-page-table-row > *[class^="site-page-table-header"],
.site-page-table.site-page-table-glass .site-page-table-row > *[class*="site-page-table-header"] {
  background: #E8E8E8;
  font-weight: 600;
  transition: 0.3s all linear;
}

.site-page-table.site-page-table-glass .site-page-table-row:hover > *[class^="site-page-table-header"],
.site-page-table.site-page-table-glass .site-page-table-row:hover > *[class*="site-page-table-header"] {
  background: #C9C9C9;
}

.hardware-table-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

.table-header-anchor {
  color: #000 !important;
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 2px;
  font-size: 14px;
  font-weight: 500;
}

.table-header-anchor:hover {
  text-underline-offset: 3px;
}

.site-page-black-link,
.hardware-table-link {
  color: #000 !important;
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 2px;
}

.site-page-black-link,
.hardware-table-link:hover {
  text-underline-offset: 3px;
}

.site-page-table .hardware-table-link + .hardware-table-link {
  margin-top: 8px;
}

@media screen and (max-width: 1200px) {
  .hardware-table-wrapper {
    max-width: 100%;
    padding: 0 60px;
  }

  .site-page-table {
    border-radius: 10px;
  }
}

@media screen and (max-width: 768px) {
  .site-page-table.site-page-table-glass {
    width: 100% !important;
    margin: 0 !important;
  }

  .site-page-text-block {
    width: 100%;
    box-sizing: border-box;
    padding: 0 14px;
  }

  .site-page-table {
    border-radius: 5px;
  }

  .site-page-title {
    font-size: 30px;
  }

  .site-page-intro {
    font-size: 21px;
    line-height: 120%;
  }

  .site-page-image-medium,
  .site-page-image-small {
    width: 351px;
    height: 160px;
  }

  .site-page-video-medium {
    width: 351px;
  }

  .site-page-block-title {
    font-size: 22px;
  }

  .site-page-block-intro {
    font-size: 18px;
    line-height: 120%;
  }

  .site-page-p {
    font-size: 16px;
    line-height: 120%;
  }

  .site-page-caption {
    font-size: 11px;
    line-height: 110%;
    padding: 17px 0px 27px;
  }

  .hardware-table-wrapper {
    width: 100%;
    max-width: none;
    padding: 0 7px;
  }

  .site-page-infobox {
    margin: 55px 0;
    padding: 30px 15px 30px 15px;
  }

  .site-page-infobox-title {
    font-size: 18px;
  }

  .site-page-table.site-page-table-glass > .site-page-table-row:nth-child(n + 2) > * {
    min-height: 115px;
  }
  
  .table-header-anchor,
  .site-page-table-header-short {
    font-size: 12px !important;
  }
  .site-page-table-header-short.left-anchors,
  .site-page-table-cell-short {
    font-size: 10px !important;
  }

  .site-page-table .site-page-table-row p + p,
  .site-page-table .hardware-table-link + .hardware-table-link {
    margin-top: 5px;
  }
}

@media (max-width: 550px) {
  .table-header-anchor,
  .site-page-table-header-short {
    font-size: 8px !important;
  }
  .site-page-table-header-short.left-anchors,
  .site-page-table-cell-short {
    font-size: 7px !important;
  }

  .site-page-table-header-short {
    padding: 0.3rem 0.2rem 0.2rem;
  }

  .site-page-table-cell-short {
    padding: 0.3rem 0.2rem 0.2rem;
  }
}
