﻿.row_select_box {
    display: flex;
    justify-content: end;
    margin: 0px 0 15px 0;
}

    .row_select_box select {
        width: 20%;
    }

.search_bar {
    display: flex;
    /*margin: 10px 0 0 0;*/
}

    .search_bar input {
        height: 35px;
        border: 1px solid #d2d1d1;
        padding: 0 10px;
        border-radius: 3px;
    }

    .search_bar button {
        width: 10%;
    }

.category_item, .ch_item, .menu_item {
    display: flex;
    border: 1px solid #f2f2f2;
    width: 100%;
    /*box-shadow: 0px 0px 11px 0px #efeded;*/
    padding: 10px 0 10px 2em;
    align-items: center;
}

.content {
    width: 80%;
    line-height: 10px;
}

    .content h5 {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .content small {
        color: gray;
        font-size: 9px;
    }

.edit, .delete {
    width: 10%;
    cursor: pointer;
}

.menu_image {
    width: 20%;
}

    .menu_image img {
        width: 65px;
        border-radius: 5px;
    }
.menu_content {
    width: 40%;
    line-height: 25px;
    padding: 10px;
}
.menu_status {
    width: 30%;
    padding: 10px;
}
    .menu_status h5 {
        font-size: 14px;
    }

    .menu_content h5 {
        font-size: 14px;
        margin-bottom: 0px;
        cursor: pointer !important;
        color: #f65f01!important;
    }

    .menu_content small {
        color: gray;
        font-size: 9px;
    }
table {
    color: #333;
    font-size: .9em;
    font-weight: 300;
    line-height: 40px;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid #f65f01;
    width: 100%;
    margin: 16px auto;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.16);
    border-radius: 2px;
}

th {
    background: #f65f01;
    color: #fff;
    border: none;
    padding: 0px 5px 0px 10px;
}
td {
    padding: 5px 5px 5px 10px;
}

tr:hover:not(th) {
    background-color: rgb(239 149 92 / 15%);
}


input[type="button"] {
    transition: all .3s;
    border: 1px solid #ddd;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
}

    input[type="button"]:not(.active) {
        background-color: transparent;
    }

.active {
    background-color: #f65f01;
    color: #fff;
}

input[type="button"]:hover:not(.active) {
    background-color: #ddd;
}
@media (max-width: 992px){

    .search_bar button {
        width: 50%;
    }
}