.price_table{
    position: relative;
    width: 100%;
}
.price_table th,.price_table td{
    padding: 15px 16px;
}
/* .price_table th,.price_table td{
    min-width: 215px;
}
.price_table th:first-child,.price_table td:first-child{
    min-width: 280px;
    width: 100%;
} */
.price_table th, .price_table td {
    width: auto;
    min-width: 215px;
}
.price_table th:first-child, .price_table td:first-child {
    width: 320px;
    min-width: 280px;
    max-width: 320px;
}

.price_full_show{
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    left: 0;
    margin-bottom: 24px;
}
.price_full_show_button{
    display: inline-flex;
}
.price_table_wrap{
    overflow-x: auto;
}
.price_table_wrap::-webkit-scrollbar {
    display: none;
}
.page_doctablehint{
    display: grid;
    margin-bottom: 32px;
    grid-template-columns: 32px auto;
    grid-gap: 16px;
    align-items: center;
}
.price_table.hide_full_table:not(.fullshow) tr{
    display: none;
}
.price_table.hide_full_table:not(.fullshow) tr:nth-child(-n+6){
    display: inherit;
}
.price_table.hide_full_table:not(.fullshow) tr:nth-child(6)::after{
    content: ' ';
    height: 264px;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, #FFF 5.36%, rgba(255, 255, 255, 0.00) 100%, rgba(255, 255, 255, 0.27) 100%);
}
.price_table_heading{
    background: #E4E4F4;
    border-bottom: 1px solid #8D8DA8;  
}
.price_table_heading th{
    color: #1E1E23;
    font-family: var(--font_roboto);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.price_table .talign_center{
    text-align: center;
    vertical-align: top;
}
.price_table .valign_middle{
    vertical-align: middle;
}
.price_table .talign_left{
    text-align: left;
}
.price_table .border_gray{
    border-bottom: 1px solid #D8D8E7;  
}
.price_table .yes{
    height: 25px;
    width: 25px;
    display: inline-flex;
    background-repeat: no-repeat;
    background-image: url('i/table_icon_checkbox.svg');
}
.price_table .table_bg_accent{
    background: var(--BG-Accent-Lite, #ECF3FF);
}
.price_table_total{
    border-radius: 16px;
    background: var(--white, #FFF);
    box-shadow: 0px 8px 8px 0px rgba(0, 6, 26, 0.10);
    
}
.price_table_total .price_table_small{
    color: #8D8DA8;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;   
}
.price_table_total td{
    color: #498EF5;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%; 
    font-family: var(--font_roboto);
     padding: 24px;
}
@media(min-width: 992px){
    .price_table_total td{
        padding: 32px;
        font-size: 32px;
    }
    .price_table_total .price_table_small{
        font-size: 18px;
    }
}
@media(min-width: 1250px){
    .page_doctablehint{
        display: none;
    }
}