/* Style the navbar */
#navbar {
    overflow: hidden;
    background-color: #333;
    z-index: 100;
}

/* Navbar links */
#navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

/* Page content */
.content {
    padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
    padding-top: 60px;
}


.product_link {
    width: 100%;
    text-align: left;
}

.center_text {
    text-align: center;
}

.new_product_line {
    line-height: 38px;
}

.new_product_line input {
    float: left;
}

.new_product_line .add_product {
    display: inline-block;
}

#new_order {
    padding-bottom: 500px;
}

.alert {
    text-align: center;
}

.in_stock
 {
    display: inline-block;
    width: 30px;
    float: left;
    height: 20px;
    text-align: center;
    color: #28a745;
}

.pagination li {
    float: left;
    width: 52px;
    text-align: center;
}

.pagination {
max-width: 100%;
    display: block;
}

.page-item:first-child .page-link {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#quantity{
    display: inline-block;
    margin-left: 13px;
}

.product_quantity {
    display: inline-block;
    margin-left: 16px;
}

body .select2-container {
    height: 43px;
}

body .select2-container--default .select2-selection--single {
    height: 38px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
}


body .product_quantity {
    float: left;
}

#new_delivery_form .form-check.disabled {
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
}