#am_db_custom_filter_table *{
    box-sizing: border-box;
}





.am_db_custom_filter ul.filter_box {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(3, 1fr);
}

.am_db_custom_filter ul.filter_box > li {
    font-weight: bold;
    line-height: 1;
    font-size: 12px;
    padding: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    align-content: center;
    border: 1px solid #cccccc;
}
.am_db_custom_filter ul.filter_box > li[data-check="1"] {
    background-color: #3b2002;
    color: #ffffff;
    border-color: #3b2002;
}
.am_db_custom_filter select.filter_box {
    width: 100%;
    padding: 5px;
    font-size: 12px;
    font-weight: bold;
}
.am_db_custom_filter .no_result_dom{
    display: none;
    text-align: center;
    font-weight: bold;
    padding: 20px 0;
    border: 1px solid #ccc;
    margin-top: -16px;
}


.select2-container{
    width: 100% !important;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    position: relative;
    text-align: left;
}
.select2-container--default .select2-selection--single .select2-selection__clear{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
}


.order_switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    font-weight: bold;
    margin: auto;
}
.order_switch::before {
    content: "OFF";
}
.order_switch::after {
    content: "ON";
}

.order_switch .switch {
    position: relative;
    width: 34px;
    height: 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    margin: 0 5px;
}
.order_switch .switch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #1a94fd;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}
.order_switch .switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 100%;
    background: #fff;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}
.order_switch .switch[data-check="1"]::before {
    background: #43a047;
}
.order_switch .switch[data-check="1"]::after {
    right: 3px;
    left: auto;
}