

*{
    box-sizing:border-box;
    font-family: 'Mulish', sans-serif;
    /* overflow-x: hidden; */
}

body{
    background-image:url('../images/back7.jpg');
    width:100%;
    height:100%;
    background-position:  bottom center; 
    background-size:cover;
    background-repeat: no-repeat;
    /* overflow-x: hidden; */
}
/* scroll bar */
::-webkit-scrollbar{
    background:rgb(217, 0, 17); 
    width:4px;
    height:15px;
  }
  ::-webkit-scrollbar-thumb{
    background:rgb(217, 0, 17);
    height:10px;
  }
  ::-webkit-scrollbar-track{
    background:#FFCE00;
    height:10px;
  }

  /* scroll bar */
/* start navbar */
.Navbar{
    position:fixed;
    width:100%;
    z-index:999;
    height:90px;
    /*overflow-y:hidden;*/
    background:#FFE800;
}
.Navbar .navbar .navbar-brand{
  margin-top:-5px;
}
.Navbar .navbar .navbar-nav .nav-item{
    padding:0px 15px;
    position:relative;
}
.Navbar .navbar .navbar-nav .nav-item:after{
    content: " ";
    position:absolute;
    left:50%;
    bottom:0px; 
    transform:translateX(-50%) scaleX(0);
    transform-origin: 50% 50%;
    width:80%;
    height:2px;
    background-color: #E53637;
    transition: 0.4s ease-in-out;
}
.Navbar .navbar .navbar-nav .nav-item:hover::after{
    transform: translateX(-50%) scaleX(1);
}
.Navbar .navbar .navbar-nav .nav-item .nav-link{
    color:#000;
    font-weight:bold;
    font-size:16px;
}
.Navbar .navbar .navbar-nav .nav-item.active .nav-link{
    color:rgb(217, 0, 17)
}
.Navbar .navbar .navbar-nav .nav-item:hover .nav-link{
    color:rgb(217, 0, 17)
}
.Navbar .navbar .right img{
    width:35px;
    height:35px;
    border-radius:50%;
    cursor: pointer;
}
.Navbar .navbar .right a{
    text-decoration: none;
}
.Navbar .navbar .right span{
    color:#D9000D;
    font-weight:bold;
    margin-left:15px;
    font-size:16px
}
@media (max-width: 991px) {
    .Navbar{
        display:none;
    }
}
/* end navbar */

/* side bar */

.bars {
    display: none;
    margin-right: 20px;
    cursor: pointer;
    font-size: 25px;
    background-color: #FFE800;
    color: #fff;
    width: 100%;
    height:70px;
    padding: 5px 15px;
    overflow-y:hidden
  }
  .bars .navbar-brand {
    color:#000;
    font-size:25px;
}
.bars .navbar-brand span{
    color:rgb(217, 0, 17);
    font-size:25px;
}
  .bars svg {
    float:right;
    font-size: 25px;
    margin-top:20px;
    color:#000;
  }
  .bars span {
    font-size: 15px;
  }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transition: 0.5s ease-in-out;
    z-index: 100000;
    transform: translate(-100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding:10px 20px;
  }
  .sidebar .close {
    position: absolute;
    right: 20px;
    top: 30px;
    font-size: 30px;
    color: #FFCE00;
    z-index: 10000;
    outline: none;
  }
  .sidebar li a {
    color: #fff;
    font-size: 20px;
    margin-bottom:20px;
    position:relative;
  }
  .sidebar li a:hover {
    color: #FFCE00;
  }
  .sidebar li.active a {
    color: #FFCE00;
  }
 
  .sidebar li a:after{
    content: " ";
    position:absolute;
    left:50%;
    bottom:0px; 
    transform:translateX(-50%) scaleX(0);
    transform-origin: 50% 50%;
    width:100%;
    height:3px;
    background-color: #FFCE00;
    transition: 0.4s ease-in-out
}
.sidebar li a:hover::after
{
    transform: translateX(-50%) scaleX(1); 
}
  .sidebar .right img{
    width:40px;
    height:40px;
    border-radius:50%;
    cursor: pointer;
    display:block;
}
.sidebar .login{
    width:120px;
    height:40px;
    background-color:rgb(217, 0, 17);
    outline:none;
    border:none;
    border-radius:20px;
    color:#fff;
    font-weight:bold;
    margin-bottom:15px
}
.navbar .login:focus{
    outline:none;
}
.show-sidebar {
    transform: translate(0);
  }

 @media (max-width: 991px) {
    .bars {
      display: block;
    }
  }
/* end sidebar */

/* start restaurant info */
.restaurant-info{
    padding:180px 50px 20px 10px;
    position: relative;
}
.restaurant-info:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-image: url('../images/Group\ 43.png');
    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;
  }
.restaurant-info:after{
    position:absolute;
    content: '';
    width:100%;
    height:2px;
    background-color:#ccc;
    bottom:0;
    left:0;
}
.restaurant-det
{
    margin-left:100px;
}
.restaurant-info .restaurant-det img{
    width:120px;
    height:120px;
}
.restaurant-info .restaurant-det h5{
    color:#0C3653;
    font-weight: bold;
    font-size:17px;
    font-family:Georgia, 'Times New Roman', Times, serif
}
.restaurant-info .restaurant-det p{
    font-size:14px;
    color:#AEB2B4;
    word-break:break-all;
}
.restaurant-info .restaurant-det .stars-rating svg{
    color:#ffa534;
    font-size:12px;
}
.restaurant-info .restaurant-det .order-det span{
    color:#737373;
    font-size:11px;
}
span.badge.badge-warning {
    position: absolute;
    top: 12px;
    right: 5px;
    font-size: 11px;
}
@media(max-width: 991px){
    .restaurant-info{
        padding:50px 10px 10px ;
    }
    .restaurant-det
    {
        margin-left:0;
    }
    .restaurant-info .restaurant-det .order-det span{
        font-size:9px;
    }
}
@media(max-width:580px){
    .restaurant-info .restaurant-det h5{
    font-size:13px;
}
}
/* end restaurant info */
 /* start resturant status */
.resturant-status p{
    color:green;
    font-size:16px;
}
@media(max-width:991px){
    .resturant-status p{
        text-align: center;
    }
}
 /* end resturant status */
 
/* start payment method */
.payment{
    margin-left:100px;
    text-align: center;
}
.payment h5{
    color:#707070;
    font-size:20px;
    margin-bottom:20px;
    overflow: hidden;
}
.payment .payment-items img{
    width:200px;
}
@media(max-width: 991px){
    .payment{
        margin-top:20px;
        margin-left:10px;
    }
}
/* end payment method */


/* start restaurant menu select*/
.restaurant-menu{
    position:relative
}
.restaurant-menu:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url('../images/lcz9nxhoslo-brooke-lark.png');
    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;
  }
  .restaurant-menu .restaurant-menu-select{
    padding:20px 5px;
}
.restaurant-menu .restaurant-menu-select a{
    padding:0 10px;
    color:#737373;
    font-size:15px;
    font-weight:thin;
    cursor: pointer;
    position:relative;
    text-decoration: none;
}
.restaurant-menu .restaurant-menu-select a.active:after{
    position:absolute;
    content:'';
    top:25px;
    left: 10px;
    width:80%;
    height:2px;
    background-color: #D9000D;
}
.restaurant-menu-select a.active{
    color:#D9000D;
    font-weight:bold;
}
.restaurant-menu-select .search-box{
    margin-top:30px;
    text-align: start;
    position:relative
}
.restaurant-menu-select .search-box svg{
    position:absolute;
    left:230px;
    top:11px;
    color:#2E4765
}
.restaurant-menu-select input{
    width:250px;
    height:40px;
    border:none;
    background:#F4F9FF;
    outline:none;
    border-radius:20px;
    padding-left:30px;
    margin-top:10px;
}
.restaurant-menu-select input::placeholder{
    color:#2E4765;
    font-size:15px;
}
@media(max-width:767px){
    .restaurant-menu-select input{
        margin-top:20px;
    }
}
.restaurant-menu .restaurant-offers-meals .card-body{
    padding:15px
}
.restaurant-menu .restaurant-offers-meals a{
    text-decoration: none;
}
.restaurant-menu .restaurant-offers-meals p{
    color:#707070;
    font-size:12px;
    margin-top:5px;
}
.restaurant-menu .restaurant-offers-meals .offer-desc span{
    margin-bottom:15px
}
.restaurant-menu .restaurant-offers-meals .offer-desc span:first-of-type{
    color:#0C3653;
    font-weight:bold;
    font-size: 11px;
}
.restaurant-menu .restaurant-offers-meals .offer-desc span:last-of-type {
    /*float: right;*/
    color: #F98169; 
    font-weight: bold;
    font-size:11px
}
@media(max-width: 991px){
    .restaurant-menu-select{
        padding:20px 0px;
    }
    .restaurant-menu .restaurant-menu-select span{
        padding:0px 5px;
        font-size:12px;
    }
    .restaurant-menu .restaurant-offers-meals .offer-desc span:first-of-type{
        font-size:12px
    
    }
    .restaurant-menu .restaurant-offers-meals .offer-desc span:last-of-type {
        font-size:11px
    }
    .restaurant-menu-select input{
        margin-left:10px;
        max-width:100%;
        height:35px;
    }
    .restaurant-menu .restaurant-menu-select span.active:after{
        left: 10px;
        width:70%;
        height:2px;
    }
    .restaurant-menu .restaurant-menu-select a{
        font-size:11px;
    }
    .restaurant-menu-select .search-box svg{
        display: none;
    }
} 
@media(max-width:580px){
    .restaurant-menu .restaurant-offers-meals .offer-desc span:last-of-type {
        display:block;
        font-size: 10px;
    }
}
@media(max-width: 372px){
    .restaurant-menu-select{
        padding:20px 0px;
    }
    .restaurant-menu .restaurant-menu-select span{
        padding:0px 2px;
        font-size:10px;
    }
    .restaurant-menu-select input{
        margin-left:5px;
        max-width:100%;
        height:35px;
    }
} 
/* end restaurant menu  select */



/* start restaurant menu  shuffle */
.restaurant-menu-shuffle
{
    margin-top:20px;
}
.restaurant-menu-shuffle ul li{
    display:inline-block;
    background-color:#F4F9FF;
    font-weight:thin;
    color:#2E4765;
    border-radius:20px;
    font-size:12px;
    padding:6px 5px;
    cursor: pointer;
    transition:0.3s ease-in-out
}
.restaurant-menu-shuffle ul li:hover,
.restaurant-menu-shuffle ul li.active{
    background:#E53637;
    color:#fff;
}

@media (max-width: 991px) {
    .restaurant-menu-shuffle ul li:first-of-type{
        margin-left:0px;
    }
    .restaurant-menu-shuffle ul li{
        margin-bottom:3px;
        font-size:11px;
    }
}
/* end restaurant menu  shuffle */


/* start restaurant Meals */
.restaurant-menu-meals,
.restaurant-offers-meals{
    margin-top:50px;
    overflow:hidden;
}
.restaurant-menu-meals .card,
.restaurant-offers-meals .card{
    margin-bottom:20px;
    border-radius:8px;
    overflow:hidden;
    min-height:240px
}
.restaurant-menu-meals .card img,
.restaurant-offers-meals .card img{
    object-fit: cover;
    width: 100%;
    min-height: 88px;
    max-height:130px;
}
.restaurant-menu-meals .card .order-desc,
.restaurant-offers-meals .card .order-desc{
    margin-bottom:10px
}
.restaurant-menu-meals .card .order-desc del{
    display:inline-block;
}
.restaurant-menu-meals .card .order-desc span:first-of-type,
.restaurant-offers-meals .card .order-desc span:first-of-type{
    padding-right:20px;
    font-size:12px;
    color:#0C3653;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight:bold;
    display: block;
}
.restaurant-menu-meals .card .order-desc span:last-of-type,
.restaurant-offers-meals .card .order-desc span:last-of-type
{
    color:#F98169;
    font-size:14px;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight:bold;
}
.restaurant-menu-meals .card button,
.restaurant-offers-meals .card button{
    background:#ffcc00;
    color:#fff;
    border:none; 
    height:35px;
    border-radius:5px;
    max-width:150px;
    font-size:10px;
    outline:none
}
.restaurant-menu-meals .card .order-quantity input,
.restaurant-offers-meals .card .order-quantity input{
    display:inline-block;
    width:40px;
    height:10px;
    line-height:10px;
    border-radius:10px;
    text-align: center;
    padding:10px;
    background-color:#fff;
    border:none;
    outline:none;
}
@media (max-width:570px){
    .restaurant-menu-meals .card .order-desc span:first-of-type,
    .restaurant-offers-meals .card .order-desc span:first-of-type{
        padding-right:0px;
        font-size:9px;
    }
    .restaurant-menu-meals .card .order-desc span:last-of-type,
    .restaurant-offers-meals .card .order-desc span:last-of-type
    {
        font-size:10px;
    }
    .restaurant-menu-meals .card .order-desc del{
        font-size:8px;
        display:block;
    }
    .restaurant-menu-meals .card button,
    .restaurant-offers-meals .card button{
        width:100%
    }
}

/* end restaurant Meals */


/* start delivery */
.delivery{
    padding-top:25px;
    margin-bottom:20px
}
.delivery h3{
    color: #2E4765;
    font-size:17px;
    margin-bottom:15px;
    overflow:hidden;
}
.delivery img{
    object-fit: cover;
    width:50%;
    overflow:hidden;
}
.delivery p{
    margin-top:15px;
    color:#EF4C00;
    font-size:30px;
    font-weight:bold;
}
.delivery p sup,
.delivery p sub{
    font-weight:normal;
    font-size:20px
}
/* end delivery */


/*  start restaurant cart  */
.restaurant-cart{
    padding:50px 20px;
    position:relative
}
.restaurant-cart .cart{
  background:#E5E5E5;
  border-radius:15px;
}
.restaurant-cart .cart h5{
    background-color:#FFE800;
    padding:10px;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight:bold;
}
.restaurant-cart .coupon-code h3{
    font-size:18px;
    font-weight:bold;
    margin-bottom:20px
}
.restaurant-cart .coupon-code {
    position: relative;

}
.restaurant-cart .coupon-code input{
    position:relative;
    font-size: 14px;
    color: #b7b7b7;
    height: 50px;
    width: 100%;
    border: 1px solid #e1e1e1;
    padding-left: 20px;
    outline: none;
    padding-right:20px;
}
.restaurant-cart .coupon-code button{
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    background: #FFE800;
    padding: 0 15px;
    border: none;
    position: absolute;
    right: 0;
    top: 0px;
    height: 49px;
}
.restaurant-cart .coupon-code button:focus{
    outline: none;
}
.restaurant-cart .coupon-code .tips-btn{
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    background: #FFE800;
    padding: 0 15px;
    border: none;
    position: absolute;
    right: 0;
    top: 0px;
    height: 49px;
}
.restaurant-cart .cart .frist-order span:first-of-type{
    color:#4A4A4A;
    font-size:19px;
    font-weight:thin;
    margin:auto;
    margin-bottom:10px;
}
.restaurant-cart .cart .frist-order .delete{
    display: block;
    margin-left:20px;
    font-size:11px;
    color:#555;
    cursor: pointer;
}
.restaurant-cart .cart .frist-order .order-quantity{
    margin-top:10px;
    overflow:hidden;
    margin-left:30px;
}
.restaurant-cart .cart .frist-order button{
    background:#ffcc00;
    color:#000;
    border:none;
    border-radius:15px;
    width: 30px;
    height: 35px;
    line-height: 34px;
    font-size: 20px;
    font-weight:bold;
    outline:none;
    text-align: center !important;
}
.restaurant-cart .cart .frist-order .order-quantity input{
    display:inline-block;
    width:40px;
    height:30px;
    line-height:30px;
    border-radius:10px;
    text-align: center;
    padding:10px;
    background-color:#E5E5E5;
    color:#000 !important;
    border:none;
    outline:none;
}
.restaurant-cart .cart table{
    margin-left:15px
}
.restaurant-cart .cart table tr th{
    font-size:10px;
    color:#888888;
}
.restaurant-cart .cart table tr td{
    /* float:left; */
    font-size:12px;
    color:#4A4A4A;
    display: block;
    margin-bottom: -15px;
}
.restaurant-cart .cart table tr td li{
    list-style-type: none;
}
.restaurant-cart .cart .order-other-info{
    background-color:#fff;
    padding:25px;
    margin-bottom:20px;
}
.restaurant-cart .cart .order-other-info .subtotal,
.restaurant-cart .cart .order-other-info .service{
    margin-bottom:10px;
}
.restaurant-cart .cart .order-other-info span{
    font-size:11px;
    font-weight: bold;
}
.restaurant-cart .cart .order-other-info .subtotal span:first-of-type,
.restaurant-cart .cart .order-other-info .service span:first-of-type,
.restaurant-cart .cart .order-other-info .total span:first-of-type{
    padding:0px 70px 0 0;
}
.checkout-button{
    margin-bottom: 15px;
}
.checkout-button button{
    background-color:#D9000D;
    color:#fff;
    width:190px;
    height:50px;
    border:none;
    border-radius:25px;
    font-size:15px;
    outline:none;
    margin-bottom:20px;
}
.checkout-button button:focus{
    outline: none;
}
@media(max-width: 991px){
    .restaurant-cart{
        margin:auto;
        max-width:100%;
        padding:50px 20px;
    }
}
/*  end restaurant cart  */

/* start our-reviews */
.restuarant-reviews .reviews-comment {
    border:1px solid #f2f3f5;
    padding:10px 8px;
    background-color: #f2f3f5;
    margin-bottom:15px;
    max-height: 400px;
    min-height: 155px;
}
.restuarant-reviews img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit: cover;
}
.restuarant-reviews h5{
    color:#333;
    font-size:14px;
    display: inline-block;
    overflow: hidden;
    font-weight: bold;
    text-transform: capitalize;
}
.restuarant-reviews .stars-rating{
    display: inline-block;
    float: right;
    font-size:13px;
}
.restuarant-reviews .stars-rating .full-star,
.restuarant-reviews .stars-rating .haif-star
{
    color:#FFD700
}
.restuarant-reviews .stars-rating .no-star{
    color:#222
}
.restuarant-reviews .date{
    font-size:11px;
}
.restuarant-reviews p{
    font-size:12px;
    color:#888
}
/* end our-reviews */


/* start modal for offers */
.offers-modal .modal-body h5{
    display: inline-block;
}
.offers-modal .price{
    display: inline-block;
    color:#D9000D;
    float:right;
    font-weight:bold
}
.offers-modal .modal-body ul li span{
    font-size:12px;
}
/* start modal for offers */

/* start model extra items */
.location-modal .modal-header{
    background-color:#F8F8F8;
    width: 100%;
    overflow:hidden;
}
.location-modal .modal-header h5{
    color:#000;
    font-weight:bold;
    font-size:15px;
}
.location-modal .modal-header .price-of-choice{
    color:#D9000D;
    font-weight:bold;
}
.location-modal .modal-body{
    padding:20px;
    overflow:hidden;
}
.location-modal .modal-body h3 {
    color:#0C3653;
    font-size:16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight:bold;
    display:inline-block;
}
.location-modal .modal-body .order-quantity{
    display:inline-block;
    float:right;
}
.location-modal .modal-body .order-quantity button{
    background:#ffcc00;
    color:#000;
    border:none;
    border-radius:15px;
    width:25px;
    font-size:15px;
    font-weight:bold;
    outline:none
}
.location-modal .modal-body .order-quantity input{
    display:inline-block;
    width:40px;
    height:30px;
    line-height:30px;
    border-radius:10px;
    text-align: center;
    padding:10px;
    background-color:#fff;
    color:#000 !important;
    border:none;
    outline:none;
}
form{
    /* padding:20px; */
}
form .form-check{
    padding: 5px 15px;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 20px;
}
form .form-check label{
    color:#808080;
    font-size:15px;
}
form .form-check span{
    color:#808080;
    padding-left:70px;
}
.location-modal textarea{
    outline:none;
    margin-left: 15px;
    margin-top: 10px;
}
.location-modal .modal-button{
    margin-top:15px;
}
.location-modal .modal-button button{
    background-color:#D9000D;
    color:#fff;
    width:auto;
    height:40px;
    border-radius:25px;
    outline:none;
    border:none;
    margin:0 auto;
    text-align: center;
    display: block !important;
    margin-bottom:20px;
}
@media(max-width:450px){
    .location-modal .modal-button button{
        font-size:11px;
    }
}
/* end model extra items */
/* scrollIcon */
#scroll
{
    width:33px;
    height:33px;
    border-radius:50%;
    position:fixed;
    right:17px;
    bottom:30px;
    z-index:9999;
    background:#FFCE00;
    cursor: pointer;
    display: none;
}
.scrol
{
    position:relative;
    left:8px;
    top:6px;
    font-size:19px;
}
/* scrollIcon */







/* start countdown */

.countdown-label {
    font: thin 15px Arial, sans-serif;
      color: #65584c;
      text-align: center;
      text-transform: uppercase;
      display: inline-block;
    letter-spacing: 2px;
    margin-top: 9px;
  }
  #countdown{
    box-shadow: 0 1px 2px 0 rgb(1 1 1 / 40%);
    width: 135px;
    height: 50px;
    text-align: center;
    background: #f1f1f1;
    border-radius: 5px;
    margin: auto;
    overflow: hidden;
    overflow-y: hidden;
}
  
  
  
  
  
  #countdown #tiles{
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 0px #ccc;
    display: inline-block;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 16px;
    border-radius: 5px 5px 0 0;
    font-size: 15px;
    font-weight: thin;
    display: block;
}
      
  
  
  .color-full {
    background: #53bb74;
  }
  .color-half {
    background: #ebc85d;
  }
  .color-empty {
    background: #e5554e;
  }
  
  #countdown #tiles > span{
      width: 70px;
      max-width: 70px;
  
      padding: 18px 0;
      position: relative;
  }
  
  
  
  
  
  #countdown .labels{
      width: 100%;
      height: 25px;
      text-align: center;
      position: absolute;
      bottom: 8px;
  }
  
  #countdown .labels li{
      width: 102px;
      font: bold 15px 'Droid Sans', Arial, sans-serif;
      color: #f47321;
      text-shadow: 1px 1px 0px #000;
      text-align: center;
      text-transform: uppercase;
      display: inline-block;
  }
/* end countdown */

.openGreen
{ 
    color:green
}

.closedRed{
    color:red 
}
