.door-systems-main-description h2 {
  margin-bottom: 24px;
}

.door-systems-comparison-btn {
  margin-block: 16px;
  display: flex;
  gap: 12px;
  padding-block: 10px;
}
@media (max-width: 767px) {
  .door-systems-comparison-btn {
    margin-block: 8px;
  }
}

.door-systems-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-block: 32px;
}
.door-systems-grid-item {
  border: 2px solid var(--grayscale-200, #EEE);
  padding: 24px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.door-systems-grid-item__header {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.door-systems-grid-item__divider {
  height: 6px;
  width: 100%;
  background-color: var(--grayscale-200, #EEE);
  margin-block: 22px 16px;
}

.chess-icons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-block: 24px;
}
.chess-icons .chess-icon {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 174px;
  width: 100%;
}
.chess-icons .chess-icon__desc {
  font-size: 14px;
  line-height: 20px;
}
.chess-icons .chess-icon__name {
  font-weight: 500;
  color: var(--black);
}
.chess-icons .chess-icon__value {
  margin-top: 4px;
  font-weight: 400;
}
.chess-icons.tech-specs {
  justify-content: center;
  margin-top: 48px;
}
@media (min-width: 767px) {
  .chess-icons.tech-specs {
    margin-top: 64px;
  }
}

@media (min-width: 676px) {
  .door-systems-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
  .chess-icons {
    flex-direction: row;
    gap: 32px;
  }
  .chess-icons .chess-icon {
    flex-direction: column;
    align-items: center;
  }
  .chess-icons .chess-icon__desc {
    text-align: center;
  }
}
.doors-systems-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 676px) {
  .doors-systems-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doors-systems-box {
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #EEE;
  font-size: 14px;
  line-height: 24px;
  color: #424242;
  font-weight: 400;
}
.doors-systems-box strong {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: black;
}

@media (min-width: 992px) {
  .door-systems-grid {
    margin-block: 64px;
    grid-template-columns: repeat(4, 1fr);
  }
  .door-systems-main-description h2 {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 32px;
  }
}
.new-product-tabs {
  border-bottom: 1px solid var(--gray200);
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 10;
}
.new-product-tabs .new-product-tab {
  font-weight: 500;
  padding-block: 20px;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}
.new-product-tabs .new-product-tab::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  position: absolute;
  bottom: -1px;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (min-width: 767px) {
  .new-product-tabs .new-product-tab {
    padding-block: 28px;
  }
}
.new-product-tabs .new-product-tab.active::after {
  opacity: 1;
}
.new-product-tabs .new-product-tab:hover:not(.active)::after {
  opacity: 0.8;
}

.door-systems-comparison {
  overflow-x: auto;
  padding-bottom: 16px;
  margin-block: 88px;
  scrollbar-color: #fff;
  scrollbar-width: thin;
}
.door-systems-comparison::-webkit-scrollbar {
  width: 16px;
}
.door-systems-comparison::-webkit-scrollbar-track {
  background: #fff;
}
.door-systems-comparison::-webkit-scrollbar-thumb {
  @apply bg-primary--1;
  border-radius: 0;
  border: 4px solid #fff;
}
.door-systems-comparison-table {
  text-align: center;
  border: none;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
  line-height: 26px;
  color: var(--gray800);
  font-weight: 400;
}
.door-systems-comparison-table td, .door-systems-comparison-table th {
  padding: 12px;
  width: 276px;
}
.door-systems-comparison-table strong {
  color: var(--black);
  font-weight: 500;
}
.door-systems-comparison-table tbody th {
  text-align: left;
  font-weight: 400;
}
.door-systems-comparison-table thead th {
  border-bottom: 4px solid var(--grayscale-400, #BDBDBD);
  color: var(--black);
  font-family: "Geist", sans-serif;
}
.door-systems-comparison-table thead th img {
  margin-right: 16px;
}

@media (min-width: 676px) {
  .new-product-tabs .door-systems-comparison-btn {
    display: none;
  }
}
.new-product-tabs li:has(.door-systems-comparison-btn) {
  margin-left: auto;
}
@media (max-width: 675px) {
  .new-product-tabs li:has(.door-systems-comparison-btn) {
    display: none;
  }
}
.new-product-tabs li:has(.door-systems-comparison-btn) .door-systems-comparison-btn {
  display: flex;
}

.door-systems-tech-spec {
  margin-top: 48px;
  display: grid;
  grid-template-columns: max-content 1fr;
  font-size: 16px;
  line-height: 26px;
}
@media (min-width: 676px) {
  .door-systems-tech-spec {
    margin-top: 64px;
  }
}
@media (min-width: 767px) {
  .door-systems-tech-spec {
    grid-template-columns: repeat(2, 1fr);
  }
}
.door-systems-tech-spec__col {
  padding: 11px;
}
.door-systems-tech-spec__col:nth-of-type(4n+3), .door-systems-tech-spec__col:nth-of-type(4n+4) {
  background-color: #FAFAFA;
}
.door-systems-tech-spec__col:nth-of-type(odd) {
  font-weight: 500;
  text-align: right;
}

.door-structure-wrapper {
  margin-top: 56px;
  overflow: hidden;
}
@media (min-width: 767px) {
  .door-structure-wrapper {
    margin-top: 88px;
  }
}
.door-structure__header {
  margin-bottom: 48px;
}
@media (min-width: 676px) {
  .door-structure__header {
    margin-bottom: 64px;
  }
}
.door-structure__name {
  margin-top: 24px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.door-structure .splide__track {
  overflow: visible;
}
.door-structure .splide__slide img {
  border-radius: 8px;
}

.door-system-schema {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.door-system-schema-wrapper {
  background-color: var(--black);
  border-radius: 8px;
  padding: 32px;
  margin-top: 56px;
}
@media (min-width: 767px) {
  .door-system-schema-wrapper {
    margin-top: 88px;
  }
}
.door-system-schema-point {
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: red;
  border-radius: 100%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgb(255, 255, 255), 0 0 0 12px rgba(255, 255, 255, 0.1);
  border: none;
  outline: none;
  z-index: 1;
}
@media (min-width: 767px) {
  .door-system-schema-point {
    height: 12px;
    width: 12px;
    box-shadow: 0 0 0 8px rgb(255, 255, 255), 0 0 0 16px rgba(255, 255, 255, 0.1);
  }
}
.door-system-schema-point::after {
  content: "";
  position: absolute;
  height: 32px;
  width: 32px;
  translate: -12px -12px;
  background-color: transparent;
  border-radius: 100%;
  z-index: 1;
}
@media (min-width: 767px) {
  .door-system-schema-point::after {
    height: 42px;
    width: 42px;
    translate: -15px -15px;
  }
}
.door-system-schema-point:has(.schema-modal) {
  z-index: 10;
}

.schema-modal {
  position: absolute;
  background: white;
  width: 256px;
  translate: -50% 28px;
  pointer-events: none;
  padding: 12px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .schema-modal {
    left: 50%;
    translate: -50% -50%;
    position: fixed;
    top: 50dvh;
  }
}
.schema-modal img {
  border-radius: 8px;
  border: 1px solid #EEE;
}
.schema-modal__name {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: black;
  margin-top: 20px;
  text-align: center;
}

.gray-box {
  background-color: var(--gray100, #f5f5f5);
  padding: 48px 32px;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 56px;
}
@media (min-width: 767px) {
  .gray-box {
    margin-top: 88px;
  }
}
.gray-box a {
  text-decoration: underline;
  font-size: 16px;
  line-height: 26px;
}

.new-container:has(.door-systems-tech-spec) {
  margin-top: 56px;
}
@media (min-width: 767px) {
  .new-container:has(.door-systems-tech-spec) {
    margin-top: 88px;
  }
}

.mt-56 {
  margin-top: 56px;
}

@media (min-width: 767px) {
  .mt-lg-88 {
    margin-top: 88px;
  }
}

/*# sourceMappingURL=door-systems.css.map */
