@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    color: var(--primary-text);
    font-family: 'Quicksand', 'Poppins';
    border: none;
    outline: none;
    user-select: none;
    text-decoration: none;
    /* border: 1px solid red; */
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.ellipsis{
    width: 100%;
    text-align: left;
    text-overflow:ellipsis;
    overflow:hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}
/* Loader */
.loader{
    z-index: 3;
    position: fixed;
    background-color: #fff;
    top: 0; left: 0;
    min-height: 100vh;
    width: 100vw;
    margin: 0 auto 0;
    padding: 30% 0 0;
    text-align: center;
    overflow: hidden;
}

.loader span{
    display: inline-block;
    position: relative;
    padding: 2px;
    font-size: 30px;
    transform: translateY(70px);
    animation: moveup 1.2s alternate infinite;
}
.loader span::after{
    z-index: 4;
    content: '';
    display: inline-block;
    position: absolute;
    top: 100%; left: 0;
    height: 100%;
    width: 100px;
    transform: translateY(-100%);
    background-color: var(--primary);
    animation: covertext 1.2s alternate infinite;
}

@keyframes covertext {
    0%{
        transform: translateY(-100%);
    }
    20%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(0px);
    }
}
@keyframes moveup {
    0%{
        transform: translateY(70px);
    }
    20%{
        transform: translateY(0px);
    }
   100%{
        transform: translateY(0px);
    }
}

.loader span:nth-child(2),.loader span:nth-child(2)::after{
    animation-delay: 0.15s;
}
.loader span:nth-child(3),.loader span:nth-child(3)::after{
    animation-delay: 0.3s;
}
.loader span:nth-child(4),.loader span:nth-child(4)::after{
    animation-delay: 0.45s;
}
.loader span:nth-child(5),.loader span:nth-child(5)::after{
    animation-delay: 0.4s;
}
.loader span:nth-child(6),.loader span:nth-child(6)::after{
    animation-delay: 0.6s;
}
.loader span:nth-child(7),.loader span:nth-child(7)::after{
    animation-delay: 0.75s;
}
.loader span:nth-child(8),.loader span:nth-child(8)::after{
    animation-delay: 0.9s;
}
.loader span:nth-child(9),.loader span:nth-child(9)::after{
    animation-delay: 1.05s;
}
.loader span:nth-child(10),.loader span:nth-child(10)::after{
    animation-delay: 1.2s;
}
/* Main Body */
.container{
    background-color: var(--primary-light);
    padding: 4rem 0.5rem 4.5rem;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}
.bx{
    font-size: 28px;
}
.shadow{
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}
.flex{
    display: flex;
    justify-content: space-between;
}
.hide{
    display:none !important;
}
.veg_non-veg{
    display: inline-block;
    width: 20px;
}
/* Header */
header{
    z-index: 2;
    position: fixed;
    top: 0; left: 0;
    align-items: center;
    background-color: var(--primary-light);
    width: 100%;
    height: 3.5rem;
}
header .left{
    display: flex;
    padding-left: 8px;
}
.bx-list-ul,.bxl-microsoft,.bx-chevron-left{
    display: inline-block;
    height: 2rem;
    width: 2rem;
    text-align: center;
    color: var(--primary-text);
    background-color: var(--primary);
    font-size: 2rem;
    font-weight: 100;
    line-height: 2rem;
    border-radius: 50%;
}
.bx-list-ul,.bxl-microsoft{
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 5px;
}
.title{
    display: inline-block;
    height: 2rem;
    line-height: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

/* Main Content */
.box{
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    background-color: var(--primary);
    border-radius: 8px;
    padding: 12px 8px;
    margin-bottom: 1.5rem;
}
.box-title{
    display: block;
    height: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}
.cart-options{
    display: flex;
    width: 90%;
    max-width: 90px;
    height: 30px;
    align-items: center;
    justify-content: space-between;
    margin: 5px auto;
    padding: 2px 4px;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    background-color: var(--secondary-light);
}
.cart-options .minus,.cart-options .plus{
    font-size: 16px;
    color: var(--secondary);
}


/* Footer */
.footer{
    display: flex;
    width: 100%;
    height: calc(3.75rem + 24px);
    position: fixed;
    bottom: 0; left: 0;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.7);
}
.floating-btn{
    display: flex;
    width: 95vw;
    height: 3rem;
    font-size: 18px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 8px;
    background-color: var(--secondary);
    color: var(--primary);
}
.watermark{
    z-index: 2;
    position: fixed;
    bottom: 0; right: 0;
    font-size: 12px;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
}