.price-block ::-webkit-scrollbar {
	height: 3px;
	/* ширина scrollbar */
}

.price-block .price-block__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 1px solid var(--stroke);
    background: var(--background-thirdly);
    border-radius: 100px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.price-block .price-block__title {
    max-width: 890px;
}

.price-block .price-block__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.price-block .item-price {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-block .item-price__table {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    background: var(--background-thirdly);
    overflow-x: scroll;
}

.price-block .item-price__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 30px;
    border-bottom: 1px solid var(--stroke);
    min-width: 1024px;
}

.price-block .item-price__row:first-child {
    background: var(--background);
    border: none;
    padding: 30px 30px 25px;
}
.price-block .item-price__row:last-child {
    border: none;
}

.price-block .item-price__info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 20px;
    max-width: 1240px;
    width: 100%;
}

.price-block .item-price__name,
.price-block .item-price__class,
.price-block .item-price__params {
    max-width: 310px;
}
.price-block .item-price__cost {
    max-width: 250px;
}
.price-block .item-price__row:first-child .item-price__name,
.price-block .item-price__row:first-child .item-price__class,
.price-block .item-price__row:first-child .item-price__params,
.price-block .item-price__row:first-child .item-price__cost {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: clamp(1rem, 0.963rem + 0.19vw, 1.188rem);
    line-height: 110%;
    color: var(--head-secondary);
}

.price-block .item-price__params {
}

.price-block .item-price__cost {
}

.price-block .item-price__row:first-child .item-price__btn {
    opacity: 0;
    pointer-events: none;
    transition: unset;
    height: 0;
}

@media (max-width: 1024px) {
    .price-block .item-price__row {
        padding: 5px 15px;
    }
    .price-block .item-price__row:first-child {
        padding: 15px;
    }
}