.pricesBlock_table {
    flex: 0 0 50%;
}
.pricesBlock_table table {
    width: 100%;
}
.pricesBlock_table table tr:not(:last-child) {
    border-bottom: 1px solid #dcdada;
}
.pricesBlock_table table td,
.pricesBlock_table table th {
    text-align: left;
    width: 50%;
    padding: 10px 0;
}
.pricesBlock_table table th {
    font-size: 20px;
    color: #373d44;
    font-family: 'RobotoMedium';
    font-weight: normal;
}
.pricesBlock_table table td {
    font-size: 18px;
}
.pricesBlock_table table td:first-child {
    font-weight: 600;
    padding-left: 20px;
}



.pricesBlock {
    position: relative;
    /* padding: 32px 40px 60px 32px; */
    padding: 40px 40px 40px 32px;
    background-color: #F2F2F4;
    display: flex;
    margin-bottom: 40px;
}
.pricesBlock_buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    gap: 20px;
}
.pricesBlock_img {
    position: absolute;
    /* position: relative; */
    top: 0;
    left: 50%;
    transform: translateX(-28%);
    height: 100%;
    padding: 30px 0 36px;
    box-sizing: border-box;
}
.pricesBlock_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



@media(max-width: 1200px) {
    .pricesBlock_img {
        padding: 60px 0;
        transform: translateX(-40%);
    }
}

@media(max-width: 1023px) {
    .pricesBlock_img {
        display: none;
    }
}

@media(max-width: 767px) {
    .pricesBlock {
        flex-direction: column;
        gap: 40px;
    }
    .pricesBlock_table {
        flex: 0 0 auto;
        width: 100%;
    }
    .pricesBlock_buttons {
        margin: auto;
    }
}


@media(max-width: 500px) {
    .pricesBlock {
        padding: 20px;
    }
    .pricesBlock_table table th {
        font-size: 18px;
    }
    .pricesBlock_table table td {
        font-size: 16px;
    }
}