 .bg-image{
    height: 200px;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: ;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.bg-image .title{
    position: absolute;
    margin-top: 80px;
    left: 100px;
    position: absolute;
    left: 4rem;
    font-size: 5rem;
    z-index: 2;
    margin-bottom: 0;
    color: white;
}
.panel-heading{
   padding: unset;
   background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.menu-grid-item {
    line-height: 1.2;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 14px;
    transform: translate3d(0, 0, 0);
    margin-bottom: 15px;
}
.menu-grid-item h6{
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 15px;
    padding-left: 10px
}
.menu-grid-item .text-muted p{
   font-size: 16px;
   font-weight: 500;
   margin-bottom: 10px;
   padding-left: 10px;
}
.add-to-cart-button-div{
    position: absolute; 
    bottom: 15px; 
    padding-left: 10px;
}
.menu-grid-item img {
    object-fit: cover !important;
    background-size: cover !important;
    border-radius: 13px;
}
.text-muted {
    color: #a4a7a9 !important;
}
.add-to-cart-button{
   text-align: right;
}
#panel-cart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    width: 370px;
    z-index: 950;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1)
}

@media only screen and (max-width: 575px) {
    #panel-cart {
        width: 100%
    }
}

#panel-cart.show {
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0)
}

#panel-cart .panel-cart-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 90px;
    overflow: auto;
    z-index: 2;
    background-color: #fff
}

#panel-cart .panel-cart-title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 1.5rem;
    background-color: #f3f4f4
}

#panel-cart .panel-cart-title .title {
    margin-bottom: 0
}

#panel-cart .panel-cart-title .close {
    margin-left: auto
}

#panel-cart .panel-cart-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
    z-index: 3
}

#panel-cart .panel-cart-action:hover,
#panel-cart .panel-cart-action:focus {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}


.table-cart {
    line-height: 1.25;
    width: 100%
}

.table-cart th,
.table-cart td {
    vertical-align: middle;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0
}

.table-cart .title .name {
    font-weight: 500;
    display: block
}

.table-cart .price {
    font-weight: 500
}

.table-cart .actions {
    white-space: nowrap
}
.modal.left .modal-dialog,
   .modal.right .modal-dialog {
      position: fixed;
      margin: auto;
      width: 370px;
      height: 100%;
      -webkit-transform: translate3d(0%, 0, 0);
          -ms-transform: translate3d(0%, 0, 0);
           -o-transform: translate3d(0%, 0, 0);
              transform: translate3d(0%, 0, 0);
   }
@media only screen and (max-width: 575px) {
    .modal.left .modal-dialog,
   .modal.right .modal-dialog {
         width: 100%;
   }
}
   .modal.left .modal-content,
   .modal.right .modal-content {
      height: 100%;
      overflow-y: auto;
   }
   
   .modal.left .modal-body,
   .modal.right .modal-body {
      padding: 15px 15px 80px;
   }

/*Left*/
   .modal.left.fade .modal-dialog{
      left: -320px;
      -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
         -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
           -o-transition: opacity 0.3s linear, left 0.3s ease-out;
              transition: opacity 0.3s linear, left 0.3s ease-out;
   }
   
   .modal.left.fade.in .modal-dialog{
      left: 0;
   }
        
/*Right*/
   .modal.right.fade .modal-dialog {
      right: -320px;
      -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
         -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
           -o-transition: opacity 0.3s linear, right 0.3s ease-out;
              transition: opacity 0.3s linear, right 0.3s ease-out;
   }
   
   .modal.right.fade.in .modal-dialog {
      right: 0;
   }
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(10, 10, 10,.4), rgba(0, 0, 0,.4));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#productviewresponce .modal-header {
    padding: unset;
}
.modal-product-details {
    background-color: #f3f4f4;
    padding: 1.5rem 2rem;
}

.modal-product-details h6{
    font-size: 28px;
}
.card-checkout{
    padding: 30px 30px 30px 30px;
    border: 1px solid #ddd;
    background-color: white;
    margin-bottom: 20px;
}

.ordernowbutton{
    transform:translateY(-50%); 
    color:#fff; background:#E34B37; 
    border-color:#E34B37;
    margin-top: 30px;
}
.menu-grid-item{
    min-height: 400px;
}
.cart-header-sidebar{
        background-color: #f3f4f4;
}
.panel-cart-content{

        padding: 14px 0px 0px 0px !important;
}
.cart-summary {
    padding: 1.5rem;
}
.form-control {
    height: 55px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-color: #e0e0e0;
    font-weight: 300;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    -webkit-box-shadow: inset 1px 1px 2px 0 rgba(40, 43, 46, 0.06);
    -moz-box-shadow: inset 1px 1px 2px 0 rgba(40, 43, 46, 0.06);
    box-shadow: inset 1px 1px 2px 0 rgba(40, 43, 46, 0.06);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.form-control:focus {
    border-color: #f5b96c;
    -webkit-box-shadow: inset 1px 1px 2px 0 rgba(221, 174, 113, 0.1);
    -moz-box-shadow: inset 1px 1px 2px 0 rgba(221, 174, 113, 0.1);
    box-shadow: inset 1px 1px 2px 0 rgba(221, 174, 113, 0.1)
}

.form-control.error {
    border-color: #f6cdcd;
    background-color: #fefcfc
}

.form-control:-ms-input-placeholder {
    color: inherit;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: .5
}

.form-control:-moz-placeholder {
    color: inherit;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: .5
}

.form-control::-moz-placeholder {
    color: inherit;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: .5
}

.form-control::-webkit-input-placeholder {
    color: inherit;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: .5
}

.form-control-sm {
    padding: 0.75rem;
    font-size: 0.9rem;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.form-control-lg {
    padding: 1.75rem;
    font-size: 1.2rem;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.dark .form-control {
    border-color: #fff
}

.select-container {
    position: relative
}

.select-container:after {
    position: absolute;
    top: 50%;
    display: block;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    right: 13px;
    font-size: 0.8rem;
    color: #383c40;
    font-family: themify;
    content: "\e62a"
}
label {
    font-weight: 400
}
.input-group .btn:hover,
.input-group .btn:focus,
.input-group .btn:active,
.input-group .btn:focus:active {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.input-group-btn:not(:first-child)>.btn,
.input-group-btn:not(:first-child)>.btn-group {
    margin-left: -2px
}
.custom-radio .custom-control-input+.custom-control-indicator {
    top: 0.1em;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background-color: #fff
}

.custom-radio .custom-control-input+.custom-control-indicator>svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.custom-radio .custom-control-input+.custom-control-indicator>svg>path {
    stroke: #f5b96c;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all 0.25s ease-out
}

.custom-radio .custom-control-input:checked+.custom-control-indicator>svg>path {
    stroke-dashoffset: 0
}

.custom-radio .custom-control-input:focus+.custom-control-indicator {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: #cacaca
}

.custom-checkbox .custom-control-input+.custom-control-indicator {
    top: 0.1em;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.5rem;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border: 2px solid #e0e0e0;
    background-color: #fff
}

.custom-checkbox .custom-control-input+.custom-control-indicator>svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.custom-checkbox .custom-control-input+.custom-control-indicator>svg>path {
    stroke: #f5b96c;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all 0.25s ease-out
}

.custom-checkbox .custom-control-input:checked+.custom-control-indicator>svg>path {
    stroke-dashoffset: 0
}

.custom-checkbox .custom-control-input:focus+.custom-control-indicator {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}
.add-tip-button{
    border-color: #f5b96c;
    background-color: #f5b96c;
    color: #fff;
    height: 55px;
    padding: 16px;
}
.tipbutton span{
    position: relative;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    padding: 0.75rem 2rem 1rem;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all 0.25s ease-out;
    outline: none;
    border-width: 2px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    cursor: pointer;
}
.tipbuttonactive{
    border-color: #4aa36b;
    background-color: #4aa36b;
    color: #fff;
}
.tipbuttoninactive{
    border-color: #f5b96c;
    background-color: #f5b96c;
    color: #fff;
}