/*
    Main css
*/
html, body {
    height: 100%;
}

html {
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
}

body {
    font-family: "PT Sans", Helvetica, "Microsoft JhengHei", 微軟正黑體, sans-serif;

}

body.overflow-hidden {
    /* used when modal is visible */
    overflow: hidden !important;
}

h1, h2, h3, h4, h5, h6, h7 {
    color: #f37021;
    font-weight: 600;
}

h2 {
    font-size: 1.4em;
    margin-top: 0;
}

.inner-content h3 {
    font-weight: 500;
}

a, label {
    color: #ff9320;
}

a:hover {
    color: #0a3b5d;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

div#main {
    background-color: #FFF;
    padding-top: 132px;
    padding-bottom: 90px;
    min-height: 100%;
}

div#main.without-navbar {
    padding-top: 0!important;
}

.nav-bar {
    background-color: rgba(255,255,255,1);
    height: 132px;
    clear: both;
    width: 100%;
    z-index: 10001;
    top: 0;
    padding: 0;
    /*border-bottom: 1px solid #EEE;*/
    box-shadow: 0 0 0.1em 0 rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: all 0.5s;
    position: fixed;
}

body.overflow-hidden .nav-bar {
    z-index: 1;
}

.nav-bar.smaller {
    height: 50px;
}

.nav-bar .logo-wrapper {
    height: 100%;
    /* overflow: hidden; */
    position: relative;
    padding: 25px 0;
}


#navigation .nav-items {
    position: absolute;
    right: 0;
    top: 0;
    margin: 15px 5px 5px 0;
    text-align: left;
    transition: all 0.5s;
    float: right;
    font-size: 0.9em;

}

/*.smaller ul.nav.navbar-nav {
    top: 10px;
}*/

.nav-bar .container-fluid {
    position: relative;
    height: 80%;
    max-width: 1280px;
}

.nav-items>li {
    padding: 0 10px;
    float: left;
}

.nav-items>li>a, .nav-items>li>span {
    color: #ff9320;
    padding: 2px 2px 2px 2px;
    line-height: 1.5em;
    font-size: 1em;
    text-transform: uppercase;
}

.nav-items>li>span {
    color: #000;
}


.nav-items>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #ff9320;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.nav-items>li>a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.nav-items>li + li {
    border-left: 2px solid #ff9320;
}

.nav-items>li>a:hover, .nav-items>li>a:focus {
    background-color: transparent;
    /*border-bottom: 2px solid #ff9320;*/
}

.nav-items li.nav-profile > a {
    padding-left: 28px;
    background: url('../images/icons/icnprofile@2x.png') left center no-repeat;
    -webkit-background-size: 20px; background-size: 20px;
}

#navigation .open>a, #navigation .open>a:hover, #navigation .open>a:focus {
    color: #ff9320;
    background-color: transparent;
    box-shadow: 0 2px 0 #ff9320;
}

.highlighted-text {
    text-transform: uppercase;
    color: #ff9320;
    font-size: 1.05em;
}

.main-logo, .main-logo-alt {
    display: inline-block;
    font-size: 1.5em;
    color: #FFF;
    margin: auto;
    padding: 0;
    height: 100%;
    transition: all 0.5s;
}

.country {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.5em;
    color: #f37021;
    margin: auto;
    padding: 0;
    transition: all 0.5s;
    transition-delay: 0.8s;
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 80%;
    left: 0%;
    transform: translateX(-50%);
}
.country-alt {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.5em;
    color: #f37021;
    margin: auto;
    padding: 0;
    transition: all 0.5s;
    transition-delay: 0.8s;
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 15%;
    left: 110%;
}

.main-logo {
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 5%;
    left: 50%;
    transition-delay: 0.8s;
}

.main-logo-alt {
    /*float: left;*/
    position: absolute;
    left: 0;
    padding: 10px 0;
    width: 150px;
    text-align: left;
    top: -100%;
}

.nav-bar.shrink-max {
    box-shadow: 1px 0 2px rgba(80, 80, 80, 0.5) !important;
}

.nav-bar.shrink-max .main-logo-alt {
    top: 0;
    width: auto;
    transition-delay: 0.8s;
}

.nav-bar.shrink-max .main-logo {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0s;
}

/*.nav-bar.smaller .main-logo {
    margin: 5px 0;
}*/

.main-logo img.lg-logo{

}

.main-logo span, .main-logo-alt span {
    display: block;
    height: 100%;
}

.main-logo span {
    height: 100%;
}

.main-logo .logo-img, .main-logo-alt .logo-img {
    height: 90%;
    width: auto;
    display: block;
    /*transition: all 0.5s;*/
}

.main-logo img.sm-logo{
    height: 0;
    display: none;
}

.main-logo img {
    transform: translateX(-50%);
}

.main-logo .logo-img {
    max-width: 403px;
    max-height: 447px;
}

.main-logo-alt .logo-img {
    max-width: 284px;
    max-height: 78px;
}

.nav-bar.smaller .main-logo img.lg-logo{
    display: none;
}

.nav-bar.smaller .main-logo img.sm-logo{
    display: block;
}

.nav-items li.dropdown {
    position: relative;
}

.nav-items>li>.dropdown-menu {
    width: 100%;
    right: 0;
    left: inherit;
    border: 0;
    box-shadow: 0 0 0;
    /*top: 40px;*/
    padding: 0 10px 10px;
    text-align: right;
    min-width: 120px;
    display: inline-block;
    height: 0;
    background: #FFF;
}


.nav-items .dropdown-menu>li>a {
    border-bottom: 2px solid #ff9320;
    color: #ff9320;
    padding: 3px 10px;
    line-height: 30px;
    position: relative;
    font-size: 0.9em;
    left: -100%;
    opacity: 0;
    text-transform: uppercase;
    -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s;
}

.nav-items .dropdown-menu > li {
    overflow: hidden;
}

.nav-items .open .dropdown-menu {
    height: auto;
}

.nav-items .open .dropdown-menu > li > a {
    opacity: 1;
}

.nav-items .open .dropdown-menu > li:nth-child(1) > a {
    -webkit-transition-delay: 0s; -moz-transition-delay: 0s; -ms-transition-delay: 0s; -o-transition-delay: 0s; transition-delay: 0s;
}

.nav-items .open .dropdown-menu > li:nth-child(2) > a {
    -webkit-transition-delay: 0.1s; -moz-transition-delay: 0.1s; -ms-transition-delay: 0.1s; -o-transition-delay: 0.1s; transition-delay: 0.1s;
}

.nav-items .open .dropdown-menu > li:nth-child(3) > a {
    -webkit-transition-delay: 0.2s; -moz-transition-delay: 0.2s; -ms-transition-delay: 0.2s; -o-transition-delay: 0.2s; transition-delay: 0.2s;
}

.nav-items .open .dropdown-menu > li:nth-child(4) > a {
    -webkit-transition-delay: 0.3s; -moz-transition-delay: 0.3s; -ms-transition-delay: 0.3s; -o-transition-delay: 0.3s; transition-delay: 0.3s;
}

.nav-items .open .dropdown-menu > li:nth-child(5) > a {
    -webkit-transition-delay: 0.4s; -moz-transition-delay: 0.4s; -ms-transition-delay: 0.4s; -o-transition-delay: 0.4s; transition-delay: 0.4s;
}

.nav-items .open .dropdown-menu > li > a {
    left: 0;
}


#navigation-controller {
    display: none;
    margin: 0 1em;
    position: absolute;
    top: 0;
    left: 0;
}

#menu-toggle {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    text-decoration: none;
}

#menu-toggle .menu-toggle-icon {
    height: 100%;
}

#menu-toggle .menu-toggle-flag {
    text-indent: -100px;
    overflow: hidden;
    line-height: 100%;
    width: 28px;
    vertical-align: middle;
    background: url('../images/arrow_down.png') no-repeat center center;
    background-size: contain;
    display: inline-block;
}

.full-width .inner-content {
    max-width: none;
}

.inner-content {
    padding: 1em;
    max-width: 580px;
    margin: 0 auto;
}

.nav-content {
    padding: 0;
    margin: 0 auto;
    background: #F4F4F4;
}

.nav-content .jit-panel {
    background: #FFF;
}

.inner-content h2
, .nav-content h2 {
    text-transform: uppercase;
    text-align: center;
}

/*span.logo-text {*/
    /*display: inline-block;*/
    /*font-family: sans-serif;*/
    /*border: 1px solid #FFF;*/
    /*padding: 2px 25px;*/
/*}*/

.footer {
    background-color: #f37021;;
    height: 90px;
    margin-top: -90px;
    position: relative;
}

.footer .copyright {
    position: absolute;
    bottom: 0;
    margin: 1em;
    font-size: 0.9em;
    color: #FFF;
}

.footer-logo {
    width: 90px;
    margin: 0 auto;
}

.footer-logo img {
    width: 100%;
    padding: 15px;
}

.jquery-overlay-progress{
    background-image: url('../images/share/loading_sm.gif');
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center center;
    height: 30px;
    width: 30px;
}

select.loading,span.loading,label.loading,a.loading, button.loading, input[type="button"].loading,input[type="submit"].loading,div.loading {
    background-image: url('../images/share/loading_sm.gif');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 30px;
    pointer-events: none;
    cursor: default;
}

.jit-loading-icon {
    display: inline-block;
    background-image: url(../images/share/jit_loading.gif);
    background-size: 32px 8px;
    background-repeat: no-repeat;
    background-position: center center;
    height: 8px;
    width: 32px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.jit-sep {
    background: #f37021;
    width: 100%;
    padding: 1px 0;
    margin: 1em 0;
    display: block;
}

.jit-sep2 {
    background: #ff9320;
    width: 100%;
    padding: 1px 0;
    margin: 1em 0;
    display: block;
}

/**
 * Box dialog
 */

.box-dialog {
    min-width: 320px;
    border: 1px solid #CCC;
    background: rgba(255,255,255,0.85);
    -webkit-border-radius: 0 10px 0 0;
    -moz-border-radius: 0 10px 0 0;
    border-radius: 0 10px 0 0;
    overflow: hidden;
    padding: 0.5em;
    margin: 0 0 1em;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.box-dialog .dialog_close {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    width: 15px;
    height: 15px;
    text-indent: -999px;
    background: url('../images/close_sm_gray.png') no-repeat center center;
}

.overall_wrapper.transparent_bg .box-dialog {
    width: 640px;
    margin: 5em auto;
}




.box-dialog .dialog_icon {
    position: absolute;
    height: 100%;
    width: 115px;
    left: 0;
    top: 0;
    background: green;
    box-shadow: inset -4px 0 4px rgba(100, 100, 100, 0.8);
}

.box-dialog .dialog_icon .alerticon {
    position: absolute;
    top: 50%;
    margin-top: -25px;
}

.box-dialog .dialog_icon .alerticon, .box-dialog .dialog_icon .alerticon .icon {
    display: block;
    width: 100%;
    font-size: 50px;
    text-align: center;
    color: #FFF;
}

.overall_wrapper.transparent_bg .box-dialog .dialog_icon .alerticon, .overall_wrapper.transparent_bg .box-dialog .dialog_icon .alerticon .icon {
    font-size: 60px;
}

.overall_wrapper.transparent_bg .box-dialog .dialog_icon .alerticon {
    margin-top: -30px;
}

.overall_wrapper.transparent_bg .box-dialog .dialog_content {
    margin-left: 145px;
}

.overall_wrapper.transparent_bg .box-dialog .dialog_icon {
    width: 135px;
}

.box-dialog .dialog_content {
    margin-left: 125px;
}

.box-dialog h3 {
    margin: 0;
    line-height: 1.5em;
}

.box-dialog.successbox h3 { color: green; }
.box-dialog.errorbox h3 { color: #6f423b; }
.box-dialog.warningbox h3 { color: #f0c040; }
.box-dialog.infobox h3 { color: #0e509e; }

.box-dialog.successbox button, .box-dialog.successbox input[type="button"] {
    background: green;
}

@media screen and (max-width: 819px){
    .box-dialog {
        width: 100%;
        margin: 1em 0;
    }
}

.actions-wrapper {
    position: relative;
    overflow: hidden;
}

ul.actions, ul.actions li {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

ul.actions {
    float: right;
    overflow: hidden;
    /*padding: 0 15px;*/
}

ul.actions li {
    float: left;
    margin-right: 15px;
}

ul.actions li a {
    outline: 0;
}


ul.actions li:last-child {
    margin-right: 0;
}

.actions-wrapper.actions-yesno ul.actions {
    float: none;
}

.actions-wrapper.actions-yesno ul.actions li
, .actions-wrapper ul.actions li {
    margin: 0;
    padding: 0 8px;
}

.actions-wrapper.actions-yesno ul.actions li {
    width: 50%;
}

.actions-wrapper.actions-yesno ul.actions li a
, .actions-wrapper ul.actions li a{
    display: block;
    width: 100%;
}

/*
    Home page css
*/

.hero-container {
    font-size: 1em;
    color: #0a3b5d;
    text-align: justify;
}


.hero_img {
    min-height: 480px;
    position: relative;
    overflow: hidden;
    image-orientation: 0deg;
}

.cover-container {
    position: relative;
    min-height: 400px;
    padding: 40px 24px;
    /*margin-bottom: 15px;*/
}

.hero-container.hero-container-content .hero_img  {
    min-height: 320px;
    height: 320px;
}

.hero-container.hero-container-content .hero_img .hero-photo {
    position: absolute;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    /*-webkit-transform: translateX(-50%);-moz-transform: translateX(-50%);-ms-transform: translateX(-50%);-o-transform: translateX(-50%);transform: translateX(-50%);*/
}

.hero-container.hero-container-content .hero-content {
    text-align: center;
    color: #FFF;
    position: absolute;
    bottom: 1em;
    width: 100%;
    font-size: 1.3em;
    padding: 0 1em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.95);
}

.hero-container.hero-container-content .hero-content * {
    text-align: center;
    max-width: 998px;
    margin: 0 auto;
}

.hero-container.hero-container-content .hero-content ul.restaurant_info {
    position: relative;
    /*overflow: hidden;*/
    padding: 0;
    list-style-type: none;
    max-width: 480px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    font-size: 0.8em;
}

.hero-container.hero-container-content .hero-content ul.restaurant_info li {
    /*width: 50%;*/
    flex: 1;
    padding: 0.5em 1em 0.5em;
    list-style-type: none;
    position: relative;
    text-align: center;
    line-height: 20px;
}

.hero-container.hero-container-content .hero-content ul.restaurant_info li.price-range {
    flex: 0.7;
    padding-left: 0;
    padding-right: 0;
}

.hero-container.hero-container-content .hero-content ul.restaurant_info li > span {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: middle;
}

ul.hero-actions, ul.hero-actions li {
    list-style-type: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.hero-actions {
    /*display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;*/
    /*align-items: center;*/
    /*align-content: center;*/
}

ul.hero-actions li {
    display: inline-block;
    position: relative;
}

ul.hero-actions li:not(:last-child) {
    margin-right: 10px !important;
}

ul.hero-actions li a {
    font-size: 0.8em;
    /*color: rgba(255, 147, 32, 1);*/
    color: #FFF;
    line-height: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 18px;
    padding: 0 21px;
    display: inline-block;
}

ul.hero-actions li a:hover {
    color: #FFF;
    background: rgba(255, 147, 32, 0.8);
}

ul.hero-actions li:hover a {
    font-weight: 700;
    text-decoration: none;
}

ul.hero-actions li .icon {
    display: inline-block;
    /*margin-right: 10px !important;*/
}

ul.hero-actions .icon {
    height: 20px;
    overflow: visible;
}

ui.hero-actions .icon.icon-book-table {
    width: 32px;
}

ul.hero-actions .icon.icon-book-table span {
    height: 36px;
    width: 36px;
    display: block;
    margin-top: -5px;
    margin-left: -10px;
    background: url('../images/icons/icn_reserve_plate.png') transparent no-repeat center center;
    -webkit-background-size: contain;background-size: contain;
}

.icon.icon-3d {
    perspective: 750;
}

.icon.icon-3d .cube {
    position: relative;
    top: 5px;
    margin: 0 auto;
    width: 20px;
    height: 20px;
    -webkit-transform-style: preserve-3d;-moz-transform-style: preserve-3d;-ms-transform-style: preserve-3d;transform-style: preserve-3d;
    -webkit-transform: rotateY(-20deg) rotateX(-20deg);-moz-transform: rotateY(-20deg) rotateX(-20deg);-ms-transform: rotateY(-20deg) rotateX(-20deg);-o-transform: rotateY(-20deg) rotateX(-20deg);transform: rotateY(-20deg) rotateX(-20deg);}

ul.hero-actions li:hover .icon.icon-3d .cube {
    -webkit-animation: spin 5s infinite linear;-o-animation: spin 5s infinite linear;animation: spin 5s infinite linear;
}

.icon.icon-3d .cube .cube-face {
    /*border: 2px solid  rgba(255, 147, 32, 1);*/
    border: 2px solid #FFF;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;
    -webkit-transition: transform 2s, background-color 0.5s;-moz-transition: transform 2s, background-color 0.5s;-ms-transition: transform 2s, background-color 0.5s;-o-transition: transform 2s, background-color 0.5s;transition: transform 2s, background-color 0.5s;
}

ul.hero-actions li a:hover .icon.icon-3d .cube .cube-face {
    border: 2px solid #FFF;
}

/* This is where the 3D magic happens */
@-webkit-keyframes spin {
    from { -webkit-transform: rotateY(-20deg) rotateX(-20deg);-moz-transform: rotateY(-20deg) rotateX(-20deg);-ms-transform: rotateY(-20deg) rotateX(-20deg);-o-transform: rotateY(-20deg) rotateX(-20deg);transform: rotateY(-20deg) rotateX(-20deg); }
    to   { -webkit-transform: rotateY(-380deg) rotateX(380deg);-moz-transform: rotateY(-380deg) rotateX(380deg);-ms-transform: rotateY(-380deg) rotateX(380deg);-o-transform: rotateY(-380deg) rotateX(380deg);transform: rotateY(-380deg) rotateX(380deg); }
}

/* 3D positioning for each of the images/links */
.icon.icon-3d .cube .cube-face.cube-front {
    -webkit-transform: rotateX(90deg) translateZ(9px);-moz-transform: rotateX(90deg) translateZ(9px);-ms-transform: rotateX(90deg) translateZ(9px);-o-transform: rotateX(90deg) translateZ(9px);transform: rotateX(90deg) translateZ(9px);
}
.icon.icon-3d .cube .cube-face.cube-back {
    -webkit-transform: translateZ(9px);-moz-transform: translateZ(9px);-ms-transform: translateZ(9px);-o-transform: translateZ(9px);transform: translateZ(9px);
}
.icon.icon-3d .cube .cube-face.cube-left {
    -webkit-transform: rotateY(90deg) translateZ(9px);-moz-transform: rotateY(90deg) translateZ(9px);-ms-transform: rotateY(90deg) translateZ(9px);-o-transform: rotateY(90deg) translateZ(9px);transform: rotateY(90deg) translateZ(9px);
}
.icon.icon-3d .cube .cube-face.cube-right {
    -webkit-transform: rotateY(180deg) translateZ(9px);-moz-transform: rotateY(180deg) translateZ(9px);-ms-transform: rotateY(180deg) translateZ(9px);-o-transform: rotateY(180deg) translateZ(9px);transform: rotateY(180deg) translateZ(9px);
}
.icon.icon-3d .cube .cube-face.cube-top {
    -webkit-transform: rotateY(-90deg) translateZ(9px);-moz-transform: rotateY(-90deg) translateZ(9px);-ms-transform: rotateY(-90deg) translateZ(9px);-o-transform: rotateY(-90deg) translateZ(9px);transform: rotateY(-90deg) translateZ(9px);
}
.icon.icon-3d .cube .cube-face.cube-bottom {
    -webkit-transform: rotateX(-90deg) translateZ(9px);-moz-transform: rotateX(-90deg) translateZ(9px);-ms-transform: rotateX(-90deg) translateZ(9px);-o-transform: rotateX(-90deg) translateZ(9px);transform: rotateX(-90deg) translateZ(9px);
}

ul.hero-actions li:hover .icon.icon-3d .cube .cube-face {
    border: 1px solid #FFF;
}

ul.hero-actions li:hover .icon.icon-3d .cube .cube-face.cube-front {
    background-color: rgba(243, 242, 240, 0.8);
}

ul.hero-actions li:hover .icon.icon-3d .cube .cube-face.cube-back {
    background-color: rgba(1, 165, 141, 0.8);
}

ul.hero-actions li:hover .icon.icon-3d .cube .cube-face.cube-left {
    background-color: rgba(252, 195, 124, 0.8);
}

ul.hero-actions li:hover .icon.icon-3d .cube .cube-face.cube-right {
    background-color: rgba(247, 113, 93, 0.8);
}

ul.hero-actions li:hover .icon.icon-3d .cube .cube-face.cube-top {
    background-color: rgba(89, 74, 70, 0.8);
}

ul.hero-actions li:hover .icon.icon-3d .cube .cube-face.cube-bottom {
    background-color: rgba(22, 64, 89, 0.8);
}

ul.hero-actions .marker-pin .bounce {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -12px 0 0 -30px;
}

ul.hero-actions .marker-pin .pin {
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 50% 0;
    background: #FFF;
    transform: rotate(-45deg);
}
ul.hero-actions .marker-pin .pin:after {
    content: "";
    width: 8px;
    height: 8px;
    margin: 4px 0 0 -4px;
    background: #000;
    position: absolute;
    border-radius: 50%;
}

ul.hero-actions li a:hover .marker-pin .pin {
    animation-name: coloring;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

ul.hero-actions li a:hover .marker-pin .pin:after {
    background: #FFF;
}

ul.hero-actions li a:hover .marker-pin .bounce {
    animation-name: bounce;
    /*animation-fill-mode: both;*/
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
}

ul.hero-actions .marker-pin .pulse {
    background: #3e3e3e;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 5px 0px 0px -26px;
    transform: rotateX(55deg);
    /* z-index: -2; */
}
ul.hero-actions li a:hover .marker-pin .pulse:after {
    content: "";
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: absolute;
    margin: -5px 0 0 -10px;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    box-shadow: 0 0 1px 2px #FFF;
}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0px);
    }

    6% {
        transform: translateY(-3px);
    }

    12% {
        transform: translateY(0px);
    }

    22% {
        transform: translateY(-12px);
    }

    32% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes coloring {
    0% {
        background-color: rgba(255, 255, 255, 1);
    }

    10% {
        background-color: rgba(1, 165, 141, 0.8);
    }

    30% {
        background-color: rgba(252, 195, 124, 0.8);
    }

    50% {
        background-color: rgba(247, 113, 93, 0.8);
    }

    70% {
        background-color: rgba(22, 64, 89, 0.8);
    }

    90% {
        background-color: rgba(255, 255, 255, 1);
    }
}


.header-item-name, .header-item-address {
    color: #FFF;
    /*text-shadow: 1px 1px 1px #000;*/
}

.header-item-name {
    font-size: 3em;
    font-weight: 700;
}

li.cuisine-type > span {
    background-image: url('../images/icons/icnwhitecuisine@2x.png');
}

li.price-range > span {
    background-image: url('../images/icons/moneywhite@2x.png');
}

li.op-hours > span {
    background-image: url('../images/icons/icnwhitetime@2x.png');
}

.hero-container.hero-container-content .hero-content h3 {
    color: #FFF;
    font-weight: 700;
    font-size: 2em;
    margin: 0.5em auto 0;
}

.overlay-wrapper {
    width: 100%;
    margin: auto;
    max-width: 520px;
    position: relative;
}

.overlay-wrapper .container {
    width: 100%;
}

.overlay-box {
    padding: 15px 30px;
    background-color: rgba(255,255,255,0.9);
    margin: 0 auto;
}

.overlay-box .form-group {
    margin-bottom: 25px;
}

.input-icon {
    display: inline-block;
    width: 22px;
    height: 20px;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain; background-size: contain;
}

.input-icon.input-icon-calendar {
    background-image: url('../images/icons/icndate@2x.png');
}

.input-icon.input-icon-time {
    background-image: url('../images/icons/icntime@2x.png');
}

.input-icon.input-icon-seatno {
    background-image: url('../images/icons/icnseatno@2x.png');
}

.input-icon.input-icon-table {
    background-image: url('../images/icons/icntable@2x.png');
}

.input-icon.input-icon-discount {
    background-image: url('../images/icons/icndiscount@2x.png');
}

.input-icon.input-icon-search {
    background-image: url('../images/icons/icnsearch@2x.png');
}

.input-icon.input-icon-cuisine
, .cuisine .icon{
    background-image: url('../images/icons/icncuisine@2x.png');
}

.input-icon.input-icon-location
, .address .icon{
    background-image: url('../images/icons/icnlocation@2x.png');
}

.input-icon.input-icon-deposit {
    background-image: url('../images/icons/money@2x.png');
}

.phone .icon{
    background-image: url('../images/icons/icnphone@2x.png');
}

.website .icon{
    background-image: url('../images/icons/icnwebsite@2x.png');
}

.price .icon{
    background-image: url('../images/icons/icnmoney@2x.png');
}

.bg-mask .favourite-button-wrapper {
    float: right;
    margin: 10px;
}

.restaurant-image .favourite-button-wrapper {
    position: absolute;
    width: 100%;
    text-align: right;
}

.r-info-row .favourite-button-wrapper {
    display: none;
}

.bg-mask .vr360-button-wrapper {
    float: left;
    margin: 10px;
}

.bg-mask .btn-favourite .icon,
.restaurant-image .btn-favourite .icon,
.r-info-row .btn-favourite .icon,
.bg-mask .btn-vr360 .icon {
    display: inline-block;
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain; background-size: contain;
    vertical-align: middle;
}

.bg-mask .btn-favourite .icon,
.restaurant-image .btn-favourite .icon,
.r-info-row .btn-favourite .icon {
    background-image: url('../images/icons/icnfavouritewhite@2x.png');
}

.bg-mask .btn-vr360 .icon {
    background-image: url('../images/icons/icn360white@2x.png');
}

.bg-mask .btn-favourite .icon:active,
.restaurant-image .btn-favourite .icon:active,
.r-info-row .btn-favourite .icon:active,
.bg-mask .is-favourite .icon,
.restaurant-image .is-favourite .icon,
.r-info-row .is-favourite .icon {
    background-image: url('../images/icons/icnfavourite@2x.png');
}

.bg-mask .btn-favourite .icon,
.restaurant-image .btn-favourite .icon {
    width: 44px;
    height: 44px;
}

.r-info-row .btn-favourite .icon {
    width: 30px;
    height: 30px;
}

.favourite-button-wrapper .btn-favourite,
.favourite-button-wrapper .btn-favourite:hover,
.favourite-button-wrapper .btn-favourite:focus {
    text-decoration: none;
    color: #ffffff;
}

.favourite-button-wrapper .btn-favourite:active,
.favourite-button-wrapper .is-favourite,
.favourite-button-wrapper .is-favourite:hover,
.favourite-button-wrapper .is-favourite:focus {
    text-decoration: none;
    color: #ff7000;
}

.is-favourite .btn-label {
    display: none;
}

.label-icon {
    display: inline-block;
    height: 20px;
    padding-left: 25px;
    background-size: 20px;
    background-repeat: no-repeat;
}

.label-icon.label-icon-address {
    background-image: url('../images/icons/icnlocation@2x.png');
}

.label-icon.label-icon-cuisine {
    background-image: url('../images/icons/icncuisine@2x.png');
}

.label-icon.label-icon-price {
    background-image: url('../images/icons/money@2x.png');
}

.label-icon.label-icon-time {
    background-image: url('../images/icons/icntime@2x.png');
}

.label-icon.label-icon-favourite {
    background-image: url('../images/icons/icnfavourite@2x.png');
}

@media screen and (max-width: 600px){
    .search-result-wrapper .label-icon.label-icon-cuisine {
        background-image: url('../images/icons/icnwhitecuisine@2x.png');
    }
    .search-result-wrapper .label-icon.label-icon-price {
        background-image: url('../images/icons/moneywhite@2x.png');
    }
    .search-result-wrapper .label-icon.label-icon-address{
        background-image: url('../images/icons/icnwhitelocation@2x.png');
    }

    .restaurant-image .favourite-button-wrapper {
        display: none;
    }

    .r-info-row .favourite-button-wrapper {
        display: inline;
        position: absolute;
        top: 30px;
        right: 5px;
    }
}

.overlay-box-btn-wrapper {
    text-align: center;
    margin-top: 10px;
}

.overlay-box-btn, .jit-btn {
    background-color: transparent;
    box-shadow: 0 0 0;
    border: 2px solid #f79a51;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 3px 40px;
    color: #f37021;
    display: inline-block;
    outline: 0;
}

.overlay-box-btn:hover, .jit-btn:hover {
    background-color: #ff9320;
    color: #FFF;
}

.jit-btn.disabled {
    background-color: #DDD;
    border-color: #CCC;
    color: #CCC;
}

.jit-btn.disabled:hover {
    cursor: default;
}

.sm-margin-bottom {
    margin-bottom: 10px;
}

.md-margin-bottom {
    margin-bottom: 30px;
}

.lg-margin-bottom {
    margin-bottom: 50px;
}

.form-heading, .form-label {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.8px;
    text-align: center;
    color: #f37021;
}

.form-heading {
    padding: 20px 0;
}

/*
.form-label {
    padding: 5px 0;
}
*/

.form-input {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #061e77;
    background-color: transparent;
    background-image: none;
    border: 0;
    border-bottom: 1px solid #ff9320;
    outline: 0;
}

textarea.form-input, textarea.form-input:focus {
    border: 1px solid #ff9320;
    height: auto;
    min-height: 120px;
}

div.deposit-info {
    font-size: 14px;
    line-height: 1.42857143;
    color: #061e77;
    text-align: left;
}

.form-section {
    overflow: hidden;
}

.img-bg-mask {
    /*position: absolute;*/
    /*top: 0;*/
    /*height: 100%;*/
    /*width: 100%;*/
    /*background-color: rgba(0,0,0,0.5);*/
    /*z-index: 2;*/
}

.img-bg {
    /*position: absolute;*/
    /*top: 0;*/
    background: url(../images/r_bg.jpg) no-repeat top center;
    background-size: cover;
    background-position: center;
    /*z-index: 1;*/
    height: 100%;
}

.img-bg.rotate-180 {
    -webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg);
}

.img-bg.rotate-90 {
    -webkit-transform: rotate(-90deg);-moz-transform: rotate(-90deg);-ms-transform: rotate(-90deg);-o-transform: rotate(-90deg);transform: rotate(-90deg);
}

.img-bg.rotate-270 {
    -webkit-transform: rotate(-270deg);-moz-transform: rotate(-270deg);-ms-transform: rotate(-270deg);-o-transform: rotate(-270deg);transform: rotate(-270deg);
}

.bg-mask {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 80%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 80%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 80%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}

.inline-rsvn-form .form-control-static,
.details-row .form-control-static{
    line-height: 27px;
    color: #0a3b5d;
}

.search-box .input-group,
.rsvn-wrapper .input-group,
.inline-rsvn-form .input-group,
.details-row .input-group{
    border: 0;
    background-color: transparent;
}

.search-box .input-group-addon,
.rsvn-wrapper .input-group-addon,
.inline-rsvn-form .input-group-addon,
.details-row .input-group-addon
, .input-group-addon{
    border: 0;
    background-color: transparent;
    color: #ff9320;
    padding: 0 10px;
}

.search-box .input-group-addon span, .rsvn-wrapper .input-group-addon span, .inline-rsvn-form .input-group-addon span {
    /*width: 10px;*/
}

.search-box .form-control, .rsvn-wrapper .form-control, .inline-rsvn-form .form-control {
    border: 0;
    box-shadow: 0 0 0;
    padding-left: 10px;
    border-radius: 0;
    border-bottom: 1px solid #ff9320;
    background-color: transparent;
    z-index: auto;
    text-align: center;
    color: #0a3b5d;
    font-size: 1em;
}

.inline-rsvn-form .form-control {
    height: 24px;
    padding: 2px 0;
    text-align: center;
}

.inline-rsvn-form .form-control.has-dropdown {
    background-position-y: 0px;
}

.filter-box .checkbox label {
    color: #0a3b5d;
}

.timeslot-item {
    position: relative;
    display: inline-block;
    font-size: 0.7em;
    cursor: pointer;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #ff9949;
    text-align: center;
    outline: 0;
}

.timeslot-label {
    /*background-color: #ff9320;*/
    color: #FFF;
    border: 0;
    /* height: 100%; */
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    text-align: right;
}

.timeslot-item:hover {
    background-color: #ff9320;
    color: #FFF;
}

.timeslot-item.disabled {
    cursor: not-allowed;
    background-color: #868686;
    color: #eaeaea;
}

.timeslot-item.rsvn-request {
    background-color: #FFB30D;
}

.timeslot-item.rsvn-request .timeslot-label {
    /*color: #352A08;*/
}

.timeslot-item.rsvn-request:hover {
    background-color: #CC8F0A;
}

.timeslot-item-container .timeslot-item {
    position: relative;
}

.timeslot-item-container .timeslot-item .rsvn-request-label, .timeslots-selector-wrapper .legend .rsvn-request-label {
    position: absolute;
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 1em;
    -webkit-border-radius: 16px;-moz-border-radius: 16px;border-radius: 16px;
    background: #ff7000;
    border: 2px solid #FFF;
    top: 0;
    right: -3px;
}

.timeslots-selector-wrapper .legend .rsvn-request-label {
    position: relative;
    color: #FFF;
    display: inline-block;
    top: 0;
    right: 0;
    font-weight: 700;
}

.timeslots-selector-wrapper .legend {
    text-align: right;
    font-size: 0.85em;
    margin: 0 0.5em;
}

span.form-control {
    padding-top: 8px;
}

.form-group.editable .input-group {
    border: 0;
}

.form-group label {
    text-align: right;
}

/**
 * Error
 */
.has-error {
    color: #FF0000;
}

ul.errors{
    margin: 4px 0 0 0;
    /* border: 1px solid rgb(169, 68, 66); */
    /* background-color: rgb(242, 222, 222); */
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

ul.errors, ul.errors li {
    list-style: none;
    list-style-type: none;
    padding: 2px 5px
}

ul.errors li {
    line-height: 1.2em;
    margin: 0;
    color: #ff0000;
    font-weight: bold;
    text-align: left;
}

.has-error input {
    border: 1px solid #FF0000;
}

.next-btn, .previous-btn {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-size: 90%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.next-btn {
    background-image: url(../images/share/right-arrow.png);
}

.previous-btn {
    background-image: url(../images/share/left-arrow.png);
}

select.form-control, .form-control.has-dropdown {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent url(../images/share/dropdown.png) no-repeat;
    background-position-x: right;
    background-position-y: 6px;
    padding: 2px 20px 2px 2px;
    cursor: pointer;
}

.display-wrapper {
    text-align: center;
    padding: 35px 0 0 0;
    margin-bottom: 30px;
}

.display-wrapper.display-small {
    margin-left: auto;
    margin-right: auto;
}

.display-msg {
    font-size: 1.4em;
    color: #ff9320;
    margin-bottom: 15px;
}

.rsvn-details {
    position: relative;
}

.rsvn-details-label {
    color: #ff9320;
    font-weight: normal;
    margin-bottom: 15px;
}

.rsvn-details-label.sub-label {
    margin: 0;
    text-align: left;
}

.display-details-wrapper {
    width: 360px;
    margin: 0 auto;
    font-size: 15px;
}

.details-row {
    margin-bottom: 5px;
}

.details-row:after, .confirm-action-wrapper:after, .form-group:after {
    content: "";
    clear: left;
    display: block;
}

.details-col {
    display: inline-block;
    float: left;
    width: 50%;
}

.single-col {
    width: auto;
    text-align: left;
}

.default-padding {
    padding: 10px;
}

.sp-note {
    color: #ff9320;
    font-size: 0.85em;
}

.display-details-wrapper .restaurant-name {
    font-weight: 700;
    text-align: left;
    padding: 0 0.5em;
    font-size: 1.1em;
    color: #f37021;
}

.display-details-wrapper .guest-info {
    font-weight: 700;
    text-align: left;
    padding: 0 0.5em;
    font-size: 1.1em;
    color: #ff9320;
    text-transform: uppercase;
}

.guest-info {
    position: relative;
}


.jit-loading {
    position: relative;
    width: 65px;
    height: 65px;
    margin: 20px auto 20px;
    text-align: center;
    background-color: #ff7000;
    color: #FFF;
    border-radius: 50%;
    line-height: 65px;
    /*display: none;*/
}


.timeslots-selector-wrapper .jit-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -32px;
    margin-left: -32px;
}

.timeslot-input {
    color: #0a3b5d;
}

.timeslot-input.is_placeholder_text {
    color: #CCC;
}

.period-name-wrapper {
  padding-left: 5px;
  font-size: 1.2em;
  margin-bottom: 10px;
  border-bottom: 2px solid #ff7000;
}

.period-name {
  color: #ff7000;
  font-weight: bold;
}

.timeslot-item-container {
  display: inline-block;
  margin-bottom: 5px;
}


.jit-section {
    margin-top: -38px;
    margin-bottom: 20px;
    text-align: left;
}

.section-small {
    margin: 0 auto;
    max-width: 360px;
}

.jit-section h4 {
    margin-top: 0;
    padding: 0.5em;
    margin-left: 30px;
    background-color: #FFF;
    display: inline-block;
    text-transform: uppercase;
}

/*
    Overwrite bootstrap
*/

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: transparent;
    border-bottom: 1px solid #ff9320;
    box-shadow: 0 0 0;
    outline: 0 none;
}

/*
    Loading spinner
*/

.spinner {
    position: absolute;
    top: 17px;
    left: 0;
    width: 65px;
    text-align: center;
}

.spinner > div {
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% {
          -webkit-transform: scale(1.0);
          transform: scale(1.0);
      }
}

/*
    Multiple select Custom Style
*/

.ms-drop {
    border: 2px solid #ff913a;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 5px;
    left: 0;
}

.ms-drop.right {
    right: 0;
    left: auto;
}

.ms-drop input[type="checkbox"] {
    margin: -3px 5px 0 0;
}

.filter-item input[type="checkbox"] {
    margin: 2px 5px 0 0;
    outline: 0;
    border: 0;
    position: relative;
    top: 0px;
}

.ms-drop li label {
    color: #ff913a;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0.2px;
    text-align: left;
}

.ms-time-wrapper .ms-drop li label {
    text-align: center;
}

.ms-drop li.selected label, .ms-drop li:hover label {
    color: #0a3b5d;
}

.ms-drop li label input[type=checkbox]:before, .filter-item input[type=checkbox]:before {
    content: "";
    position: relative;
    top: 0;
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 0;
    background-color: white;
    background-image: url(../images/share/checkbox_uncheck.png);
}

.ms-drop li label input[type=checkbox]:checked:before, .filter-item input[type=checkbox]:checked:before {
    /*background-color: #274f7f;*/
    background-image: url(../images/share/checkbox_checked.png);
}

.ms-drop li label input[type=checkbox]:indeterminate:before, .filter-item input[type=checkbox]:indeterminate:before {
    /*background-color: #274f7f;*/
    background-image: url(../images/share/checkbox_int.png);
}

.ms-choice {
    color: #0a3b5d;
    line-height: 34px;
    outline: none;
}

.ms.wrapper .ms-parent {
    border-bottom: 1px solid #ff9320;
}

.ms-wrapper .ms-choice {
    background-color: transparent;
    border: 0;
}

.ms-wrapper select.form-control {
    height: 34px;
    visibility: hidden;
}

.ms-drop ul > li:not(.ms-select-all):not(.group){
    display: block;
    float: left;
}

.ms-drop li label input[type=radio] {
    display: none;
}

.ms-drop-desc {
    display: none;
    margin-bottom: 20px;
}

.ms-choice > div {
    right: -3px;
    top: 3px;
}

.ms-time-wrapper .ms-drop ul > li {
    margin-bottom: 5px;
}

.ms-choice > span {
    text-align: center;
}

/*
    Date Picker Custom Style
*/

.ui-datepicker {
    padding: 0;
    border-radius: 0;
    background-color: #FFF;
}

.ui-datepicker table {
    background-color: #FFF;
}

.ui-datepicker .ui-datepicker-inline{
    width: 100%!important;
    padding: 0;
}

.ui-datepicker .ui-widget-content {
    border: 1px solid #DDD;
    background: #FFF;
    padding: 0;
}

.ui-datepicker .ui-datepicker-header {
    border: 0;
    border-radius: 0;
    background: #ff892d;
    color: #FFF;
    padding: 10px 0;
}

.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default {
    padding: 8px 0;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
}

.ui-datepicker .ui-icon-circle-triangle-w {
    background-position: -96px 0;
}

.ui-datepicker .ui-icon-circle-triangle-e {
    background-position: -32px 0;
}

.ui-datepicker .ui-corner-all{
    border-radius: 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    width: 41px;
    height: 41px;
}

/* Disabled date*/
.ui-datepicker .ui-state-disabled,
.ui-datepicker .ui-widget-content .ui-state-disabled,
.ui-datepicker .ui-widget-header .ui-state-disabled {
    opacity: 1;
}

/*Enabled date*/
.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default {
    border: 0;
    background: #FFF;
    font-weight: bold;
    color: #ff892d;
}

.ui-datepicker .ui-state-disabled .ui-state-default {
    /*background: #e0e0e0;*/
    color: rgb(187, 187, 187);
    border: 0;
    cursor: not-allowed;
}

.ui-datepicker .ui-state-disabled.not-open .ui-state-default {
    background: #d8d8d8;
    border: 0;
    color: #a7a7a7;
}

.ui-datepicker td {
    padding: 0;
}

.ui-datepicker .ui-state-hover,
.ui-datepicker .ui-widget-content .ui-state-hover,
.ui-datepicker .ui-widget-header .ui-state-hover,
.ui-datepicker .ui-state-focus, .ui-widget-content .ui-state-focus,
.ui-datepicker .ui-widget-header .ui-state-focus {
    border: 0;
    background: #fbaa6a;
    font-weight: bold;
    color: #FFF;
}

.ui-datepicker .ui-widget-header .ui-state-hover,
.ui-datepicker .ui-widget-header .ui-state-focus {
    background: #FFF;
}

.ui-datepicker .ui.widget-header {
    background-color: transparent;;
}

.ui-datepicker .ui-state-active, .ui-widget-content .ui-state-active,
.ui-datepicker .ui-widget-header .ui-state-active {
    border: 0;
    background: #ff892d;
    font-weight: bold;
    color: #fff;
}

/*
    jit range slider style
*/

.jit-range-slider {
    margin: 45px 0 0 0;
}



.ui-slider{
    margin: 45px 0 0 0;
}

.jit-range-slider:before, .jit-range-slider:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    display: inline-block;
    top: -5px;
    background-color: #ffc297;
}

.jit-range-slider:before {
    left: 0;
}

.jit-range-slider:after {
    right: 0;
}

.ui-slider.ui-slider-horizontal {
    height: 0.1em;
}

.ui-slider.ui-widget.ui-widget-content {
    border: 0;
}

.ui-slider.ui-widget-content {
    background: #ffc297;
}

.ui-slider.ui-slider-horizontal .ui-slider-range {
    top: -2px;
    height: 5px;
}

.ui-slider .ui-slider-handle {
    width: 1em;
    height: 1em;
}
.ui-slider .ui-state-default,
.ui-slider .ui-widget-content .ui-state-default{
    border: 2px solid #ff9320;
    background: #FFF;
    color: #1c94c4;
    border-radius: 50%;
    outline: 0;
    cursor: pointer;
}

.ui-slider .ui-slider-handle {
    top: -.5em;
    margin-left: -.5em;
}

.ui-slider .ui-slider-handle.ui-state-hover,
.ui-slider .ui-slider-handle.ui-state-focus {
    background: #ffe3ce;
}

.ui-slider label {
    position: absolute;
    margin-top: -35px;
}

/*
    JIT number input Style
*/

.jit-number-input {
    display: table;
    width: 100%;
    box-shadow: 0 -1px 0 #ff9320 inset;
}

.jit-number-input .form-control {
    border: 0;
}

.jit-number-input input {
    border: 0!important;
    padding: 0 !important;
    box-shadow: none;
    background: transparent !important;
}

.jit-number-input .input-group-addon {
    padding: 0;
}

.jit-number-input .input-group-addon button {
    background-color: transparent;
    border: 0;
    font-weight: bold;
    outline: 0;
}

.jit-number-input .input-group-addon button:disabled {
    opacity: 0.5;
}

span.clear { clear: left; display: block; }

ul.actions {
    position: relative;
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #FFF;
    width: 220px;
    height: 45px;
    line-height: 45px;
    z-index: 10;
}

ul.actions li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-left: 1em;
    text-align: center;
}

.actions a {
    font-weight: 700;
    font-size: 1.1em;
}

ul.actions.style-fill {
    width: 100%;
    float: none;
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
}

ul.actions.style-fill li {
    /*display: table-cell;
    width: 50%;*/
    float: none;
}

.bg-light {

}

.bg-light .actions a {
    color: #0a3b5d;
}

.bottom_actions_wrapper {
    padding: 0;
    max-width: 998px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.bottom_actions_wrapper ul.bottom_actions {
    list-style: none;
    padding: 0;
    float: right;
}

.bottom_actions_wrapper ul.bottom_actions li {
    list-style-type: none;
    float: left;
    padding: 0;
    margin: 0.5em 1em;
}

.bottom_actions_wrapper ul.bottom_actions li:first-of-type {
    margin-left: 0;
}

.bottom_actions_wrapper ul.bottom_actions li:last-of-type {
    margin-right: 0;
}

.bottom_actions_wrapper ul.bottom_actions li a {
    color: #f37021;
    font-weight: 700;
    font-size: 1.2em;
}

.bottom_actions_wrapper ul.bottom_actions li a span {
    display: inline-block;
    height: 10px;
    width: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 5px;
    background-size: contain;
    vertical-align: middle;
}

ul.nav_actions li.action_item a.disabled
, .bottom_actions_wrapper ul.bottom_actions li.action_item a.disabled {
    color: #AAAAAA;
}

ul.nav_actions li.action_item a.disabled:focus
, .bottom_actions_wrapper ul.bottom_actions li.action_item a.disabled:focus {
    text-decoration: none;
}

ul.nav_actions a.enabled, .bottom_actions_wrapper ul.bottom_actions a.enabled {

}

ul.nav_actions {
    list-style-type: none;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 40%;
    margin: 0.5em 1em;
    padding: 15px 0;
}

ul.nav_actions.actions_right {

}

ul.nav_actions li.action_item {
    padding: 0;
    margin: 0 0 0 0.5em;
    float: right;
    list-style: none;
}

ul.nav_actions li.action_item a {
    display: inline-block;
    color: #f37021;
    font-weight: 700;
    font-size: 1.2em;
}

ul.nav_actions li.action_item a img {
    width: 24px;
    height: 24px;
}

.field-item {
    color: #0a3b5d;
}

.field-item.view {

}

.field-item label {
}

.field-item label span
, .field-item.view .value
, .field-item.edit .value{
    padding: 1em 0.5em;
    display: block;
}

.field-item label span {
    font-weight: 700;
    text-transform: uppercase;
    color: #f37021;
}

.field-item.view label span {
    padding: 0;
    color: #ff9320;
}

.field-item.view .value {
}

.field-item.view .value span {
    /*border-bottom: 1px solid #ffba70;*/
}

.field-item.view .value, .field-item.view dt {
    font-weight: 600;
    text-align: left;
}

.field-item.view dd.value {
    padding: 0 1.5em;
}

/** input styles */
input[type='text']
, input[type='email']
, input[type='password']
, input[type='tel']
, select.form-control{
    border: 0;
    -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #ffba70;
    color: #0a3b5d;
}

select.form-control {
    padding: 0 1em;
}

input[type='text']:focus
, input[type='email']:focus
, input[type='password']:focus
, select.form-control:focus{
    border-bottom: 1px solid #f37021;
}

.jit-select {
    border: 0;
    border-bottom: 1px solid #ffba70;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: #FFFFFF url("../images/arrow_down_24.png") no-repeat 100% 50%;
}

.jit-select select {
    padding: 5px 8px;
    width: 110%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.jit-select select:focus {
    outline: none;
    border-bottom: 1px solid #f37021;
}

/** Reservation list item **/
dl.rsvn-list-item, dl.rsvn-list-item dt, dl.rsvn-list-item dd {
    margin: 0;
    padding: 0;
}

dl.rsvn-list-item {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

dl.rsvn-list-item dt, dl.rsvn-list-item dd {
    /*float: left;*/
}

dl.rsvn-list-item dt.restaurant-info {
    flex: 1;
}

dl.rsvn-list-item dt.restaurant-info span {
    display: block;
    font-weight: 500;
}

dl.rsvn-list-item dt.restaurant-info span.restaurant-name {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.3em;
    color: #f37021;
    margin-bottom: 5px;
}

dl.rsvn-list-item dd.rsvn-info-wrapper {
    flex: 0 0 360px;
    padding: 0 1em;
    text-align: left;
    position: relative;
}

dl.rsvn-list-item.cancelled dd.rsvn-info-wrapper .rsvn-info {
    opacity: 0.5;
}

dl.rsvn-list-item.cancelled dd.rsvn-info-wrapper:before, .has-cancelled-stamp:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background: url('../images/stamp/stamp_cancelled_en.png') no-repeat 50px center;
    -webkit-background-size: contain;background-size: contain;
}

.lang-tc dl.rsvn-list-item.cancelled dd.rsvn-info-wrapper:before
, .lang-tc .has-cancelled-stamp:before {
    background-image: url('../images/stamp/stamp_cancelled_tc.png');
}

.has-cancelled-stamp .field-item.view {
    opacity: 0.5;
}

dl.rsvn-list-item dd.actions-wrapper {
    flex: 0 0 220px;
    flex-basis: 220px;
    /*position: absolute;
    top: 50%;
    right: 0;
    margin-top: -14px;
    line-height: 20px;*/
}

dl.rsvn-list-item dd.actions-wrapper ul
, .actions-wrapper.actions-yesno ul
, .actions-wrapper.section-small ul{
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-flow: row wrap;
    line-height: normal;
    height: auto;
    align-items: stretch;
}

dl.rsvn-list-item dd.actions-wrapper ul li
, .actions-wrapper.actions-yesno ul li
, .actions-wrapper.section-small ul li {
    margin: 0 12px 0 0;
    padding: 0;
    flex: 1;
}

dl.rsvn-list-item dd.actions-wrapper ul li:last-child
, .actions-wrapper.actions-yesno ul li:last-child
, .actions-wrapper.section-small ul li:last-child {
    margin: 0;
}

dl.rsvn-list-item dd.actions-wrapper a
, .actions-wrapper.actions-yesno a
, .actions-wrapper.section-small a {
    padding: 3px 18px;
    line-height: 1.5em;
}

.actions-wrapper.actions-yesno .actions
, .actions-wrapper.section-small .actions {
    width: 100%;
}

dl.rsvn-list-item ul.rsvn-info, dl.rsvn-list-item ul.rsvn-info li {
    padding: 0;
    margin: 0;
}

dl.rsvn-list-item ul.rsvn-info {
    list-style-type: none;
    overflow: hidden;
}

dl.rsvn-list-item ul.rsvn-info li {
    list-style-type: none;
    padding: 10px 0 10px 30px;
    line-height: 24px;
}

dl.rsvn-list-item ul.rsvn-info li {
    width: 50%;
    float: left;
    background-repeat: no-repeat;
    background-position: 0 50%;
    position: relative;
}

dl.rsvn-list-item ul.rsvn-info li span {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    background-size: contain;
}

dl.rsvn-list-item ul.rsvn-info li.rsvn-date span {
    background-image: url('../images/icons/icndate@2x.png');
}

dl.rsvn-list-item ul.rsvn-info li.rsvn-pax span {
    background-image: url('../images/icons/icnseatno@2x.png');
}

dl.rsvn-list-item ul.rsvn-info li.rsvn-time span
, .open-hours .icon {
    background-image: url('../images/icons/icntime@2x.png');
}

dl.rsvn-list-item ul.rsvn-info li.rsvn-discount span {
    background-image: url('../images/icons/icndiscount@2x.png');
}

.btn-close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 1em;
    right: 1em;
}

.btn-close a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    text-indent: -999px;
    overflow: hidden;
    background: url('../images/icons/icn_close@2x.png') center center no-repeat;
    -webkit-background-size: contain; background-size: contain;
}

.icon-close-bg {
    background-image: url('../images/icons/icn_close@2x.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}

ul#nav-bottom {
    list-style-type: none;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 1em;
    font-size: 0.9em;
}

ul#nav-bottom li {
    list-style-type: none;
    padding: 0 12px;
    float: left;
    color: #FFF;
}

ul#nav-bottom li:not(:last-child) {
    border-right: 2px solid #FFF;
}

ul#nav-bottom li a {
    color: #FFF;
}

@media screen and (max-width: 1120px){

    dl.rsvn-list-item dd.actions-wrapper {
        flex-basis: 100%;
        margin-top: 1em;
    }

    dl.rsvn-list-item dd.actions-wrapper ul {
        float: none;
    }
}

@media screen and (max-width: 928px){


    dl.rsvn-list-item {
        padding: 1em;

    }

    dl.rsvn-list-item dt, dl.rsvn-list-item dd {
        display: block;
        float: none;
    }

    dl.rsvn-list-item dt.restaurant-info
    , dl.rsvn-list-item dd.rsvn-info-wrapper {
        width: auto;
        flex: 100%;
    }

    dl.rsvn-list-item dd.rsvn-info-wrapper {
        padding: 0;
        margin: 1em 0;
    }

    dl.rsvn-list-item dd.actions-wrapper {
        position: relative;
        margin: 0;
        top: auto;
        right: auto;
    }

    dl.rsvn-list-item dd.actions-wrapper .actions {
        float: none;
    }

    .field-item label {
        padding-left: 0;
        padding-right: 0;
    }

    ul.actions.style-fill {
        display: block;
    }

    ul.actions.style-fill li {
        width: 100%;
        margin: 1em 0;
        display: block;
    }

    ul.actions.style-fill li a {
        width: 100%;
    }

}

@media screen and (min-width: 993px) {
    ul.actions li {
        width: 50%;
        margin: 0;
    }

    .bg-light .actions a {
        color: #ff7000;
    }
}

@media screen and (max-width: 992px){
    .nav-items li.nav-profile > a {
        background-size: 20px;
    }
    .display-wrapper {
        padding: 1em 0 0 0;
    }

    .field-item label span {
        padding-bottom: 0;
    }

    .hero_img {
        height: 240px;
        min-height: 240px;
    }

    .cover-container {
        padding: 12px;
    }

    .scrolled-down .main-logo .logo-img {
        opacity: 0;
    }

    .nav-bar {
        height: 65px;/*
        padding-top: 15px;
        padding-bottom: 15px;*/
    }

    div#main {
        padding-top: 105px;
    }

    .overlay-wrapper {

    }

    .overlay-wrapper .container {
    }

    #navigation-controller {
        display: block;
        margin: 15px 0;
    }

    .main-logo {
        display: none;
    }

    .main-logo-alt {
        display: none;
    }

    .nav-items>li {
        float: none;
    }

    .nav-items>li>a, .nav-items>li>span {
        line-height: 50px;
    }

    .nav-items>li>a {
        display: inline-block;
    }

    .nav-items>li.lang-selector {
        position: absolute;
        top: 0;
        right: 0;
    }

    .nav-items>li.lang-selector > a {
        line-height: 1.5em;
        margin: 0.5em 0;
    }

    .nav-items>li>.dropdown-menu {
        position: relative;
        display: none;
        padding: 0;
        text-align: left;
    }

    .nav-items>li.open >.dropdown-menu {
        display: block;
    }

    .nav-items>li>.dropdown-menu > li > a {
        padding-left: 20px;
    }

    #navigation {
        position: fixed;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: rgba(0, 0, 0, 0.25);
        z-index: 9999;
        opacity: 0;
        /*visibility: hidden;*/
        /** Causing iphone flicker
        /*-webkit-transition: opacity 0.5s linear;
        -moz-transition: opacity 0.5s linear;
        -ms-transition: opacity 0.5s linear;
        -o-transition: opacity 0.5s linear;
        transition: opacity 0.5s linear;
        -webkit-backface-visibility: hidden;*/
    }

    .nav_shown #navigation {
        opacity: 1;
        width: 100%;
    }

    #navigation .nav-items {
        position: absolute;
        top: 0;
        left: -250px;
        margin: 0;
        padding: 100px 1em 1em 40px;
        height: 100%;
        background: #FFFFFF;
        width: 250px;
        -webkit-transition: left 0.5s;
        -moz-transition: left 0.5s;
        -ms-transition: left 0.5s;
        -o-transition: left 0.5s;
        transition: left 0.5s;
    }

    .nav_shown #navigation .nav-items {
        left: 0;
    }

    .nav-items>li + li {
        border: none;
    }

    .hero-container.hero-container-content .hero-content ul.restaurant_info {
        max-width: none;
        width: 100%;
        display: none;
    }

    .hero-container.hero-container-content .hero-content ul.restaurant_info li
    , .hero-container.hero-container-content .hero-content ul.restaurant_info li.price-range {
        flex: 100%;
        text-align: left;
    }

    div.overlay-block {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 9999;
        max-height: none !important;
    }

    ul.actions li {
        float: right;
    }

}

@media screen and (max-width: 767px) {
    .picker--opened .picker__holder {
        min-width: 100%;
        min-height: 100%;
    }
    /*    .nav-bar {
            height: 50px;
        }*/

    /*.main-logo img.lg-logo{
        height: 0;
        display: none;
    }

    .filter-item .ms-time-wrapper .ms-drop{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%!important;
        height: 100%;
        padding-top: 30px;
    }

    .filter-item .ms-time-wrapper .ms-drop ul {
        max-height: unset!important;
    }

    .filter-item .ms-time-wrapper .ms-drop:after {
        position: absolute;
        top: 5px;
        right: 5px;
        background-image: url(../images/icons/icn_close@2x.png);
        background-size: 20px 20px;
        display: inline-block;
        width: 20px;
        height: 20px;
        content: "";
        cursor: pointer;
    }

    .filter-item .ms-drop-desc {
        display: block;
    }

    /* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
    /**
     * Note: the root picker element should *NOT* be styled more than what?�s here.
     */
    .picker {
        font-size: 16px;
        text-align: left;
        line-height: 1.2;
        color: #000000;
        position: absolute;
        z-index: 10000;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    /**
     * The picker input element.
     */
    .picker__input {
        cursor: default;
    }
    /**
     * When the picker is opened, the input element is ?�activated??.
     */
    .picker__input.picker__input--active {
        border-color: #AAA;
    }

    .picker .picker__weekday, .picker .picker__table, .picker .picker__day {
        color: #FFF;
    }
    /**
     * The holder is the only ?�scrollable?? top-level container element.
     */
    .picker__holder {
        width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*!
     * Default mobile-first, responsive styling for pickadate.js
     * Demo: http://amsul.github.io/pickadate.js
     */
    /**
     * Note: the root picker element should *NOT* be styled more than what?�s here.
     */
    /**
     * Make the holder and frame fullscreen.
     */
    .picker__holder,
    .picker__frame {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    /**
     * The holder should overlay the entire screen.
     */
    .picker__holder {
        position: fixed;
        transition: background 0.15s ease-out, -webkit-transform 0s 0.15s;
        transition: background 0.15s ease-out, transform 0s 0.15s;
        -webkit-backface-visibility: hidden;
    }
    /**
     * The frame that bounds the box contents of the picker.
     */
    .picker__frame {
        position: absolute;
        margin: 0 auto;
        min-width: 256px;
        max-width: 666px;
        width: 100%;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        opacity: 0;
        transition: all 0.15s ease-out;
    }
    @media (min-height: 33.875em) {
        .picker__frame {
            overflow: visible;
            top: auto;
            bottom: -100%;
            max-height: 80%;
        }
    }
    @media (min-height: 40.125em) {
        .picker__frame {
            margin-bottom: 7.5%;
        }
    }
    /**
     * The wrapper sets the stage to vertically align the box contents.
     */
    .picker__wrap {
        display: table;
        width: 100%;
        height: 100%;
    }
    @media (min-height: 33.875em) {
        .picker__wrap {
            display: block;
        }
    }
    /**
     * The box contains all the picker contents.
     */
    .picker__box {
        background: #ffffff;
        display: table-cell;
        vertical-align: middle;
    }
    @media (min-height: 26.5em) {
        .picker__box {
            font-size: 1.25em;
        }
    }
    @media (min-height: 33.875em) {
        .picker__box {
            display: block;
            font-size: 1.33em;
            border: 1px solid #777777;
            border-top-color: #898989;
            border-bottom-width: 0;
            border-radius: 5px 5px 0 0;
            box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
        }
    }
    @media (min-height: 40.125em) {
        .picker__box {
            font-size: 1.5em;
            border-bottom-width: 1px;
            border-radius: 5px;
        }
    }
    /**
     * When the picker opens...
     */
    .picker--opened .picker__holder {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        background: transparent;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
        zoom: 1;
        background: rgba(0, 0, 0, 0.32);
        transition: background 0.15s ease-out;
    }
    .picker--opened .picker__frame {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        opacity: 1;
    }
    @media (min-height: 33.875em) {
        .picker--opened .picker__frame {
            top: auto;
            bottom: 0;
        }
    }

    /* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
    /**
     * The picker box.
     */
    .picker__box {
        padding: 0 1em;
    }
    /**
     * The header containing the month and year stuff.
     */
    .picker__header {
        text-align: center;
        position: relative;
        margin-top: .75em;
    }
    /**
     * The month and year labels.
     */
    .picker__month,
    .picker__year {
        font-weight: 500;
        display: inline-block;
        margin-left: .25em;
        margin-right: .25em;
    }
    .picker__year {
        color: #999999;
        font-size: .8em;
        font-style: italic;
    }
    /**
     * The month and year selectors.
     */
    .picker__select--month,
    .picker__select--year {
        border: 1px solid #b7b7b7;
        height: 2em;
        padding: .5em;
        margin-left: .25em;
        margin-right: .25em;
    }
    @media (min-width: 24.5em) {
        .picker__select--month,
        .picker__select--year {
            margin-top: -0.5em;
        }
    }
    .picker__select--month {
        width: 35%;
    }
    .picker__select--year {
        width: 22.5%;
    }
    .picker__select--month:focus,
    .picker__select--year:focus {
        border-color: #AAA;
    }
    /**
     * The month navigation buttons.
     */
    .picker__nav--prev,
    .picker__nav--next {
        position: absolute;
        padding: .5em 1.25em;
        width: 1em;
        height: 1em;
        box-sizing: content-box;
        top: -0.25em;
    }
    @media (min-width: 24.5em) {
        .picker__nav--prev,
        .picker__nav--next {
            top: -0.33em;
        }
    }
    .picker__nav--prev {
        left: -1em;
        padding-right: 1.25em;
    }
    @media (min-width: 24.5em) {
        .picker__nav--prev {
            padding-right: 1.5em;
        }
    }
    .picker__nav--next {
        right: -1em;
        padding-left: 1.25em;
    }
    @media (min-width: 24.5em) {
        .picker__nav--next {
            padding-left: 1.5em;
        }
    }
    .picker__nav--prev:before,
    .picker__nav--next:before {
        content: " ";
        border-top: .5em solid transparent;
        border-bottom: .5em solid transparent;
        border-right: 0.75em solid #000000;
        width: 0;
        height: 0;
        display: block;
        margin: 0 auto;
    }
    .picker__nav--next:before {
        border-right: 0;
        border-left: 0.75em solid #000000;
    }
    .picker__nav--prev:hover,
    .picker__nav--next:hover {
        cursor: pointer;
        color: #000000;
        background: #b1dcfb;
    }
    .picker__nav--disabled,
    .picker__nav--disabled:hover,
    .picker__nav--disabled:before,
    .picker__nav--disabled:before:hover {
        cursor: default;
        background: none;
        border-right-color: #f5f5f5;
        border-left-color: #f5f5f5;
    }
    /**
     * The calendar table of dates
     */
    .picker__table {
        text-align: center;
        border-collapse: collapse;
        border-spacing: 0;
        table-layout: fixed;
        font-size: inherit;
        width: 100%;
        margin-top: .75em;
        margin-bottom: .5em;
    }
    @media (min-height: 33.875em) {
        .picker__table {
            margin-bottom: .75em;
        }
    }
    .picker__table td {
        margin: 0;
        padding: 0;
    }
    /**
     * The weekday labels
     */
    .picker__weekday {
        width: 14.285714286%;
        font-size: .75em;
        padding-bottom: .25em;
        color: #999999;
        font-weight: 500;
        /* Increase the spacing a tad */
    }
    @media (min-height: 33.875em) {
        .picker__weekday {
            padding-bottom: .5em;
        }
    }
    /**
     * The days on the calendar
     */
    .picker__day {
        padding: .3125em 0;
        font-weight: 200;
        border: 1px solid transparent;
    }
    .picker__day--today {
        position: relative;
    }
    .picker__day--today:before {
        content: " ";
        position: absolute;
        top: 2px;
        right: 2px;
        width: 0;
        height: 0;
        border-top: 0.5em solid #0059bc;
        border-left: .5em solid transparent;
    }
    .picker__day--disabled:before {
        border-top-color: #aaaaaa;
    }
    .picker__day--outfocus {
        color: #dddddd;
    }
    .picker__day--infocus:hover,
    .picker__day--outfocus:hover {
        cursor: pointer;
        color: #000000;
        background: #b1dcfb;
    }
    .picker__day--highlighted {
        border-color: #AAA;
    }
    .picker__day--highlighted:hover,
    .picker--focused .picker__day--highlighted {
        cursor: pointer;
        color: #000000;
        background: #b1dcfb;
    }
    .picker__day--selected,
    .picker__day--selected:hover,
    .picker--focused .picker__day--selected {
        background: #0089ec;
        color: #ffffff;
    }
    .picker__day--disabled,
    .picker__day--disabled:hover,
    .picker--focused .picker__day--disabled {
        background: #f5f5f5;
        border-color: #f5f5f5;
        color: #dddddd;
        cursor: default;
    }
    .picker__day--highlighted.picker__day--disabled,
    .picker__day--highlighted.picker__day--disabled:hover {
        background: #bbbbbb;
    }
    /**
     * The footer containing the "today", "clear", and "close" buttons.
     */
    .picker__footer {
        text-align: center;
    }
    .picker__button--today,
    .picker__button--clear,
    .picker__button--close {
        border: 1px solid #ffffff;
        background: #ffffff;
        font-size: .8em;
        padding: .66em 0;
        font-weight: bold;
        width: 33%;
        display: inline-block;
        vertical-align: bottom;
    }
    .picker__button--today:hover,
    .picker__button--clear:hover,
    .picker__button--close:hover {
        cursor: pointer;
        color: #000000;
        background: #b1dcfb;
        border-bottom-color: #b1dcfb;
    }
    .picker__button--today:focus,
    .picker__button--clear:focus,
    .picker__button--close:focus {
        background: #b1dcfb;
        border-color: #0089ec;
        outline: none;
    }
    .picker__button--today:before,
    .picker__button--clear:before,
    .picker__button--close:before {
        position: relative;
        display: inline-block;
        height: 0;
    }
    .picker__button--today:before,
    .picker__button--clear:before {
        content: " ";
        margin-right: .45em;
    }
    .picker__button--today:before {
        top: -0.05em;
        width: 0;
        border-top: 0.66em solid #0059bc;
        border-left: .66em solid transparent;
    }
    .picker__button--clear:before {
        top: -0.25em;
        width: .66em;
        border-top: 3px solid #ee2200;
    }
    .picker__button--close:before {
        content: "\D7";
        top: -0.1em;
        vertical-align: top;
        font-size: 1.1em;
        margin-right: .35em;
        color: #777777;
    }
    .picker__button--today[disabled],
    .picker__button--today[disabled]:hover {
        background: #f5f5f5;
        border-color: #f5f5f5;
        color: #dddddd;
        cursor: default;
    }
    .picker__button--today[disabled]:before {
        border-top-color: #aaaaaa;
    }

    .picker__frame {
        border: 0 !important;
    }

    /* ==========================================================================
       $DEFAULT-DATE-PICKER
       ========================================================================== */


    /*    .nav-bar {
            height: 50px;
        }*/

    /*.main-logo img.lg-logo{
        height: 0;
        display: none;
    }

    .main-logo img.sm-logo{
        height: 40px;
        display: block;
    }*/

    /*    .nav-bar .main-logo {
            margin: 5px 0;
        }*/
}

@media screen and (max-width: 992px){


    .ms-time-wrapper .ms-drop,
    .cuisine-selector-wrapper .ms-drop,
    .district-selector-wrapper .ms-drop
    {
        position: fixed;
        top: 0;
        left: 0!important;
        width: 100%!important;
        height: 100%;
        padding: 40px 20px;
        overflow: auto;
        z-index: 10002;
    }

    .ms-time-wrapper .ms-drop ul,
    .cuisine-selector-wrapper .ms-drop ul,
    .district-selector-wrapper .ms-drop ul {
        max-height: unset!important;
    }

    /*.ms-time-wrapper .ms-drop:after,*/
    /*.cuisine-selector-wrapper .ms-drop:after,*/
    /*.district-selector-wrapper .ms-drop:after {*/
        /*position: absolute;*/
        /*top: 5px;*/
        /*right: 5px;*/
        /*background-image: url(../images/icons/icn_close@2x.png);*/
        /*background-size: 20px 20px;*/
        /*display: inline-block;*/
        /*width: 20px;*/
        /*height: 20px;*/
        /*content: "";*/
        /*cursor: pointer;*/
    /*}*/

    .ms-drop-desc {
        display: block;
    }

    .ms-drop-close{
        position: absolute;
        top: 5px;
        right: 5px;
        background-image: url(../images/icons/icn_close@2x.png);
        background-size: 20px 20px;
        display: inline-block;
        width: 20px;
        height: 20px;
        content: "";
        cursor: pointer;
    }

    .nav-items>li {
        float: none;
    }

    ul#nav-bottom li {
        float: none;
        text-align: right;
        border: 0;
    }

    ul#nav-bottom li:not(:last-child) {
        border: 0;
    }

    .btn-favourite .btn-label {
        display: none;
    }
}

/** Date Picker START */
.picker {
    min-width: 320px;
}

.picker .picker__box {
}

.picker .picker__header {
    margin: 0;
    padding: 1em;
    background: #ff9320;
    color: #FFF;
    box-sizing: content-box;
    margin-left: -1em;
    width: 100%;
}

.picker .picker__month {
    text-transform: uppercase;
    font-weight: 600;
}

.picker .picker__nav--next, .picker .picker__nav--prev {
    top: 1em;
    padding: 0;
    width: 1.2em;
    height: 1.2em;
}

.picker .picker__nav--prev, .picker .picker__nav--prev:hover {
    background: url('../images/arrow/btnleft_white@2x.png') center center no-repeat;
    -webkit-background-size: contain; background-size: contain;
}

.picker .picker__nav--next, .picker .picker__nav--next:hover {
    background: url('../images/arrow/btnright_white@2x.png') center center no-repeat;
    -webkit-background-size: contain; background-size: contain;
}

.picker .picker__nav--prev:before {
    border-right: 0;
}

.picker .picker__nav--next:before {
    border-left: 0;
}

.picker .picker__table {
    box-sizing: border-box;
}


.picker .picker__nav--next {
    right: 0.5em;
}

.picker .picker__nav--prev {
    left: 0.5em;
}

.picker .picker__weekday, .picker .picker__table, .picker .picker__day {
    text-align: center;
    color: #ff9320;
}

.picker .picker__weekday {
    font-weight: 700;
}

.picker .picker--focused .picker__day--selected, .picker .picker__day--selected, .picker .picker__day--selected:hover {
    color: #FFF;
}

.picker .picker__day--outfocus {
    color: #b0b0b0;
}

.picker .picker__day {
    padding: 10px 0;
    border-radius: 100px;
}


.picker .picker--focused .picker__day--highlighted, .picker .picker__day--highlighted:hover, .picker .picker__day--infocus:hover, .picker .picker__day--outfocus:hover {
    background: #FFC113 !important;
}

.picker--focused .picker__day--highlighted, .picker__day--highlighted:hover, .picker__day--infocus:hover, .picker__day--outfocus:hover
, .picker .picker__button--clear:hover, .picker .picker__button--close:hover, .picker .picker__button--today:hover {
    background: #FFC113 !important;
}

.picker .picker--focused .picker__day--selected, .picker .picker__day--selected, .picker .picker__day--selected:hover {
    background: #ff9320 !important;
}

.picker .picker__day--highlighted {
    background: #ff9320;
}

.picker .picker__year {
    color: #FFF;
}

.picker .picker__button--clear {
    visibility: hidden;
}

.picker__day--today:before {
    content: " ";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border-top: .5em solid #E86112 !important;
    border-left: .5em solid transparent;
}

.picker__button--today:before {
    top: -.05em;
    width: 0;
    border-top: .66em solid #E86112 !important;
    border-left: .66em solid transparent;
}

.picker .picker--focused .picker__day--disabled,.picker  .picker__day--disabled,.picker  .picker__day--disabled:hover {
    background: transparent !important;
    border: 0;
    color: #D0D0D0;
}

.picker__frame {
    border: 2px solid  #ff9320;
}

.picker .picker__input.picker__input--active{
    border-color: #E86112 !important;
}
/** Date Picker END */


/** Autocomplete style **/
.autocomplete-suggestions { color: #0a3b5d; border: 1px solid #999; background: #FFF; overflow: auto; }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: 700; color: #ff9320; }
.autocomplete-group { font-weight: 600; padding: 2px 5px; color: #BBB; font-size: 0.85em; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }

/** jit timeslot selector */
.timeslots-selector-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100001;
    width: 100px;
    height: auto;
    min-height: 160px;
    max-height: 240px;
    border: 3px solid #ff9320;
    background: #FFF;
    display: none;
    overflow-y: scroll;
}

.timeslots-selector-wrapper.show {
    display: block;
}


.timeslots-selector-wrapper .loading {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.period-wrapper {
  max-width: 360px;
  margin: 0 auto;
}

.slots {
  max-width: 260px;
  margin: 0 auto;
}

.sticky-controller {
    /*padding-top: 72px;
    margin-top: -72px;*/
    width: 100%;
}

.sticky-controller {
    width: 100%;
    padding: 0 1em 0;
    /*padding: 0;*/
    margin-top: -1em;
    margin-left: -1em;
    box-sizing: content-box;
    background: #CFCFCF;
    border-bottom: 1px solid #DDD;
}

.sticky-controller .jit-sticky-btn {
    background: transparent;
    font-size: 12px;
    border-radius: 0;
}

.sticky-controller .jit-sticky-btn.active, .sticky-controller .jit-sticky-btn:hover {
    color: #0a3b5d;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+50,ffffff+100&0+0,0.7+50,0+100 */
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 50%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.sticky-controller .input-group-btn button:hover {
  background: #0a3b5d;
  color: #FFF;
}

.mCSB_horizontal.mCSB_inside>.mCSB_container {
    margin-bottom: 0 !important;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -6px !important;
}

.affix {
    z-index: 1;
}

/** OPT modal view **/
.btn-action {
    /*padding: 2em 5%;*/
    text-align: center;
    /*background-color: #03bb91;*/
}
/*.btn-action p {
    margin: 2em 0;
    line-height: 1.6;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}*/
@media only screen and (min-width: 768px) {
    .btn-action {
        padding: 4em 10%;
    }
    .btn-action p {
        font-size: 1.8rem;
        line-height: 2;
    }
}
@media only screen and (min-width: 1170px) {
    .btn-action {
        padding: 4em 20%;
    }
}

.opt-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;
    max-width: 840px;
    max-height: 640px;
    visibility: hidden;
    opacity: 0;
    z-index: 15001;
    pointer-events: none;
    -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
    -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
    transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    flex-flow: column nowrap;
}

.opt-modal .opt-modal-title, .opt-modal .opt-modal-subtitle {
    text-align: center;
    margin: 0;
}

.opt-modal .opt-modal-subtitle {
    padding: 5px 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+51,ffffff+100&0+0,0.2+50,0+100 */
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 51%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 51%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}

.opt-modal .opt-modal-title {
    color: #FFF;
    text-transform: uppercase;
}

.opt-modal .opt-modal-title h3 {
    color: #FFF;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    overflow:hidden;
    white-space:nowrap;
    text-overflow: ellipsis;
}

.opt-modal .opt-modal-subtitle {
    color: #0a3b5d;
}

.opt-modal-wrapper {
    width: 100%;
    flex: 1;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+50,ffffff+100&1+0,0+20,0+80,1+100 */
    background: -moz-linear-gradient(-45deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 95%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 5%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 95%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 5%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 95%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}
/*.opt-modal::after {
    !* gradient overlay at bottom of modal window *!
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: transparent;
    background: -webkit-linear-gradient( bottom , #34383c, rgba(52, 56, 60, 0));
    background: linear-gradient(to top, #34383c, rgba(52, 56, 60, 0));
}*/
.opt-modal .opt-modal-content {
    height: 100%;
    width: 100%;
    padding: 0;
    /*padding: 3em 5%;*/
    border: 5px solid rgba(245, 148, 0, 0.95);
    -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;
    text-align: left;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.opt-modal.opt-modal-content-vr360 {
    max-width: 98%;
    max-height: 98%;
}

.opt-modal.content-shown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
    -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
    transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}

.opt-modal .opt-modal-header {
    padding-right: 40px;
}

.opt-modal.content-shown .opt-modal-wrapper {
    padding: 2px;
}
.opt-modal.content-shown .opt-modal-content {
    -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 768px) {
/*    .opt-modal .opt-modal-content {
        padding: 4em 10%;
    }*/
}
@media only screen and (min-width: 1170px) {
/*    .opt-modal .opt-modal-content {
        padding: 6em 20%;
    }*/
    .opt-modal p {
        font-size: 2rem;
        line-height: 2;
    }
}

@media only screen and (max-width: 767px) {
    .opt-modal {
        /*border: 10px transparent;*/
        height: 100%;
        max-height: 100%;
        max-width: 100%;
        /*padding-bottom: 80px;*/
        border-bottom: 80px solid #FFF;
    }

    .opt-modal.opt-modal-content-vr360 {
        max-width: 100%;
        max-height: 100%;
    }

    .opt-modal .opt-modal-wrapper {
        height: 100%;
        max-height: 95%;
        max-width: 95%;
        position: fixed;
        top: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);-moz-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%);-o-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);
    }

    .opt-modal .opt-modal-header {
        position: absolute;
        bottom: -80px;
        width: 100%;
        height: 80px;
        background: #0a3b5d;
        padding: 0 20px;
        padding-right: 20px;
        z-index: 1;
        -webkit-box-shadow:  -1px 0 2px #000;-moz-box-shadow:  -1px 0 2px #000;box-shadow:  -1px 0 2px #000;
    }

    .opt-modal .opt-modal-title {
        padding: 5px 0;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+50,000000+100&0+0,0.2+50,0+100 */
        background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 50%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 50%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
    }

    .opt-modal .opt-modal-subtitle {
        color: #FFF;
        padding: 0;
        background: transparent;
    }
}

.opt-modal-action {
    position: relative;
}

.opt-modal-action .opt-modal-bg {
    display: inline-block;
    height: 100%;
    background-color: rgba(245, 148, 0, 0.95);
}

/*.opt-modal-action a, .opt-modal-action .opt-modal-bg {
    display: inline-block;
    height: 4em;
    background-color: #34383c;
}
.opt-modal-action a {
    !*width: 12.5em;
    border-radius: 5em;
    color: #ffffff;
    line-height: 4em;*!
    white-space: nowrap;
    !*font-weight: 700;*!
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: color 0.2s 0.3s, width 0.3s 0s, background-color 0.3s 0s;
    -moz-transition: color 0.2s 0.3s, width 0.3s 0s, background-color 0.3s 0s;
    transition: color 0.2s 0.3s, width 0.3s 0s,  background-color 0.3s 0s;
    overflow: hidden;
}*/
.opt-modal-action a.to-circle {
    /*width: 36px;*/
    /*color: transparent;*/
    /*background-color: #f37021;*/
    -webkit-transition: color 0.2s 0s, width 0.3s 0.2s;
    -moz-transition: color 0.2s 0s, width 0.3s 0.2s;
    transition: color 0.2s 0s, width 0.3s 0.2s;
}
.opt-modal-action .opt-modal-bg {
    position: absolute;
    z-index: 15000;
    left: 50%;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translateX(-2em);
    -moz-transform: translateX(-2em);
    -ms-transform: translateX(-2em);
    -o-transform: translateX(-2em);
    transform: translateX(-2em);
    /*-webkit-transition: visibility 0s 0.5s;
    -moz-transition: visibility 0s 0.5s;
    transition: visibility 0s 0.5s;*/
}
.opt-modal-action .opt-modal-bg.is-visible {
    opacity: 1;
    visibility: visible;
}

.opt-modal .opt-modal-close {
    position: fixed;
    z-index: 15010;
    top: 0;
    right: 0;
    padding: 0 5px;
}

.opt-modal .opt-modal-close a {
    display: block;
    height: 32px;
    width: 32px;
    border: 0;
    border-radius: 50%;
    background: url(../images/icons/icn_close_w@2x.png) no-repeat center center !important;
    -webkit-background-size: cover;background-size: cover;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
    transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}

.no-touch .opt-modal-close a:hover {
    /*background-color: rgba(0, 0, 0, 0.5);*/
}
.opt-modal.content-shown .opt-modal-close a {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.no-margin {
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}


/**
 * input checkbox / radio button
 * with bootstrap
 */
.radio, .checkbox {
    padding-left: 0 !important;
    margin-top: 5px;
}

.checkbox label:after,
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #ff9320;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}

.radio .cr .cr-icon {
    margin-left: 0.04em;
}

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}

#content.search-box-advanced #restaurant_search_box #btn_advanced_search {
    display: none;
}

#restaurant_search_box #advanced_search {
    display: none;
    margin-top: 15px;
}

#content.search-box-advanced #restaurant_search_box #advanced_search {
    display: block;
}


::-ms-reveal,
::-ms-clear {
    display: none !important;
}

.hideShowPassword-toggle {
    background-color: transparent;
    background-image: url('../images/eye-wink.png');
    background-position: 0 center;
    background-repeat: no-repeat;
    border: 2px solid transparent;
    border-radius: 0.25em;
    cursor: pointer;
    font-size: 100%;
    height: 44px;
    margin: 0;
    max-height: 100%;
    padding: 0;
    overflow: hidden;
    text-indent: -999em;
    width: 46px;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.hideShowPassword-toggle-hide {
    background-position: -44px center;
}

.hideShowPassword-toggle:hover,
.hideShowPassword-toggle:focus {
    /*border-color: #ff9320;*/
    outline: transparent;
}

.pm-main {
/*    position: relative;
    min-height: 150px;*/
}

.pm-main .jit-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -32px;
    margin-left: -32px;
}

.pm-main.is-loading .jit-loading {
    /*display: block;*/
}

body.page-loading #content {
    /*display: none;*/
}

body > .main-jit-loading {
    background: rgba(255, 255, 255, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s, z-index 0s 0.5s;
    -moz-transition: opacity 0.5s, visibility 0s 0.5s, z-index 0s 0.5s;
    -ms-transition: opacity 0.5s, visibility 0s 0.5s, z-index 0s 0.5s;
    -o-transition: opacity 0.5s, visibility 0s 0.5s, z-index 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s, z-index 0s 0.5s;
}

body > .main-jit-loading > .jit-loading {
    /*display: none;*/
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);-moz-transform: translateX(-50%);-ms-transform: translateX(-50%);-o-transform: translateX(-50%);transform: translateX(-50%);
}

body.page-loading > .main-jit-loading {
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s, visibility 0s, z-index 0s;
    -moz-transition: opacity 0.5s, visibility 0s, z-index 0s;
    -ms-transition: opacity 0.5s, visibility 0s, z-index 0s;
    -o-transition: opacity 0.5s, visibility 0s, z-index 0s;
    transition: opacity 0.5s, visibility 0s, z-index 0s;
}


.slbOverlay {
    z-index: 10001;
}


.slbWrapOuter {
    z-index: 10010;
}

@media screen and (max-width: 992px) {
    .nav-bar.shrink-max {
        box-shadow: none !important;
    }
}

@media screen and (max-width: 767px){
    .opt-modal .opt-modal-close {
        right: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.3);
        padding: 10px;
    }
    .opt-modal .opt-modal-close a {
        height: 32px;
        width: 32px;
        padding: 0;
    }

    .path-finder-frame-wrapper .mfp-iframe-holder {
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-flow: column nowrap;
    }

    .path-finder-frame-wrapper .mfp-container:before {
        height: 0;
    }

    .path-finder-frame-wrapper .mfp-content {
        flex: 1;
    }
}

@media screen and (max-width: 480px){

  .timeslots-selector-wrapper {
    position: fixed;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    max-height: unset;
  }
}

.fake-fullscreen {
    position: fixed !important;
    display: block !important;
    z-index: 999999999 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

.vr-view-count {
    color: gray;
    padding: 5px;
}

.grecaptcha-badge{
    visibility: collapse !important;
}

.popup-welcome img.mfp-img {
    padding: 0;
}

.popup-welcome .mfp-figure:after {
    top: 0;
    bottom: 0;
    background: #FFF;
}

.popup-welcome .mfp-content {
    padding: 30px;
    background: #FFF;
    /*padding: 20px 30px;*/
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.popup-welcome .mfp-close {
    color: #DDD;
    text-shadow: 1px 1px 3px rgba(40, 40, 40, 1);
}
