#table-builder-filter-panel {
    display: grid;
    grid-template-columns: 4fr 2fr repeat(3, 3fr);
    padding: 20px;
    gap: 10px;
    align-items: center;
}

#table-builder-filter-panel * {
    text-align: left;
}

#table-builder-filter-panel input[type=radio] {
    display: none !important;
}

#table-builder-filter-panel label {
    cursor: pointer !important;
    padding: 5px !important;
}

#generated_table_by_table_builder {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
}

#generated_table_by_table_builder tbody {
	display: table !important;
    width: 100% !important;
}

#show_more_rows_button_box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff90;
    padding-top: 25px;
    transform: translateY(-75%);

    background: rgba(255, 255, 255, .75);
    background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 95%);
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 95%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 95%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
}


/* Custom range slider */

.range_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.range_container_bottom_indicators {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sliders_control {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10px !important;
}

.form_control_container input {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    width: 6ch !important;
}

.form_control_container input:focus {
    border: none !important;
    outline: none !important;
}

.sliders_control input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
}

.sliders_control input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
}

.sliders_control input[type=range]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
}

.sliders_control input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

.sliders_control input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 4px !important;
    background-color: #C6C6C6;
    pointer-events: none;
}

#fromSlider {
    height: 0 !important;
    z-index: 1;
    position: relative !important;
    top: 16px !important;
}

#toSlider {
    position: relative !important;
    top: 10px !important;
}


/*
    ARTBOARD CHANGE PANEL 
*/

#artboard_change_panel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media only screen and (max-width: 1000px) {

    #artboard_change_panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #artboard_change_panel_buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/*
    END
*/

@media only screen and (max-width: 750px) {

    .table-builder-filter-panel-spacer {
        display: none;
    }

    #table-builder-filter-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .table-builder-filter-panel-item-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .table-builder-filter-panel-inner-item-box {
        text-align: center !important;
    }
}

@media only screen and (min-width: 751px) and (max-width: 1000px) {

    .table-builder-filter-panel-spacer {
        display: none;
    }

    #table-builder-filter-panel {
        grid-template-columns: 1fr 1fr;
    }

    .table-builder-filter-panel-item-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .table-builder-filter-panel-inner-item-box {
        text-align: center !important;
    }
}