.prices-block .table {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
}
.prices-block .string {
    display: flex;
    border-bottom: 1px solid var(--stroke-secondary);
}
.prices-block .string:first-child {
    background: var(--background-secondary);
    border-bottom: unset;
}
.prices-block .string:last-child {
    border-bottom: unset;
}
.prices-block .element {
    padding: 20px 15px 20px 30px;
    flex-grow: 1;
    width: 50%;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
}
.prices-block .string.four .element {
    width: 40%;
    font-size: 15px;
    line-height: 120%;
    font-weight: 400;
}
.prices-block .string.five .element {
    width: 30%;
    font-size: 14px;
    line-height: 120%;
    font-weight: 400;
}
.prices-block .string:first-child .element {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
}
.prices-block .element:nth-child(2) {
    width: 45%;
}
.prices-block .string.four .element:nth-child(2) {
    width: 25%;
}
.prices-block .string.five .element:nth-child(2) {
    width: 20%;
}
.prices-block .string.four .element:nth-child(3) {
    width: 20%;
}
.prices-block .string.five .element:nth-child(3) {
    width: 20%;
}
.prices-block .string.four .element:nth-child(4) {
    width: 15%;
}
.prices-block .string.five .element:nth-child(4) {
    width: 15%;
}
.prices-block .string.five .element:nth-child(5) {
    width: 15%;
}
.prices-block .string:first-child .element {
    color: var(--head-primary);
}

@media (max-width: 1200px) {
    .prices-block .element {
        padding: 10px;
        font-size: 15px;
    }
}

@media (max-width: 996px) {
    .prices-block .element {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .prices-block .table {
        overflow: auto;
    }
    .prices-block .table .string {
        width: 770px;
    }
}

@media (max-width: 600px) {
    .prices-block .table .string {
        width: 620px;
    }
}