.services-page {
  width: 100%;
  height: 100%;
}
.services-container__wrapper {
  width: 100%;
  height: 100%;
  padding: 68px 0 80px 0;
}
.services-table {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.services-table::-webkit-scrollbar {
  width: 2px;
  opacity: 1;
  visibility: visible;
  background-color: var(--grey, #555);
  border-radius: 16px;
}
.services-table::-webkit-scrollbar-thumb {
  background-color: #aea99e;
  border-radius: 16px;
  width: 2px;
}
.services-table__content {
  position: relative;
}
.services-table__content-head {
  position: sticky;
  z-index: 2;
  top: 0;
  margin-bottom: 8px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 5px;
}
.services-table__content-head-item {
  width: calc((100% - (5px * 2) / 3));
  display: flex;
  padding: 6px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 0.5px solid var(--grey, #555);
  background: rgba(18, 18, 18, 0);
  backdrop-filter: blur(2px);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.services-table__content-head-item.active {
  background: linear-gradient(
    90deg,
    rgba(248, 245, 240, 0.32) -47.97%,
    rgba(25, 25, 25, 0.8) 100%
  );
}
.services-table__body {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 5px;
}
.services-table__body-line {
  display: flex;
  gap: 5px;
}
.services-table__price {
  flex-grow: 1;
  display: flex;
  padding: 6px;
  justify-content: flex-start;
  align-items: center;
  border-radius: 4px;
  border: 0.5px solid var(--grey, #555);
  background: rgba(18, 18, 18, 0);
  backdrop-filter: blur(2px);
  font-size: 14px;
  font-weight: 400;
}
.services-table__price-item {
  width: 82px;
  display: flex;
  flex-shrink: 0;
  padding: 6px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 0.5px solid var(--grey, #555);
  background: rgba(18, 18, 18, 0);
  backdrop-filter: blur(2px);
  font-size: 14px;
  font-weight: 400;
}
.services-table__content-category {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .services-container__wrapper {
    padding: 75px 0 84px 0;
  }
  .services-table {
    padding-right: 8px;
  }
  .services-table__content-head {
    margin-bottom: 10px;
    gap: 6px;
  }
  .services-table__content-head-item {
    width: 148px;
    padding: 8px;
    border-radius: 8px;
    font-size: 18px;
    cursor: initial;
  }
  .services-table__body {
    gap: 6px;
  }
  .services-table__body-line {
    gap: 6px;
  }
  .services-table__price {
    padding: 8px;
    border-radius: 8px;
    font-size: 18px;
  }
  .services-table__price-item {
    width: 148px;
    padding: 8px;
    border-radius: 8px;
    font-size: 18px;
  }
  .services-table__content-category {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .services-container__wrapper {
    padding: 100px 240px 80px 0;
  }
  .services-table {
    padding-right: 20px;
  }
  .services-table__content-head {
    margin-bottom: 14px;
    gap: 14px;
  }
  .services-table__content-head-item {
    width: 200px;
  }
  .services-table__body {
    gap: 14px;
  }
  .services-table__body-line {
    gap: 14px;
  }
  .services-table__price-item {
    width: 200px;
  }
}

@media screen and (min-width: 1920px) {
  .services-table__content-head {
    margin-bottom: 20px;
    gap: 20px;
  }
  .services-table__content-head-item {
    width: 250px;
    padding: 16px;
    border-radius: 12px;
    font-size: 22px;
  }
  .services-table__body {
    gap: 20px;
  }
  .services-table__body-line {
    gap: 20px;
  }
  .services-table__price {
    padding: 16px;
    border-radius: 12px;
    font-size: 22px;
  }
  .services-table__price-item {
    width: 250px;
    padding: 16px;
    border-radius: 12px;
    font-size: 22px;
  }
}
