#prices-two-block .categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#prices-two-block .desc {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;
  padding: 40px;
  background-color: var(--bg-primary-second);
}
#prices-two-block .desc > div {
  flex: 1;
  height: auto;
}
#prices-two-block .desc .p1, #prices-two-block .desc .p2, #prices-two-block .desc .p3, #prices-two-block .desc .p4, #prices-two-block .desc p {
  color: var(--text-primary-main);
}
#prices-two-block .desc .h1, #prices-two-block .desc .h2, #prices-two-block .desc .h3, #prices-two-block .desc .h4, #prices-two-block .desc .h5, #prices-two-block .desc .h6 {
  color: var(--text-primary-head);
}
#prices-two-block .desc ul {
  list-style: none;
}
#prices-two-block .desc ul li {
  color: var(--text-primary-main);
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
}
#prices-two-block .desc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background-image: var(--colors-main);
}
#prices-two-block .desc strong {
  margin: 30px 0;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6923rem + 0.2564vw, 1rem);
  line-height: 120%;
  font-family: var(--font-family);
}
#prices-two-block .desc strong:last-child {
  margin-top: 30px;
}
#prices-two-block .desc .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#prices-two-block .desc .right *:not(:last-child, :first-child, ul, li, strong) {
  margin: 15px 0;
}
#prices-two-block .prices {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#prices-two-block .prices .table .head {
  border-radius: 16px;
  background-color: var(--bg-alt-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
#prices-two-block .prices .table .head p {
  color: var(--text-alt-head);
}
#prices-two-block .prices .table .table-content {
  width: 100%;
  overflow-x: auto;
}
#prices-two-block .prices .table .table-content .t-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  border-radius: 16px;
}
#prices-two-block .prices .table .table-content .t-row .cell {
  padding: 20px 30px;
}
#prices-two-block .prices .table .table-content .t-row:not(.t-header):nth-child(odd) {
  background-color: var(--bg-primary-second);
}
#prices-two-block .prices .table .table-content .t-row .p2 {
  color: var(--text-primary-main);
}

@media (max-width: 1024px) {
  #prices-two-block .desc {
    gap: 30px;
    padding: 30px;
  }
  #prices-two-block .prices .table .table-content .t-row {
    /* width: -moz-fit-content;
    width: fit-content; */
    width: 100%;
  }
}
@media (max-width: 768px) {
  #prices-two-block .desc {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  #prices-two-block .prices .table .head {
    padding: 20px;
  }
  #prices-two-block .prices .table .table-content .t-row {
    grid-auto-columns: minmax(180px, 1fr);
  }
  #prices-two-block .prices .table .table-content .t-row .cell {
    padding: 15px 20px;
  }
}
@media (max-width: 480px) {
  #prices-two-block .categories {
    gap: 10px;
    margin-bottom: 25px;
  }
  #prices-two-block .desc {
    padding: 15px;
  }
  #prices-two-block .prices {
    margin-top: 25px;
    gap: 25px;
  }
  #prices-two-block .prices .table .head {
    padding: 15px;
  }
  #prices-two-block .prices .table .table-content .t-row {
    grid-auto-columns: minmax(150px, 1fr);
  }
  #prices-two-block .prices .table .table-content .t-row .cell {
    padding: 12px 15px;
  }
}/*# sourceMappingURL=block.css.map */