@import url('https://fonts.googleapis.com/css?family=Dancing+Script:700|Montserrat:600,700|Noto+Sans+JP:400,500,700,900&display=swap&subset=japanese');

html, body {
    font-family: Noto Sans JP, -apple-system, BlinkMacSystemFont, Helvetica Neue, 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, Arial, メイリオ, Meiryo, sans-serif;
    font-size: 14px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: .05em;
    line-height: 1.75;
    color: #13181d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}
.nav-link:hover, .nav navbar > li > a:hover, .nav-link:focus, .nav navbar > li > a:focus {
    text-decoration: none;
    outline: none;
}

.navbar-light .navbar-brand {
    padding: 10px 0;
}

.navbar-top .navbar-brand .img-logo {
    height: 60px;
}
.navbar-nav .dropdown .dropdown-menu .dropdown-item i {
    padding-right: 5px;
    width: 20px;
    text-align: center;
    color: #fe4901;
}

body > main {
    padding-top: 80px;
}
.tooltip{
    font-size: 14px;
}
.tooltip .tooltip-inner b{
    color: #fe4901;
}

/* Styling for google map */
main .shop-map {
    position: relative;
}
#map {
    height: 100%;
    width: 100%;
    height: 650px;
}
.shop-map .store-mark-info {
    min-width: 200px;
}
.shop-map .marker-btn-group .btn {
    margin: 2px 5px;
    outline: none;
}
.shop-map .marker-btn-group .btn:focus, .shop-map .marker-btn-group .btn.focus {
    box-shadow: none;
}
.shop-map .map-sidebar {
    background: rgb(255 255 255 / 92%);
    z-index: 1;
    width: 300px;
    position: absolute;
    left: 2%;
    top: 5%;
    border-radius: 10px;
    bottom: 28%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 7px 1px rgb(0 0 0 / 30%);
}
.shop-map .map-sidebar h4 {
    text-align: center;
    padding: 10px 10px 0;
}
.shop-map .map-sidebar input#storeNameSearch {
    margin: 10px 20px 5px;
    width: 87%;
}
.shop-map .map-sidebar ul.left-storeList {
    list-style: none;
    margin: 0;
    flex-grow: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-left: 10px;
    padding-right: 10px;
}
.shop-map .map-sidebar ul.left-storeList::-webkit-scrollbar{
    width: 9px;
    height: 9px;
}
.shop-map .map-sidebar ul.left-storeList::-webkit-scrollbar-thumb{
    background: #251c3a;
    border-radius: 6px;
}
.shop-map .map-sidebar ul.left-storeList::-webkit-scrollbar-thumb:hover{
    background: #251c3a;
}
.shop-map .map-sidebar ul.left-storeList::-webkit-scrollbar-track{
    background: #FFFFFF;
    border-radius: 0px;
    box-shadow: inset 0px 0px 10px 10px #F0F0F0;
}
.shop-map .map-sidebar ul.left-storeList li {
    margin: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #333;
}
.shop-map .map-sidebar ul.left-storeList li a {
    display: flex;
    flex-grow: 1;
    padding: 8px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    flex-direction: row;
    align-items: center;
}
.shop-map .map-sidebar ul.left-storeList li a .shop-img {
    height: 60px;
    width: 50px;
    overflow: hidden;
    margin-right: 10px;
}
.shop-map .map-sidebar ul.left-storeList li a img {
    height: 60px;
    width: 50px;
    object-fit: cover;
    object-position: center;
}
.shop-map .map-sidebar ul.left-storeList li a:hover, .shop-map .map-sidebar ul.left-storeList li a.active {
    background-color: #000;
    color: #fff;
    border-radius: 5px;
}
.shop-map .map-sidebar ul.left-storeList li a i {
    width: 30px;
    margin: 0;
    padding-right: 10px;
    color: #000;
    text-align: center;
}
.shop-map .map-sidebar ul.left-storeList li a:hover i, .shop-map .map-sidebar ul.left-storeList li a.active i {
    color: #fe4901;
}
.shop-map .map-sidebar ul.left-storeList li a span {
    display: flex;
    align-content: center;
    flex-direction: row;
    align-items: center;
}



    /* Foods menu custom css starts from here */
.checkavailability {
    padding: 40px 40px 0px;
    background: #ffffff;
    border-radius: 5px;
    text-align: left;
    -webkit-box-shadow: 0 5px 10px -5px rgb(0 0 0 / 30%);
    box-shadow: 0 5px 10px -5px rgb(0 0 0 / 30%);
    position: relative;
}

.checkavailability h2.display-5:after {
    content: '';
    display: block;
    width: 100px;
    height: 30px;
    background: url(../images/sep.png) no-repeat;
    margin: 10px auto 0 auto;
}

.tbl-reserve {
    margin-top: -100px;
}

.checkavailability .left-resto-img {
    -webkit-animation: bounce 3s infinite ease-in-out;
    -o-animation: bounce 3s infinite ease-in-out;
    -ms-animation: bounce 3s infinite ease-in-out;
    -moz-animation: bounce 3s infinite ease-in-out;
    animation: bounce 3s infinite ease-in-out;
}

@-webkit-keyframes bounce {
    0% {
        transform: translateY(-5px)
    }
    50% {
        transform: translateY(10px)
    }
    100% {
        transform: translateY(-5px)
    }
}

@keyframes bounce {
    0% {
        transform: translateY(-5px)
    }
    50% {
        transform: translateY(10px)
    }
    100% {
        transform: translateY(-5px)
    }
}

.checkavailability-form {
    padding: 40px 20px 0px;
    -webkit-box-shadow: 0 3px 40px rgb(0 0 0 / 25%);
    -ms-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgb(0 0 0 / 25%);
    border-radius: 5px;
    animation: glowing 5000ms infinite;
}

.checkavailability-form .form-group {
    font-size: 18px;
    margin-bottom: 30px;
}

.checkavailability-form .form-group i {
    position: absolute;
    right: 12.5%;
    bottom: 55%;
    display: block;
    color: #ff4900;
}

.checkavailability-form .form-group .form-label {
    margin-bottom: 10px;
    display: block;
    color: #3a84df;
}

.checkavailability-form .form-group input.form-control, .checkavailability-form .form-group select.form-select {
    font-size: 14px;
    font-weight: 500;
    height: 55px;
    appearance: none;
}
.checkavailability-form .form-group .selectShop input.form-control {
    height: 35px;
}
.checkavailability-form .dropdown.bootstrap-select, .shop-reservation-form .dropdown.bootstrap-select {
    height: auto;
}

.checkavailability-form .form-group .dropdown-toggle, .shop-reservation-form .form-group .dropdown-toggle, .store_reservable_time .dropdown-toggle{
    padding: 16px 10px;
    background: none;
    border: 1px solid #e0dcdb;
    font-size: 14px;
    font-weight: 500;
}
.available-time .omise_tbl_time {
    position: relative;
}
.available-time .omise_tbl_time .form-group i {
    top: 35%;
}
.checkavailability-form .bootstrap-select .dropdown-menu li a, .shop-reservation-form .bootstrap-select .dropdown-menu li a {
    font-size: 16px;
}

.checkavailability-form .bootstrap-select .dropdown-toggle:focus, .checkavailability-form .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgb(255 73 0 / 25%);
    border: 1px solid #ffa480;
}

.checkavailability-form .dropdown.show .dropdown-toggle {
    box-shadow: 0 0 0 0.2rem rgb(255 73 0 / 25%);
    border: 1px solid #ffa480;
}

.checkavailability-form .form-group input.form-control:disabled, .checkavailability-form .form-group input.form-control[readonly] {
    background-color: #ffffff;
    opacity: 1;
}

.dflt-btn {
    background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);
    box-shadow: 0 4px 15px 0 rgb(45 54 65 / 75%);
}

.dflt-btn.color-orange {
    background-image: linear-gradient(to right, #FF512F 0%, #F09819 51%, #FF512F 100%);
    box-shadow: 0 4px 15px 0 rgb(189 33 48 / 75%)
}

.dflt-btn {
    width: 200px;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    padding: 15px 0px;
    text-align: center;
    position: relative;
    border: none;
    background-size: 300% 100%;
    border-radius: 5px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.dflt-btn:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.dflt-btn:focus {
    outline: none;
}

.btn-grad {
    background-image: linear-gradient(to right, #FF512F 0%, #F09819 51%, #FF512F 100%);
}

.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

/***************** Availability Results ***************/

.availability-search-page .search-result-page-title {
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    position: sticky;
    top: 80px;
    z-index: 5;
    background: whitesmoke;
}
.availability-search-page .search-result-page-title strong {
    font-size: 18px;
}
.availability-search-page .search-result-page-title span {
    font-weight: 500;
}
.availability-info {
}
.availability-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.availability-list .shop-thumb {
    z-index: 2;
    width: 180px;
    height: 200px;
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0px 0px 8px 2px rgb(0 0 0 / 45%);
}

.availability-list .shop-thumb img.img-fluid {
    height: 100%;
    object-fit: cover;
}

.availability-list .shop-availability-cont {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding: 20px 20px 10px;
    padding-left: 90px;
    margin-left: -70px;
    background-color: #ffffff;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 13%);
    transition: all .3s ease-in-out;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    overflow: hidden;
}

.availability-list .shop-availability-cont .shop-tags .tag-name, .shop-overview .shop-tags .tag-name {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 2px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #FFFFFF;
    transition: .1s;
}

.availability-list .shop-availability-cont .shop-tags .tag-name:hover, .shop-overview .shop-tags .tag-name:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    opacity: 1;
    -webkit-opacity: 1;
}

.availability-list .shop-availability-cont .shop-tags a:before, .shop-overview .shop-tags a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f02c";
    display: inline-block;
    padding-right: 10px;
    vertical-align: middle;
    font-weight: 600;
    font-size: 14px;
}

.availability-list .shop-availability-cont p {
    margin-bottom: 5px;
}

.availability-list .shop-availability-cont .shop-name {
    color: #ff4900;
}

.availability-list .shop-availability-cont .shop-name a {
    text-decoration: none;
}

.availability-list .shop-availability-cont h5 {
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
}
.availability-list .resr-time.swiper-container {
    width: 100%;
    height: 100%;
    padding: 10px 0px;
    margin-top: 10px;
}
.availability-list .resr-time .swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.availability-list .resr-time .time-slider {
    padding: 0;
}
.availability-list .resr-time{
    width: 98%;
}
.availability-list .resr-time .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.availability-list .resr-time .swiper-pagination-bullet-active {
    color: #fff;
    background: #FF4900;
}
.availability-list .resr-time.swiper-container-horizontal>.swiper-pagination-bullets, .availability-list .resr-time .swiper-pagination-custom, .availability-list .resr-time .swiper-pagination-fraction {
    bottom: 0px;
    left: 0px;
    width: 100%;
}
.availability-list .resr-time .swiper-button-prev.swiper-button-disabled, .availability-list .resr-time .swiper-button-next.swiper-button-disabled {
    display: none;
}
.availability-list .resr-time .swiper-button-next, .availability-list .resr-time .swiper-button-prev {
    height: 32px;
    width: 32px;
    background-size: 32px 32px;
    margin-top: -16px;
    border-radius: 50%;
    box-shadow: rgb(99 99 99 / 70%) 0px 2px 8px 0px;
}
.availability-list .resr-time .swiper-button-next {
    right: 0;
    background-image:url("../images/arrow-right.png");
}
.availability-list .resr-time .swiper-button-prev {
    left: 0;
    background-image:url("../images/arrow-left.png");
}
/************** Shop search functionality ************/
.c-search {
    padding: 60px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px #00000033;
    box-shadow: 0 0 20px #00000033;
    border-radius: 3px;
}

.c-search .form-custom-search label {
    font-size: 16px;
    cursor: auto;
}

.c-search .form-custom-search .form-control {
    height: 50px;
    font-size: 16px;
    border: 2px solid #c7c7c7;
}
.c-search .form-custom-search .dropdown-toggle::after {
    color: #c7c7c7;
}

.c-search .form-custom-search .form-control:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid #ff490080;
}

.c-search .form-custom-search button.btn-primary {
    height: 50px;
    padding: 0px 20px;
    font-size: 20px;
}

.c-search .form-custom-search .control {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    padding-right: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
}

.c-search .form-custom-search .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.c-search .form-custom-search .control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #FFFFFF;
    border: 2px solid #c7c7c7;
    border-radius: 50%;
    /*-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);*/
    /*box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);*/
}

.c-search .form-custom-search .control--radio .control__indicator {
    border-radius: 50%;
}

.c-search .form-custom-search .control:hover input ~ .control__indicator, .c-search .form-custom-search .control input:focus ~ .control__indicator {
    background: #ccc;
}

.c-search .form-custom-search .control input:checked ~ .control__indicator {
    background: #ffffff;
}

.c-search .form-custom-search .control:hover input:not([disabled]):checked ~ .control__indicator, .c-search .form-custom-search .control input:checked:focus ~ .control__indicator {
    background: #ffffff;
}

.c-search .form-custom-search .control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.c-search .form-custom-search .control__indicator:after {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f00c";
    position: absolute;
    display: none;
    font-weight: 900;
    font-size: 12px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.c-search .form-custom-search .control input:checked ~ .control__indicator:after {
    display: block;
    color: #000000;
}

.c-search .form-custom-search .control--checkbox .control__indicator:after {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.c-search .form-custom-search .control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}

.c-search .form-custom-search .control--checkbox input:disabled:checked ~ .control__indicator {
    background-color: #f67280;
    opacity: .2;
}

.c-search .form-custom-search .search-number p span.hit-target {
    padding-right: 5px;
}

.c-search .form-custom-search .search-number span {
    font-size: 30px;
    padding-left: 5px;
    font-weight: bold;
}

.c-search .form-custom-search .search-number p + p:before {
    display: block;
    content: "/";
    margin: 0 10px;
}

.c-search .form-custom-search button.btn.dropdown-toggle.btn-light {
    padding: 10px 16px;
    height: 46px;
    background: none;
    font-weight: normal;
    font-size: 16px;
    border: none;
}

.c-search .form-custom-search .bootstrap-select .dropdown-toggle:focus, .c-search .form-custom-search .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline-offset: 0;
    border: none;
    outline: none;
}

.c-search .form-custom-search .bootstrap-select .dropdown-menu li.selected {
    background: #ff4900;
    border-bottom: 1px solid #fff;
}

.c-search .form-custom-search .bootstrap-select .dropdown-menu li.selected a.dropdown-item.selected {
    color: #fff;
}

.c-search .form-custom-search .bootstrap-select .dropdown-menu li.selected a.dropdown-item:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #342c28;
}

.c-search .form-custom-search .dropdown-item:hover, .c-search .form-custom-search .dropdown-item:focus {
    color: #1a1412;
    text-decoration: none;
    background-color: #ff490099;
}

.shop-list .shop {
    overflow: hidden;
    height: auto;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
}

.shop-list .shop .shop-link {
    display: block;
    text-decoration: none;
    color: #fff;
}

.shop-list .shop .shop-link:hover .shop-cont {
    background-color: #FFFFFF !important;
    color: #ff4900;
}

.shop-list .shop .shop-link:hover .dynamic-color {
    fill: #FFFFFF !important;
}

.shop-list .shop .shop-link .thum-img {
    display: block;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.shop-list .shop .shop-link .thum-img svg {
    vertical-align: middle;
    position: absolute;
    width: 102%;
    left: -2px;
    bottom: -2px;
    margin: 0 auto;
    overflow: hidden;
}

@media (max-width: 1919px) {
    .wave {
        background-size: contain;
    }
}

@keyframes wave {
    from {
        transform: rotate(0deg);
    }
    from {
        transform: rotate(360deg);
    }
}

.shop-list .shop .shop-link .thum-img img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    -o-transition: all .9s ease;
    -ms-transition: all .9s ease;
}

.shop-list .shop .shop-link:hover .thum-img img {
    opacity: 0.7;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

.shop-list .shop .shop-link .shop-cont {
    padding: 12px 8px;
}

.shop-list .shop .shop-link .shop-cont {
    padding: 12px 8px;
}

.shop-list .shop .shop-link .shop-cont i {
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.shop-list .shop .shop-link .shop-cont .shop-name {
    font-size: 1.125rem;
}

.shop-list .shop .shop-link .shop-cont .location {
    font-size: .875rem;
    display: none;
}

.food-menu-card {
    padding: 30px 20px;
}

.food-menu-card .media {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ffffff;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid transparent;
    -webkit-box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
}

.food-menu-card .media:hover {
    -webkit-box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 15px rgb(0 0 0 / 40%);
}

.food-menu-card .media .img-fluid {
    width: 100px;
    height: 110px;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all ease .4s;
    -ms-transition: all ease .4s;
    transition: all ease .4s;
    border-radius: 5px;
}
.food-menu-card .media:hover .img-fluid {
    -webkit-transform: scale3d(1.05, 1.05, 1);
    -ms-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
}

.food-menu-card .media .d-flex {
    position: relative;
    z-index: 0;
}

.food-menu-card .media p {
    font-size: 14px;
    min-height: 30px;
    overflow: hidden;
}
.food-menu-card .media .select-this-menu {
    display: flex;
    align-items: center;
    float: right;
    border: 1px solid #b5b5b5;
    padding: 3px 10px;
    border-radius: 4px;
    background: #f3f3f3;
}
.food-menu-card .media .select-this-menu label.form-check-label {
    padding-left: 10px;
    cursor: pointer;
}
.food-menu-card .media .select-this-menu.active {
    background: #28a745;
    border: 1px solid #28a745;
    color: #fff;
    font-weight: bold;
}
.food-menu-card .media .d-flex:before {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    top: 50%;
}

.food-menu-card .media .media-body a.ref {
    display: block;
    text-decoration: none;
}

.food-menu-card .media a.g-width-100 {
    text-decoration: none;
    overflow: hidden;
    width: 100px;
    height: 110px;
    margin-right: 15px;
    position: relative;
    border-radius: 5px;
}
.food-menu-card .media.shop-menu a.g-width-100, .food-menu-card .media.shop-menu .img-fluid {
    width: 90px;
    height: 110px;
}
.food-menu-card .media.shop-menu {
    padding: 5px;
    margin-bottom: 10px;
    position: relative;
}
.food-menu-card .media.shop-menu input#menuCheckbox {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.food-menu-card .media.shop-menu input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, red 0%, #ffa600 100%);
    position: relative;
    margin: 0;
    cursor: pointer;
}
.food-menu-card .media.shop-menu input[type=checkbox]::before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    background: #fff;
    top: 3px;
    left: 3px;
    border-radius: 50%;
}
.food-menu-card .media.shop-menu input[type=checkbox]:checked::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    background: linear-gradient(45deg, #ffa600 0%, red 100%);
    top: 6px;
    left: 6px;
    border-radius: 50%;
}
.food-menu-card .media span.caption {
    display: block;
    text-align: center;
    background: #f00;
    color: #fff;
    border-radius: 0 0 5px 5px;
    position: absolute;
    width: 100%;
    bottom: 0px;
}

.food-menu-card .media span.caption.bg-green {
    background: #28a745;
}

.food-menu-card .media span.caption.bg-blue {
    background: #1b689f;
}

.food-menu-card .media h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding-right: 1.07143rem;
    font-size: 16px;
    font-weight: 500;
}

.food-menu-card .media strong {
    display: block;
    z-index: 2;
    position: relative;
    padding: 0px 4px 0 4px;
    background: #ff4900;
    min-width: 100px;
    text-align: center;
    color: #fff;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
}

.food-menu-card .food-rating {
    padding-top: 10px;
}

.food-menu-card .add-to-cart-button {
    background: #e27144;
    border: none;
    border-radius: 4px;
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 15%);
    color: #ffffff;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    outline: none;
    padding: 6px 0px;
    position: relative;
    text-transform: uppercase;
    transition: 0.4s ease;
    width: 170px;
    text-decoration: none;
    float: right;
}

.food-menu-card .add-to-cart-button:active {
    box-shadow: 0 0 0 0.2rem rgba(252, 186, 3, 0.45);
    transform: translateY(4px);
}

.food-menu-card .add-to-cart-button:hover {
    cursor: pointer;
}

.food-menu-card .add-to-cart-button:hover, .add-to-cart-button:focus {
    box-shadow: 2px 5px 20px 0 rgb(255 73 0 / 39%);
    transform: translateY(-2px);
}

.food-menu-card .add-to-cart-button.added {
    background: #2fbf30;
    box-shadow: 2px 5px 20px rgba(11, 252, 3, 0.45);
    width: 170px;
    transition: 0.4s ease;
}

.food-menu-card .add-to-cart-button.added .add-to-cart {
    display: none;
}

.food-menu-card .add-to-cart-button.added .added-to-cart {
    display: block;
    margin-left: 50px;
}

.food-menu-card .add-to-cart-button.added .cart-icon {
    animation: drop 0.3s forwards;
    -webkit-animation: drop 0.3s forwards;
    -webkit-animation-delay: 0.18s;
    animation-delay: 0.18s;
}

.food-menu-card .add-to-cart-button.added .box-1, .food-menu-card .add-to-cart-button.added .box-2 {
    top: 18px;
}

.food-menu-card .add-to-cart-button.added .tick {
    animation: grow 0.6s forwards;
    -webkit-animation: grow 0.6s forwards;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.food-menu-card .add-to-cart, .food-menu-card .added-to-cart {
    margin-left: 67px;
    font-size: 12px;
}

.food-menu-card .added-to-cart {
    display: none;
    position: relative;
}

.food-menu-card .add-to-cart-box {
    height: 5px;
    position: absolute;
    top: 0;
    width: 5px;
}

.food-menu-card .box-1, .food-menu-card .box-2 {
    transition: 0.4s ease;
    top: -8px;
}

.food-menu-card .box-1 {
    left: 23px;
    transform: rotate(45deg);
}

.food-menu-card .box-2 {
    left: 32px;
    transform: rotate(63deg);
}

.food-menu-card .cart-icon {
    left: 15px;
    position: absolute;
    top: 8px;
}

.food-menu-card .tick {
    background: #146230;
    border-radius: 50%;
    position: absolute;
    left: 42px;
    transform: scale(0);
    top: 10px;
    z-index: 2;
}

@-webkit-keyframes grow {
    0% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes grow {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes drop {
    0% {
        -webkit-transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(1px);
    }
}

@keyframes drop {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(1px);
    }
}

/*Bootstrap Calendar*/
.datepicker {
    border-radius: 0;
    padding: 0;
}

.datepicker-days table thead, .datepicker-days table tbody, .datepicker-days table tfoot {
    /*padding: 10px;*/
    display: list-item;
}

.datepicker-days table thead, .datepicker-months table thead, .datepicker-years table thead, .datepicker-decades table thead, .datepicker-centuries table thead {
    background: #3546b3;
    color: #ffffff;
    border-radius: 0;
}
.datepicker .datepicker-switch, .datepicker .next, .datepicker .prev, .datepicker tfoot tr th, .datepicker tr th.dow {
    padding: 8px 13px;
    width: 40px;
}
.datepicker-days table thead tr:nth-child(2n+0) td, .datepicker-days table thead tr:nth-child(2n+0) th {
    border-radius: 3px;
}

.datepicker-days table thead tr:nth-child(3n+0) {
    text-transform: uppercase;
    font-weight: 300 !important;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.datepicker.dropdown-menu th, .datepicker.dropdown-menu td, .table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
    padding: 8px 11px;
}

.datepicker-months table thead td, .datepicker-months table thead th, .datepicker-years table thead td, .datepicker-years table thead th, .datepicker-decades table thead td, .datepicker-decades table thead th, .datepicker-centuries table thead td, .datepicker-centuries table thead th {
    border-radius: 0;
}

.datepicker td, .datepicker th {
    border-radius: 50%;
    padding: 0 12px;
}

.datepicker-days table thead, .datepicker-months table thead, .datepicker-years table thead, .datepicker-decades table thead, .datepicker-centuries table thead {
    background-image: linear-gradient(to right, #FF512F 0%, #ff4900 51%, #FF512F 100%);
    box-shadow: 0 4px 15px 0 rgb(255 73 0 / 35%);
    color: #ffffff;
    border-radius: 0;
}

.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active[disabled], .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active.disabled:hover[disabled] {
    background-color: #ff4900;
}

.datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
    background-image: none;
}

.datepicker .prev, .datepicker .next {
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    width: 37px;
    height: 37px;
}

.datepicker .prev:hover, .datepicker .next:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.99);
    font-size: 18px;
}

.datepicker .datepicker-switch {
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
}

.datepicker .datepicker-switch:hover, .datepicker thead tr:first-child th:hover, .datepicker tfoot tr th:hover {
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
}

.datepicker table tr td span {
    border-radius: 2px;
    margin: 3%;
    width: 27%;
}

.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
    background-color: #3546b3;
    background-image: none;
}

.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.datepicker-dropdown.datepicker-orient-top:before {
    border-top: 7px solid rgba(0, 0, 0, .1);
    top: -15px;
}
.datepicker table tbody tr td.disabled.day {
    color: #777;
}
.datepicker table tbody tr td.disabled-date.day {
    color: #ffb8b8;
}
.datepicker table tr td.new, .datepicker table tbody tr td.day {
    color: #2cb932;
    font-weight: 500;
    border-right: 1px solid #ededed;
    border-top: 1px solid #ededed;
    font-size: 14px;
}
.datepicker table tbody tr td.day:last-child{
    border-right:none;
}
.datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active:active, .datepicker table tr td.active.active.focus, .datepicker table tr td.active.active:focus, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.highlighted.active.focus, .datepicker table tr td.active.highlighted.active:focus, .datepicker table tr td.active.highlighted.active:hover, .datepicker table tr td.active.highlighted:active.focus, .datepicker table tr td.active.highlighted:active:focus, .datepicker table tr td.active.highlighted:active:hover, .datepicker table tr td.active:active.focus, .datepicker table tr td.active:active:focus, .datepicker table tr td.active:active:hover {
    border-color: #fff;
}
/**************** Clock Picker ********************/
.clockpicker-popover .popover-header {
    background-image: linear-gradient(to right, #FF512F 0%, #ff4900 51%, #FF512F 100%);
    box-shadow: 0 4px 15px 0 rgb(255 73 0 / 35%);
}

.clockpicker-canvas-bearing, .clockpicker-canvas line {
    stroke: #FF512F;
    fill: #FF512F;
}

.clockpicker-canvas-bg {
    fill: rgb(255 81 47 / 25%);
}

.clockpicker-canvas-fg {
    fill: rgb(255 81 47 / 50%);
}

.clockpicker-tick.active, .clockpicker-tick:not(.disabled):hover {
    background-color: rgb(255 81 47 / 25%);
}
.shop-review .review-stars-date {
    display: flex;
}
.shop-review .review-stars {
    padding-right: 10px;
}
.shop-review .review-wrap {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.shop-review .review-stars ul li.star{
    color: #f7b80c;
}
.shop-review .review-wrap:last-of-type {
    margin-bottom: 0;
}
.shop-review .author-img {
    float: left;
    margin-right: 10px;
    max-width: 40px;
    transition: filter ease-in-out .3s;
}
.shop-review .author-img:hover {
    filter: opacity(0.5);
}
.shop-review .author-name {
    font-weight: 700;
}
.shop-review .rating i {
    color: gold;
    padding-right: 2px;
}
.shop-review .review {
    clear: both;
}
/**************** Shop page ********************/
.shop-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.shop-image .img-responsive {
    max-width: 100%;
    height: 320px;
    object-fit: cover;
    width: 100%;
}

.shop-image .shop-name h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    margin: 20px;
    padding: 40px 20px;
    background: rgb(255 255 255 / 78%);
    width: 40%;
    border-radius: 2px;
}

.shop-nav-menu {
    position: relative;
    z-index: 1;
}

.shop-nav-container, .shop-contents {
    background: #fff;
    margin-top: -50px;
    position: relative;
    padding: 15px 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.shop-nav-container {
    -webkit-box-shadow: 0px -40px 25px rgb(0 0 0 / 20%);
    -ms-box-shadow: 0px -40px 25px rgb(0 0 0 / 20%);
    box-shadow: 0px -40px 25px rgb(0 0 0 / 20%);
    border-radius: 5px 5px 0 0;
    z-index: 2;
}

.shop-contents .shopMap iframe {
    width: 100%;
}

.shop-nav-container.affix {
    max-width: inherit;
    top: 90px;
    position: fixed;
    overflow: hidden;
    padding: 20px;
    margin: -15px;
    z-index: 2;
    width: 100%;
    background: #fff;
    border-radius: 5px;
}

.shop-nav-container ul.tab-menu {
    outline: none;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #d2d2d2;
}

.shop-nav-container ul.tab-menu li.menu-item {
    display: inline-block;
    font-size: 18px;
    margin-right: 30px;
    padding-bottom: 20px;
}

.shop-nav-container ul.tab-menu li.menu-item:last-child {
    margin-right: 0;
}

.shop-nav-container ul.tab-menu li.menu-item a {
    text-decoration: none;
    padding-bottom: 20px;
    border-bottom: 2px solid rgb(255 81 47 / 0%);
}

.shop-nav-container ul.tab-menu li.menu-item a:hover, .shop-nav-container ul.tab-menu li.menu-item.active a {
    border-bottom: 2px solid #ff4900;
}

.shop-contents {
    padding: 20px;
    margin-top: 0px;
    border-radius: 0 0 5px 5px;
    margin-bottom: 20px;
}

ul.shop-dtl {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.shop-dtl .shop-dtl-item {
    margin: 0 5px 10px 0px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
}

ul.shop-dtl .shop-dtl-item:last-child {
    margin-right: 0px;
}

ul.shop-dtl .shop-dtl-item i {
    height: 1.2rem;
    line-height: 1.2rem;
    width: 1.2rem;
    color: #ffffff;
}

ul.shop-dtl .shop-dtl-item a {
    text-decoration: none;
    color: #fff;
}

.shop-reservation-form .form-group input.form-control, .shop-reservation-form .form-group select.form-select {
    font-size: 16px;
    height: 40px;
    appearance: none;
}
.shop-reservation-form #resrvCalendar {
    font-size: 14px;
    font-weight: 500;
    height: 55px;
    appearance: none;
}
.shop-reservation-form .datepicker {
    padding-bottom: 20px;
    width: 100%;
}
.shop-reservation-form .available-time {
    padding-bottom: 30px;
}
.shop-reservation-form .datepicker-days table thead, .shop-reservation-form .datepicker-days table tbody, .shop-reservation-form .datepicker-days table tfoot {
    padding: 5px 2px;
    list-style: none;
}
.shop-reservation-form .datepicker-days table tbody {
    border-left: 1px solid #dedede;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}
.shop-reservation-form .datepicker.dropdown-menu th, .shop-reservation-form .datepicker.dropdown-menu td, .shop-reservation-form .table-condensed > tbody > tr > td, .shop-reservation-form .table-condensed > tbody > tr > th, .shop-reservation-form .table-condensed > tfoot > tr > td, .shop-reservation-form .table-condensed > tfoot > tr > th, .shop-reservation-form .table-condensed > thead > tr > td {
    padding: 8px 12px;
}
.shop-reservation-form .datepicker .datepicker-switch, .shop-reservation-form .table-condensed > thead > tr > th{
    font-size: 20px;
    padding: 0px 12px;
}
.shop-reservation-form .table-condensed > thead > tr > th.dow {
    font-size: 16px;
    font-weight: normal;
}
.shop-reservation-form .datepicker table {
    margin: 0 auto;
    padding: 0;
}

.store-menu .food-menu-card {
    padding: 0;
}
.shop-reservation-form .form-control:disabled, .form-control[readonly] {
    background-color: #ffffff;
    opacity: 1;
}
.shop-reservation-form .nav-tabs {
    background-color: white;
    overflow: hidden;
    display: flex;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    align-items: stretch;
    border-top: 1px solid rgba(0, 0, 0, 0.11);
    border-left: 1px solid rgba(0, 0, 0, 0.11);
    border-image: initial;
    border-radius: 4px;
    border-bottom: none;
    border-right: none;
    max-width: 100%;
    width: 100%;
}
.shop-reservation-form .nav-tabs li {
    box-sizing: border-box;
    min-height: 40px;
    width: 100%;
    -webkit-box-align: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
    border-right: 1px solid rgba(0, 0, 0, 0.11);
    margin: 0px;
    flex: 1 1 0%;
    text-align: center;
    padding: 0;
    box-shadow: none;
    position: relative;
    height: 40px;
    background-color: white;
    color: rgba(0, 0, 0, 0.54);
    font-weight: 700;
    justify-content: center;
}
.shop-reservation-form .nav-tabs li a {
    display: block;
    padding: 8px 15px;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}
.shop-reservation-form .nav-tabs li a.active {
    background: #28A745;
    color: #fff;
}

.shop-reservation-form .form-group i {
    position: absolute;
    right: 12%;
    bottom: 50%;
    display: block;
    color: #ff4900;
}

.shop-reservation-form .form-group {
    position: initial;
    z-index: 0;
}
.shop-reservation-form .form-group.submit-bttn {
    position: relative;
    z-index: 1;
}
.make-reservaion {
    padding: 20px 20px;
    -webkit-box-shadow: 0 3px 40px rgb(0 0 0 / 25%);
    -ms-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgb(0 0 0 / 25%);
    border-radius: 5px;
    animation: glowing 3000ms infinite;
    position: sticky;
    top: 20rem;
    z-index: 2;
}
.shop-reservation-form .shop-resrv-time {
    visibility: hidden;
    min-height: 45px;
}
.shop-reservation-form .shop-resrv-time .available-time-slot {
    cursor: pointer;
    margin: 5px 2px;
}
.shop-reservation-form .shop-resrv-time #reservationTime{
    display: none;
}
.shop-reservation-form .shop-resrv-time li.time-slot {
    margin-bottom: 10px;
}

.check-btn {
    position: relative;
    z-index: 1;
}

.shop-reservation-form .dflt-btn.color-orange {
    padding: 10px 25px;
    width: auto;
}

.shop-reservation-form .dflt-btn:hover::before, .checkavailability-form .dflt-btn:hover::before, .shop-reservation-form .dflt-btn:focus::before, .checkavailability-form .dflt-btn:focus::before {
    opacity: 1;
}

.shop-reservation-form .dflt-btn::after, .checkavailability-form .dflt-btn::after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid #ff4900;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

.shop-reservation-form .dflt-btn:hover::after, .checkavailability-form .dflt-btn:hover::after, .shop-reservation-form .dflt-btn:focus::after, .checkavailability-form .dflt-btn:focus::after {
    animation: none;
    display: none;
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 -10px #FF512F;
    }
    40% {
        box-shadow: 0 0 20px #FF512F;
    }
    60% {
        box-shadow: 0 0 20px #FF512F;
    }
    100% {
        box-shadow: 0 0 -10px #FF512F;
    }
}
/* Preloader */

#preloader {
    z-index: 2;
}

#status {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 40%;
    bottom: 30%;
    background-image: url(https://raw.githubusercontent.com/niklausgerber/PreLoadMe/master/img/status.gif);
    background-repeat: no-repeat;
    background-position: center;
}
.scroll-to-top {
    position: fixed;
    bottom: 76px;
    right: 10%;
    padding: 5px;
    z-index: 3;
    will-change: filter,opacity;
    transition: 1.2s ease;
    border: 1px solid #FF4900;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: none;
}
.scroll-to-top a {
    text-decoration: none;
}
.scroll-to-top a i {
    font-size: 22px;
}
/***************** Menu Popup *********************/
.menu-popup h4.card-title {
    position: relative;
    display: inline-block;
    color: #FF4900;
    padding-right: 1.07143rem;
    z-index: 2;
    font-size: 22px;
}

.menu-popup span strong {
    display: block;
    z-index: 2;
    position: relative;
    font-size: 16px;
    padding: 0px 8px;
    background: #ff4900;
    color: #fff;
    border-radius: 2px;
    min-width: 140px;
}

.menu-popup .menu-dtls-popup {
    position: relative;
}

.menu-popup .menu-dtls-popup .menu-pictures {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-content: space-around;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-popup .menu-dtls-popup .menu-pictures img {
    height: 140px;
    width: 150px;
    object-fit: cover;
    overflow: hidden;
    margin: 2px;
    object-position: center;
}
.menu-popup .modal-body p.text-break{
    white-space:pre-wrap;
}
/**************** Customer Login ********************/
.login-popup .social-buttons button.btn {
    margin-right: 10px;
}

.login-popup .social-buttons button.btn:last-child {
    margin-right: 0px;
}

.dropdown-item strong {
    color: #f00;
}

/**************** Customer Page ********************/
.user-page {
    padding-top: 50px;
}

.user-page .current-reservation {
    padding-bottom: 20px;
}

.user-page .reservation-card {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    background: #fff;
    column-gap: 20px;
    webkit-box-shadow: 00px 0px 14px 2px rgb(0 0 0 / 30%);
    box-shadow: 0px 0px 14px 2px rgb(0 0 0 / 30%);
    border-radius: 5px;
    margin-bottom: 40px;
}
.user-page .reservation-card.completed {
    background: rgb(116 169 45 / 8%);
}
.user-page .reservation-card.cancelled {
    background: rgb(220 73 94 / 8%);
}
.user-page .reservation-card.active-res {
    background: rgb(49 156 213 / 8%);
}
.user-page .reservation-card .shop-thumb {
    height: 240px;
    width: 180px;
    position: relative;
}
.user-page .reservation-card .shop-thumb.active-res:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background: url(../images/reserved.png) no-repeat;
    height: 100px;
    width: 100px;
    background-size: 100px;
}
.user-page .reservation-card .shop-thumb.cancelled:after {
     content: '';
     display: block;
     position: absolute;
     bottom: 50%;
     left: 50%;
     transform: translate(-50%, 50%);
     background: url(../images/cancelled.png) no-repeat;
     height: 100px;
     width: 100px;
     background-size: 100px;
 }
.user-page .reservation-card .shop-thumb.cancelled img{
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgb(0 0 0 / 55%)), to(rgb(0 0 0 / 47%)));
}
.user-page .reservation-card .shop-thumb.completed:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background: url(../images/completed.png) no-repeat;
    height: 100px;
    width: 100px;
    background-size: 100px;
}
.user-page .reservation-card .shop-thumb img {
    height: 240px;
    width: 180px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 5px 0 0 5px;
}

.user-page .reservation-card .shop-res-dtl {
    flex: auto;
    width: 75%;
}
.user-page .reservation-card .shop-res-dtl .table {
    border: none;
    margin-bottom: 0;
}
.user-page .reservation-card .shop-res-dtl .table td {
    padding: 6px;
}
.user-page .reservation-card .shop-res-dtl .table td i {
    font-weight: 600;
    color: #379cd5;
    width: 20px;
    text-align: center;
    margin-right: 5px;
}
.user-page .reservation-card .shop-res-dtl .table td a.shop-link, .user-page .reservation-card .shop-res-dtl .table td a.shop-add, .user-page .reservation-card .shop-res-dtl .table td a.shop-tel {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.user-page .reservation-card .res-action {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 20px;
    padding-right: 30px;
}

.user-page .reservation-card .res-action a {
    font-weight: 500;
    font-size: 14px;
}
.user-page .reservation-card .res-action .res-price {
    background: #1794ff;
    border-color: #1794ff;
    color: #fff;
}
.user-page .reservation-card .res-action .res-price:hover {
    background: #1885e2;
    border-color: #1885e2;
}
.user-page .reservation-card .res-action a.btn-danger:not(:disabled):not(.disabled):active:focus, .user-page .reservation-card .res-action a.btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: none;
}

/********************** Reservation detail **********************/

.user-page .reservation-status {
    background: #fff;
    padding: 20px;
}
.user-page .reservation-status .res-num, .user-page .reservation-status .res-sts {
    float: left;
    flex-direction: row;
    margin-right: 15px;
}
.user-page .reservation-status .reservation-status-left strong {
    color: #fe4a04;
}
.user-page .reservation-Detail-Data-Box {
    background: #fff;
    padding: 20px;
    webkit-box-shadow: 00px 0px 14px 2px rgb(0 0 0 / 30%);
    box-shadow: 0px 0px 14px 2px rgb(0 0 0 / 30%);
    border-radius: 5px;
    margin-bottom: 20px;
}
.user-page .reservation-Detail-Data {
    padding: 20px 0;
    margin: 0;
    border-bottom: 1px solid #eee;
}
.user-page .reservation-Detail-Data-Dt {
    display: inline-block;
    font-weight: 700;
    width: 20%;
    box-sizing: border-box;
    margin: 0;
    vertical-align: top;
    font-size: 15px;
}
.user-page .reservation-Detail-Data-Dd {
    display: inline-block;
    width: 79%;
    box-sizing: border-box;
    margin: 0;
    word-break: break-all;
    word-wrap: break-word;
}
.reservation-Detail-Data-Dt-Taxtext {
    font-weight: 400;
    font-size: 12px;
    display: block;
}
.reservation-Detail-Data-Price {
    font-size: 14px;
    font-weight: 700;
    color: #f66;
    display: inline-block;
    vertical-align: middle;
}
.user-page .reservation-Detail-Data-Price-Detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dotted #ccc;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.user-page .reservation-Detail-Data-Child-Dt {
    vertical-align: top;
    width: 30%;
    font-weight: 700;
}
.user-page .reservation-Detail-Data-Child-Dd-Multiple {
    display: flex;
    margin-left: 45px;
    width: 46%;
    justify-content: space-between;
}
.user-page .reservation-Detail-Data-Child-Summary {
    justify-content: flex-end;
    width: 50%;
    display: flex;
}
.user-page .reservation-Detail-Data-Price-Detail-Price {
    display: inline-block;
    padding-left: 20px;
}

.right-sidebar {
    position: sticky;
    top: 10rem;
    padding-bottom: 20px;
}
.user-page .points-container{
    padding: 10px 20px;
    background: #fff;
    box-shadow: 0px 0px 14px 2px rgb(0 0 0 / 19%);
    border-radius: 5px;
    margin-bottom: 1rem;
}
.user-page .mypoints {
    width: 180px;
    height: 180px;
    border: double 1em transparent;
    border-radius: 50%;
    background-image: linear-gradient(white, white), linear-gradient(316deg, #fe4901 5%, #74a92d 40%, #319cd5 80%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    line-height: 120px;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
.user-page .mypoints:after {
    content: '';
    position: absolute;
    background: url('https://cdn.pixabay.com/photo/2013/07/13/13/26/cash-161037_1280.png');
    width: 152px;
    height: 152px;
    left: 0px;
    top: 0px;
    border-radius: 50%;
    z-index: 0;
    background-position: center;
    background-size: cover;
    opacity: .3;
}
.user-page .mypoints strong{
    font-size: 34px;
    text-shadow: 1px 1px 2px #4a4a4a, 1px 1px 1px #808080;
    color: #4a4a4a;
    z-index: 1;
    position: relative;
}
.user-page .mypoints span {
    display: block;
    text-align: center;
    position: absolute;
    top: 40px;
    color: #ff1616;
    text-shadow: 1px 1px 2px #e06e6e, 1px 1px 1px #463a3a;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    z-index: 1;

}

.user-page .points-container .mypoint-optional .char-art {
    height: 130px;
    width: 90px;
    overflow: hidden;
    -webkit-animation: bounce 3s infinite ease-in-out;
    -o-animation: bounce 3s infinite ease-in-out;
    -ms-animation: bounce 3s infinite ease-in-out;
    -moz-animation: bounce 3s infinite ease-in-out;
    animation: bounce 3s infinite ease-in-out;
}
.user-page .points-container .mypoint-optional .char-art img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }
.user-page .points-container .mypoint-optional .barcode {
    height: 130px;
    width: 130px;
    overflow: hidden;
    position: relative;
}
.user-page .points-container .mypoint-optional .barcode .mybarcode {
    position: absolute;
    bottom: 42px;
    right: 38px;
    color: #ff0707;
    font-weight: 600;
}
.user-page .points-container .mypoint-optional .barcode img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}
.sidebar-widget, .sidebar-widget img {
    max-width: 255px;
}
.user-page  #sp_res_status {
    display: none;
}
.user-page ul.nav.nav-pills {
    border: 1px solid #afafaf;
    padding: 20px 15px;
    border-radius: 5px;
    justify-content: space-between;
    flex-direction: row;
    background: #fff6db;
}
.user-page ul.nav.nav-pills li {
    border-right: 1px solid #000;
    padding-right: 7px;
}
.user-page ul.nav.nav-pills li:last-child {
    border: none;
}
.user-page ul.nav.nav-pills li a {
    color: #FFFFFF;
    margin-right: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px 15px;
    line-height: 1.5;
    text-decoration: none;
    transition: .1s;
    background: rgba(255, 255, 255, 0.08);
}
.user-page #sp_res_status .bootstrap-select .btn .badge {
    top: 0px;
}
.user-page #sp_res_status .bootstrap-select .dropdown-menu {
    padding: 0;
}
.user-page #sp_res_status .bootstrap-select .dropdown-menu li {
    position: relative;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 3px;
}
.user-page #sp_res_status .bootstrap-select span.badge {
    font-size: 12px;
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 4px;
}
.user-page ul.nav.nav-pills li.temp-res a{
    color: #f44336;
    border-color: #f44336;
}
.user-page ul.nav.nav-pills li.temp-res a:hover, .user-page ul.nav.nav-pills li.temp-res a.active, #sp_res_status .bootstrap-select span.badge-temp-res {
    background: #f44336;
    color: #FFFFFF;
}
.user-page ul.nav.nav-pills li.waiting a{
    color: #507591;
    border-color: #507591;
}
.user-page ul.nav.nav-pills li.waiting a:hover, .user-page ul.nav.nav-pills li.waiting a.active, #sp_res_status .bootstrap-select span.badge-waiting {
    background: #507591;
    color: #FFFFFF;
}
.user-page ul.nav.nav-pills li.completed a{
    color: #179af8;
    border-color: #179af8;
}
.user-page ul.nav.nav-pills li.completed a:hover, .user-page ul.nav.nav-pills li.completed a.active, #sp_res_status .bootstrap-select span.badge-completed {
    background: #179af8;
    color: #FFFFFF;
}
.user-page ul.nav.nav-pills li.cancelled a{
    color: #888888;
    border-color: #888888;
}
.user-page ul.nav.nav-pills li.cancelled a:hover, .user-page ul.nav.nav-pills li.cancelled a.active, #sp_res_status .bootstrap-select span.badge-cancelled {
    background: #888888;
    color: #FFFFFF;
}
.user-page ul.nav.nav-pills li.all-res a{
    color: #599150;
    border-color: #599150;
}
.user-page ul.nav.nav-pills li.all-res a:hover, .user-page ul.nav.nav-pills li.all-res a.active, #sp_res_status .bootstrap-select span.badge-all-res {
    background: #599150;
    color: #FFFFFF;
}

.user-page .tab-content .reservation-card {
    width: 100%;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 11%);
    border-radius: 5px;
    margin: 10px 0px 30px;
}

.user-page .tab-pane::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.user-page .tab-pane::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #ff4900;
}
.user-page .pagination li, .pagination li {
    margin: 5px;
}
.user-page .pagination li a, .pagination li a {
    border: none;
    border-radius: 50%;
}
.pagination li.active span {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    background: #ff4900;
    color: #fff;
    border-radius: 50%;
}
.reservation-popup .reservation-dtls-popup {

}
.reservation-popup .reservation-dtls-popup .form-group, .reservation-popup .reservation-dtls-popup .form-group .form-control{
    position: relative;
}
.reservation-popup .reservation-dtls-popup .form-group i{
    position: absolute;
    bottom: 10px;
    right: 8px;
    color: #ff4900;
}
.reservation-popup .reservation-dtls-popup .food-menu-card .media h3, .reservation-popup .reservation-dtls-popup .food-menu-card .add-new-menu h3 {
    font-size: 18px;
}
.reservation-popup .reservation-dtls-popup .food-menu-card .media {
    padding: 5px 10px;
}
.reservation-popup .reservation-dtls-popup .food-menu-card #removeMenu {
    font-size: 14px;
    padding: 2px 10px;
}
.reservation-popup .reservation-dtls-popup .food-menu-card .reserved-menu-item strong {
    background: #64544d;
}

.reservation-popup .shop-tel {
    display: inline-block;
    background: #a0a0a0;
    color: #af2a2a;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}
.reservation-popup .shop-tel:hover {
    background: #4e8dd0;
    color: #fff;
}
.reservation-popup .shop-tel a {
    text-decoration: none;
    color: #ffffff;
}
.reservation-popup .shop-tel a:hover {
    color: #38e687;
}
.reservation-popup .update_time .dropdown-toggle::after, .reservation-popup .guest_num .dropdown-toggle::after {
    display: none;
}
.reservation-popup .update_time button.btn.dropdown-toggle.btn-light {
    background-color: #ffffff;
}
.reservation-popup .bootstrap-select .dropdown-menu {
    width: 100%;
}


/********************** Reservation confirm Css **********************/
.reservation-confirm .reservation-details {
    background: #fff;
    padding: 20px;
}

.reservation-confirm .reservation-details .shop-reser-info {
    -webkit-box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 15px rgb(0 0 0 / 40%);
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.reservation-confirm .reservation-details .shop-photo {
    height: 150px;
    width: 150px;
    overflow: hidden;
    flex-basis: 15%;
}

.reservation-confirm .reservation-details .shop-photo img {
    height: 150px;
    width: 150px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 5px 0px 0 5px;
}
.reservation-confirm .reservation-details .menu-reservation-list .table-responsive{
    border-radius: 4px;
    background: #fff;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
.reservation-confirm .reservation-details .menu-reservation-list .table thead th {
    width: 80%;
    border-top: none;
}
.reservation-confirm .reservation-details .menu-reservation-list .table thead th:first-child {
    width: 75%;
}
.reservation-confirm .reservation-details .reserv-dtl {
    padding: 5px;
    flex-basis: 85%;
}

.reservation-confirm .reservation-details .reserv-dtl dl {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    font-size: 16px;
}

.reservation-confirm .reservation-details .reserv-dtl dl dt {
    flex-basis: 15%;
    padding: 5px 10px;
    background-color: #fff;
    border-bottom: 1px dotted #ccc;
    margin: 0;
}

.reservation-confirm .reservation-details .reserv-dtl dl dd a {
    text-decoration: none;
    font-weight: bold;
}

.reservation-confirm .reservation-details .reserv-dtl dl dd span {
    padding-right: 15px;
    font-weight: 500;
}

.reservation-confirm .reservation-details .reserv-dtl dl dd i {
    color: #ff4900;
}

.reservation-confirm .reservation-details .reserv-dtl dl dd {
    flex-basis: 85%;
    padding: 5px 10px;
    background-color: #fff;
    border-bottom: 1px dotted #ccc;
    margin: 0;
}

.reservation-confirm .reservation-details .food-menu-card {
    padding: 10px 0px;
}

.reservation-confirm .reservation-details .yoyaku-form {
    padding: 20px;
    -webkit-box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
}
.reservation-confirm .shop-reservation-canceling pre.break-word {
    overflow: auto;
    width: 100%;
    word-break: break-all;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}
.reservation_menu_option a.show_hide_menus {
    color: #fff0f5;
}
.reservation_menu_option a.show_hide_menus:hover {
    color: #d9d9d9;
    text-decoration: none;
}
.reservation_menu_option .du_arrow {
    margin-top: -5px;
}
.reservation_menu_option .du_arrow i {
    font-size: 24px;
    color: #fff0f5;
}
.reservation_menu_option #shop_menus {
    max-height: 300px;
    padding: 20px;
    overflow: scroll;
}





/**************** Update User Information ********************/
.userinfo {
    min-height: 600px;
}
.userinfo .update-user-info .form-group .form-control {
    font-size: 14px;
    font-weight: 500;
    height: 55px;
    appearance: none;
}
.login-reg-com {
    padding: 10px 20px;
    font-size: 18px;
}
#invoke_register .form-control.gender {
    min-height: 38px;
}
/**************** Paypal / Points buttons ********************/
.billing-tbl {

}
.billing-tbl .applyPoints {
    display: inline-block;
    position: relative;
    padding-right: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

/* Hide the browser's default checkbox */
.billing-tbl .applyPoints input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #000;
}

/* On mouse-over, add a grey background color */
.billing-tbl .applyPoints:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.billing-tbl .applyPoints input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.billing-tbl .applyPoints input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.billing-tbl .applyPoints .checkmark:after {
    left: 9px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#paypal-button-container p {
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    color: #1574ec;
}
#paypal-button-container p span {
    display: block;
    font-size: 14px;
    color: #352a2a;
}
#paypal-button-container p span strong {
    padding: 2px 7px;
    background: #fe4901;
    color: #fff;
    border-radius: 2px;
    margin: 0 8px;
}
#paypal-button-container p span b {
    color: #e81313;
    margin-bottom: 10px;
    display: block;
}
#paypal-button-container .paypal-btns {
    width: 400px;
    margin: 0 auto;
}
/**************** Footer ********************/
.footer {
    width: 100%;
    color: #FFFFFF;
    background-color: #404040;
}
.footer-title {
    text-transform: none;
    font-size: 16px;
    font-weight: normal;
}
.footer .social-bottom {
    float: right;
}
.social-bottom .social-icons li {
    padding-right: 8px;
}
.social-bottom .social-icons li:last-child {
    padding-right: 0px;
}
.social-bottom .social-icons li a{
    text-decoration: none;
}
.social-bottom .social-icons li a i{
    font-size: 30px;
}
.fa-facebook, .fa-facebook-square {
    color: #3b5998
}
.fa-twitter, .fa-twitter-square {
    color: #00aced
}
.fa-instagram {
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
}
/********************** Error page **********************/
.page-section {
    background: linear-gradient(180deg, #fe4901, #ffd743);
    background: -webkit-linear-gradient(180deg, #fe4901, #ffd743);
}

.page-section .particles-bg {
    height: 100vh;
    background-image: url("../images/error-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.15);
}
.page-section .particles-bg.error-500 {
    background-image: url("../images/error-500-bg.jpg");
    background-color: rgba(0, 0, 0, 0.55);
}
.page-section .particles-bg .particles-js-canvas-el {
    position: absolute;
}

.page-section .content-detail {
    margin: auto;
    max-width: 450px;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-section .content-detail .sub-title, .page-section .content-detail .detail-text {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: 0px 0px 6px rgb(0 0 0 / 70%);
}

.page-section .content-detail .sub-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 30px;
}

.page-section .content-detail .global-title {
    display: block;
    color: #fff;
    font-size: 150px;
    font-weight: 800;
    opacity: .8;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-section .content-detail .global-title span {
    animation: animateblur 1s linear forwards;
}

.page-section .content-detail .global-title span:nth-child(1) {
    animation-delay: 1s;
}

.page-section .content-detail .global-title span:nth-child(2) {
    animation-delay: 2s;
}

.page-section .content-detail .global-title span:nth-child(3) {
    animation-delay: 3s;
}

@keyframes animateblur {
    0% {
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

.page-section .content-detail .back-btn {
    margin-top: 15px;
    z-index: 5;
}

/********************** jQuery Form Validation Css **********************/
.parsley-errors-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.parsley-errors-list li.parsley-required, .parsley-errors-list li.parsley-equalto, .parsley-errors-list li {
    color: #f44336;
    font-size: 11px;
}
input.parsley-error {
    border-color: #f44336;
    color: #f44336;
}
.parsley-success {
    border-color: #8bc34a;
}
.c_tel .parsley-errors-list li {
    font-size: 9px;
}

/********************** about, contact, act, terms page Css **********************/
table.table.act tr td:first-child {
    width: 150px;
    background: #f0f8ff;
}
#notification {
    top: 30%;
}
/********************** Responsive Css **********************/
@media only screen and (max-width: 1200px) {
    .user-page .reservation-card .shop-thumb, .user-page .reservation-card .shop-thumb img {
        height: 250px;
        width: 140px;
        overflow: hidden;
    }
}
@media only screen and (max-width: 812px) {
    .user-page .reservation-card .shop-thumb, .user-page .reservation-card .shop-thumb img {
        width: 100%;
        border-radius: 5px 5px 0px 0px;
    }
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    header #navbarMainHeader a.dropdown-toggle {
        text-align: right;
    }
    .user-page  #sp_res_status {
        display: block;
        margin-bottom: 20px;
    }
    .user-page  #sp_res_status .bootstrap-select {
        width: 100%;
    }
    .user-page .points-container, .user-nav-res-status {
        display: none;
    }
    .shop-map .map-sidebar {
        width: 300px;
    }
    .shop-map .map-sidebar input#storeNameSearch {
        width: 85%;
    }
    .menu-single .menu-thumb .single-menu-title {
        width: 80%;
    }

    .menu-single .menu-thumb, .menu-single .menu-thumb img {
        height: 350px;
    }

    .availability-list {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .availability-list .shop-thumb {
        border-radius: 5px 5px 0 0;
    }

    .shop-reservation-form .available-time {
        padding-bottom: 0;
    }
    .availability-list .shop-thumb, .availability-list .shop-thumb img.img-fluid {
        width: 100%;
    }

    .availability-list .shop-availability-cont {
        padding: 20px;
        margin-left: 0px;
        border-radius: 0 0 5px 5px;
    }

    .shop-nav-container, .shop-contents {
        padding: 15px 10px 0;
        margin-left: 0px;
        margin-right: 0px;
        z-index: 5;
    }
    .shop-contents {
        padding: 10px;
    }

    .c-search {
        padding: 15px;
        width: 100%;
    }
    .shop-reservation-form .dflt-btn.color-orange {
        z-index: 2;
    }
    .menu-popup h4.card-title {
        font-size: 16px;
    }
    .menu-popup .menu-dtls-popup .menu-pictures img {
        width: 48%;
    }

    .menu-popup .menu-dtls-popup .menu-pictures img:last-child {
        width: 97%;
    }
    #shopMenu p.alert-danger, .reservation_menu_option p.alert-danger{
        font-size: 12px;
    }
    .reservation_menu_option #shop_menus {
        padding: 5px;
    }
    .food-menu-card {
        padding: 30px 0px;
    }
    .food-menu-card .media .media-body a.ref {
        margin-bottom: 20px;
    }
    .m-menu .food-menu-card .media.shop-menu strong {
        font-size: 11px;
    }
    .food-menu-card .media.shop-menu strong span {
        font-size: 10px;
    }
    .m-menu .food-menu-card .media .select-this-menu {
        font-size: 12px;
    }
    .m-menu .food-menu-card .media p, .food-menu-card .media p {
        font-size: 12px;
        line-height: 1.6;
    }
    .m-menu .food-menu-card .media.shop-menu h3, .food-menu-card .media h3 {
        font-size: .9rem;
    }
    .m-menu .food-menu-card .media.shop-menu input[type=checkbox] {
        width: 16px;
        height: 16px;
    }
    .m-menu .food-menu-card .media.shop-menu input[type=checkbox]::before {
        width: 10px;
        height: 10px;
        top: 3px;
        left: 3px;
    }
    .m-menu .food-menu-card .media.shop-menu input[type=checkbox]:checked::after{
        width: 6px;
        height: 6px;
        top: 5px;
        left: 5px;
    }
    .menu-reservation-list h3 {
        font-size: 16px;
    }
    .reservation-confirm .reservation-details .menu-reservation-list .table thead th:first-child {
        width: 60%;
    }
    .billing-tbl tr.point_apply_tr td.font-weight-bold {
        font-size: 12px;
    }
    .billing-tbl .applyPoints .checkmark {
        top: 5px;
        height: 15px;
        width: 15px;
    }
    .billing-tbl .applyPoints .checkmark:after {
        left: 4px;
        top: 2px;
        width: 5px;
        height: 8px;
        border-width: 0 2px 2px 0;
    }
    .billing-tbl tr td:last-child {
        font-size: 12px;
    }
    .reservation-confirm .reservation-details .shop-photo img, .reservation-confirm .reservation-details .shop-photo {
        width: 100%;
    }

    .reservation-confirm .reservation-details .shop-photo img {
        border-radius: 5px 5px 0 0px;
    }
    .reservation-confirm .reservation-details .shop-reser-info, .reservation-confirm .reservation-details .reserv-dtl dl {
        flex-flow: wrap;
        font-size: 14px;
    }

    .reservation-confirm .reservation-details .reserv-dtl dl dt, .reservation-confirm .reservation-details .reserv-dtl, .reservation-confirm .reservation-details .shop-photo {
        flex-basis: 100%;
    }
    .reservation-confirm .reservation-details .reserv-dtl dl dd:last-child {
        display: flex;
        flex-direction: column;
    }
    .m-row {
        flex-flow: column-reverse;
    }
    .user-page .my-point {
        padding: 10px 10px;
        margin-bottom: 30px;
    }
    .user-page ul.nav.nav-pills li {
        margin-bottom: 30px;
    }
    .user-page .current-reservation .reservation-card .res-action a {
        margin: 0 10px;
    }

    .user-page .current-reservation .reservation-card .res-action {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: center;
        width: 100%;
        flex-direction: row;
        padding: 20px;
        text-align: center;
    }
    .user-page .current-reservation .reservation-card .shop-thumb {
        width: 100%;
        height: 140px;
    }
    .user-page .current-reservation .reservation-card .shop-thumb img {
        border-radius: 5px 5px 0px 0px;
        width: 100%;

    }
    .user-page .reservation-card .shop-res-dtl .table td {
        padding: 4px;
        display: flex;
        align-items: center;
    }
    .user-page .reservation-card .shop-res-dtl .table td.resmore-detail {
        justify-content: flex-end;
    }
    .user-page .reservation-Detail-Data-Dt, .user-page .reservation-Detail-Data-Dd, .user-page .reservation-Detail-Data-Child-Dd-Multiple {
        width: 100%;
    }
    .user-page .reservation-Detail-Data-Child-Dd-Multiple {
        margin-left: 0px;
    }
    .user-page .reservation-Detail-Data-Child-Summary {
        justify-content: flex-start;
    }
    .reservation-Detail-Data-Pre {
        font-family: inherit;
    }

    .footer .social-bottom {
        float: none;
        margin-top: 40px;
        text-align: center;
    }
    .footer .social-icons {
        padding-top: 5px !important;
    }

    .page-section .content-detail {
        padding: 0 15px;
    }

    .page-section .content-detail .global-title {
        font-size: 120px;
        font-weight: 700;
    }

    .page-section .content-detail .sub-title {
        font-weight: 500;
        font-size: 25px;
    }

    .page-section .content-detail .detail-text {
        font-size: 14px;
    }
}
@media (max-width: 640px) {
    .shop-map .map-sidebar, .user-page .points-container {
        display: none;
    }
}
@media (max-width: 480px) {
    .page-section .content-detail {
        padding: 0 15px;
    }

    .page-section .content-detail .global-title {
        font-size: 80px;
        font-weight: 600;
    }

    .page-section .content-detail .sub-title {
        font-weight: 500;
        font-size: 22px;
    }
}
@media only screen and (max-width: 414px) {
    ::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 5px;
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background-color: rgba(0, 0, 0, .5);
        box-shadow: 0 0 1px rgba(255, 255, 255, .5);
    }
    .shop-map .map-sidebar input#storeNameSearch {
        margin: 10px 20px 5px;
        width: 80%;
    }
    .shop-map .map-sidebar h4 {
        font-size: 16px;
    }
    .shop-map .store-mark-info h2 {
        font-size: 18px;
    }
    .shop-map .map-sidebar ul.left-storeList li a {
        padding: 2px;
    }
    .shop-map .map-sidebar ul.left-storeList li a span {
        font-size: 12px;
    }
    .shop-map .marker-btn-group .btn {
        margin: 2px 2px;
        font-size: 10px;
    }
    .tbl-reserve {
        padding: 0px 8px;
    }

    .checkavailability {
        padding: 15px 15px 0px;
    }

    #map {
        height: 530px;
    }

    .shop-list .shop .shop-link .thum-img, .shop-list .shop .shop-link .thum-img img {
        height: 130px;
    }
    .food-menu-card .media h3, .food-menu-card .media strong, .shop-list .shop .shop-link .shop-cont .shop-name, .shop-list .shop .shop-link .shop-cont i {
        font-size: 14px;
    }
    .m-menu .food-menu-card {
        height: 270px;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .food-menu-card .media {
        padding: 5px;
    }

    .food-menu-card .media .d-flex {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .m-menu .food-menu-card .media .d-flex {
        flex-direction: column;
        align-content: space-between;
    }
    .m-menu .food-menu-card .media .d-flex .align-self-center {
        align-self: flex-end !important;
    }
    .food-menu-card .media a.g-width-100 {
        /*height: 150px;*/
        display: none;
    }

    .food-menu-card .media .img-fluid {
        height: 135px;
        object-fit: cover;
        object-position: center;
    }
    .m-menu .food-menu-card .media.shop-menu h3 {
        font-size: .9rem;
        display: block;
        width: 100%;
    }

    .food-menu-card .media p, .shop-list .shop .shop-link .shop-cont .location, .food-menu-card .media span.caption {
        font-size: 12px;
    }

    .food-menu-card .media h3 {
        padding-bottom: 7px;
    }

    .food-menu-card .media p {
        font-size: 14px;
        height: 75px;
        overflow: hidden;
    }
    .m-menu .food-menu-card .media p {
        height: 45px;
        font-size: 12px;
    }

    .m-menu .food-menu-card .media .select-this-menu {
        padding: 1px 5px;
        border-radius: 2px;
        font-size: 12px;
        margin-top: 5px;
    }
    .m-menu .food-menu-card .media.shop-menu strong {
        font-size: 12px;
    }
    .m-menu .food-menu-card .media.shop-menu input[type=checkbox] {
        width: 16px;
        height: 16px;
    }
    .m-menu .food-menu-card .media.shop-menu input[type=checkbox]::before {
        width: 10px;
        height: 10px;
        top: 3px;
        left: 3px;
    }
    .m-menu .food-menu-card .media.shop-menu input[type=checkbox]:checked::after {
        width: 6px;
        height: 6px;
        top: 5px;
        left: 5px;
    }
    .food-menu-card .add-to-cart-button {
        padding: 6px 0px;
    }

    .user-page .reservation-card {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .user-page .reservation-card .shop-thumb, .user-page .reservation-card .shop-thumb img {
        width: 100%;
        border-radius: 5px 5px 0px 0px;
    }

    .user-page .reservation-card .shop-res-dtl {
        padding: 10px 15px;
        width: 100%;
    }
    #paypal-button-container .paypal-btns {
        width: 100%;
    }

}
