/* CSS Document */
@media all {
    html.with-featherlight {
        /* disable global scrolling when featherlights are visible */
        overflow: hidden;
    }

    .xc_woo_restaurant_modal {
        display: none;
        /* dimensions: spanning the background from edge to edge */
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2147483647; /* z-index needs to be >= elements on the site. */
        /* position: centering content */
        text-align: center;
        /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
        white-space: nowrap;
        /* styling */
        cursor: pointer;
        background: #333;
        /* IE8 "hack" for nested featherlights */
        background: rgba(0, 0, 0, 0);
    }

    /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
    .xc_woo_restaurant_modal:last-of-type {
        background: rgba(0, 0, 0, 0.8);
        overflow: auto;
    }

    .xc_woo_restaurant_modal:before {
        /* position: trick to center content vertically */
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

    .xc_woo_restaurant_modal .xc_woo_restaurant_modal-content {
        /* make content container for positioned elements (close button) */
        position: relative;
        /* position: centering vertical and horizontal */
        text-align: left;
        vertical-align: middle;
        display: inline-block;
        /* dimensions: cut off images */

        padding: 25px 25px 0;
        /* dimensions: handling large content */
        margin: 30px auto;

        /* styling */
        background: #fff;
        cursor: auto;
        /* reset white-space wrapping */
        white-space: normal;
        width: 660px;
        max-width: 100%;
        border-radius: 5px;
    }

    /* contains the content */
    .xc_woo_restaurant_modal .xc_woo_restaurant_modal-inner {
        /* make sure its visible */
        display: block;
    }

    /* don't show these though */
    .xc_woo_restaurant_modal script.xc_woo_restaurant_modal-inner, .xc_woo_restaurant_modal link.xc_woo_restaurant_modal-inner, .xc_woo_restaurant_modal style.xc_woo_restaurant_modal-inner {
        display: none;
    }

    .xc_woo_restaurant_modal .xc_woo_restaurant_modal-close-icon {
        /* position: centering vertical and horizontal */
        position: absolute;
        z-index: 9999;
        top: 0;
        right: 0;
        /* dimensions: 25px x 25px */
        line-height: 25px;
        width: 25px;
        /* styling */
        cursor: pointer;
        text-align: center;
        font-family: Arial, sans-serif;
        background: #fff; /* Set the background in case it overlaps the content */
        background: rgba(255, 255, 255, 0.3);
        color: #000;
        border: none;
        padding: 0;
    }

    /* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
    .xc_woo_restaurant_modal .xc_woo_restaurant_modal-close-icon::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

    .xc_woo_restaurant_modal .xc_woo_restaurant_modal-image {
        /* styling */
        width: 100%;
    }

    .xc_woo_restaurant_modal-iframe .xc_woo_restaurant_modal-content {
        /* removed the border for image croping since iframe is edge to edge */
        border-bottom: 0;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
    }

    .xc_woo_restaurant_modal iframe {
        /* styling */
        border: none;
    }

    .xc_woo_restaurant_modal * { /* See https://github.com/noelboss/xc_woo_restaurant_modal/issues/42 */
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
    .xc_woo_restaurant_modal .xc_woo_restaurant_modal-content {
        /* dimensions: maximize lightbox with for small screens */
        margin-left: 0;
        margin-right: 0;
        /*max-height: 100%;*/
        padding: 10px 10px 0;
        border-bottom: 10px solid transparent;
    }
}

/* hide non xc_woo_restaurant_modal items when printing */
@media print {
    html.with-featherlight > * > :not(.xc_woo_restaurant_modal) {
        display: none;
    }
}

html.with-featherlight .theiaStickySidebar {
    margin-left: 15px;
}

.restaurant-addon .control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
}

.restaurant-addon .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.restaurant-addon .control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
}

.restaurant-addon .control--radio .control__indicator {
    border-radius: 50%;
}

.restaurant-addon .control:hover input ~ .control__indicator,
.restaurant-addon .control input:focus ~ .control__indicator {
    background: #ccc;
}

.restaurant-addon .control input:checked ~ .control__indicator {
    background: #2aa1c0;
}

.restaurant-addon .control:hover input:not([disabled]):checked ~ .control__indicator,
.restaurant-addon .control input:checked:focus ~ .control__indicator {
    background: #0e647d;
}

.restaurant-addon .control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.restaurant-addon .control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.restaurant-addon .control input:checked ~ .control__indicator:after {
    display: block;
}

.restaurant-addon .control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.restaurant-addon .control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}

.restaurant-addon .control--radio .control__indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
}

.restaurant-addon .control--radio input:disabled ~ .control__indicator:after {
    background: #7b7b7b;
}

.restaurant-addon .select {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
}

.restaurant-addon .select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: #e6e6e6;
    color: #7b7b7b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.restaurant-addon .select select::-ms-expand {
    display: none;
}

.restaurant-addon .select select:hover,
.restaurant-addon .select select:focus {
    color: #000;
    background: #ccc;
}

.restaurant-addon .select select:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.restaurant-addon .select__arrow {
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
}

.restaurant-addon .select select:hover ~ .select__arrow,
.restaurant-addon .select select:focus ~ .select__arrow {
    border-top-color: #000;
}

.restaurant-addon .select select:disabled ~ .select__arrow {
    border-top-color: #ccc;
}


.xc-wrapper a,
.xc-wrapper a:focus {
    outline: none;
}

.xc_woo_restaurant_main_left,
.xc_restaurant_sidebar_cart {
    background: #fff;
}

.xc-wrapper.style1 .restaurant_categories_items {
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
}

.xc-wrapper .restaurant_categories {
    padding-right: 0px;
}

.xc-wrapper .restaurant_categories h3,
.xc-wrapper .restaurant_categories h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px 0;
    color: #1c2c3a;
    text-transform: capitalize;
}

.xc-wrapper .restaurant_categories h4 {
    font-size: 16px;
}

.xc_widget_title {
    padding: 10px;
    font-weight: 400;
    margin: 0px;
    border-bottom: solid 1px #ededed;
}

ul.categories_list {
    padding: 10px;
    margin: 0px;
    list-style: none;
}

ul.sub_categories_list {
    padding: 0px 10px 10px 15px;
    margin: 0px;
    list-style: none;
}

ul.categories_list li a {
    display: block;
    padding: 2px 0px;
}

ul.categories_list li a.xc-active {
    color: #000;
}

.restaurant_category_data {
    padding: 20px 20px 20px 5px;
}

.restaurant_category_data .restaurant_category_data {
    padding-left: 0px;
    padding-right: 0px;
}

.menu-item_cart-container .meni-item_cart-button {
    position: absolute;
    right: 15px;
    top: 2px;
}

.restaurant_categories .inner-wrapper-sticky {
    margin-left: 15px;
}

.restaurant_sidebar_cart_data table.woocommerce-mini-cart tr.mini_cart_item td {
    text-align: left;
    border: 0 none;
}

.restaurant_sidebar_cart_data table.woocommerce-mini-cart tr.mini_cart_item td dl dt {
    border: 0 none;
    float: none;
    width: 100%;
    font-weight: bold;
    padding: 5px 0px;
    margin: 0px;
}

.restaurant_sidebar_cart_data table.woocommerce-mini-cart tr.mini_cart_item td dl dd {
    border: 0 none;
    float: none;
    width: 100%;
    padding: 0px 0px 5px 0px;
    margin: 0px;
}

.restaurant_sidebar_cart_data table.woocommerce-mini-cart tr.mini_cart_item td dl dd p {
    margin-bottom: 0px;
}

.restaurant_sidebar_cart_data table.woocommerce-mini-cart tr.mini_cart_item td {
    background: none;
    height: 60px;
    border-bottom: 1px solid #EDEDED;
    vertical-align: middle;
    padding: 2px 0;
    font-size: 15px;
    line-height: 16px;
}

.restaurant_sidebar_cart_data table.woocommerce-mini-cart tr.mini_cart_item td.product__quantity {
    width: 25px;
    text-align: center;
}

.restaurant_sidebar_cart_data table.woocommerce-mini-cart tr.mini_cart_item td.product__title {
    padding-left: 10px;
    padding-right: 5px;
}

.restaurant_sidebar_cart_data table.woocommerce-mini-cart tr.mini_cart_item td dl.variation dd {
    margin: 0px;
}

.restaurant_sidebar_cart_data .woocommerce-mini-cart__total .amount {
    float: right;
}

.restaurant_sidebar_cart_data .button {
    display: block;
    width: 100%;
    margin: 5px 0px;
    text-align: center;
}

.xc_woo_restaurant_modal-content h4 {
    padding-bottom: 10px;
    border-bottom: solid 1px #ededed;
    font-weight: 300;
    font-size: 22px;
    text-align: center;
}

.xc_woo_restaurant_modal-content table {
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.xc_woo_restaurant_modal-content table tr td {
    background: none;
    font-size: 14px;
    font-weight: 300;
    padding: 0px;
    text-align: left;
    border: 0 none;
}

.xc_woo_restaurant_modal-content table td.xc_woo_product_information_quantity {
    padding: 0px 10px;
    min-width: 100px;
}

.xc_woo_restaurant_modal-content table td.xc_woo_product_information_price {
    padding-top: 15px;
}

.xc_woo_product_information_title {
    color: #1c2c3a;
}

.xc_woo_product_information_description {
    color: #8e969d;
}

.xc_woo_restaurant_modal-content .restaurant-addon {
    padding: 10px 0px;
}

.xc_woo_restaurant_modal-content textarea.restaurant-addon {
    border: 1px solid #eee;
    width: 100%;
    display: block;
}

.restaurant-addon-name {
    text-align: center;
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 5px;
    padding-bottom: 0px;
}

.restaurant-addon-des {
    color: #8e969d;
}

.restaurant-addon .form-row.form-row-wide {
    border-bottom: 1px solid #ededed;
    padding-top: 5px;
    padding-bottom: 5px;
}

.xc_woo_restaurant_modal-content .xc_woo_add_to_cart {
    margin: 20px auto !important;
    display: block !important;
}

.xc_woo_restaurant_error_messages ul {
    margin: 0px auto 5px;
    padding: 0px;
}

.xc_woo_restaurant_error_messages ul li {
    list-style: none;
    color: #f00;
    font-size: 14px;
    text-align: center;
}

.woocommerce-mini-cart{
    width:100%;
}
.xc_restaurant_sidebar_cart .woocommerce-mini-cart__empty-message {
    text-align: center;
    padding-top: 20px;
}

.xc_restaurant_sidebar_cart .woocommerce-mini-cart__empty-message i {
    font-size: 50px;
    display: block;
    height: 50px;
    margin: 20px auto;
    width: 50px;
    color: #ccc;
}

.xc_woo_restaurant_modal .xc-loader {
    display: block;
    background: url(../images/ajax-loader.gif) no-repeat center center;
    width: 50px;
    height: 50px;
    margin: 25px auto 50px;
}

.xc_woo_restaurant_cat_image {
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

.menu-item_content-container.has-thumb .menu-item__content {
    min-height: 82px;
    position: relative;
}

.menu-item_content-container .menu-item__content ul.extra {
    list-style: none;
    margin: 10px 0px;
}

.menu-item_content-container .menu-item__content ul.extra li {
    display: inline-block;
    margin-right: 5px;
    background: url(../images/food_badge.png) no-repeat 0px 0px;
    text-indent: -9999px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
}

.menu-item_content-container .menu-item__content ul.extra li.nonvegetarian {
    background-position: 0px -60px;
}

.menu-item_content-container .menu-item__content ul.extra li.vegetarian {
    background-position: 0px -40px;
}

.menu-item_content-container .menu-item__content ul.extra li.spicy {
    background-position: 0px -20px;
}

.menu-item_content-container .menu-item__content ul.extra li.extraspicy {
    background-position: 0px 0px;
}

.menu-item_content-container .menu-item__content.hasthumb {
    padding-left: 90px;
}

.menu-item_content-container .menu-item__content img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 80px;
    height: auto;
    border: 1px solid #ccc;
}

.xc_woo_restaurant_product {
    border-bottom: 1px solid #ededed;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.xc_woo_restaurant_product .menu-item__description {
    margin: 0px;
}

.menu-item__content .menu-item__title {
    color: #1c2c3a;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
}

.menu-item__content .menu-item__description {
    line-height: 1.3;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    margin-top: 2px;
    color: #8e969d;
}

.xc_restaurant_sidebar_cart .product__quantity__amount-control {
    background-color: #20ac76;
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    display: none;
    width: inherit;
    display: none;
}

.xc_restaurant_sidebar_cart .remove.remove_from_cart_button {
    display: none;
}

.xc_restaurant_sidebar_cart .woocommerce-mini-cart-item.mini_cart_item:hover .remove.remove_from_cart_button,
.xc_restaurant_sidebar_cart .woocommerce-mini-cart-item.mini_cart_item:hover .product__quantity__amount-control {
    display: block;
}

.xc_restaurant_sidebar_cart .woocommerce-mini-cart-item.mini_cart_item:hover .product__quantity__wrapper__times,
.xc_restaurant_sidebar_cart .woocommerce-mini-cart-item.mini_cart_item:hover .product__price .woocommerce-Price-amount.amount {
    display: none;
}

.xc_woo_restaurant_cats_slider li {
    float: left;
    width: 150px;
}

.xc_woo_restaurant_cats_slider .cat_item_inner {
    display: block;
    padding: 10px;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #ccc;
}

.xc_woo_restaurant_cats_slider .cat_item_inner img {
    display: block;
    max-width: 100px;
    max-height: 100px;
    margin: 0px auto 10px;
}

.xc_woo_restaurant_cats_slider .slick-arrow.prev,
.xc_woo_restaurant_cats_slider .slick-arrow.next {
    position: absolute;
    left: -30px;
    top: 50%;
    border: 1px solid #ccc;
    padding: 5px;
    width: 35px;
    height: 35px;
    margin-top: -18px;
    cursor: pointer;
}

.xc_woo_restaurant_cats_slider .slick-arrow.next {
    left: auto;
    right: -30px;
}

.xc_woo_restaurant_cats_slider .slick-arrow:hover {
    color: #fff;
    background: #F60;
    border-color: #F60;
}

.xc-wrapper.style2 .restaurant_categories_items {
    border-right: 1px solid #ededed;
}

.widget_min_order_message {
    display: block;
    font-size: 14px;
    padding: 10px;
    border-left: 2px solid #f00;
    font-weight: bold;
}

.xc-tip-error {
    display: none;
}

.xc-delivery-type .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}

.xc-delivery-type .woocommerce-input-wrapper:after {
    clear: both;
    content: "";
    display: block;
}

.xc-delivery-type .woocommerce-input-wrapper input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.xc-delivery-type .woocommerce-input-wrapper label {
    display: inline-block;
    float: left;
    min-width: 100px;
    background-color: #e4e4e4;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    padding: 6px 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.xc-delivery-type .woocommerce-input-wrapper label:hover {
    cursor: pointer;
}

.xc-delivery-type .woocommerce-input-wrapper input:checked + label {
    background-color: #A5DC86;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.xc-delivery-type .woocommerce-input-wrapper label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.xc-delivery-type .woocommerce-input-wrapper label:last-of-type {
    border-radius: 0 4px 4px 0;
}

body.restaurant-closed .checkout-button {
    opacity: .5 !important;
    cursor: not-allowed !important;
}
.xc-woo-restaurant-delivery-fields__field-wrapper{
    margin-bottom:100px;
}
