.table-price-title {
    font-size: 30px;
}

.table-price {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.table-price__header {
    display: flex;
    gap: 1px;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

.table-price__column {
    padding: 18px 24px;
    color: #3d9322;
    display: flex;
    align-items: center;
}

.table-price__body {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.table-price__row {
    display: flex;
    gap: 1px;
}

.table-price__row:nth-child(odd) .table-price__column {
    background: #f4fff1;
}

.table-price__row:nth-child(odd):hover .table-price__column {
    background: #cce4c4;
}

.table-price__row:nth-child(even) .table-price__column {
    background: #f4f4f4;
}

.table-price__row:nth-child(even):hover .table-price__column {
    background: #e8e8e8;
}

.table-price__row.price_free .table-price__column,
.table-price__row.price_free:hover .table-price__column {
    background: #fff6ef;
    color: #ed7f27;
    font-weight: 700;
    width: 100%;
    justify-content: left;
}

.table-price__column:first-child {
    width: 80%;
}

.table-price__column:last-child {
    width: calc(20% - 1px);
    color: #333;
    font-weight: 700;
    justify-content: center;
}

.table-price__column a {
    color: #3d9322;
}

.table-price__column a:hover {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.table-price__header .table-price__column {
    background-color: #3d9322;
    color: #fff;
}

.frame {
    margin: 50px 0;
}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
    .table-price__header {
        font-size: 16px;
    }

    .table-price__column {
        padding: 12px 15px;
    }

    .table-price__header .table-price__column {
        padding: 20px 15px;
    }

    .table-price__column:first-child {
        width: 65%;
    }

    .table-price__column:last-child {
        width: calc(35% - 1px);
    }


}

@media (max-width: 500px) {
    .table-price-title {
        font-size: 24px;
    }
}
