/* Orange colors */
/* OLD: rgb(203,65,2) */
/* Orange: #FE6902 */
/* Dark orange: #e75e00 */

/* 
background: rgb(254,105,2);
background: linear-gradient(90deg, rgb(254,105,2) 0%, rgb(203,65,2) 78%);

rgb(254,105,2) - LIGHT ORANGE
MEDIUM ORANGE: #ea4900
rgb(203,65,2) - DARK ORANGE

#f6f6f6/#f5f5f5 - LIGHT GRAY
#f1f1f1 - DARK GRAY
*/

@font-face {
    font-family: 'Pacifico-Regular';
    src: url('../fonts/Pacifico-Regular.ttf') format('woff');
}

html {
    scroll-behavior: smooth;
}
  
body {
    margin: 0;
    padding: 0 !important;
    font-family: sans-serif;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    top: 0px !important;
    overscroll-behavior: none;
    /* prevents pull to refresh */
    min-height: 100%;
    height: 100%;
    height: -webkit-fill-available;
    /* prevent hide url bar */
}

#root {
    height: 100%;
    /* prevent hide url bar */
}

.cursor-pointer-onhover:hover {
    cursor: pointer;
}

/* Pulse btn */
.pulse {
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.16);
    animation: pulse 2s infinite;
}

.pulse:hover {
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.16);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.16);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.16);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
    }
}


/* Page preloader */
.is-loading {
    width: 60px !important;
    height: 60px !important;
    position: fixed;
    top: calc(50% - 10px);
    left: calc(50% - 30px);
    color: #FE6902 !important;
    z-index: 1;
}

.is-loading-colored-only {
    width: 60px !important;
    height: 60px !important;
    /* position: fixed; */
    top: calc(50% - 10px);
    left: calc(50% - 30px);
    color: #FE6902 !important;
    z-index: 1;
}

/* Arrow up */
.ordered-arrow-up {
    margin: 0 auto;
    width: 0px;
    height: 0px;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-bottom: 17px solid #ea4900;
}

/* Product image */
img.productImage {
    height: 200px;
    width: 100%;
    margin: 0 !important;
    object-fit: cover;
}

/* Add to cart tooltip */
div[role="tooltip"] .MuiTooltip-tooltip {
    font-size: 16px;
    padding: 10px;
    box-shadow: 2px 2px 7px 0px #000000;
    white-space: nowrap;
    border-bottom: 2px solid #FE6902;
    background-color: rgba(0, 0, 0, 0.87);
    white-space: normal;
}

div[role="tooltip"] .MuiTooltip-arrow {
    color: rgba(0, 0, 0, 0.87);
    font-size: 8px;
}

.tooltip-text-align-center div[role="tooltip"] .MuiTooltip-tooltip {
    text-align: center;
}


/* Google translate */

iframe.skiptranslate {
    display: none;
}

.goog-te-banner-frame.skiptranslate,
#goog-gt-tt {
    display: none !important;
}

.skiptranslate.goog-te-gadget {
    color: transparent;
}

.skiptranslate.goog-te-gadget span {
    display: none;
}

#gTanslateElem select {
    margin: 0;
    margin-top: 15px;
    width: 250px;
    cursor: pointer;
    font-size: 16px;
    height: 40px;
    outline: none;
    -webkit-appearance: none;
    padding-left: 20px;
    background-image: url(https://tabl.bg/img/icons/arrow-down.png);
    background-position: right center;
    background-size: 40px;
    background-repeat: no-repeat;
    border-radius: 5px;
    border-color: #ccc;
}

.goog-text-highlight {
    background: inherit !important;
    position: inherit !important;
    box-shadow: inherit !important;
}


/* Lightbox image gallery */
.ReactModalPortal>div {
    z-index: 1100 !important;
}

/* Cart ordered - Progress */
.progress {
    border: 0;
    clear: both;
    display: block;
    margin: 2.4rem auto;
    text-align: center;
    width: 100%;

    background: rgba(1, 15, 30, 0.1);
    height: 1px;
    overflow: hidden;
    position: relative;
}

.progress::before {
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-name: progress;
    background-image: linear-gradient(95deg, rgb(255, 151, 87) 0%, rgb(255, 148, 56) 50%, rgb(255, 129, 0) 100%);
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 80px;
}

@keyframes progress {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(100vw);
    }
}


/* MAIN Prelaoder */
#load {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#load:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #ea4900;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/* Common */
/* ribbon */
.box {
    width: 200px;
    height: 300px;
    position: relative;
    border: 1px solid #BBB;
    background: #EEE;
}

.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon-image-subcat {
    right: 0px !important;
    top: -1px !important;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #f76a05;
    background: linear-gradient(#f76a05 0%, #8f4008 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    right: -21px;
    letter-spacing: 1px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #8F5408;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #8F5408;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;
}

/* Orange shy - order button */
.shy {
    background-repeat: no-repeat;
    background-position: -115% 0;
    background-color: #f1f1f1;
    background: #f1f1f1;
    background-image: -webkit-linear-gradient(-45deg, #f1f1f1,
            #f1f1f1 30%,
            #ffd2c4 50%, #f1f1f1 70%, #f1f1f1 100%);
    background-image: linear-gradient(-45deg, #f1f1f1,
            #f1f1f1 30%,
            #ffd2c4 50%, #f1f1f1 70%, #f1f1f1 100%);
    background-repeat: no-repeat;
    background-size: 135px 55px;
    -webkit-animation: glide 3050ms infinite;
    animation: glide 3050ms infinite;
}

@-webkit-keyframes glide {
    from {
        background-position: -215% 0;
    }

    to {
        background-position: 335% 0;
    }
}

@keyframes glide {
    from {
        background-position: -215% 0;
    }

    to {
        background-position: 335% 0;
    }
}


.strikethrough {
    position: relative;
}

.strikethrough:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;

    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
}


.text-decoration-none {
    text-decoration: none;
}

.bradius-0 {
    border-radius: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-padding>* {
    padding: 0 !important;
}







/* PDF Menu */
.ZoomGalleryCarousel {
    background: rgb(183 183 183);
    top: 114px !important;
}

.ZoomGalleryCarousel div:last-child {
    background: rgb(183 183 183 / 29%);
    color: white;
    font-size: 17px;
    left: 0;
    width: 100%;
    display: grid;
    justify-content: center;
}

.single-image .ZoomGalleryCarousel div:last-child span:first-child,
.single-image .ZoomGalleryCarousel div:last-child span:last-child {
    pointer-events: none;
    display: none;
}

.ZoomGalleryCarousel div:last-child span:first-child,
.ZoomGalleryCarousel div:last-child span:last-child {
    border: 1px solid #ccc;
    background: rgb(0 0 0 / 22%);
    position: fixed;
    width: 50px;
    height: 200px;
    top: calc(50% - 50px);
}

.ZoomGalleryCarousel div:last-child span:first-child {
    left: 0;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
}

.ZoomGalleryCarousel div:last-child span:first-child::before {
    content: '<';
}

/* .ZoomGalleryCarousel div:last-child span.status {  
    } */

.ZoomGalleryCarousel div:last-child span:last-child {
    right: 0;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
}

.ZoomGalleryCarousel div:last-child span:last-child::before {
    content: '>';
}

.g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
}




/* .orders_blink {
    animation-name: orders_blink;
    animation-duration: 5s;
    animation-iteration-count: infinite;
} */

@keyframes orders_blink {
    0% {
        background-color: #ccc;
    }

    20% {
        background-color: #ccc;
    }

    50% {
        background-color: rgb(255 104 0);
    }

    55% {
        background-color: rgb(255 104 0);
    }

    95% {
        background-color: #ccc;
    }

    100% {
        background-color: #ccc;
    }
}









/* Prelaoder */
#load {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#load:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid rgb(255, 82, 3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.pointer-events-none {
    pointer-events: none;
}

/* Header */
@media screen and (min-width: 335px) and (max-width: 370px) {
    nav ul a {
        padding: 0 10px;
    }
}

@media screen and (max-width: 335px) {
    nav ul a {
        padding: 0 8px;
    }
}

html {
    overflow: hidden;
    width: 100%;
}

body {
    /* background-image: url('../images/background-image.jpg') !important; */

    /* background-size: cover !important;
    position: absolute;
    width: 100%;
    height: 100%; */

    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;

    height: 100%;
    position: fixed;
    /* prevent overscroll bounce*/
    /* background-color: lightgreen; */
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    /* iOS velocity scrolling */
    width: 100%;
    /* margin-left: 25%; */

}

.main-header {
    /* background: white; */
    background: #ededed;
    position: fixed;
    z-index: 5;
    height: 50px;
    /* background: '#f7f7f7'; */
}

@media only screen and (max-width: 576px) {
    .first-child-mtop-30:first-child {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 576px) {
    .first-child-mtop-30 {
        margin-top: 30px;
    }
}


.center {
    text-align: center;
}

.p10 {
    padding: 10px;
}

.p20 {
    padding: 20px;
}

.brand-logo {
    font-size: 14px;
}


img.restaurant-logo {
    height: 40px;
    max-width: 195px;
    /* Custom for some */
    margin-top: 5px;
    position: absolute;
    left: calc(50% - 53px);
}

.search-holder {
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.56);
}

.material-search-icon {
    color: rgb(68, 68, 68)
}

.fixed {
    position: fixed;
}

/* Categories page*/
.welcome-text {
    text-shadow: 0px 0px 10px #A9A9A9;
    /* font-family: 'Lobster', cursive; */
    font-family: 'Pacifico', cursive;
    font-size: 45px;
    color: #FFFFFF;
    text-align: center;
    /* margin: 40px 0px; */
    margin-bottom: 30px;
}

a:focus,
a.active {
    background: transparent !important;
}

nav.categories-holder {
    padding-top: 50px;
    position: fixed;
}

nav.categories-holder img.category-icon {
    height: 35px;
}

.categories-holder {
    z-index: 2;
    /* padding: 10px; */
    /* padding-top: 56px; */
    background: none;
    /* margin-top: 50px; */
    /* background: transparent; */
}

.categories-list {
    margin: 0;
}

.categories-holder ul.categories-list li.categories-item {
    /* margin-bottom: 10px; */
    /* box-shadow: none; */
    margin: 0;
    color: white;

    width: 25%;
    float: left;
}

li.categories-item:nth-child(1)>div {
    background: #4C9CCF;
}

li.categories-item:nth-child(1) div:nth-child(2) {
    background: rgb(76, 156, 207);
    background: rgba(76, 156, 207, 0.4);
}

li.categories-item:nth-child(1) div:nth-child(2) a {
    color: white;
}

/* --- */
li.categories-item:nth-child(2) div {
    background: #4874A8;
}

li.categories-item:nth-child(2) div:nth-child(2) {
    background: rgb(72, 116, 168);
    background: rgba(72, 116, 168, 0.4);
}

li.categories-item:nth-child(2) div:nth-child(2) a {
    color: white;
}

/* --- */
li.categories-item:nth-child(3) div {
    background: #5A5387;
}

li.categories-item:nth-child(3) div:nth-child(2) {
    background: rgb(90, 83, 135);
    background: rgba(90, 83, 135, 0.4);
}

li.categories-item:nth-child(3) div:nth-child(2) a {
    color: white;
}

/* --- */
li.categories-item:nth-child(4) div {
    background: #524365;
}

li.categories-item:nth-child(4) div:nth-child(2) {
    background: rgb(82, 67, 101);
    background: rgba(82, 67, 101, 0.4);
}

li.categories-item:nth-child(4) div:nth-child(2) a {
    color: white;
}

.collapsible-header {
    border: none;
    padding: 5vh;
}

.category-name-holder img.category-icon {
    width: 35px;
    height: 35px;
}

span.category-name {
    /* margin-left: calc(50% - 70px); */
    word-break: break-word;
    font-size: 20px;
    text-align: center;
    width: 100%;
    padding-right: 10px;
    padding-left: 5px;
    display: none;
}

.subcategories-holder {
    /* background-color: rgba(255, 255, 255, 0.56); */
    background: none !important;

    display: block;
    clear: both;
    /* margin-top: 10px; */
    /* padding: 20px; */
    /* margin-bottom: 10px; */
    /* border-bottom: 1px solid #ccc; */
    border-bottom: 1px solid white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.subcategories-holder:last-child {
    /* padding-bottom: 0; */
    border: none;
}

ul#cats-tabs {
    background: rgb(237, 237, 237);
    background: rgba(237, 237, 237, 0.8);
    height: 65px;
    ;
}

.tabs .tab a {
    overflow: initial;
    margin-top: 6px;
}

.tabs .tab a:hover {
    text-decoration: none;
}

.tabs .tab {
    line-height: initial;
    height: 100%;
}

.tabs .tab a:hover,
.tabs .tab a:active {
    background: none;
}

ul#cats-tabs a {
    font-weight: bold;
    color: black;
}

ul#cats-tabs a.active {
    color: rgb(203, 65, 2);
    background: none;

    /* background: rgba(203,65,2,0.4) */
}

.tabs.tabs-transparent .indicator {
    background-color: rgb(203, 65, 2);
    /* min-width: 83px; */
}

.collapsible-body {
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    left: 0;
    width: 100%;
}

.collapsible-body.dblock {
    display: block;
}

.subcategory-name {
    color: rgb(68, 68, 68);
    font-size: 16px;
}


.order-cart-modal {
    background: rgb(236, 236, 236);
}

/* Cart Popup */
.product-order-img {
    /*max-width: 50px;
    max-height: 50px;*/

    width: 50px !important;
    height: 50px !important;
}

div.container .card {
    background: #ededed;
}

.modal.cart-modal .modal-content {
    padding: 10px;
    margin-bottom: 10px !important;
}

.modal.cart-modal .modal-content-custom {
    padding: 10px;
}


.cursorPointer {
    cursor: pointer;
}

/* Modal help */
/* .modal-help {
    height: 214px;
} */

.h_max-content {
    height: max-content;
}

.container {
    padding-top: 60px;
}

/* Add variant modal */

.addVariantModal {
    height: fit-content !important;
    border-radius: 20px;
}

.addVariantModal.open {
    display: table !important;
}

table.productVariants td {
    padding: 7px 0 5px 0;
}

.variants-modal-popup {
    width: 90%;
    max-width: 200px;
    border-color: #ccc !important;
    height: 100%;
    min-height: 52px;
    /* text-transform: none; */
}

.variants-modal-popup span.variant-holder {
    white-space: normal;
}

.variants-modal-popup span.variant-holder .price {
    font-style: italic;
}


.modal.bottom-sheet {
    max-height: 65% !important;
}

.addVariantButton {
    z-index: 2;
    background-color: #f2f2f2 !important;
    -webkit-box-shadow: 0px 0px 9px 0px black;
    box-shadow: 0px 0px 9px 0px black;
}

.addVariantButton i {
    color: black;
}


/* --------------------------------------------------------- */
.w100 {
    width: 100%;
}

.w50 {
    width: 50%;
}

.overflow-scroll {
    overflow: scroll !important;
}

.fsize13 {
    font-size: 13px !important;
}

.fsize14 {
    font-size: 13px !important;
}

.fsize18 {
    font-size: 18px !important;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.bold {
    font-weight: bold !important;
}

.mlr10 {
    /* flex-basis: 0;
    flex-grow: 1; */
    margin-left: 10px;
    margin-right: 10px;
}

.mtop5 {
    margin-top: 5px;
}

.ptop10 {
    padding-top: 10px !important;
}

.p6 {
    padding: 6px;
}

.p13 {
    padding: 13px !important;
}

.pbottom10 {
    padding-bottom: 10px !important;
}

.plr10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.m0-5 {
    margin: 0 5px 0 5px;
}

.m0 {
    margin: 0 !important;
}

.mlr0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mlr5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.mbottom2 {
    margin-bottom: 2px;
}

.mbottom10 {
    margin-bottom: 10px;
}

.mtop10 {
    margin-top: 10px;
}

.mtop15 {
    margin-top: 15px;
}

.nowrap {
    white-space: nowrap;
}

.break-word {
    word-break: break-word;
}

.valign-bottom {
    vertical-align: bottom;
}

.lh-normal {
    line-height: normal !important;
}

.fw500 {
    font-weight: 500;
}

#cartBtn {
    position: fixed;
    bottom: 50px;
    right: 35px;
    z-index: 5;
}

.dnone {
    display: none;
}

.block {
    display: block !important;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

/* Cart modal */

.cartProductsContainer {
    /* margin-top: 5px; */
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 15px;
}

.cart_inc_dec_btns {
    background: rgb(242, 242, 242);
    outline: none !important;
}

.cart_inc_dec_btns:active,
.cart_inc_dec_btns:focus,
.cart_inc_dec_btns:hover {
    background: rgb(236, 236, 236);
}

.cart_inc_dec_btns i {
    color: black;
}

/* Waiter popup */
.openWaiterModal,
.openWaiterModal:focus,
.openWaiterModal:active,
.openWaiterModal:hover {
    text-decoration: none !important;
    background-color: rgb(203, 65, 2);
    box-shadow: 0 0px 6px black;
    margin-bottom: 5px;
}

.orderedProductsWaiterModal {
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 15px;
}

.choose-default-lang {
    /* margin-bottom: 6px; */
    font-weight: bold;
    font-size: 15px;
}

.waiter-modal .call-waiter,
.waiter-modal .ask-for-bill {
    width: 100%;
}

.waiter-modal .modal-footer {
    height: auto !important;
}

.waiterEachProducts:not(:first-child):not(:last-child) {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}

.totalPriceAllOrders {
    color: rgb(203, 65, 2);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    margin-top: 3px;
}

.orange {
    background: rgb(203, 65, 2) !important;
}

.text-orange {
    color: rgb(203, 65, 2) !important;
}

.ask-for-bill-btn {
    border-left: 1px solid #ccc;
}

.orderFooter {
    border-top: 1px solid rgb(0, 0, 0);
    border-top: 1px solid rgba(0, 0, 0, .2);
    margin-top: 10px;
    padding-top: 5px;
}

.orderNum {
    float: left;
}

.totalPrice {
    /* color: rgba(203,65,2,1); */
    font-weight: 500;
}

.cartTotalPerOrder {
    vertical-align: middle;
    margin-left: 2px;
    margin-right: 1px;
    /* font-weight: 500; */
}

.totalCartPrice {
    color: rgb(203, 65, 2);
    font-weight: 600;
}

/* Cart popup */
.cartFixedBtn {
    background: rgb(203, 65, 2) !important;
}

.cartFixedBtn:active {
    background: rgb(226, 74, 1) !important;
}

.decreaseQtyBtn {
    background: rgb(203, 65, 2);
}

.removeCartOrder {
    position: absolute;
    right: 0;
    top: 0;
}


.count-total-prods {
    vertical-align: top;
    /* background: rgba(255, 255, 255, 0.56); */
    position: absolute;
    width: 30px;
    right: 0px;
    color: white;
}

.languageModalAppNavbar {
    margin-top: -8px;
}

.languageModalAppNavbar a {
    text-decoration-color: black !important;
    text-decoration: underline;
}

.languageModalAppNavbar a i {
    color: black !important;
}

.selected-lang {
    /* border: 1px solid #ccc; */
    color: rgb(203, 65, 2);
    font-weight: bold;
}





i.shopping_cart_fixed_icon {
    left: 8px;
    position: absolute;
    color: white;
}

@media only screen and (max-width: 375px) {
    .quantitySmallScreens {
        display: block;
    }

    .quantityLargeScreens {
        display: none;
    }
}

@media only screen and (min-width: 375px) {
    .quantitySmallScreens {
        display: none;
    }

    .quantityLargeScreens {
        display: block;
    }
}

#back-to-home {
    margin-left: 10px;
    border: 1px solid #ccc;
    background-color: #efefef;
    overflow: initial;
}

#back-to-home a {
    color: black;
}

#chipBreadcrumb {
    margin-top: -59px;
}

.category-content-holder {
    padding-top: 125px;
    /* background: rgba(200,200,200,0.4); */
}

/* #root { */
/* height: inherit; */
/* background: rgba(200,200,200,0.4); */
/* backdrop-filter: blur(2px); */
/* backdrop-filter: opacity(85%); */
/* } */


/* body { */
/* backdrop-filter: blur(2px); */
/* backdrop-filter: opacity(85%); */
/* } */

/* .page-container { */
/* background: rgba(200,200,200,0.4); */
/* backdrop-filter: blur(2px);     */
/* backdrop-filter: opacity(85%); */
/* } */





/* BreadCrumb */
.breadcrumbHolder {
    position: absolute;
    text-align: center;
    line-height: 16px;
    margin-top: 5px;
    padding-right: 8px;
    /* left: calc(50% - 75px); */
    width: 100%;
}

.breadcrumbNav {
    font-size: 16px;
}

.breadcrumbNav a {
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.breadcrumbHomePage a,
.breadcrumbNav .breadcrumbArrow,
.breadcrumbCategoryPage #currentCategory {
    color: black !important;
}

.breadcrumbHomePage {
    border-bottom: 2px solid #ccc;
}


.breadcrumbCategoryPage {
    word-break: break-all;
}

/* List products */
.productVariants,
.productVariantSize {
    font-style: italic;
}

.MuiBox-root {
    padding: 0 !important;
}

.subcategories-holder {

    /* word-break: break-all; */
    /* display: block !important; */
    /* text-align: center; */
    /* background-color: rgba(255, 255, 255, 0.8); */

    color: rgb(68, 68, 68);
    font-size: 19px;

    text-decoration: none;

    padding: 13px;
}

.subcategory-arrow-right {
    float: right;
}

.page-not-found-holder {
    margin: 0 auto;
    top: 25%;
    position: absolute;
    text-align: center;
    width: 100%;
}

.page-not-found-holder .error-404 {
    font-size: 3.2em;
}

.page-not-found-holder h1 {
    font-family: 'Ranga', cursive;
    /* font-size: 70%; */
    color: white;
    text-shadow: 0px 0px 9px rgb(0, 0, 0);
    font-size: 3em;
}

.page-not-found-holder .goback-from-404 {
    color: white;
    text-shadow: 0px 0px 9px rgb(0, 0, 0);
    font-size: 2em;
    margin-top: 40px;
}

.page-not-found-holder .home-page-text {
    vertical-align: text-bottom;
}


.card-image .material-placeholder {
    background: white;
}

img.materialboxed.has-img {
    /* width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;

    height: 100%;
    height: -moz-available;
    height: -webkit-fill-available;
    height: fill-available;

    max-height: 270px; */

    /* max-height: 250px;
    max-width: 300px;
    margin: 0 auto; */
    /* width: auto; */

    /* max-height: 75vh;
    width: 100%;
    width: -moz-available;          
    width: -webkit-fill-available;  
    width: fill-available; */
    max-height: 360px;
    max-width: 360px;
    margin: 0 auto;
}

img.category-icon {
    height: 35px;
}

.google-category-holder {
    top: 0px;
}

.google-category-holder>div {
    background: transparent;
}



/* .google-category-holder .react-swipeable-view-container > div{
    background: rgb(237,237,237);
    background: rgba(237,237,237,0.65);
} */

.google-category-holder header.MuiPaper-root {
    overflow: hidden;
    /* position: fixed;
    display: flex; */
    background: rgb(237, 237, 237);
    background: rgba(237, 237, 237, 0.85);
    /* background: #ededed; */
    /* background: #ffffff0c !important; */
    position: fixed;
    z-index: 5;
    height: 80px;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 5px 5px 0px rgba(0, 0, 0, 0.12) !important;
}

.google-category-holder>div>div {
    padding-top: 80px !important;

    /* top: 70px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: table; */
}

.google-category-holder .MuiTabs-flexContainer button {
    font-size: 14px;
    color: black;
}

.google-category-holder .MuiTabs-flexContainer button:focus {
    background: transparent;
    outline: none;
}

.google-category-holder .MuiTabs-flexContainer button.Mui-selected {
    color: rgb(203, 65, 2);
    font-weight: bold;
}

.google-category-holder .MuiTabs-indicator {
    background-color: rgb(203, 65, 2);
}


.modal-language-opener {
    position: initial !important;
}

.modal-language-opener i {
    font-size: 30px !important;
}

#root {
    /* box-sizing: border-box; */
    /* position: absolute; */
    /* left: 0; */
    /* top: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* background: #efeff4; */
    /* -webkit-transform: translate3d(0, 0, 0); */
    /* transform: translate3d(0, 0, 0);*/
}


.page-container {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    height: 100vh;
    min-height: 100%;
    /* height: -webkit-fill-available; */
    position: relative;
    z-index: 1;
    /* background-image: url(https://demo.tabl.bg/files/settings/ce81780a112c61fc6e4e2fb9e17bb9301569975821074.png) !important; */
    background-size: cover;
    -webkit-transition: background-image 1s ease-in-out;
    -moz-transition: background-image 1s ease-in-out;
    -o-transition: background-image 1s ease-in-out;
    transition: background-image 1s ease-in-out;
}

.flag-img span {
    background-size: cover !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 15px !important;
    border: 2px solid #ccc;
    margin-top: 5px;
}

a.cblack {
    color: black;
}

a.cblack:hover {
    color: rgb(203, 65, 2);
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

/* Reservations */

.reservation-global-container .makeStyles-root-44 {
    width: 100% !important;
}

.reservation-global-container .makeStyles-root-44>div {
    margin-bottom: 30px;
}

.reservation-global-container .reservation-restaurant-logo {
    margin: 0 auto;
    width: 370px;
    margin-top: -63px;
}

.reservation-global-container .MuiBox-root div div {
    background-color: transparent;
    /* display: table;
    margin: 0 auto; */
    /* width: 100%; */
    /* justify-self: end; */
}

.reservations-arrow-up {
    /* width: 0;
    height: 0; */
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    /* margin: 0 auto; */
    /* border-bottom: 20px solid rgba(237,237,237,0.5); */
    border-bottom: 20px solid #000000aa;

    /* position: absolute; */
    bottom: 30px;
    left: 50%;
    /* margin-bottom: 50px !important; */
    position: fixed;
    /* color: white; */

    display: none;
}

.reservation-footer {
    position: fixed;
    border-top: 2px solid #000000aa;
    bottom: 0px;
    left: 0px;
    /* width: 100%; */
    /* height: 25px; */
    /* background: rgb(237,237,237);
    background: rgba(237,237,237,0.5);
    background: #c9b040aa; */
    background: #000000;
    background: #000000aa;
    color: white;
    font-family: sans-serif;
}

.reservation-global-container .MuiStepConnector-lineVertical {
    min-height: 10px !important;
}


.updated-footer-3-rows {
    padding-top: 7px;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    /* row-gap: 7px; */
    width: 100%;
    /* position: fixed; */
    position: relative;
    border-top: 2px solid #000000aa;
    bottom: 0px;
    left: 0px;
    background: #000000;
    background: #000000aa;
    color: white;
    font-size: 14px;
    font-family: sans-serif;
}


.updated-footer-3-rows .images-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
}

.updated-footer-3-rows .reservation-footer-3column-part{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
}

.updated-footer-3-rows .reservation-footer-3column-part div {
    text-align: center;
}

.updated-footer-3-rows .reservation-footer-central-part {
    /* text-align: center; */
    display: grid;
    justify-items: center;
    align-items: center;
    padding: 0 17px;
}

.updated-footer-3-rows .reservation-footer-bottom-part {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
}



.reservation-footer-right-part {
    font-size: 14px;
    padding-top: 5px;
}

.reservation-footer img {
    width: 60px;
    padding: 1px;
    float: left;
    margin-left: 5px;
}

.reservation-footer .reservation-footer-right-part {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    text-align: center;
    transition: all 0.5s ease;
}

.reservation-footer .reservation-footer-right-part:hover {
    color: white !important;
}


/* Places list */
.reservation-global-container .MuiCollapse-wrapperInner {
    /* width: auto !important; */
    width: 100%;
}

.reservation-global-container .makeStyles-cover-255 {
    width: auto;
}

.reservation-global-container .list-places .MuiPaper-root,
.reservation-global-container .list-rooms .MuiPaper-root {
    margin: 0 auto;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 60% 40%;
    cursor: pointer;
    width: auto !important;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87);
    max-width: 600px;
    /* background-color: #dfdfdf !important; */
    /* box-shadow: 0px 0px 4px 0px black !important; */
}



.reservation-global-container .places-next-button,
.reservation-global-container .date-picker-next-button,
.reservation-global-container .time-picker-next-button,
.reservation-global-container .rooms-next-button {
    display: block !important;
    width: 100%;
    max-width: 600px;
    margin: 0 auto !important;
    /* background: rgba(250, 250, 250, 0.68) !important; */
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87) !important;
    box-shadow: none !important;
    border: 1px solid white !important;
    border-radius: 0 !important;
    color: black !important;
}


/* .date-picker-next-button.date-picker-next-button {
    display: block !important;
    width: 100%;
    max-width: 600px;
    margin-top: 20px !important;
    margin: 0 auto !important;
    background: rgba(250, 250, 250, 0.68) !important;
    box-shadow: none !important;
    border: 1px solid white !important;
    border-radius: 0 !important;
    color: black !important;
} */



.reservation-global-container .MuiStepper-root {
    padding: 10px !important;
}

.reservation-global-container .list-places .MuiPaper-root div:nth-child(2),
.reservation-global-container .list-rooms .MuiPaper-root div:nth-child(2) {
    justify-self: end;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    /* height: 100%; */
    height: auto;
}

.reservation-global-container .list-places .each-restaurant-card.active,
.reservation-global-container .list-rooms .each-room-card.active {
    box-shadow: 0px 0px 4px 4px #b99e3a !important;
}

@media screen and (min-width: 650px) {
    .reservation-footer img {
        position: absolute;
    }
}


.reservation-global-container .MuiInput-underline:before,
.reservation-global-container .MuiInput-underline::after {
    display: none;
}

.reservation-global-container .MuiStepIcon-root.MuiStepIcon-active,
.reservation-global-container .MuiStepIcon-root.MuiStepIcon-completed {
    color: #c9b040 !important;
}


/* Header */
@media screen and (max-width: 426px) {
    .reservation-global-container .MuiTypography-h5 {
        font-size: 1.2rem !important;
    }

    .reservation-global-container .MuiTypography-subtitle1 {
        font-size: 0.8rem !important;
    }
}



.reservation-global-container .calendar-holder>div {
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87) !important;
}

.reservation-global-container .calendar-holder>div>div {
    text-align: center;
    /* display: block; */
    margin: 0 auto;
}


.p20 {
    padding: 20px !important;

}

.bradius-top-5 {
    border-top-right-radius: 5px !important;
    border-top-left-radius: 5px !important;
}

.reservation-global-container .calendar-holder {
    /* width: fit-content; */
    width: max-content;
    margin: 0 auto;
    border-radius: 5px;
    /* background-color: rgba(255,255,255,0.87) !important; */
}

.reservation-global-container .calendar-holder .MuiButton-label h6 {
    color: #4b4b4b;
}

.reservation-global-container .calendar-holder .MuiButton-label h4 {
    color: #bc9e34;
}


.reservation-global-container .calendar-holder .MuiPickersCalendarHeader-iconButton {
    background: transparent;
    color: black;
}

.reservation-global-container .calendar-holder .MuiPickersCalendarHeader-daysHeader span {
    color: black;
}

.reservation-global-container .calendar-holder .MuiPickersDay-daySelected {
    background-color: #bc9e34;
}


.reservation-global-container .calendar-holder .calendar-cantbookfortoday-error {
    text-align: center;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87) !important;
    padding: 10px;
    /* border-radius: 10px; */
}

.reservation-global-container .calendar-holder .call-us {
    margin-bottom: 10px;
}

.reservation-global-container .calendar-holder div[role=presentation]>button:focus {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.reservation-global-container .calendar-holder div[role=presentation]>button:focus * {
    color: black !important;
}

.reservation-global-container .calendar-holder input {
    text-align: center;
}

.reservation-global-container .time-holder {
    /* width: max-content; */
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
}

.reservation-global-container .time-holder-form {
    padding: 15px;
    padding-top: 7px;
    /* border-radius: 5px; */
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87) !important;

    /* display: grid;
    grid-template-columns: 50% 50%; */
}


/*.time-holder */
.reservation-global-container .MuiFormLabel-root.Mui-focused {
    color: #bc9e34 !important;
}

.reservation-global-container .time-picker-error-text {
    margin-top: 30px;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87) !important;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    /* width: 300px; */
    width: 100%;
    max-width: 310px;
}

.reservation-global-container .top-border-left-and-right {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.reservation-global-container .count-people-holder {
    /* width: max-content; */
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
}

.time-holder-form .MuiInputBase-input,
.count-people-holder-form .MuiInputBase-input {
    padding-top: 10px;
    padding-bottom: 10px;
}

.reservation-global-container .count-people-holder-form {
    padding: 15px;
    /* border-radius: 5px; */
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    /* padding-top: 7px; */
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87) !important;
}

.reservation-global-container .count-people-holder .more-than-10,
.reservation-global-container .time-holder .more-than-10,
.reservation-global-container .list-rooms .more-than-10 {
    display: block !important;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    /* background: rgba(250, 250, 250, 0.68); */
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87) !important;

    box-shadow: none !important;
    border: 1px solid white !important;
    border-radius: 0 !important;
    color: black !important;
}

/* 
.reservation-global-container .count-people-holder .more-than-10:focus span {
    color: black !important;
} */
.reservation-global-container .count-people-holder .more-than-10:active,
.reservation-global-container .count-people-holder .more-than-10:focus,
.reservation-global-container .time-holder .more-than-10:active,
.reservation-global-container .time-holder .more-than-10:focus,
.reservation-global-container .list-rooms .more-than-10:active,
.reservation-global-container .list-rooms .more-than-10:focus {
    background-color: #bc9e34 !important;
}

.reservation-global-container .count-people-holder .more-than-10:hover,
.reservation-global-container .time-holder .more-than-10:hover,
.reservation-global-container .list-rooms .more-than-10:hover {
    /* background-color: #bc9e34 !important; */
    background: white;
    background: rgba(255, 255, 255, 0.87);
}


.reservation-global-container .count-people-holder-form>div,
.reservation-global-container .time-holder-form>div {
    /* width: 100%; */
    display: flex;
}

.reservation-global-container .count-people-holder .count-people-error {
    text-align: center;
    font-weight: bold;
    border-bottom: 1px dashed;
    padding-bottom: 15px;
    border-color: #777;
    margin-bottom: 20px;
    display: block;
}

/* --- */
.reservation-global-container .list-rooms .room-doesnt-matter {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    border-radius: 0;
    margin-bottom: 10px;
    background: white;
    background: rgba(255, 255, 255, 0.87);
    color: black;
}

.reservation-global-container .list-rooms .room-doesnt-matter:hover {
    background: white;
    background: rgba(255, 255, 255, 0.87) !important;
}

.reservation-global-container .list-rooms .room-doesnt-matter:active {
    /* color: black; */
    background-color: #bc9e34 !important;
}

/* --- */

.reservation-global-container .reservation-success-holder .main-title {
    text-align: center;
    font-size: 18px;
    color: #318000;
}


.reservation-global-container .reservation-success-holder .main-title-failure {
    text-align: center;
    font-size: 18px;
    color: #ff0000;
}


.reservation-global-container .reservation-success-holder .reservation-description {
    margin-top: 20px;
    margin-bottom: 20px;
}

.reservation-global-container .reservation-success-holder .reservation-description .bold {
    font-weight: bold;
}

.reservation-global-container .reservation-success-holder .title {
    display: block;
    font-size: 16px;
    color: #525252;
    font-weight: bold;
    /* text-decoration: underline; */
}


.reservation-global-container .reservation-success-holder .reservation-info {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-bottom: 15px;
    border-top: 1px solid #ccc;
    margin-top: 5px;
}

.reservation-global-container .reservation-success-holder .reservation-info .leftSide,
.reservation-global-container .reservation-success-holder .reservation-info .rightSide {
    padding: 15px;
    /* padding-left: 5px; */
}

.reservation-global-container .reservation-success-holder .reservation-info .leftSide {
    border-right: 1px solid #ccc;
}

.reservation-global-container .reservation-success-holder .reservation-info .info {
    display: block;
    color: #505252;
    padding: 2px;
    padding-left: 0;
}

.reservation-info .data {
    margin-left: 7px;
}

/*.reservation-global-container  .reservation-success-holder .reservation-info .info.restaurant-info {
    margin-top: 15px;
    border-top: 1px solid #cccc;
    padding-top: 15px;
    width: fit-content;
} */

.reservation-global-container .reservation-success-holder .reservation-info .info .icon {
    margin: 10px;
}

.reservation-global-container .reservation-success-holder .reservation-info .info .data {
    vertical-align: super;
    word-break: break-word;
}

.reservation-global-container .reservation-success-holder .links {
    text-align: center;
    /* margin-bottom: 20px; */
}

.reservation-global-container .reservation-success-holder .cancel-reservation-btn {
    margin: 0 auto;
    display: block;
}

.reservation-global-container .reservation-success-holder .cancel-reservation-btn.MuiButton-root {
    border-radius: 0;
}

.reservation-global-container .reservation-success-holder .links a {
    color: #bb9900;
    padding: 10px;
}

.reservation-global-container .confirmation-holder {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    /* border-radius: 0; */

}

.reservation-global-container .reservation-success-holder {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    /* border-radius: 0; */
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    margin-bottom: 10px;
    background: white;
    background: rgba(255, 255, 255, 0.87) !important;
    color: black;
    padding: 15px;
}

.reservation-global-container .confirmation-holder-form {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    /* margin-bottom: 10px; */
    background: white;
    background: rgba(255, 255, 255, 0.87) !important;
    color: black;
    padding: 15px;
}

.reservation-global-container .reservation-success-holder .reservation-canceled {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}


.reservation-global-container .confirmation-holder .reservation-error {
    color: red;
    text-align: center;
    font-weight: bold;
    line-height: normal;
    /* border-bottom: 1px dashed;
    padding-bottom: 15px; */
    border-color: #777;
}

.reservation-global-container .confirmation-holder input:focus {
    border-bottom: 1px solid #bc9e34 !important;
    box-shadow: 0 1px 0 0 #bc9e34 !important;
}

.reservation-global-container .confirmation-holder .book {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    border-radius: 0;
    /* margin-top: 0px !important;
    margin-bottom: 10px; */
    background: white;
    background: rgba(255, 255, 255, 0.87);
    color: black;
}

.reservation-global-container .make-reservation-button {
    background: #c9b040 !important;
    color: white !important;
}

.reservation-global-container .make-reservation-button:hover,
.reservation-global-container .make-reservation-button:focus {
    background: #c9b040 !important;
    color: black !important;
}


.reservation-global-container .mtop15 {
    margin-top: 15px !important;
}

.reservation-global-container .confirmation-holder .book:hover

/* .confirmation-holder .book:active, */
    {
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87) !important;
}

.reservation-global-container .confirmation-holder .book:active,
.reservation-global-container .confirmation-holder .book:focus {
    /* color: black; */
    background-color: #bc9e34 !important;
}

/* .confirmation-holder .book:active *,
.confirmation-holder .book:focus *,
.confirmation-holder .book:hover * {
    color: black !important;
} */

.reservation-global-container .confirmation-holder .checkboxes button {
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.reservation-global-container .confirmation-holder .checkboxes .MuiButtonBase-root {
    margin-top: -3px;
    color: #c9b040;
}



.reservation-global-container .confirmation-holder .checkboxes>.MuiFormControlLabel-root {
    display: grid;
    grid-template-columns: 35px calc(100% - 35px);
    margin: 0;
}

@media screen and (max-width: 600px) {
    .reservation-global-container .confirmation-holder .checkboxes>.MuiFormControlLabel-root {
        text-align: center;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
}

/* 
.confirmation-holder .checkboxes .MuiFormControlLabel-root {
    margin: 0;
} */


.reservation-global-container .confirmation-holder .checkboxes .MuiFormControlLabel-label {
    color: black;
    font-size: 13px;
}

.reservation-global-container .confirmation-holder .checkboxes .MuiFormControlLabel-label button {
    font-size: 11px;
}



.reservation-global-container .confirmation-holder .input-fields {
    display: grid;
    grid-template-columns: 50% 50%;
}


@media screen and (max-width: 500px) {
    .reservation-global-container .confirmation-holder .input-fields {
        grid-template-columns: none;
    }

    .reservation-global-container .confirmation-holder .input-fields>div {
        margin: 0;
    }
}

/* .confirmation-holder .input-fields > div{
} */

.reservation-global-container .MuiStepConnector-vertical {
    padding: 0 0 5px 0 !important;
}

.reservation-global-container .calendar-holder .MuiPickersDay-current:not(.MuiPickersDay-dayDisabled):not(.MuiPickersDay-daySelected) {
    color: rgba(0, 0, 0, 0.87) !important;
}

.reservation-global-container .calendar-holder .MuiTypography-colorPrimary,
.reservation-global-container .calendar-holder .MuiPickersYear-root:focus {
    color: #bc9e34 !important;
}

.reservation-global-container .calendar-holder .MuiPickersDay-daySelected:hover {
    background-color: #bc9e34 !important;
}

.reservation-global-container .calendar-holder .MuiPickersStaticWrapper-staticWrapperRoot {
    /* border-radius: 4px; */
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.reservation-global-container button:focus {
    /* background-color: rgba(250, 250, 250, 0.68) !important; */
    background-color: #b99e3a !important;
    color: white;
    outline: none !important;
}

.reservation-global-container button:focus * {
    color: white !important;
}

.reservation-global-container .underlined,
.reservation-global-container .underlined * {
    text-decoration: underline;
}

.reservation-global-container .step-links {
    cursor: pointer;
    width: max-content;
    /* padding: 4px; */
}

.reservation-global-container .smoking-icon {
    vertical-align: middle;
    margin-right: 10px;
    background: white;
    padding: 7px;
    border-radius: 25px;
    font-size: 37px;
}

.reservation-global-container .access-time-holder {
    background: white !important;
    padding: 5px;
    width: 60%;
    width: max-content;
    /* border-top-right-radius: 20px;
    border-bottom-left-radius: 20px; */
    border-radius: 20px;
}

.reservation-global-container .access-time-icon {
    vertical-align: top;
    font-size: 25px;
}

.reservation-global-container .api-error {
    background-color: white;
    background-color: rgba(255, 255, 255, 0.87) !important;
    width: fit-content;
    padding: 20px;
    margin: 0 auto;
    border-radius: 5px;
}

.reservation-global-container .call-us {
    width: max-content;
    padding-top: 13px;
    margin: 0 auto;
}

.reservation-global-container .mbottom15 {
    margin-bottom: 15px;
}


.reservation-global-container .call-us-link,
.reservation-global-container .call-us-link:hover,
.reservation-global-container .call-us-link:active,
.reservation-global-container .call-us-link:focus {
    text-decoration: none;
}

.reservation-global-container .mtop-10 {
    margin-top: 10px !important;
}



body,
.page-container {
    overflow: hidden !important;
}


@media screen and (max-width: 670px) {
    .reservation-global-container .reservation-success-holder .reservation-info {
        grid-template-columns: none;
        grid-template-rows: 100% 100%;
        grid-template-rows: auto;
    }

    .reservation-global-container .reservation-success-holder .reservation-info .leftSide {
        border: none;
    }
}

@media screen and (max-width: 360px) {
    .reservation-global-container .time-holder-form {
        grid-template-columns: none !important;
    }
}

[data-class="tablet-mode"] #fixed-header {
    height: 70px !important;
}

/* .reservations-container {
    margin-bottom: 70px;
} */

[data-class="swipeable-container"] {
    padding-bottom: 150px;
}

@media screen and (max-width: 460px) {
    [data-class="swipeable-container"] {
        padding-bottom: 210px !important;
    }
    .reservations-container {
        margin-bottom: 140px;
    }
    
    /* .react-swipeable-view-container {
        padding-bottom: 75px;
    } */
    
}

.pac-container {
  z-index: 99999 !important;
}