/* Header */
header .right{
    display: flex;
    justify-content: space-evenly;
    padding-right: 8px;
    width: 70%;
}
.search-box{
    display: flex;
    height: 2rem;
    width: 75%;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--primary);
    border-radius: 1rem;
    padding: 5px;

}
.search{
    display: block;
    width: 80%;
    height: 2rem;
    padding-left: 5px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    caret-color: var(--secondary);
}
.search-box .bx{
    height: 2rem;
    line-height: 2rem;
    font-size: 16px;
    color: var(--secondary);
}
.share-btn{
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    background-color: var(--primary);
}
.restraunt-name{
    font-size: 1.5rem;
    font-weight: 500;
}
.rating{
    height: 2rem;
    width: auto;
    padding: 5px 8px;
    align-items: center;
    font-size: 1rem;
    color: var(--primary);
    font-weight: bold;
    text-align: center;
    border-radius: 1rem;
    background-color: var(--green);
}
.rating .bx{
    color: var(--primary);
    margin: 0 0 0 4px;
    font-size: 14px;
}
.offers{
    overflow-x: auto;
    margin-top: 1rem;
}
.offer{
    padding: 2px;
    min-width: 55%;
    height: auto;
    align-items: center;
    margin-right: 1rem;
    border-radius: 8px;
    background-color: var(--blue-light);
}
.offer-title{
    font-size: 14px;
    font-weight: bold;
}
.offer-description{
    margin-top: 5px;
    font-size: 12px;
    font-weight: light;
}
.offer .box{
    margin: 0;
}
.offer .bx{
    font-size: 24px;
    color: var(--blue);
    margin: 0 0.5rem;
}
/* Dishes section */
.dishes{
    width: calc(100vw - 1rem);
    background-color: var(--primary);
}
.dish{
    padding: 5px;
    width: 100%;
    border-bottom: 1px dashed #000;
    margin-bottom: 1rem;
    border-radius: 6px;
}
.dish .left{
    width: calc(100% - 11rem);
    flex-direction: column;
    justify-content: flex-start;
}
.veg_non-veg{
    margin:0 0 5px -2px;
}
.dish-name{
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}
.dish-price, .dish-description{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}
.dish-description{
    padding-top: 0.5rem;
    color: var(--primary-text-light);
}
.dish .right{
    height: 11rem;
    width: 10rem;
    overflow: hidden;
    text-align: center;
}
.dish-image{
    width: 9rem;
    height: 9rem;
    border-radius: 1rem;
}
.cart-options{
    margin-top: 0;
    height: 2rem;
    transform: translateY(-50%);
}
.cart-options.add{
    background-color: var(--secondary-light);
    color: var(--secondary);
    align-items: center;
    justify-content: center;
}
.category-slider{
    display: flex;
    z-index: 2;
    width: 100vw;
    max-width: 100vw;
    position: sticky;
    top: 3.5rem;
    margin-left: -0.5rem;
    border-radius: none;
    flex-wrap: nowrap;
    overflow-x: scroll;
}
.catagory-slider-inner{
    display: flex;
    flex-direction: row;
}
.category-slider span{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 2rem;
    width: max-content;
    white-space: nowrap;
    border-radius: 1rem;
    color: var(--secondary);
    padding: 0 0.5rem;
    margin: 0 4px;
    background-color: var(--secondary-light);
}
.category-slider span.active{
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 0 5px var(--secondary);
}
.cart-btn{
    z-index: 2;
    position: fixed;
    bottom: 0.5rem;
    margin-left: calc(2.5vw - 0.5rem);
    box-shadow: 0 0 4px var(--secondary);
}
/* Product Box */
.product{
    z-index: 3;
    display: grid;
    grid-template-rows: 1fr 4fr;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0; left: 0;
    padding: 0;
    border-radius: 0%;
    background-color: rgba(0,0,0,0.55);
}
.top-container{
    align-items: center;
    justify-content: center;
}
.top-container i{
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary);
}
.product-container{
    width: 100%;
    border-radius: 1rem;
    overflow-y:scroll;
    background-color: var(--primary);
}
#list-view-menu model-viewer{
    width: 100%;
    height: 100vw;
    max-height: 400px;
    background-color: var(--primary);
}
.product-info {
    padding: 0.5rem;
}
.product-info .top-row{
    align-items: center;
    padding: 0.5rem 0;
    padding-right: 0.5rem;
}
.product-info .product-name{
    font-weight: 600;
    font-size: 1.25rem;
}
.product-info .product-price,.product-info .product-description{
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-text-light);
}
.footer{
    align-items: center;
    justify-content: center;
}
.footer .cart-options{
    height: 3rem;
    width: 160px;
    max-width: none;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    transform: translate(0);
}
.footer .cart-options i{
    font-size: 1.5rem;
}



/** Tles View Menu **/
.tiles-container{
    width: 100vw;
    margin-left: -0.5rem;
}
.tile-catagories,.product-tiles{
    width: 100vw;
    display: grid;
    grid-gap: 1px;
    grid-template-columns: 1fr 1fr;
}
.tile-catagories .tile:first-child, .product-tiles .tile:first-child{
    grid-column: 1 / 3;
    height: 100vw;
}
.product-tile:nth-child(1) .tile-heading{
    font-size: 24px !important;
    margin-bottom: 5px;
}
.product-tile:nth-child(1) .product-price{
    font-size: 16px !important;
}
.tile{
    position: relative;
    height: 50vw;

    background-size: cover;
    background-position: center;
}
.product-tile{
    padding: 10px 10px 20px;
}
.tile-heading{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
.product-tile-info{
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 0 0 10px;
}
.product-title{
    position: relative;
    top: 0; left: 0;
    transform: translate(0);
    font-size: 22px;
    padding: 0 10px;
    text-transform: capitalize;
    margin-top: 4px;
}
.product-price{
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 0 10px ;
}
.product-tile-options{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}
.product-tile-options .cart-options{
    transform: none;
    margin: 0;
}
.bx-area{
    color: #fff;
}
.popup-3d-model-container,.share-page{
    z-index: 10;
    display: grid;
    place-items: center;
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0,0,0,0.15);
    backdrop-filter: blur(5px);
}
.popup-3d-model-container model-viewer{
    height: 100vh;
    width: 100vw;
    background-color: transparent;
}
.sharing-url-container{
    position: absolute;
    top: 0; left: 0;
    display: flex;
    width: 100vw;
    height: 90vh;
    flex-direction: column;
    justify-content: center;
    padding: 0 !important;
    align-items: center;
}
.sharing-url{
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    max-width: 300px;
    margin: 2.5px 0;
}
.sharing-url i{
    display: inline-block;
    font-size: 26px;
    color: var(--primary);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    background-color: var(--secondary);
    margin-right: 5px;
}
.sharing-url span{
    height: 50px;
    width: calc(100% - 55px);
    border-radius: 25px;
    line-height: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    background-color: var(--primary);
    font-weight: 600;
    margin-left: 5px;
    text-align: center;
    font-size: 20px;
    color: var(--secondary);
}
.bx-x{
    z-index: 11;
    position: fixed;
    top: 10px;
    right: 10px;
    line-height: 35px;
    height: 35px;
    width: 35px;
    font-size: 26px;
}
.bx-cube{
    height: 30px;
    width: 30px;
    line-height: 30px;
}
.bx-x,.bx-cube{
    display: inline-block;
    border-radius: 50%;
    background-color: var(--secondary-light);
    color: var(--secondary);
    font-size: 20px;
    cursor: pointer;
    text-align: center;
}
.product-information-page{
    z-index: 10;
    background-color: #fff;
    display: flex;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0; left: 0;
    flex-direction: column;
}
.product-information-page > div{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 50vh;
    padding: 15px 10px;
    border: 1px solid #fff;
}
.product-information-page .cart-options{
    max-width: 200px;
    width: 200px;
    height: 50px;
    padding: 0 1rem;
    font-size: 18px;
}
.product-information-page .cart-options .count{
    font-size: 18px;
}
.product-information-page .cart-options .plus,
.product-information-page .cart-options .minus{
    font-size: 24px;
}
.product-information-page .primary-information{
    justify-content: flex-end;

    background-size: cover;
    background-position: center;
}
.primary-information .product-name,.primary-information .product-price{
    font-size: 24px;
    color: var(--primary);
    font-weight: 400;
    padding: 0;
}
.product-information-page .other-information{
    justify-content: space-between;
    background-color: var(--primary);
}
.other-information .product-description{
    color: var(--primary-text);
    font-size: 16px;
}
.bx-info-circle{
    font-size: 18px;
    font-weight: lighter;
}