
/**
Menu Page Phone  category opening
**/
.menu-section-nikhil .menu-1.box-grey .menu-cat .items-row {
    display: none;
}
.menu-1.on-phone-opened {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-bottom: 42px;
    bottom: 0;
    display: block!important;
    align-content: revert!important;
    animation: slideInFromBottom 0.4s ease-out forwards;
}
.menu-1.on-phone-closing {
    animation: slideOutToBottom 0.3s ease-in forwards;
}
.menu-1.menu-cat-wrapper  {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.byteaeat-menu-toggle-cat svg{
    display: none;
}
.menu-1.on-phone-opened .byteaeat-menu-toggle-cat {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu-1.on-phone-opened .byteaeat-menu-toggle-cat,
.menu-1.on-desktop-opened .byteaeat-menu-toggle-cat {
  position: sticky;
  top: -16px;
  left: 0;
  background: white;
  z-index: 2;
}
.menu-1.on-phone-opened .byteaeat-menu-toggle-cat svg {
    display: block;
}

.menu-1.on-phone-opened .items-row {
    display: block!important;
    margin-top: 10px;
    margin-bottom: 20px;
}
.byteeat-mobile-menu-cart__page {
    position: fixed;
    top: 0;
    left: 0;
    background: #eff2f5;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
}

/* Cart animation keyframes */
@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        /* opacity: 0; */
    }
    to {
        transform: translateY(0);
        /* opacity: 1; */
    }
}

@keyframes slideOutToBottom {
    from {
        transform: translateY(0);
        /* opacity: 1; */
    }
    to {
        transform: translateY(100%);
        /* opacity: 0; */
    }
}

.byteeat-menu-cart {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.on-phone-cart-opened.byteeat-menu-cart {
    position: fixed!important;
    display: flex!important;
    top: 0!important;
    bottom: 0!important;
    left: 0!important;
    z-index: 1000 !important;
    background: #eff2f5!important;
    overflow-y: auto!important;
    min-height: 100vh!important;
    height: 100vh!important;
    width: 100%;
    justify-content: center;
    animation: slideInFromBottom 0.4s ease-out forwards;
}

.on-phone-cart-closing.byteeat-menu-cart {
    animation: slideOutToBottom 0.3s ease-in forwards;
}

.on-phone-cart-opened.byteeat-menu-cart .byteeat-menu-cart-inner  {
    padding-bottom: 30px!important;
    margin-top: 30px!important;
}

.on-phone-cart-opened.byteeat-menu-cart .back-to-menu {
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
}
.on-phone-cart-opened.byteeat-menu-cart .back-to-menu h6 {
  font-size: 14px;
}



.byteeat-mobile-menu-cart-btn .tan-mobile-cart {
  /* background: rgba(255,255,255,0.5); */
  /* backdrop-filter: blur(4px); */
  /* color: #fff !important; */
  background: #000;
  color: #fff;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  width: calc(100% - 30px);
  left: 50%;
  transform: translateX(-50%);
}
.byteeat-mobile-menu-cart-btn .tan-mobile-cart p {
  color: #fff;
}
.byteeat-mobile-menu-cart-btn .tan-mobile-cart-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.byteeat-mobile-menu-cart-btn .tan-mobile-cart i {
  fill: #fff;
  color: #fff;
  background: #fd745f;
  padding: 6px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: block;
}


.byteeat-menu-categories {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.byteeat-menu-categories .menu-cat-wrapper {
  margin: 0;
}

.byteeat-menu-categories .menu-cat-wrapper span.byteeat-category-name {
  padding: 14px 12px!important;
  display: block;
  border: none!important;
}
.byteaeat-menu-toggle-cat {
  padding: 0;
  flex-direction: column;
}


.menu-section-nikhil .menu-1.box-grey {
  padding: 0;
  height: auto !important;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  border: 1px solid #00000017 !important;
}


.byteeat-menu-categories {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}
.byteeat-menu-categories .menu-cat-wrapper {
  margin: 0;
  padding: 0 8px;
 }
.on-phone-opened.menu-cat-wrapper.box-grey {
  padding: 15px 20px;
 }

.byteeat-menu-categories .menu-cat-wrapper span img {
  height: 65px;
  width: 300px;
  object-fit: cover;
}

.byteeat-menu-categories .on-desktop-opened.menu-cat-wrapper span img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.byteeat-menu-categories .menu-cat-wrapper a{
  font-size: 12px!important;
  /* padding:10px 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0!important;
  
}


.on-phone-opened .items-row i {
    font-size: 28px;
    line-height: 1.3;
}

/**menu page category opening for desktop**/
.menu-section-nikhil .menu-1.on-desktop-opened {
    position: fixed;
    z-index: 101;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
  	width: min(600px, 100%);
    height: 90vh!important;
    overflow-y: auto; 
    padding: 15px 20px;
    animation: slideInFromBottomDesktop 0.4s ease-out forwards;
    transform-origin: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    display: block!important;
    align-content: revert;
    border-radius: 0!important;
    border-radius: 4px!important;
}
.view-food-item-wrap {
  border-radius: 6px;
}
.on-desktop-opened {
  display: none;
}
.byteeat-menu-categories .on-desktop-opened.menu-cat-wrapper span {
  padding-block: 8px;
}
.byteeat-menu-categories .on-desktop-opened.menu-cat-wrapper .byteeat-category-inner {
  display: flex;
}
.byteeat-menu-categories .byteeat-category-inner {
  min-height: 109px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.byteeat-menu-categories .on-desktop-opened .byteeat-category-inner,
.byteeat-menu-categories .on-phone-opened .byteeat-category-inner {
  min-height: revert;
  display: revert;
  justify-content: revert;
  flex-direction: revert;

}
.menu-desktop-category-modal-backdrop.opened {
    position: fixed!important;
    z-index: 100!important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);  
}

.menu-1.on-desktop-opened .byteaeat-menu-toggle-cat {
	display: flex;
	justify-content: space-between;
	align-items: center;
  flex-direction: row;
}
.menu-1 .byteaeat-menu-toggle-cat.has-image,
.menu-1 .byteaeat-menu-toggle-cat.has-image span {
  padding: 0;
}
.menu-1.on-desktop-opened .byteaeat-menu-toggle-cat svg {
    display: block;
}

.menu-1.on-desktop-opened .items-row {
    display: block!important;
    margin-top: 10px;
}
.on-desktop-opened .byteaeat-menu-toggle-cat span.byteeat-category-inner,
.on-phone-opened .byteaeat-menu-toggle-cat span.byteeat-category-inner {
	border-left: 4px solid var(--cart)!important;
	/* margin-left: 5px!important; */
	font-size: 20px!important;
  line-height: 26px;
}

.on-desktop-opened .items-row i {
    font-size: 20px;
}
.menu-1.on-desktop-closing {
    animation: slideOutToBottomDesktop 0.3s ease-in forwards!important;
}
.on-desktop-opened .items-row .row.even {
  background-color: #fff;
}

.byteeat-close-cat-info {
  padding: 8px;
  display: none;
}

/* Cart animation keyframes */
@keyframes slideInFromBottomDesktop {
    from {
        transform: translateY(-30%) translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(-50%);
        opacity: 1;
    }
}

@keyframes slideOutToBottomDesktop {
    from {
        transform: translateY(-50%) translateX(-50%);
        opacity: 1;
    }
    to {
        transform: translateY(-30%) translateX(-50%);
        opacity: 0;
    }
}

/** buttons in menu page **/
.byteeat-voucher-input {
  width: 60% !important;
  border-radius: 6px !important;
  margin-inline: 0!important;
  border-top-right-radius: 0!important;
  border-bottom-right-radius: 0!important;
}
.byteeat-apply-voucher-btn {
  font-size: 16px;
  width: max-content;
  /* padding-block: 8px; */
  padding: 10px 15px!important;
  border-radius: 6px !important;
  margin-inline: 0!important;
  border-top-left-radius: 0!important;
  border-bottom-left-radius: 0!important;
  width: max-content !important;
  text-wrap: nowrap;
  flex-shrink: 1;
}
.byteeat-voucher-wrap {
  display: flex;
}
.byteeat-menu-change-address {
  border-radius: 6px !important;
}
.byteeat-checkout-button {
  border-radius: 6px !important;
}


.byteeat-menu-categories .menu-cat-wrapper span {
  border: none!important;
  text-align: center; 
  font-size: 16px !important;
  line-height: 20px;
  padding: 0!important;
  line-height: 16px;
  color: #444 !important;
}
.byteeat-menu-categories .on-desktop-opened.menu-cat-wrapper .byteeat-category-name,
.byteeat-menu-categories .on-phone-opened.menu-cat-wrapper .byteeat-category-name {
  font-size: 18px!important;
  line-height: 20px;
  font-weight: 600;
}
.byteeat-menu-open-category.box-grey h4 {
  font-size: 16px !important;
  font-weight: 600;
}
.byteeat-menu-open-category .items-row .row p {
  font-size: 12px;
  line-height: 16px;
}
.byteeat-menu-open-category .on-desktop-opened .me-des-style-tanjil {
  padding-bottom: 0;
}
body .on-desktop-opened p.small,
body .on-phone-opened p.small {
  font-size: 14px;
  line-height: 16px;
}
.byteeat-category-item-modal-header {
  display: flex;
  flex-direction: column;
}

.byteeat-category-item-modal-header a,
.byteeat-category-item-modal-header a:hover {
	background: #000;
	color: #fff;
	width: fit-content;
	padding: 8px;
	margin-left: auto;
}
.byteeat-menu-categories .menu-cat-wrapper.on-phone-opened .byteaeat-menu-toggle-cat span {
  padding-block: 0!important;
}
.byteeat-menu-categories .menu-cat-wrapper.on-phone-opened .byteaeat-menu-toggle-cat {
  display: flex;
  flex-direction: row;
}
.byteeat-menu-categories .menu-cat-wrapper.on-phone-opened .byteaeat-menu-toggle-cat .byteeat-category-inner {
  display: flex;
  align-items: center;
}
.byteeat-menu-categories .menu-cat-wrapper.on-phone-opened .byteaeat-menu-toggle-cat .byteeat-category-inner img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.on-phone-opened .byteeat-close-cat-info,
.on-desktop-opened .byteeat-close-cat-info {
  display: block;
}


.delivery-option #delivery_type {
  display: none;
}
.byteeat-order-type-tab {
  display: flex;
  justify-content: center;
  /* width: 200px; */
  width: 100%;
  margin-bottom: 8px;
}
.byteeat-order-type-option  {
  padding: 10px 13px;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  cursor: pointer;
  width: 100%;
}
.byteeat-order-type-option.active {
  background: #000;
  color: #fff;
}

.byteeat-payment-method-tab {
  display: flex;
  justify-content: center;
  /* width: 200px; */
  width: 100%;
  margin-bottom: 8px;
}
.byteeat-payment-method-option  {
  padding: 10px 13px;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  cursor: pointer;
  width: 100%;
}
.byteeat-payment-method-option.active {
  background: #000;
  color: #fff;
}
/**
Search Bar
**/
.menu-section-nikhil .typeahead__field input {
  border-radius: 6px;
}

/**
Food item add on modal
**/
#byteeat-custom-food-item-addons-modal {
	z-index: 9041;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	overflow-y: auto;
	min-height: revert;
	height: 90vh;
}