html{
    scroll-behavior: smooth;
}

tr{
    border-top: 1px solid #e5e5e5;
}

.table_block{
    margin: auto;
}

.form_table{
    width: 100%;
    margin: 0 auto;
    border: 3px solid #e5e5e5;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;

}.form_table * {
    box-sizing: border-box;

}.form_table td, th{
    padding: .7em 1em;
    border-width: 0 1px 1px 0;
    border-color:#D1D5DB;
    display: table-cell;

}.form_table th{
    background-color: #ebedf5;
    width: fit-content;
    white-space: nowrap;
    font-size: .9em;

}.form_table .text_element{
    width: 100%;
    height: 100%;

}.form_table label{
    display: inline-block;

}.form_table .adjustment{
    margin: 15px 0px;

}.text_element{
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 16px;
    border-radius: 4px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    color: var(--ast-form-input-text, #475569);
    border: 1px solid #d8d8d8;
}

.th_style{
    display: flex;
    width: 100%;
    height: 100%;
}.th_style div:nth-child(2){
    margin: auto 0px auto 15px;
}

.required{
    width: fit-content;
    padding: 5px;
    background-color:#03a58e;
    color: white;
    font-size: .9em;

}

.free{
    width: fit-content;
    padding: 5px;
    background-color: #bdbdbd;
    color: white;
    font-size: .9em;
}



@media (min-width: 1025px) {
    .table_block{
        width: 100%;
    }

    .form_table th{
        font-size: clamp(15px, 1.2vw, 15px);
    }

}@media (max-width: 1024px) {
    .table_block{
        width: 95%;
    }
    
    .form_table th{
        font-size: clamp(10px, 3vw, 15px);
    }

    .form_table tr,
    .form_table th,
    .form_table td{
        display: block;
        width: 100%;
    }
}
