body {
    background: rgb(250, 250, 250);
    padding-bottom: 80px;
    min-width:320px;
}

.bg-grad {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fe2b38+0,f87b0e+100 */
    background: #ff0011;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #fe2b38 0%, #f87b0e 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #fe2b38 0%, #f87b0e 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #fe2b38 0%, #f87b0e 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe2b38', endColorstr='#f87b0e', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.theme-font
{
    color: #ff1e00;
}

@keyframes  zoomanimation {
    0% {
        transform: scale(1,1);
        color: #ddd;
    }
    50% {
        transform: scale(1.3,1.3);
        color: #fe2b38;
    }
    100% {
        transform: scale(1,1);
        color: #ddd;
    }
}


.jumbotron {
    padding-bottom: 90px;
    padding-top: constant(safe-area-inset-top);
        padding-top: env(safe-area-inset-top);
}

.jumbotron .container{
    padding-top:7px;
}

h1 {
    font-weight: bold;
    color: #fe2b38;
    font-size: 1.8rem;
    margin-bottom: 0;
}

h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: bold;
    font-weight: bold;
    color: #fe2b38;
    text-align:center;
}

.company-box {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    margin-top: -100px;
    padding: 10px;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.05);
}

.company-box img {
    max-width: 100%;
    max-height: 150px;
    width: 150px;
    object-fit: contain;
}

.search-box {
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    margin-top: -60px;
    padding: 10px;
}

.category-box {
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
    padding: 8px 10px;
    color: #000;
    font-weight:bold;
    font-size: 0.8rem;
    text-align: center;
    cursor:pointer;
}

.food-box {
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.05);
    margin-bottom: 5px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    cursor:pointer;
}

.food-box img {
    max-width: 100%;
    max-height: 55px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.food-box h3 {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: bold;
}

.food-box p {
    margin-bottom: 0;
    color: #fe2b38 !important;
    font-weight: bold;
    font-size: 0.65rem;
}

.food-box .price {
    margin-bottom: 0;
    background: #00c40a !important;
    color: #fff;
    font-weight: bold;
    padding: 1px 10px;
    border-radius: 10px;
    margin-right: 5px;
    text-align: center;
    margin-top: 3px;
    display: inline-block;
    font-size: 0.8rem;
}


.hotel-box {
    box-shadow: 0 7px 7px rgba(0, 0, 0, 0.05);
    margin-top: 8px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.hotel-box img {
    max-width: 100%;
    max-height: 40px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.hotel-box h3 {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: bold;
    text-align:left;
    color:#222;
}

.hotel-box p {
    margin-bottom: 0;
    color: #fe2b38 !important;
    font-weight: bold;
    font-size: 0.65rem;
    text-align:left;
}

#hotel-results a, #hotel-results a:active, #hotel-results a:focus {
    text-decoration: none !important;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
    color: #fe2b38 !important;
    border: 1px solid rgb(230, 230, 230);
}

.form-control:focus {
    border: 1px solid #fe2b38;
    font-weight: bold;
}

::placeholder {
    color: #fe2b38 !important;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fe2b38 !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fe2b38 !important;
}

.action-icons .icon
{
    background: #f87b0e;
    color:#fff;
    padding:5px;
    margin-left:5px;
    border-radius:50%;
    height:35px;
    width:35px;
    text-align:center;
    cursor:pointer;
}

.category-scroll {
    overflow-x: auto;
    max-width: 100%;
    display:flex;
    overflow-y:hidden;
    padding: 20px 0;
    padding-left:10px;
}

.category-scroll .category
{
    padding:3px 10px;
    border-radius:5px;
    max-height:30px;
    margin-right:5px;
    background: #fff;
    color:#fe2b38;
    display: inline-block;
    flex-shrink:0;
    cursor:pointer;
    border:1px solid #fe2b38;
}

.category-scroll .category.active, .category-box:hover, .category-box.active
{
    background: #fe2b38;
    color:#fff;
}

.menu-btn-mobile .fa{
    animation: zoomanimation 1s infinite ;
}

footer {
    box-shadow: 0 -4px 10px 0 rgba(0, 37, 93, .05);
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

footer .fa {
    color: #fe2b38;
    font-size: 30px;
}

footer .fa-middle {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    border: 10px solid rgb(250, 250, 250);
    margin: 0 auto;
    margin-top: -60px;
    padding: 20px;
}

footer .fa-middle .fa {
    color: #fff;
}



#mobile-menu {
    display: block;
    position: fixed;
    bottom: 0;
    background: #fff;
    box-shadow: 0 -8px 20px 0 rgba(0, 37, 93, .15);
    border-radius: 40px 40px 0 0;
    left: 0;
    width: 100%;
    padding: 20px;
    padding-bottom: 40px;
    padding-top: 20px;
    z-index: 1005;
}

#mobile-menu .row {
    max-height:70vh;
    overflow-y: auto;
}

.mobile-menu-container
{
    font-size: 1.5rem;
}

#mobile-menu {
    display: block;
    position: fixed;
    bottom: 0;
    background: #fff;
    box-shadow: 0 -8px 20px 0 rgba(0, 37, 93, .15);
    border-radius: 40px 40px 0 0;
    left: 0;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    padding-bottom: 40px;
    padding-top: 20px;
    z-index: 9999999;
}

#mobile-menu .row {
    max-height:90vh;
    overflow-y: auto;
}

@media all and (min-width:500px)
 {
    #mobile-menu {
        display: block;
        position: fixed;
        bottom: 70px;
        background: #fff;
        box-shadow: 0 -8px 20px 0 rgba(0, 37, 93, .15);
        border-radius: 40px;
        left: 50%;
        margin-left:-225px;
        width: 450px;
        padding: 20px;
        z-index: 9999999;
    }
    
    #mobile-menu .row {
        max-height:80vh;
        overflow-y: auto;
    }    

    .btn-cart-menu
    {
        border-radius: 0 0 40px 40px;
    }
 }

.mobile-nav-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 1002
}

.search-hidden
{
    display:none !important;
}

.hotel-result
{
    padding: 4px 10px;
    background: rgb(250, 250, 250);
    text-align:center;
    cursor:pointer;
    border-radius: 5px;
    border-left: 5px solid #fe2b38;
    margin-top:5px;
}

.join-box {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    margin-top: -100px;
    padding: 10px;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.05);
}

.join-box img {
    max-width: 100%;
    max-height: 150px;
    object-fit: cover;
}

.join-box .food h3{
    color: #fe2b38 !important;
    font-size: 1rem;
}

.join-box p {
    color: rgb(61, 61, 61) !important;
    font-weight: normal !important;
    font-size: 1rem;
    margin-top: 5px;
}


.join-box .btn
{
    color: #fff;
    width:90%;
    max-width:400px;
    font-size:16px;
    outline: none;
    border: none;
    margin-top: 10px;
}

#food-details-cont img{
    width:100%;
    max-width: 100%;
    max-height: 200px;
    height:200px;
    object-fit: cover;
    border-radius: 40px;
}

#food-details-cont h3{
    font-weight: bold;
    color: #fe2b38;
    font-size: 2rem;
    margin-bottom:0;
}

#food-details-cont .price {
    margin-bottom: 0;
    background: #009c15 !important;
    color: #fff;
    font-weight: bold;
    padding: 1px 20px;
    border-radius: 10px;
    margin-right: 5px;
    text-align: center;
    margin-top: 3px;
    display: inline-block;
    font-size: 2rem;
}

#reader video{
    width: 100%;
}