html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    color: #000;
}

    body.modal-open {
        overflow: hidden;
    }

.border-black {
}

input[type=text], input[type=email], input[type=password] {
    height: 48px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: none;
}

.btn-block {
    width: 100%;
}

table.text-left th, table.text-left td {
    text-align: left !important;
}

.validation-summary-errors ul {
    list-style: none;
    padding-left: 0;
}

input[type=checkbox] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.menu-header {
    width: 100%;
    height: 50px;
    background: black;
    color: white;
    text-align: center;
    scroll-behavior: smooth;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    position: fixed;
    z-index: 1001
}

    .menu-header .category-name {
        display: inline-block;
        text-decoration: none;
        color: white;
        height: 100%;
        margin-left: 10px;
        margin-right: 10px;
        cursor: pointer;
    }

        .menu-header .category-name span {
            padding-top: 12px;
            padding-bottom: 2px;
        }

            .menu-header .category-name span::after {
                transform: scaleX(0);
            }

            .menu-header .category-name span.active::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(1);
                height: 2px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transition: transform 0.25s ease-out;
            }

.hall-table {
    position: relative;
    padding: 10px;
    margin: 5px 0px;
    border: 1px solid silver;
    height: 100px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-transition: background-color 300ms linear;
    -moz-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
    cursor:pointer;
}

    .hall-table:hover, .hall-table.active {
        background-color: #000;
        color: #fff;
    }

    .hall-table.busy {
        border: 1px solid darkred;
    }

    .hall-table p.table-name {
        font-weight: bold;
    }

    .hall-table p.product-name {
        position: absolute;
        bottom: 30px;
        left: 15px;
        font-size: 14px;
    }

    .hall-table p.product-price {
        position: absolute;
        bottom: 5px;
        left: 15px;
        font-size: 14px;
        font-weight: normal;
    }

    .hall-table .product-photo {
        height: 250px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

        .hall-table .product-photo img {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            width: 100%;
        }

    .hall-table.product {
        padding: 0px;
        height: 350px;
        cursor: pointer;
    }

        .hall-table.product:hover, .hall-table.product.active:hover {
            background-color: rgba(0,0,0,0.1);
            color: #000;
        }

        .hall-table.product.active {
            background-color: #fff;
            color: #000;
        }

.footer-menu {
    background: #000;
    position: fixed;
    height: 50px;
    bottom: 15px;
    right: 50px;
    left: 50px;
    z-index: 999;
    padding: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

    .footer-menu button {
        border-radius: 25px;
        margin: 0px 5px;
    }

.footer-buttons {
    height: 50px;
    bottom: 45px;
    right: 50px;
    left: 50px;
    z-index: 999;
    padding: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    position: -webkit-sticky; /* Safari & IE */
    position: sticky;
}

    .footer-buttons button {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: 5px;
        margin: 0px 3px;
        height: 48px;
    }

#page-overlay {
    background-color: rgba(102, 102, 102, .5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    z-index: 9000;
}

#divModal {
    min-height: 300px;
    max-height: 98%;
    width: 500px;
    border: 1px solid #333;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9001;
    display: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: auto;
}

#divModalBody {
    margin-bottom: 100px;
}

#divOptionsAndVariants {
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

    .hover-underline-animation::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #ffffff;
        transition: transform 0.25s ease-out;
    }

    .hover-underline-animation:hover::after {
        transform: scaleX(1);
    }

.footer[b-arwg13i7ok] {
    position: relative !important;
    margin-bottom: 60px;
}

.font-bold {
    font-weight: bold;
}

.div-qty-buttons {
    display: flex;
}

    .div-qty-buttons button {
        width: 36px;
        height: 36px;
    }

    .div-qty-buttons span {
        margin: 0px 10px;
        font-size: 24px;
    }


.product-accordion .accordion-button {
    font-weight: bold;
}

    .product-accordion .accordion-button:not(.collapsed) {
        color: #000;
        background-color: #fff;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    }

    .product-accordion .accordion-button:focus {
        border-color: #fff;
        box-shadow: none;
    }

.product-option-list {
    padding: 20px 0px;
    cursor: pointer;
    border-bottom: 1px dashed silver;
    position: relative;
}

    .product-option-list input[type=radio] {
        position: absolute;
        top: 12px;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .product-option-list input[type=checkbox] {
        position: absolute;
        top: 12px;
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

    .product-option-list label.name.radio {
        position: absolute;
        top: 11px;
        left: 35px;
        right: 50px;
        cursor: pointer;
    }

    .product-option-list label.price.radio {
        position: absolute;
        top: 11px;
        right: 20px;
        cursor: pointer;
    }

    .product-option-list label.name.checkbox {
        position: absolute;
        top: 7px;
        left: 35px;
        right: 50px;
        cursor: pointer;
    }

    .product-option-list label.price.checkbox {
        position: absolute;
        top: 7px;
        right: 20px;
        cursor: pointer;
    }

.span-require-hint {
    font-weight: normal;
    position: absolute;
    right: 50px;
}

    .span-require-hint span {
        font-size: 12px;
    }

input[type="radio"] {
    /* remove standard background appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* create custom radiobutton appearance */
    /* background-color only for content */
    background-clip: content-box;
    border: 1px solid #000;
    background-color: #fff;
    padding: 2px;
    border-radius: 50%;
}

    /* appearance for checked radiobutton */
    input[type="radio"]:checked {
        background-color: #000;
    }

input[type="checkbox"] {
    /* remove standard background appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* create custom radiobutton appearance */
    /* background-color only for content */
    background-clip: content-box;
    border: 1px solid #000;
    background-color: #fff;
    padding: 2px;
}

    /* appearance for checked radiobutton */
    input[type="checkbox"]:checked {
        background-color: #000;
    }






@media screen and (max-width: 992px) {
    .hall-table.product {
        height: 200px;
    }

    .hall-table p.product-name {
        position: absolute;
        bottom: 15px;
        left: 15px;
        font-size: 10px;
    }

    .hall-table p.product-price {
        position: absolute;
        bottom: 0px;
        left: 15px;
        font-size: 10px;
        font-weight: normal;
    }

    .hall-table .product-photo {
        height: 130px;
    }

    #divModal {
        height: 98%;
        width: 98%;
    }
}

.font30{
    font-size:30px;
}