*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    overflow-x: hidden;
    background-color: rgb(222, 222, 100);
}

nav{
    position: relative;
    top: 0;
    width: 100vw;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 5px black;
    background-color: rgba(255, 255, 255);
    padding-right: 20px;
    color: rgb(5, 60, 5);
    z-index: 10;
}
nav div{
    display: flex;
    gap: 15px;
    align-items: center;
}
nav .menu{
    display: flex;
    gap: 35px;
}

nav div a{
    display: block;
    text-decoration: none;
    color: rgb(5,60,5);
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding: 5px;
}
nav div a img{
    width: 30px;
}
nav div a .cartcount{
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: rgb(5,60,5);
    color: white;
    border-radius: 10px;
    padding: 1px;
    width: 15px;
    height: 15px;
    font-size: 10px;
    text-align: center;
    box-sizing: content-box;
}
nav .menu a{
    font-weight: 500;
}
nav .menu .active{
    font-weight: bolder;
}
nav .menu a:hover{
    text-decoration: underline;
}
nav div .location{
    background-color: transparent;
    color: black;
    font-weight: normal;
    display: flex;
    gap: 0px;
    margin: 0px;
    padding: 0px;
    align-items: center;
}
nav div .location img{
    width: 30px;
    height: 30px;
}
nav div .location p{
    width: 150px;
    font-size: 0.85rem;
}
nav div button{
    margin: 5px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    border: none;   
    background-color: transparent;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-color: rgb(5,60,5);
}
nav div .btnlink:hover{
    background-color: rgb(5, 60, 5);
    color: white;
    border-radius: 10px;
    border: none;
    padding: 10px;
}
nav .logged{
    display: flex;
    gap: 0px;
    align-items: center;
    position: relative;
}
nav .logged .profimg{
    width: 30px;
    margin-right: 10px;
    border-radius: 20px;
}
nav .logged p{
    font-weight: bold;
    font-size: 1.2rem;
}
nav .logged button{
    background-color: transparent;
    margin: 0px;
    padding: 0px;
}
nav .logged button img{
    width: 35px;
}
nav .logged .profdropdown{
    position: absolute;
    top: 120%;
    right: 10px;
    background-color: white;
    flex-direction: column;    
    border-radius: 5px;
    gap: 5px;
    box-shadow: 0 0 5px black;
    width: 150px;
}
.profdropdown a{
    padding: 10px;
    width: 100%;
    text-align: center;
    color: rgb(5, 60, 5);
}
.profdropdown a:hover{
    color: rgb(222, 222, 100);
    font-weight: bold;  
    border-left: 5px solid rgb(5, 60, 5);   
    text-decoration: underline; 
}
.absnotif{
    position: fixed;
    bottom: 20px;
    right: 20px;
}
.absnotif div{    
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px black;
}
.absnotif p{
    font-weight: bold;
}


.slider{
    max-height: 84vh;
    width: 100vw; 
    overflow: hidden;  
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    background-color: rgb(222, 222, 100);
    box-shadow: 0 0 5px black;
}
.slider img{
    width: 100%;
}


.roller{
    background-color: transparent;
    height: 100px;
    padding: 10px;   
    width: 100vw; 
    overflow: hidden;
}
.roller .rollcontent{
    display: flex;
    gap: 100px;
    align-items: start;
    width: max-content;
    animation: scroll 10s linear infinite;
}
.roller p{
    font-size:3rem;
    font-weight: bold;
    color: rgb(5,60,5);
}
@keyframes scroll{
    to{
        transform: translate(calc(-50% - 3rem));
    }
}


.homeshop{
    margin: 0px auto;
    max-width: 1200px;
    background-color: white;
    padding: 35px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 0 0 5px grey;
}
.homeshop .productviewer{
    position: relative;
}
.homeshop .productviewer .absbtn{
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.homeshop .productviewer .absbtn{
    border-radius: 10px;
    background-color: rgb(222, 222, 100);
    min-width: max-content;
    box-shadow: 0 0 5px grey;
    display: flex;
    gap: 10px;
    color: black;
}
.homeshop .productviewer .absbtn:hover{
    color: rgb(5, 60, 5);
    box-shadow: none;
}
.homeshop .productviewer .absbtn img{
    width: 20px;
}
.homeshop .productviewer .productholder{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: none;
    width: 100%;
}
.productholder .centerbox{
    box-shadow: none;
}
.productholder .centerbox img{
    width: 200px;
}

.product{
    padding: 15px;
    margin: 10px; 
    border-radius: 8px; 
    box-shadow: 0 0 5px lightgrey;
    width: max-content;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: whitesmoke;
}
.product img{
    height: 250px;
    width: 250px;
    border-radius: 10px;
    background-color: white;
}
.product h3{
    font-size: 1.25rem;
    margin: 8px;
}
.product .imgbtn{
    position: absolute;
    top: 40%;
    left: 0px;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
}
.product .imgbtn button{
    background-color: white;
    box-shadow: 0 0 5px grey;
    width: max-content;
    border-radius: 50%;
    color: rgb(5, 60, 5);
    font-weight: bold;
    width: 20px;
    height: 20px;
    box-sizing: content-box;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0px;
}
.product .imgbtn button:hover{
    width: 20px;
    height: 20px;
}
.product .imgbtn button img{
    width: 20px;
    height: 20px;
}
.product .flexdet{
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 5px;
    margin-left: 0px;
}
.product .flexdet img{
    width: 20px;
    height: 20px;
}
.product .flexdet p{
    font-size: 0.8rem;
}
.product .flexdet p b {
    font-size: 1.2rem;
}
.product .flexdet a{
    text-decoration: none;
    color: black;
    display: flex;
    gap: 10px;
}
.product p{
    font-size: 1rem;
}
.product .disprice{
    display: flex;
    gap: 10px;
}
.product .disprice p:first-child{
    text-decoration: line-through;
    color: grey;
    font-size: 0.85rem;
}
.product .disprice p:last-child{
    font-size: 1.2rem;
}
.product .organic{
    position: absolute;
    top: 10px;
    right: 0px;
    padding: 8px;
    padding-right: 25px;
    background-color: rgb(5, 60, 5);
    color: rgb(222, 222, 100);
    font-weight: bold;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    box-shadow: 0 0px 5px black;
}
.product button{
    background-color: rgb(5, 60, 5);
    color: rgb(222, 222, 100);
    border: none;
    border-radius: 10px;
    margin: 5px;
    padding: 10px;
    width: 80%;
    font-weight: bold;
    font-size: 1.1rem;
}
.product button:hover{
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    width: 92%;
}
.product .prodactbtn{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.product .prodactbtn button{
    background-color: rgb(222, 222, 100);
    width: max-content;
}
.product .prodactbtn button img{
    width: 20px;
    height:  20px;
    border-radius: 0px;
}
.product:hover .imgbtn{
    display: flex;
}
.prodinp{
    width: 100px;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    border: none;
    box-shadow: inset 0 0 5px grey;
}



.footer{    
    padding: 30px;    
    display: flex;
    justify-content: space-evenly;
    background-color: rgb(5, 60, 5);
    color: white;
}
.links{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.links a{
    display: inline-block;
    text-decoration: none;
    color: white;
    margin: 2px;    
}
.links a:hover{
    text-decoration: underline;
}
.enquiry {
    text-align: center;
}
.enquiry input{
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
    width: 250px;
}
.enquiry textarea{
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
    width: 250px;
    height: 100px;
}
.enquiry button{
    margin: 5px;
    padding: 5px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    background-color: yellow;
    color: black;
}




.shoppage{
    margin: 10px auto 0px auto;
    max-width: 1400px;
    position: relative;
    background-color: white;
    padding: 15px;
    border-radius: 20px;
}
.shoppage.mid{
    max-width: 1200px;
}
.shoppage.short{
    max-width: 1000px;
}
.shoppage .productholder{
    box-shadow: none;
    height: 70vh;
    overflow: auto;
}
.shoppage .flexdiv{
    padding: 5px;
}
.shoppage .farmerheader{
    text-align: center;
}
.shoppage .farmerheader img{
    border-radius: 50%;
    box-shadow: inset 0 0 5px grey;
}
.shoppage .farmerheader h3{
    font-size: 1.5rem;
}

.filtersec{
    margin-bottom: 10px;
    padding: 0px 10px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.filtersec div{
    display: flex;
    column-gap: 15px;
    justify-content: space-between;
}
.filtersec .expbtn{
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}
.filtersec .expbtn img{
    width: 25px;
}
.filtersec .expbtn:hover{
    box-shadow: 0 0 5px grey;
}
.cartpage{
    height: 80vh;
}
.cartprod{
    height: 80%;
    overflow: auto;
    border-radius: 10px;
    overflow: auto;
}
.indicart{
    background-color: white;
    box-shadow: 0 0 5px grey;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 85% 15%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.indicart .cartdet{
    display: flex;
    align-items: flex-start;
    justify-content: stretch;
}
.indicart .cartdet div{
    width: 100%;
    padding: 10px;
    padding-top: 0px;
}
.indicart .cartdet div h3{
    font-size: 2rem;
}
.indicart .cartdet img{
    width: 150px;
    height: 150px;
    border-radius: 10px;
}
.indicart .cartact{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-left: 2px solid rgb(5, 60, 5);
}
.indicart .cartact div{
    text-align: center;
}
.indicart button{
    background-color: rgb(5, 60, 5);
    padding: 10px;
    color: white;
    border: none;
    border-radius: 10px;
}
.indicart .rmbtn{
    background-color: transparent; 
    color: black;   
    border: none;
}
.indicart .rmbtn:hover{
    text-decoration: underline;
}


.checkoutpage{
    display: grid;
    grid-template-columns: 60% 40%;
}
.userdetail{
    padding: 10px;
}
.userdetail h3{
    margin-bottom: 10px;
}
.userdetail table{
    width: 100%;
}
.userdetail table td:first-child{
    width: 20%;
    vertical-align: top;
}
.userdetail td{
    padding: 5px;
}
.userdetail td input{
    padding:8px;
    border-radius: 5px;
    width: 100%;
    border: none;
    font-weight: 500;
    box-shadow:inset 0 0 5px grey;
}
.userdetail td select{
    padding:8px;
    border-radius: 5px;
    width: 100%;
    border: none;
    font-weight: 500;    
    box-shadow:inset 0 0 5px grey;
}
.userdetail td textarea{
    padding:8px;
    border-radius: 5px;
    width: 100%;
    height: 100px;
    border: none;
    font-weight: 500;
    box-shadow:inset 0 0 5px grey;
}
.pricedet{
    background-color: white;
    border-radius: 10px;
    height: max-content;
    text-align: center;
}
.pricedet .pricesec{    
    padding:20px;
    padding-top: 10px;
    background-color: whitesmoke;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.pricesec table{
    width: 100%;
    border-collapse: collapse;
}
.pricesec td{
    padding: 5px;
}
.pricesec td:first-child{
    text-align: left;
}
.pricesec td:last-child{
    text-align: right;
}
.pricesec th{
    padding: 5px;
    font-size: 1.25rem;
}
.pricesec th:first-child{
    text-align: left;
}
.pricesec th:last-child{
    text-align: right;
}
.pricesec p{
    font-size: 0.8rem;
    margin-top: 10px;
}
.pricedet .paymeth{
    background-color: white;    
    padding:20px;
}
.paymeth .meth{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 8px;
    border: 0.5px solid lightgray;
    border-radius: 5px;
    box-shadow: 0 0 3px lightgray;
    background-color: white;
    text-align: left;
}
.meth p{
    font-size: 1.1rem;
    font-weight: 500;
}
.meth span{
    font-size: 0.8rem;
}
.paymeth input[type='radio']{
    height: 25px;
    width: 25px;
    margin: 5px;
}
.pricedet button{
    width: 60%;
    font-weight: bold;
    background-color: rgb(5, 60, 5);
    color: rgb(222, 222, 100);
    border-radius: 5px;
    border: none;
    padding: 10px;
    font-size: 1rem;    
    box-shadow: 0 0 5px grey;
}
.pricedet button:hover{
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
}
.paymentinfo{
    text-align: center;
    border-radius: 20px;
    padding: 20px;
    background-color: rgb(222, 222, 100);
    box-shadow: 0 0 5px grey;
    color: rgb(5, 60, 5);
}
.paymentinfo p{
    font-size: 1.5rem;
}
.paymentinfo button{
    background-color: rgb(5, 60, 5);
    color: rgb(222, 222, 100);
    font-weight: bold;
    font-size: 1.5rem;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px grey;
}
.paymentinfo button:hover{
    border: 3px solid rgb(5, 60, 5);
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    box-shadow: inset 0 0 5px grey;
}


.centerbox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    box-shadow: 0 0 5px grey;
    padding: 25px;
    border-radius: 15px;
    background-color: white;
}
.sizedcenter{
    min-width: 50%;
    min-height: 50%;
    max-height: 80%;
    max-width: 65%;
    text-align: center;
}
.sizedcenter h2{
    margin-bottom: 10px;
}
.centerbox label{
    margin-left: 10px;
    display: block;
}
.centerbox input{
    padding: 10px;
    margin: 10px;
    border: none;
    box-shadow: inset 0 0 5px grey;
    background-color: white;
    width: 300px;
    border-radius: 8px;
    margin-top: 0px;
}
.centerbox select{
    padding: 10px;
    margin: 10px;
    border: none;
    box-shadow: inset 0 0 5px grey;
    background-color: white;
    width: 300px;
    border-radius: 8px;
    margin-top: 0px;
}
.centerbox input[type='file']{    
    box-shadow: none;   
}
.centerbox input[type='checkbox']{    
    width: 20px;
    height: 20px;  
    margin-left: 15px; 
    margin-top: 10px;
}
.centerbox .inpgrid{
    display: flex;
    align-items: center;
    gap: 5px;
}
.centerbox button{
    width: max-content;
    min-width: 100px;
    font-size: 14px;
    font-weight: bold;
    padding: 8px;
    margin: 8px;
    background-color: rgb(5,60,5);
    color: white;
    border: none;
    border-radius: 8px;
}
.centerbox button:hover{
    color: rgb(222, 222, 100);
}
.centerbox p a{
    text-decoration: none;
    color: black;
}
.centerbox p a:hover{
    text-decoration: underline;
}
.genderdiv{
    display: grid;
    grid-template-columns: 50% 50%;
    border-radius: 8px;
    width: 100%;
    margin: 10px;
}
.genderdiv button{
    background-color: white;    
    border: 0.5px solid grey;
    color: rgb(5, 60, 5);
    width: 125px;
    margin: 0px;
    padding: 12px;
}
.genderdiv button:first-of-type{
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    justify-self: end;
}
.genderdiv button:last-of-type{
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    justify-self: start;
}
.genderdiv button:hover{
    box-shadow: inset 0 0 5px grey;
    color: rgb(5, 60, 5);
}
.genderdiv button.clicked{
    box-shadow: inset 0 0 5px rgb(5, 60, 5);
}
.centerbox .gridcenter{
    display: grid;
    grid-template-columns: 50% 50%;
    text-align: center;
}
.centerbox .gridcenter p{
    text-align: center;
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 1.15rem;
}
.centerbox .gridcenter .errspan p{
    margin-left: 0px;
    margin-bottom: 0px;
    padding-left: 0px;
    color: red;
    font-size: 0.8rem;
}
.centerbox .btnlink{
    padding: 8px;
    margin: 5px;
    background-color: rgb(5, 60, 5);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width: max-content;
    min-width: 100px;
}
.centerbox .btnlink:hover{
    color: rgb(222, 222, 100);
}
.centerbox .productviewer{
    position: relative;
    height: max-content;
    width: 100%;
    overflow: auto;
    scrollbar-width: thin;
}
.centerbox .productviewer .absbtn{
    position: fixed;
    bottom: 45px;
    right: 25px;
}
.centerbox .productviewer .absbtn{
    border-radius: 10px;
    background-color: rgb(222, 222, 100);
    min-width: max-content;
    box-shadow: 0 0 5px grey;
    display: flex;
    gap: 10px;
    color: black;
}
.centerbox .productviewer .absbtn:hover{
    color: rgb(5, 60, 5);
    box-shadow: none;
}
.centerbox .productviewer .absbtn img{
    width: 20px;
}
.centerbox .productviewer .productholder{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: max-content;
}
/* .product{
    padding: 15px;
    margin: 10px; 
    border-radius: 8px; 
    box-shadow: 0 0 5px grey;
    width: 250px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.product img{
    height: 200px;
}
.product h3{
    font-size: 1.25rem;
    margin: 8px;
}
.product .flexdet{
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px;
    margin-left: 0px;
}
.product .flexdet img{
    width: 20px;
    height: 20px;
}
.product p{
    font-size: 1rem;
}
.product .disprice{
    display: flex;
    gap: 10px;
}
.product .disprice p:first-child{
    text-decoration: line-through;
    color: grey;
    font-size: 0.85rem;
}
.product .disprice p:last-child{
    font-size: 1.2rem;
}
.product .organic{
    position: absolute;
    top: 10px;
    right: 0px;
    padding: 8px;
    padding-right: 25px;
    background-color: rgb(5, 60, 5);
    color: rgb(222, 222, 100);
    font-weight: bold;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    box-shadow: 0 3px 5px lightgrey;
}
.product button{
    background-color: rgb(5, 60, 5);
    color: rgb(222, 222, 100);
    border: none;
    border-radius: 10px;
    margin: 5px;
    padding: 10px;
    width: 80%;
    font-weight: bold;
    font-size: 1.1rem;
}
.product button:hover{
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    width: 92%;
} */



.gridcenter #uploadedimages {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10px;
    width: 100%;
    height: 220px;
    overflow: auto;
    overflow-x: hidden;
    align-items: center;
    box-shadow: inset 0 0 5px lightgrey;
    margin-top: 5px;
    border-radius: 8px;
}
.gridcenter #uploadedimages img{
    width: 100%;
    background-color: whitesmoke;
    border-radius: 10px;
    padding: 8px;
}
.gridcenter .ddarea{
    width: 100%;
    height: 100px;
    margin: 0px;
    margin-top: 20px;
    margin-bottom: 12px;
    padding: 10px;
    border: 3px dashed lightgray;
    border-radius: 10px;
    background-color: white;
    text-align: center;
}
.gridcenter .ddarea p{
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    color: grey;
}
.progressbar{
    width: 95%;   
    margin: 8px;
    height: 10px;    
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px black;
}
.progressbarfill{
    height: 100%;
    width: 25%;
    background-color: lightslategray;
}




.dashcontent{
    margin-top: 0px;
    height: 92vh;
    display: grid;
    grid-template-columns: 12% 87%;
    gap: 10px;
}
.sidecontent{
    background-color: rgb(85,105,45);
    overflow: hidden;
}
.sidecontent a{
    text-decoration: none;
    display: flex;
    gap: 15px;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
}
.sidecontent a.active{
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    box-shadow: 0 0 5px lightgrey;
}
.sidecontent a img{
    width: 30px;
    height: 30px;
}
.maincontent{
    background-color: white;
    border-radius: 10px;
    position: relative;
    padding: 15px;
    margin-top: 5px;
    box-shadow: 0 0 5px grey;
}


.flexdiv{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(5, 60, 5);
}
.flexdiv div{
    display: flex;
    gap: 5px;
    align-items: center;
}
.flexdiv div a{
    display: inline-block;
    background-color: rgb(222, 222, 100);
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    color: rgb(5, 60, 5);
}
.flexdiv div a:hover{
    box-shadow: 0 0 5px grey;
}
.flexdiv div a img{
    width: 20px;
}
.flexdiv div button{
    display: inline-block;
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    padding: 8px;
    border-radius: 10px;
    border: none;
    width: max-content;
    position: relative;
}
.flexdiv div button .warn{
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 0 5px grey;
}
.flexdiv div button:hover{
    box-shadow: 0 0 5px grey;
}
.flexdiv div button img{
    width: 20px;
}
.floatmsgbox{
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;    
    z-index: 12;
}
.floatmsgbox p{
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px grey;
    font-weight: bold;
}


.narrow{
    margin: 10px auto;
    max-width: 800px;
}
.hiddenelement{
    display: none;
}
.formpage{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.515);
    z-index: 5;
}
.formelement{
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px grey;
    background-color: white;
    text-align: center;
}
.float{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
}
.formelement h3{
    padding: 5px;
}
.formelement td{
    text-align: left;
    vertical-align: top;
    padding: 5px;
}
.formelement input{
    margin: 8px;
    padding: 8px;
    width: 300px;
    border: none;
    outline: none;
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
.formelement input[type='file']
{
    margin: 5px;
    padding: 5px;
    box-shadow: none;
    border-radius: 0px;
}
.formelement input[type='checkbox']{    
    width: 20px;
    height: 20px;  
    margin-left: 15px; 
    margin-top: 10px;
}
.formelement select{
    margin: 8px;
    padding: 8px;
    width: 300px;
    border: none;
    outline: none;
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
.formelement textarea{
    margin: 8px;
    padding: 8px;
    width: 300px;
    height: 150px;
    border: none;
    outline: none;
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
.formelement td .profpic{
    width: 100px;
}
.formelement button{
    padding: 8px;
    margin: 5px;
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}
.formelement button:hover{
    background-color: rgb(5, 60, 5);
    color: rgb(222, 222, 100);
}
.formelement .btnlink{
    padding: 8px;
    margin: 5px;
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}
.formelement .btnlink:hover{
    background-color: rgb(5, 60, 5);
    color: rgb(222, 222, 100);
}
.formelement .errspan p{
    margin-left: 15px;
    color: red;
    font-size: 0.8rem;
}
.formelement .errspan{
    margin-left: 15px;
    color: red;
    font-size: 0.8rem;
}
.errspan{
    margin-left: 15px;
    color: red;
    font-size: 0.8rem;
}
.formelement .profpic{
    width: 100px;
    display: block;
}
.formelement .imgflex{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.formelement .imgflex img{
    width: 60px;
}
.formelement .cartpage{
    height: auto;
    max-height: 80vh;
}
.formelement .indicart{
    width: 650px;
    display: flex;
}
.formelement .cartdet{
    width: 100%;
    gap: 15px;
    align-items: center;
}
.formelement .cartdet img{
    width: 100px;
    height: 100px;
}
.formelement .cartdet div{
    text-align: left;
}
.formelement .cartdet div p{
    font-size: 1rem;
}
.formelement .cartdet p{
    font-size: 1.5rem;
}
.inpdiv{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    position: relative;
}
.inpdiv input{
    width: 230px;
    border-radius: 8px;
    border: none;
    box-shadow: inset 0 0 5px grey;
}
.inpdiv input[type='checkbox']
{
    width: 25px;
    height: 25px;
}
.inpdiv select{
    width: 230px;
    border-radius: 8px;
    border: none;
    box-shadow: inset 0 0 5px grey;
}
.inpdiv label{
    margin-left: 5px;
}
.dateinpdiv{
    display: flex;
}
.dateinpdiv .inpdiv input{
    width: 150px;
}
.search-container {
    position: relative;
    display: inline-block;
}
.inpdiv .search-container input {
    padding: 10px;
    padding-left: 40px; /* Space for the icon */    
    outline: none;
}
.inpdiv .search-container select {
    padding: 10px;
    padding-left: 40px; /* Space for the icon */    
    outline: none;
}
.inpdiv .search-container-right input {
    padding: 10px;
    padding-right: 40px; /* Space for the icon */    
    outline: none;
}
.inpdiv .searchresult .checkboxhold{
    display: flex;
    gap: 5px;
    align-items: center;
}
.inpdiv .searchresult input[type='checkbox'] {
    padding: 10px;
    margin: 3px;
    width: 20px;
    height: 20px;
    padding-right: 40px; /* Space for the icon */    
    outline: none;
}
.search-container .search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
.search-container-right button{
    background-color: transparent;
    margin: 0px;
    padding: 0px;
}
.search-container-right .search-icon {
    position: absolute;
    right: 20px;
    top: 45%;
    transform: translateY(0%);
    width: 20px;
    height: 20px;
}
.search-container input:focus .search-icon{
    display: none;
}
.search-container select:focus .search-icon{
    display: none;
}
.searchresult{
    position: absolute;
    top: 100%;
    left: 0px;
    width: 250px;
    border-radius: 5px;
    background-color: rgba(250, 250, 250);
    color: black;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 5px grey;
    z-index: 8;
}
.long{
    width: 90%;
}
.searchresult button{
    background-color: transparent;
    border: none;
    font-weight: bold;
    padding: 10px;
    text-align: left;    
}
.long button{
    font-weight: normal;
    padding: 3px;
    margin: 0px;
}
.searchresult button:hover{
    background-color: lightgrey;
}
.long button:hover{
    color: black;
}



.datatable{
    border-radius: 10px;
    overflow: hidden;
}
.datatable table{
    width: 100%;
    border-collapse: collapse;
}
.datatable tr{
    position: relative;
}
.datatable tr:nth-child(even){
    background-color: rgb(241, 241, 241);
}
.datatable tr:nth-child(odd){
    background-color: rgb(224, 224, 224);
}
.datatable tr:hover{
    background-color: lightgrey;
}
.datatable th{
    background-color: rgb(85,105,45);
    color: rgb(222, 222, 100);
    padding: 8px;
    text-align: left;
}
.datatable td{
    padding: 5px;
    text-align: left;
    align-items: center;
}
.datatable td a{
    text-decoration: none;
    border: none;
    display: inline-block;
    background-color: rgb(222, 222, 100);
    padding: 3px;
    border-radius: 5px;
    font-weight: bold;
    color: rgb(5, 60, 5);
    font-size: 15px;
}
.datatable td a img{
    width: 20px;
}
.datatable td button{
    text-decoration: none;
    border: none;
    display: inline-block;
    background-color: rgb(222, 222, 100);
    padding: 3px;
    border-radius: 5px;
    font-weight: bold;
    color: rgb(5, 60, 5);
    font-size: 15px;
}
.datatable td button img{
    width: 20px;
}
.datatable .lasttd{
    text-align: right;
    display: flex;
    gap: 5px;
    justify-content: end;
}
.datatable .logo{
    width: 50px;
    background-color: white;
    border-radius: 5px;
}
.datatable .verify{
    width: 25px;
}
.datatable td .flextd{
    display: flex;
    align-items: center;
    gap: 10px;
}
.datatable td .reason span{
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: white;
    color: black;
    padding: 3px;
    margin: 5px;
    border-radius: 5px;
}
.datatable tr:hover .reason span{
    display: block;
}

.settingtable td{
    padding: 10px;
    vertical-align: top;
}
.settingtable .flextd{
    display: flex;
    gap: 10px;
}
.settingtable td .notveri{
    display: flex;
    align-items: center;
    gap: 10px;
}
.settingtable td .statusimg{
    width: 25px;
}
.settingtable td .notveri button{
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    padding: 3px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    font-size: 0.9rem;
}
.settingtable td .notveri a{
    text-decoration: none;
    background-color: rgb(222, 222, 100);
    color: rgb(5, 60, 5);
    padding: 3px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    font-size: 0.9rem;
}
.settingtable td:first-child{
    font-weight: bold;
}

.addressholder{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.indiaddress{
    background-color: white;
    box-shadow: 0 0 5px grey;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    width: max-content;
}
.indiaddress td{
    padding: 3px;
    vertical-align: top;
}
.indiaddress td:first-child{
    font-weight: bold;
}
.actbtn{
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: none;
}
.actbtn button{
    display: inline-block;
    background-color: rgb(222, 222, 100);
    padding: 8px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px grey;
    border: none;
}
.actbtn button:hover{
    box-shadow: 0 0 5px grey;
}
.actbtn button img{
    width: 20px;
}
.indiaddress:hover .actbtn{
    display: block;
}

.profimg{
    text-align: center;   
}
.profimg img{
    width: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: inset 0 0 5px black;
}



.placepage{
    padding: 8px;
    display: grid;
    grid-template-columns: 25% 30% 40%;
    justify-content: space-evenly;
}
.placepage .datatable{
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.profiledet{
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 10px;
}
.profiledet div{
    margin: 5px;
}
.profiledet .profimg img{
    width: 100px;
}
.profiledet .addressholder{
    padding: 10px;
    box-shadow: inset 0 0 5px grey;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: 10px;
    height: 220px;
    overflow: auto;
    scrollbar-width: thin;
}
.profiledet .addressholder .settingtable{
    box-shadow: 0 0 5px grey;
    border-radius: 10px;
}
.profiledet td{
    text-align: left;
    padding: 3px;
}
.productholder{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: start;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px grey;
    width: 100%;
}
.float .product{
    width: 150px;
}
.float .product img{
    width: 120px;
    height: 120px;
}
.float .organic{
    font-size: 0.8rem;
    padding-right: 10px;
}
.float .product .flexdet img{
    width: 20px;
    height: 20px;
}

.inpgrp{
    text-align: left;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}
.inpgrp input[type='checkbox']{
    width: 15px;
    height: 15px;
}

.padder{
    margin-left: 20px;
    padding: 5px;
    border-radius: 5px;
    text-align: left;
    flex-wrap: wrap;
    width: 100%;
    padding-right: 25px;
}



.flexdiv .pagenums{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
/* .pagenums a{
    text-decoration: none;
    background-color: white;
    color: grey;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    box-shadow: none;
}
.pagenums .active{
    background-color: lightgrey;
    color: black;
    padding: 10px;
} */
.flexdiv .pagenums button{
    text-decoration: none;
    background-color: lightgrey;
    border: none;
    color: grey;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    box-shadow: none;
}
.flexdiv .pagenums button.active{
    background-color: rgb(222, 222, 100);
    color: black;
    padding: 10px;
}















































/*admin*/