.prices-block {
  display: flex;
  flex-direction: column;
}
.prices-block .prices-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  overflow-x: auto;
}
.prices-block .price {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  min-width: 770px;
  padding: 15px 30px;
  cursor: pointer;
}
.prices-block .price.title {
  padding: 20px 30px;
  cursor: default;
  background: var(--background);
}
.prices-block .price:not(:first-child) {
  border-bottom: 1px solid var(--stroke);
}
.prices-block .price__pointer {
  display: flex;
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 40px;
  opacity: 0;
  border-radius: 0 3px 3px 0;
  transform: translate(-50%, -50%);
  background-color: var(--primary);
  transition: all 0.3s;
}
.prices-block .price:hover .price__pointer {
  opacity: 1;
}
.prices-block .price .btn {
    width: fit-content;
}
.prices-block .price.title .btn {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.prices-block .price__name-holder {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  gap: 30px;
  cursor: pointer;
}
.prices-block .price.title .price__name-holder {
  cursor: default;
}
.prices-block .price__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 49%;
}
.prices-block .price__name-holder .price__name:first-child {
  flex: 2 1 100%;
}
.prices-block .prices-wrap::-webkit-scrollbar,
.prices-block .prices-wrap::-webkit-scrollbar-thumb {
  height: 3px;
}

@media (max-width: 1320px) {
  .prices-block .prices-wrap {
    gap: 0;
  }
  .prices-block .price.title,
  .prices-block .price {
    padding: 10px 20px;
  }
  .prices-block .price__name-holder {
      gap: 20px;
  }
}
@media (max-width: 768px) {
}
