﻿* {
    font-family: "IBM Plex Sans", sans-serif;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

img {
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
    object-fit: cover;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

input[type=text]:focus {
    box-shadow: 0px 0px 6px 0px #f78f26 !important;
    border: 1px solid #f78f26 !important;
    outline-color: #f78f26 !important;
    border-radius: 0px !important;
}

input[type=button]:focus {
    box-shadow: 0px 0px 6px 0px #f78f26 !important;
    border: 1px solid #f78f26 !important;
    outline-color: #f78f26 !important;
}

.passwordmy:focus {
    box-shadow: 0px 0px 6px 0px #f78f26 !important;
    border: 1px solid #f78f26 !important;
    outline-color: #f78f26 !important;
}

.myalertbox {
    width: 100%;
    height: auto;
    padding: 8px;
    border: 2px solid #abd373;
    margin: 10px 0px;
    -moz-box-shadow: inset 0 0 5px #abd373;
    -webkit-box-shadow: inset 0 0 5px #abd373;
    box-shadow: inset 0 0 5px #abd373;
    font-size: 1.2em;
    color: green;
    display: none;
}

    .myalertbox i {
        color: green;
    }
/* Scroll BAR */
/* width  Chrome*/
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 0px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }

/* width Firefox */
.scroller::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}

    /* Handle on hover */
    .scroller::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }



/* Thin Scrollbar */
:root {
    scrollbar-face-color: rgba(171, 211, 115, 0.99); /* Firefox 63 compatibility */
    scrollbar-track-color: rgb(46,54,69); /* Firefox 63 compatibility */
    scrollbar-color: rgba(171, 211, 115, 0.99) #000;
    scrollbar-width: thin;
    border-radius: 10px;
}

/* Scroll BAR */

.slick-slider {
    margin: 0px -10px;
}

.slick-slide {
    text-align: center;
    margin-right: 10px;
    margin-left: 10px;
}

.mybtnloadingmore {
    text-align: center;
    width: 102px;
    height: 25px;
    border: none;
    color: #2bbbad;
    transition: 0.5s;
    background-color: transparent;
    font-weight: 400;
    margin-right: 65px;
    margin-top: -10px;
    position: relative;
    top: -16px;
}

    .mybtnloadingmore:hover {
        background-position: right bottom;
        color: #f2d639;
        transition: 0.5s;
    }

::placeholder { /*Chrome, Firefox, Opera, Safari 10.1+*/
    color: gray;
    opacity: 1; /*Firefox*/
}

:-ms-input-placeholder { /*Internet Explorer 10-11*/
    color: gray;
}

::-ms-input-placeholder { /*Microsoft Edge*/
    color: gray;
}

a:hover {
    text-decoration: none;
}




/*--------------------Default.aspx--------------------------*/


/*--------------------header--------------------------*/
.header {
    padding: 0px 20px 0px;
    width: 100%;
    background-color: #fff;
    color: white;
    font-size: 12px;
    position: fixed;
    z-index: 9999999;
    height: 50px;
    padding-bottom: 5px;
}
/*-------------------topnav---------------------------*/

.topnav {
    width: 100%;
    /*background-color:red;*/
    height: auto;
    display: flex;
}

.imglogo {
    margin-top: 0px;
    margin-right: 10px;
    width: 80px;
    height: 40px;
}

.topnavleft {
    width: 30%;
    float: left;
    text-align: left;
    /*background-color:orange;*/
}

.topnavleftspan {
    font-size: 2em;
    font-family: 'Krona One';
    position: relative;
    top: 7px;
    color: #228654;
    margin-left: -3px;
    -webkit-font-smoothing: antialiased;
}

.topnavmiddle {
    width: 32%;
    position: relative;
    /*background-color:pink*/
}

    .topnavmiddle input[type=text] {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
        background-color: #fff;
        background-image: url('../images/searchbar2.png');
        background-position: 8px 8px;
        background-repeat: no-repeat;
        -webkit-transition: width 0.4s ease-in-out;
        transition: width 0.4s ease-in-out;
        border: none;
        position: relative;
        top: 10px;
        height: 30px;
        margin-right: 5px;
        padding-left: 30px;
        border-radius: 4px;
        border: 1px solid green;
    }


        .topnavmiddle input[type=text]:focus {
            width: 100%;
            box-shadow: none;
            outline: none;
            color: black;
        }


.searchbarauto {
    z-index: 9999999;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 45px;
    display: none;
    color: black;
    text-align: center;
    font-size: 16px;
}

    .searchbarauto h5 {
        display: block;
        width: 100%;
        background-color: #e2e2e2;
        padding: 5px;
        text-align: left;
        color: gray;
    }

    .searchbarauto ul {
        /*background-color:green;*/
        height: auto;
        margin: 0px 5px;
    }

    .searchbarauto li {
        /*background-color:yellow;*/
        padding: 0px;
        margin: 0px;
        list-style: none;
        display: block;
    }

        .searchbarauto li a {
            /*background-color:grey;*/
            display: flex;
            margin-bottom: 2px;
            color: #262626;
            font-size: 12px;
            text-align: left;
        }

            .searchbarauto li a img {
                width: 15%;
                padding: 0px;
                margin: 0px;
                margin-right: 5px;
            }

            .searchbarauto li a p span:nth-of-type(1) {
                width: 50%;
                color: green;
                margin-right: 20px;
            }

            .searchbarauto li a p span:nth-of-type(2) {
                width: 50%;
                color: red;
                margin-right: 20px;
            }

.viewallitems {
    display: block;
    text-align: center;
    font-size: 14px;
    padding: 5px;
    width: 100%;
    background-color: #e2e2e2;
}


.topnavright {
    width: 38%;
    /*background-color:violet;*/
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.myaccount {
    background-color: #fff;
    border: none;
    color: white;
    margin-top: 10px;
    outline: none;
    box-shadow: none;
}

    .myaccount li {
        display: inline-block;
    }

.lifirstclass {
    font-size: 16px;
    text-transform: capitalize;
    border-right: 0px !important;
    color: #619f42;
    font-weight: 900;
}

.myaccount li:not(:last-child) {
    display: inline-block;
    border-right: 1px solid #fff;
    padding: 0px;
    padding-right: 5px;
    height: 14px;
}

.myaccount li a {
    color: #228654;
    padding: 0px;
    font-weight: bold;
}

    .myaccount li a:hover {
        color: orange;
    }

.kartimg {
    margin-top: 0px;
    margin-left: 10px;
    height: 25px;
    width: 30px;
}

.kartcounting {
    width: 20px;
    height: 20px;
    background-color: #262626;
    display: block;
    border-radius: 100%;
    text-align: center;
    position: relative;
    color: white;
    font-weight: 900;
    font-size: 14px;
    left: 20px;
    top: 10px;
}



.barclass {
    font-size: 25px;
    position: relative;
    top: 0px;
    display: none;
}

.leftbarshow {
    margin-left: 0%;
}

.barclassmenuli {
    color: white;
    float: right;
    padding-right: 10px;
    padding-top: 11px;
    font-size: 10px;
    cursor: pointer;
}



/*-------------------menubar---------------------------*/
.menu {
    background-color: #228654;
    position: fixed;
    z-index: 99999;
    width: 100%;
    margin-top: 50px;
    text-align: left;
    height: 32px;
}

.mobileregisterition {
    display: none;
}

.menu ul {
    list-style: none;
    position: relative;
}

    .menu ul li {
        display: inline-block;
        list-style: none;
        line-height: 30px;
        overflow: hidden;
    }

.menu > ul > li:first-child {
    padding-left: 100px;
}


.menu ul li a {
    padding: 0px 10px 0px;
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14PX;
}

    .menu ul li a:hover {
        color: #fff;
    }

/*.menu ul li:hover {
                background-color: orange;
            }*/

.menu ul li:hover .submenu {
    visibility: visible;
}

.menuinsuideimg {
    height: 100%;
}

/*-------------*/

.submenu {
    width: 100%;
    padding: 0px;
    background-color: #fbfff6;
    height: auto;
    position: absolute;
    visibility: hidden;
    display: flex;
    justify-content: space-between;
    left: 0%;
    padding: 10px;
}

    .submenu > ul {
        margin-right: 20px;
        /*background-color:red;*/
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

        .submenu > ul > li {
            display: inline-block;
            text-align: left;
            cursor: pointer;
            margin: 0px 10px;
        }

    .submenu ul li:hover {
        background-color: transparent;
    }

    .submenu ul li a:hover {
        color: orange;
    }

    .submenu > ul > li > a {
        color: black;
        text-align: left;
        font-weight: 400;
        display: block;
        margin: 0px;
        padding: 0px;
        font-size: 16px;
        color: green;
        font-weight: 700;
    }






    .submenu ul li ul {
        display: block;
        text-align: left;
        cursor: pointer;
        width: 100%;
        /*background-color:yellow;*/
    }


        .submenu ul li ul li {
            display: block;
            text-align: left;
            cursor: pointer;
            width: 100%;
            margin: 0px;
        }

    .submenu > ul > li > ul > li > a {
        color: black;
        text-align: left;
        font-weight: 400;
        display: block;
        margin: 0px;
        padding: 0px;
        font-size: 13px;
        color: black;
    }

    .submenu > ul > li > ul > li:hover {
        background-color: transparent;
    }

    .submenu > ul > li > ul > li > a:hover {
        color: orange;
    }


.menuimg {
    width: 40%;
    min-height: 400px;
    background-color: transparent;
    overflow: hidden;
    box-sizing: border-box;
}



.forimg1 {
    width: 100%;
    height: 400px;
}

.forimg2 {
    width: 98%;
    height: 200px;
    margin: 2%;
}



.forimg31a {
    width: 50%;
    height: 400px;
    margin: 0px;
    float: left;
    display: block;
    padding: 0px !important;
    overflow: hidden;
    background-color: red;
}

.forimg32a {
    width: 48%;
    height: 196px;
    margin-left: 2%;
    margin-bottom: 2%;
    float: left;
    display: block;
    padding: 0px !important;
    overflow: hidden;
    background-color: red;
}

.forimg31 {
    width: 100%;
    height: 400px;
    float: left;
}

.forimg32 {
    width: 100%;
    height: 196.5px;
    float: left;
    background-color: 100% 100%;
    margin: 0px;
    padding: 0px;
    object-fit: cover;
}


.forimg4a {
    width: 48%;
    height: 200px;
    margin-left: 2%;
    margin-bottom: 2%;
    float: left;
    display: block;
    padding: 0px !important;
    overflow: hidden;
}

.forimg4 {
    width: 100%;
    height: 200px;
    background-color: 100% 100%;
    margin: 0px;
    padding: 0px;
    object-fit: cover;
}
/*-------------------*/


/*--------------------Modal in menu bar--------------------------*/



.modal-content {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
}

.mdheader {
    width: 100%;
    height: auto;
    background-color: #619f42;
    color: white;
    text-align: left;
    font-size: 12px;
    padding: 5px;
    margin-left: 0px;
}

#lblproname {
    color: black;
    text-align: left;
    font-size: 15px;
}

.txtdivbtn {
    background-color: #619f42;
    border: none;
    color: white;
    padding: 5px 15px;
    margin-top: -4px;
    font-size: 14px;
}

.modal-footer {
    height: 50px;
}

.checkmodalicon {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

    .checkmodalicon i {
        color: green;
        font-size: 2em;
        font-weight: 100;
        border-radius: 100%;
        border: 1px dashed green;
        padding: 10px;
    }



/*-------------------banner---------------------------*/

.banner {
    width: 100%;
    height: auto;
    background-color: whitesmoke;
    padding-top: 10px !important;
}


.shadow {
    /*-moz-box-shadow:    inset 0 0 10px #000000 !important;
   -webkit-box-shadow: inset 0 0 10px #000000 !important;
   box-shadow:         inset 0 0 10px #000000 !important;*/
    box-shadow: inset 0 8px 6px -6px #aca5a5 !important;
    -webkit-box-shadow: inset 0 8px 6px -6px #aca5a5 !important;
    -moz-box-shadow: inset 0 8px 6px -6px #aca5a5 !important;
}

/*custom bootstap css task*/
.carousel-caption {
    text-align: left;
    padding-bottom: 80px;
    margin-left: -5%;
    width: 50%;
    overflow: hidden;
}

    .carousel-caption h5 {
        font-size: 2.5rem;
        font-weight: 400;
        color: #abd373 !important;
        text-transform: uppercase;
    }

    .carousel-caption h2 {
        font-size: 5.5rem;
        font-weight: 900;
        color: #343434;
        text-transform: capitalize;
        animation-delay: 1s;
    }

    .carousel-caption p {
        font-size: 16px;
        color: #5d5d5d;
        text-transform: uppercase;
        animation-delay: 1s;
    }


/*-------------------featured---------------------------*/
.featured {
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    padding: 40px 40px 20px 40px;
}

    .featured h2 {
        text-align: center;
        display: block;
        font-weight: 500;
        color: #19988c;
    }

hr {
    width: 10%;
    background-color: #19988c;
    height: 1px;
    outline: none;
    border: none;
    margin-left: 45%;
}

.featuredbox {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    padding: 0 4% 2% 4%;
    flex-wrap: wrap;
}

    .featuredbox div {
        width: 23%;
        height: auto;
        background-color: #fff;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 8px solid white;
        -webkit-box-shadow: -3px 6px 35px -6px rgba(133,129,133,1);
        -moz-box-shadow: -3px 6px 35px -6px rgba(133,129,133,1);
        box-shadow: -3px 6px 35px -6px rgba(133,129,133,1);
        overflow: hidden;
        transition: 0.10s;
        margin: 10px;
    }

        .featuredbox div img {
            transition: 0.20s;
        }

            .featuredbox div img:hover {
                transform: scale(1.5);
                transition: 0.20s;
            }



.anchor {
    position: absolute;
    background-color: white;
    bottom: 10px;
    padding: 5px;
    word-wrap: break-word;
    width: 80%;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 10px;
    text-align: center;
    border: none;
    z-index: 99;
}

.fanhorimg {
    width: 100%;
    position: relative;
    transition: 0.10s;
    overflow: hidden;
    display: block;
}


/*-------------------Todaydeal Section2---------------------------*/


.todaydeal {
    width: 100%;
    padding: 40px 40px 20px 40px;
    text-align: center;
    position: relative;
    background-color: #fafafa;
}

    .todaydeal hr {
        background-color: #19988c !important;
    }


    .todaydeal h2 {
        color: #19988c;
        font-weight: 500;
    }

.todatdealanchorviewall {
    position: absolute;
    float: right;
    right: 11%;
    top: 116px;
    padding: 5px 10px;
    color: #ccfff0;
}

.Todaydealbox {
    width: 100%;
    box-sizing: border-box;
    padding: 0% 4% 2% 4%;
}



.test {
    width: 100%;
    height: auto;
    text-align: left !important;
    padding: 10px 0px 0% 0px;
}


.tblsection22 {
    width: 100%;
    background-color: #fafafa;
    table-layout: fixed;
    border-collapse: collapse;
}

    .tblsection22 tr {
        width: 102%;
        background-color: #fafafa;
        border-collapse: collapse;
        margin-left: -1%;
    }

        .tblsection22 tr td {
            background-color: #fafafa;
        }


.arrw {
    display: flex;
    background-color: #19988c;
    padding: 7px;
    margin-bottom: 10px;
    text-align: center;
    color: white;
    font-size: 20px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.slick-left {
    background-color: #2bbbad;
    color: #fff;
    padding: 2px 8px 2px 5px;
    text-align: center;
    font-size: 16px;
}

.slick-right {
    background-color: #2bbbad;
    color: #fff;
    padding: 2px 5px 2px 8px;
    text-align: center;
    font-size: 16px;
}

.newtopsize {
    margin-top: 0px !important;
    box-shadow: none !important;
    text-align: left!important;
}


/*-------------------Section-3---------------------------*/





.thrddiv {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 40px 40px 20px 40px;
}

    .thrddiv h2 {
        font-weight: 500;
        color: #19988c;
    }

    .thrddiv hr {
        background-color: #19988c;
    }

.trdcontent {
    box-sizing: border-box;
    display: flex;
    padding: 0% 4% 2% 4%;
    flex-wrap: wrap;
    flex-grow: 1;
}

.headertrddiv {
    width: 100%;
    text-align: center;
    background-color: #19988c;
    padding: 7px;
    font-size: 20px;
    color: white;
    font-weight: 400;
    padding-left: 110px;
}

.leftthrd {
    width: 35%;
    padding-top: 25px;
}

    .leftthrd img {
        height: 880px;
    }

.rightthrd {
    width: 64%;
    display: flex;
    flex-wrap: wrap;
    /*background-color:blue;*/
    box-sizing: content-box;
    justify-content: space-between;
    margin-left: 11px;
    position: relative;
    left: 10px;
}

#righttablesection3 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px!important;
    border-collapse: collapse;
    margin: 0px !important;
}

    #righttablesection3 tr {
        width: 33%;
        display: inline-block;
        padding: 0px;
        margin: 0px;
    }

.section3newwidth {
    width: 100% !important;
    margin-top: 10px !important;
    margin-bottom: 0px !important;
    margin-left: 10px !important;
}

.mybtn2newswction3 {
    width: 85px !important;
}

.anchortahsection3 {
    color: #ccfff0;
    font-size: 16px;
    float: right;
    padding-right: 5.5%;
    padding-top: 3px;
}


/*-------------------Section 4 ---------------------------*/
.div4 {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    padding: 3% 7% 3% 7%;
    flex-wrap: wrap;
    /*background-color:#fce0dd;*/
}

.container1 {
    position: relative;
    font-family: Arial;
    margin-top: 10px;
    margin-left: 20px;
    border: 0px solid #b9edde;
    -webkit-box-shadow: -3px 6px 25px -6px rgba(133,129,133,1);
    -moz-box-shadow: -3px 6px 25px -6px rgba(133,129,133,1);
    box-shadow: -3px 6px 25px -6px rgba(133,129,133,1);
}

.text-block {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(38, 38, 38, 0.44);
    color: white;
    padding: 0px 20px;
    padding-top: 10px;
    width: 200px;
}

    .text-block h4 {
        font-size: 16px;
    }

/*-------------------FifthDiv---------------------------*/
.div5 {
    background: url('../images/bkground.jpg') no-repeat scroll center center / cover;
    width: 100%;
    height: 350px;
    margin-bottom: 50px;
    text-align: center;
    padding-top: 100px;
}

.txtdiv5 {
    border: none;
    outline: none;
    width: 40%;
    height: 50px;
    margin-top: 20px;
    padding: 10px;
}

.btndiv5 {
    border: none;
    outline: none;
    width: 150px;
    height: 50px;
    margin-top: 20px;
    background-color: #abd373;
    color: white;
}


.txtdiv5::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: gray;
    font-size: 12px;
}

.txtdiv5:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: gray;
    opacity: 1;
    font-size: 12px;
}

.txtdiv5::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: gray;
    opacity: 1;
    font-size: 12px;
}

.txtdiv5:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: gray;
    font-size: 12px;
}

/*-------------------SixDiv---------------------------*/

.rfg6 {
    width: 23%;
    height: auto;
    border: 1px solid #f2f2f2;
    text-align: left;
}

.imgtag6 {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-size: cover;
}

.imgdiv6 {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

/*-------------------Last---------------------------*/
.last {
    background-color: #262626;
    height: auto;
    width: 100%;
    box-sizing: padding-box;
    padding: 40px 40px 40px 40px;
}

.footerwrapper {
    box-sizing: padding-box;
    height: auto;
    /*background-color:black;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .footerwrapper div {
        background-color: gray;
        width: 22%;
    }

        .footerwrapper div:first-child {
            width: 35%;
            background-color: #262626;
        }

            .footerwrapper div:first-child img {
                margin: 0 auto;
                display: block;
            }

            .footerwrapper div:first-child h2 {
                font-size: 1.5em;
                font-family: 'Krona One';
                color: #619f42;
                margin: 10px auto;
                display: block;
                text-align: center;
            }

            .footerwrapper div:first-child p {
                text-align: justify;
                color: gray;
                line-height: 1.5;
                margin-top: 20px;
            }

        .footerwrapper div:nth-child(2) {
            background-color: #262626;
            color: gray;
        }

            .footerwrapper div:nth-child(2) h3 {
                font-size: 1.2em;
                color: #619f42;
                margin: 10px auto;
            }

            .footerwrapper div:nth-child(2) ul {
                margin-left: 25px;
            }

                .footerwrapper div:nth-child(2) ul li {
                    line-height: 2.7;
                    font-size: 14px;
                }


        .footerwrapper div:nth-child(3) {
            background-color: #262626;
            color: gray;
            width: 30%;
        }

            .footerwrapper div:nth-child(3) h3 {
                font-size: 1.2em;
                color: #619f42;
                margin: 10px auto;
            }

            .footerwrapper div:nth-child(3) h4 {
                font-size: 1em;
                margin: 10px auto;
            }

            .footerwrapper div:nth-child(3) span {
                display: block;
                margin-bottom: 15px;
            }
/*----------------------------------------------------------------Collection.aspx--------------------------------------------*/

.wrappercollection {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 1%;
    padding-top: 110px;
    display: flex;
    flex-wrap: wrap;
}

.leftsearch {
    width: 22%;
    display: flex;
    flex-wrap: wrap;
    float: left;
    padding: 0.5%;
    background-color: #f8f8f8;
    flex-direction: column;
    flex-grow: 1;
}


.collectiontbleforleft {
   
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1em;
}
    .collectiontbleforleft  td:first-child {
    width:15px;
   
    }


.leftbarshow1 {
    display: none;
}

.slbar {
    display: none;
}

.slclose {
    float: right;
    display: none;
}



.myaccordian {
max-width:100%;
}

.myaccordian .contentbx{
position:relative;
margin:5px 5px;
}

.myaccordian .contentbx .label{
position:relative;
padding:10px;
background-color:green;
color:white;
cursor:pointer;
}

.myaccordian .contentbx .label::before{
content:'+';
position:absolute;
top:50%;
right:20px;
transform:translateY(-50%);
font-size:1.5em;
}

.myaccordian .contentbx.active .label::before{
content:'-';

}
.myaccordian .contentbx .content{
position:relative;
background-color:#fff;
height:0;
overflow:hidden;
overflow-y:auto;
/*transition:0.5s;*/
}

.myaccordian .contentbx.active .content{

height:auto;
padding:10px;
}


.rightcollection {
    width: 77%;
    height: auto;
    float: left;
    margin-left: 10px;
}

.menucollection {
    display: block;
    height: 50px;
    background-color: #f8f8f8;
    line-height: 50px;
    padding: 5px;
    box-sizing: content-box;
    border-bottom: 2px solid #f8f8f8;
}

.contentcollection {
    display: flex;
    /*background-color:blue;*/
    box-sizing: content-box;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 30px;
}

.productshowinh {
    width: 24%;
    min-height: 400px;
    background-color: #f8f8f8;
    margin: 5px;
    border: 8px solid white;
    -webkit-box-shadow: -3px 6px 35px -6px rgba(133,129,133,1);
    -moz-box-shadow: -3px 6px 35px -6px rgba(133,129,133,1);
    box-shadow: -3px 6px 35px -6px rgba(133,129,133,1);
    overflow: hidden;
    cursor: pointer;
}

.wrapperimg {
    overflow: hidden;
}

.wrapperimgcss {
    width: 100%;
    transition: 0.2s;
    height: 272px;
}

    .wrapperimgcss:hover {
        transform: scale(1.5);
        transition: 0.2s;
    }

.collectionname {
    padding: 5px;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 45px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.collectionnrate {
    padding: 5px;
    color: #abd373;
    font-weight: bold;
}

.menucollectionfooter {
    display: block;
    height: 50px;
    /*background-color:gray;*/
    line-height: 50px;
    padding: 5px;
    box-sizing: content-box;
    border-top: 2px solid #f8f8f8;
}
/*Button*/
.mybtn {
    background-color: #c7e1a1;
    text-align: center;
    border: none;
    height: 28px;
    width: 70px;
    color: white;
    background-image: linear-gradient(to right, #94b663, #c7e1a1,#94b663);
    background-position: left top;
    background-size: 200% 100%;
    transition: 0.5s;
    box-shadow: 0 inherit 6px -6px black;
}

.inptxt {
    border: none;
    height: 28px;
    padding-left: 5px;
}

    .inptxt:focus {
        box-shadow: none;
        outline: none;
        padding-left: 5px;
    }

.mybtn:hover {
    background-position: right bottom;
    color: #f2d639;
    transition: 0.5s;
}

/*--------------------------------------New Card*/
/*this is making card css*/

#tblpro {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

    #tblpro tr {
        width: 25%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }


.mycard {
    width: 92%;
    margin: auto;
    height: auto;
    background-color: #fff;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    border: 5px solid #fff;
    -webkit-box-shadow: -3px 6px 25px -6px rgba(133,129,133,1);
    -moz-box-shadow: -3px 6px 25px -6px rgba(133,129,133,1);
    box-shadow: -3px 6px 25px -6px rgba(133,129,133,1);
}

.mycarddefaultpage {
    width: 100% !important;
}

.myimg {
    width: 100%;
    overflow: hidden;
    z-index: 999;
    position: relative;
    background-color: white;
}

    .myimg a {
        width: 100%;
        background-color: red;
        padding: 0px;
    }

    .myimg img {
        width: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        background-size: 100% 100%;
        image-orientation: auto;
        transition: .5s ease;
        backface-visibility: hidden;
    }

        .myimg img:hover {
            transform: scale(1.2);
            transition: .5s ease;
        }

.showbutton {
    position: absolute;
    width: 40px;
    height: 200px;
    /*background-color:rgba(0, 0, 0, 0.51);*/
    /*background-color:transparent;*/
    top: 0;
    right: 0;
    display: flex;
    transition: 0.3s;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    /*flex-flow: column;*/
}

.mybtn3 {
    padding: 5px 10px 5px 10px;
    color: #262626;
    width: 40px;
    height: 36px;
    margin: 5px;
    border: none;
    position: relative;
    right: 2px;
    background-color: white;
    border-radius: 100%;
    backface-visibility: hidden;
    bottom: 0px;
}

    .mybtn3:hover {
        color: green;
    }

    .mybtn3:focus {
        box-shadow: none;
        outline: none;
    }

.wishlist {
    color: red;
}

/*this is making card  shownewandoffdiv  circle red green css*/
.shownewandoffdiv {
    width: 50px;
    height: 100px;
    /*background-color:red;*/
    align-self: flex-start;
    padding-top: 10px;
}

.lblnew {
    font-size: 12px;
    width: 35px;
    height: 35px;
    background-color: #cb2525;
    border-radius: 100%;
    text-align: center;
    overflow: hidden;
    line-height: 1;
    padding-top: 10px;
    position: relative;
    top: 1px;
    color: white;
    font-weight: 700;
}

.lblnew2 {
    font-size: 12px;
    width: 35px;
    height: 35px;
    background-color: #28c628;
    border-radius: 100%;
    text-align: center;
    overflow: hidden;
    line-height: 1;
    padding-top: 6px;
    position: relative;
    top: -6px;
    color: white;
    font-weight: 600;
}




/*this is product item contents css*/
.itemanchor {
    padding: 0px;
    font-weight: 400;
    text-decoration: none;
}

    .itemanchor:hover {
        padding: 0px;
        font-weight: 400;
        text-decoration: none;
        color: blue !important;
    }

.productname {
    text-transform: capitalize;
    font-size: 14px;
    width: 100%;
    color: black;
    padding: 5px;
    box-sizing: padding-box;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /*background-color: lightblue;*/
    margin: 0px;
    border-bottom: 1px solid #e4e4e4;
    height: 50px;
}

    .productname:hover {
        color: #2b56bb;
    }
/*this is product item  rating contents css*/

.ratingproducts {
    display: flex;
    color: orange;
    padding: 5px;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #e4e4e4;
}

    .ratingproducts i {
        margin-right: 2px;
    }

    .ratingproducts span {
        color: gray;
        font-size: 12px;
        display: block;
        width: 43%;
        text-align: left;
        margin-top: -3px;
        background-color: red;
        padding-left: 5px;
    }

.isaleqty {
    color: green;
    float: right;
}
/*this is product item  mrpcontents css*/
.mrpproduct {
    /*background-color: #0094ff;*/
    color: white;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e4e4e4;
    flex-wrap: wrap;
    font-size: 14px;
    align-items: center;
}

    .mrpproduct span:first-child {
        color: red;
        font-weight: 600;
        text-decoration: line-through;
    }

    .mrpproduct span:nth-child(2) {
        color: black;
        font-weight: 600;
    }

    .mrpproduct span:nth-child(3) {
        color: green;
        font-size: inherit;
    }
/*this is product item  ADD button contents css*/
.addproducts {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 5px;
    padding: 11px 0px;
}

.mybtn2 {
    background-color: #262626;
    text-align: center;
    width: 90px;
    margin: 0px 5px;
    border: none;
    color: white;
    transition: 0.5s;
    float: right;
    font-size: 12px;
    height: 25px;
}

    .mybtn2:hover {
        background-color: #f2d639;
        transition: 0.5s;
    }

.mybtn2new {
    top: 0px;
}

.itemid {
    display: none;
}

.mybtn2col2 {
    background-color: #19988c !important;
}

.aview {
    display: block !important;
}
/*--------------------------------------New Card End*/


/*----------------------------------------------------------------product.aspx--------------------------------------------*/
.productdescription {
    width: 100%;
    padding: 0px 4%;
    /*background-color:gray;*/
    display: flex;
    flex-wrap: wrap;
    padding-top: 90px;
    height: auto;
}



.productwrapper {
    width: 80%;
    height: auto;
    /*background-color:lightcyan;*/
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    float: left;
}

.prductleft {
    width: 40%;
    height: auto;
    /*background-color: red;*/
    margin: 0px;
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: center;
   
}

.prductimgcontiner {
    max-width: 100%;
    max-height: auto;
    /*background-color:teal;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    height:auto;
}

.productimgesmain {
    /*margin: auto;*/
    max-width: 100%;
    max-height: 100%;
    border: 5px solid #fff;
    object-fit: cover;
}

.imgborder {
    border: 2px solid green !important;
}



.multilpleimg {
    width: 15%;
    height: auto;
    /*background-color: pink;*/
    display: flex;
    flex-wrap: wrap;
    order: -1;
}

.productlisimgwrapperul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 10px;
}

    .productlisimgwrapperul li {
        list-style: none;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-star;
    }

.productlisimg1 {
  
    max-width: 100%;
    margin-bottom: 10px;
    width:100%;
}

.ProductRight {
    width: 60%;
    height: auto;
    max-height: auto;
    /*background-color:yellow;*/
    margin: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

    .ProductRight h1 {
        display: block;
        height: auto;
        width: 100%;
        border-bottom: 1px solid #f2f2f2;
        font-size: 1.5em;
    }

.starrating {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f2f2f2;
    height: 35px;
}

    .starrating li {
        list-style: none;
        text-decoration: none;
        color: #f2a922;
    }


    .shortdesc {
    width: 100%;
    height: auto;
    text-align:left;
    border-bottom: 1px solid #f2f2f2;
}


.ratingmrp {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    border-bottom: 1px solid #f2f2f2;
}

.producmrp {
    color: red;
    text-decoration: line-through;
    margin-top: -17px;
}

.productpricesingle {
    font-weight: 700 !important;
    font-size: 1.2rem !important;
}

.addtokartqty {
    width: 100%;
    height: 60px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f2f2f2;
}

.txtproqty {
    width: 40px;
    height: 50px;
    border: 2px solid #f2f2f2;
    padding: 5px;
    text-align: center;
}

.arrowbutton {
    width: 30px;
    height: 50px;
    margin-left: 10px;
}

.btnuppro {
    width: 100%;
    height: 25px;
    border: none;
    color: white;
    background-color: #262626;
    border: 1px solid black;
    font-weight: 800;
}

    .btnuppro:hover {
        background-color: orange;
    }

.btnupproaddtocart {
    width: 150px;
    height: 50px;
    font-size: 1.2em;
    border: none;
    color: white;
    background-color: #262626;
    margin-left: 10px;
}

.prowishlistul li {
    list-style: none;
    display: inline-block;
}

.mybtn6 {
    padding: 5px 10px 5px 10px;
    color: #262626;
    width: 36px;
    height: 36px;
    margin: 5px;
    border: none;
    position: relative;
    right: 2px;
    background-color: #f2f2f2;
    border-radius: 100%;
    backface-visibility: hidden;
}

    .mybtn6:hover {
        color: red;
        background-color: #262626;
    }

    .mybtn6:focus {
        box-shadow: none;
        outline: none;
    }

.propg {
    text-align: justify;
    font-size: 12px;
}

.prooffer {
    width: 20%;
    height: auto;
    /*background-color:gray;*/
    float: left;
}

.prodesc {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

    .prodesc h3 {
        display: block;
        width: 100%;
        border-bottom: 1px solid #f2f2f2;
        font-weight: 400;
      
    }
/*==============ResisterUser.aspx===========*/
/*==============Not Working=================*/
.regwrapper {
    width: 100%;
    padding: 0px 15px 15px 15px;
}

.regdiv1 {
    position: relative;
    top: 100px;
    width: 30%;
    padding: 10px;
    box-sizing: padding-box;
    background-color: #f2f2f2;
    overflow: hidden;
    padding-bottom: 30px;
    float: left;
    left: 20px;
}

    .regdiv1 hr {
        width: 100%;
        margin-left: 0px;
    }

    .regdiv1 h2 {
        font-weight: 300;
        font-size: 1.5em;
    }

.txtdiv {
    margin-bottom: 15px;
}

    .txtdiv i {
        position: relative;
        left: 28px;
        background-color: #abd373;
        width: 27px;
        height: 25px;
        text-align: center;
        top: 1px;
        font-size: 1.2em;
        color: white;
        padding-top: 3px;
        z-index: 9999;
    }

    .txtdiv input[type=text], .txtdiv input[type=password] {
        border: 1px solid #abd373;
        width: 80%;
        padding-left: 30px;
        position: absolute;
    }

        .txtdiv input[type=text]:focus, .txtdiv input[type=password]:focus {
            box-shadow: none;
            outline: none;
            border: 1px solid #abd373;
        }

.regbtn {
    float: right;
    height: 30px;
    width: 100px;
    margin-right: 30px;
}

.regdiv1 a {
    font-size: 12px;
    left: 25px;
    top: 10px;
    position: relative;
}

.userlogincretae {
    width: 100%;
    height: auto;
    /*background-color:green;*/
    height: 120px;
}


.userlogin {
    width: 100%;
    height: 120px;
    /*background-color:red;*/
}

.regdiv2 {
    position: relative;
    top: 100px;
    width: 65%;
    height: auto;
    padding: 10px;
    box-sizing: padding-box;
    overflow: hidden;
    padding-bottom: 30px;
    float: left;
    margin-left: 5%;
    margin-bottom: 270px;
}

/*==============MyAccounts.aspx===========*/

.myaccountalert {
    width: 56%;
    height: 50px;
    padding: 8px;
    margin: 10px 0px;
    font-size: 1.2em;
    color: green;
    margin-left: 22%;
}

.myaccountalertclass {
    border: 2px solid #abd373;
    -moz-box-shadow: inset 0 0 5px #abd373;
    -webkit-box-shadow: inset 0 0 5px #abd373;
    box-shadow: inset 0 0 5px #abd373;
    background-color: white;
}

.myaccountpage {
    width: 100%;
    /*background-color:gray;*/
    height: 100vh;
    padding-top: 100px;
}

.wrappermyaccountspage {
    margin: auto;
    width: 55%;
    height: auto;
    /*background-color:red;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

    .wrappermyaccountspage div:not(.txtpge) {
        width: 100%;
        height: 100px;
        background-color: white;
        margin: auto;
        border: 1px solid #e2e2e2;
        margin-bottom: 15px;
        display: flex;
        padding: 20px;
        align-items: center;
        transition: 0.3s;
    }

    .wrappermyaccountspage h2 {
        display: block;
        width: 100%;
        font-weight: 400;
        font-size: 1.5em;
        padding-left: 15px;
    }





    .wrappermyaccountspage a {
        width: 45%;
        padding: 0px;
        margin: 0px;
        color: black;
    }

    .wrappermyaccountspage div img {
        height: 50px;
        transition: 0.3s;
    }

.txtpge {
    height: auto;
    padding-left: 15px;
    margin-top: 15px;
}

    .txtpge > h5 {
        font-size: 16px;
    }

    .txtpge p {
        margin-top: -5px;
        font-size: 14px;
    }

.wrappermyaccountspage div:hover img {
    transform: scale(1.3);
    transition: 0.3s;
}

/*==============Register.aspx===========*/


.registerpage {
    width: 100%; /*background-color:gray;*/
    height: 100vh;
    padding-top: 100px;
    text-align: center;
    background-image: url('../images/bgimg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-size: 100% 100%;
}

    .registerpage img {
        width: 5%;
    }

    .registerpage h2 {
        display: block;
        width: 100%;
        font-weight: 400;
        font-size: 1em;
        text-align: center;
        color: green;
    }

.wrapperregisterpage {
    margin: auto;
    width: 30%;
    height: auto;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    border: 1px solid #e2e2e2;
    padding: 10px;
    position: relative;
    -webkit-box-shadow: -1px 3px 15px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 3px 15px -2px rgba(0,0,0,0.75);
    box-shadow: -1px 3px 15px -2px rgba(0,0,0,0.75);
}



    .wrapperregisterpage h5 {
        display: block;
        width: 100%;
        font-weight: 400;
        text-align: left;
        background-color: #509821;
        padding: 5px;
        color: white;
        text-align: center;
    }

    .wrapperregisterpage label {
        color: black;
        width: 100%;
        text-align: left;
        margin: 0px;
        font-weight: 500;
        margin-bottom: 2px;
    }

    .wrapperregisterpage input[type=text], .wrapperregisterpage input[type=password] {
        border: 1px solid #bfbfbf;
        height: 30px;
        border-radius: 0px;
        margin-bottom: 10px;
    }

        .wrapperregisterpage input[type=text]:focus, .wrapperregisterpage input[type=password]:focus {
            box-shadow: 0px 0px 6px 0px #f78f26;
            border: 1px solid #f78f26;
        }

.passwordsee {
    float: right;
    display: block;
    width: 25px;
    height: 25px;
    text-align: right;
    color: green;
    font-weight: 600;
    font-size: 14px;
    /*background-color:red;*/
    align-self: flex-end;
    position: absolute;
    top: 40%;
    right: 1%;
}

.shwpass2 {
    font-size: 20px;
    cursor: pointer;
    top: 40px;
    position: relative;
    left: -50%;
    color: black;
    transition: 0.3s;
}

    .shwpass2:hover {
        color: orange;
        transition: 0.3s;
    }



.chkforshowpassword {
    width: 17px;
    height: 17px;
    position: relative;
    top: 3px;
    right: 3px;
}

.mobilenumber {
    width: 100%;
    height: auto;
    display: flex;
    padding: 0px;
    justify-content: space-between;
}

.otptxtbox {
    margin-top: -15px;
    position: relative;
    top: -15px;
}

.phone {
    width: 20%;
    background-color: #e9ebee;
}

.mobilenumbertxt {
    width: 77%;
    padding: 10px;
}

    .mobilenumbertxt:focus {
        outline: none;
        box-shadow: none;
        border: 1px solid red;
    }

.continue {
    width: 40%;
    margin-left: 60%;
    margin-top: 5px;
    position: relative;
    left: 5px;
    height: 40px;
}

.otp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.60);
    height: 100%;
    display: none;
}

.otpwrapper {
    width: 70%;
    height: auto;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 20px;
    margin-top: 50px;
}

    .otpwrapper h2 {
        display: block;
        background-color: orange;
        color: white;
        padding: 5px;
    }

.otpcontent {
    width: 90%;
    margin-left: 5%;
}

.resendotp {
    border: none;
    float: right;
    margin-left: 10px;
    color: #2bbbad;
    position: relative;
    top: -27px;
    background-color: transparent;
}

.btnregister {
    border: none;
    background-color: orange;
    color: white;
    float: right;
    font-size: 14px;
    width: 70px;
    height: 30px;
    margin-top: 0px;
    margin-left: 10px;
}

.otpcontent span {
    margin-top: 15px;
    color: green!important;
    font-size: 10px;
}

/*=================================LoginandSecurity==================================*/

.loginpage {
    width: 100%;
    /*background-color:gray;*/
    height: 100vh;
    padding-top: 100px;
}

.wrapperloginpage {
    margin: auto;
    width: 30%;
    height: auto;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /*border: 1px solid #e2e2e2;*/
    position: relative;
    top: 60px;
}

.loginwrapper {
    width: 100%;
    height: 100px;
    background-color: white;
    border: 1px solid #e2e2e2;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    padding-right: 10px;
}

.txtpgelogin {
    width: 100%;
    height: auto;
    background-color: white;
    /*border: 1px solid #e2e2e2;*/
    margin-bottom: 15px;
    align-items: center;
    transition: 0.3s;
    margin-top: 15px;
}

.wrapperloginpage ul {
    display: flex;
    width: 100%;
    font-weight: 400;
    font-size: 1em;
}

    .wrapperloginpage ul li {
        text-decoration: none;
        list-style: none;
    }


.wrapperloginpage div img {
    height: 80px;
    transition: 0.3s;
}

.txtpgelogin {
    height: auto;
    padding-left: 15px;
    width: 100%;
}

    .txtpgelogin > h5 {
        font-size: 16px;
    }

    .txtpgelogin p {
        margin-top: -5px;
        font-size: 14px;
    }

/*.wrapperloginpage div:hover img {
    transform: scale(1.2);
    transition: 0.3s;
}

.wrapperloginpage div:hover {
    transition: 0.3s;
    background-color: lightgray;
}

    .wrapperloginpage div:hover .btnpasswordloginpage {
        transition: 0.3s;
        background-color: lightgray;
    }*/

.lgSebtn {
    width: 100px;
    border: none;
    background-color: #f1c659;
    padding: 5px 10px;
    border: 1px solid black;
}

    .lgSebtn:hover {
        background-color: #d8a421;
    }

.btnpasswordloginpage, .btnpasswordloginpage:focus, .btnpasswordloginpage:hover {
    border: none;
    box-shadow: none;
    background-color: white;
    border: 2px dashed;
    padding-left: 10px;
    margin-right: 10px;
}

.shwpass {
    font-size: 20px;
    cursor: pointer;
    top: -31px;
    position: relative;
    left: -50%;
}




.changename {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.61);
    top: 0;
    right: 0;
    display: none;
}

.changenamewrapper {
    width: 70%;
    height: auto;
    padding-bottom: 15px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .changenamewrapper h5 {
        display: block;
        background-color: orange;
        color: white;
        padding: 5px;
    }

.changenamewrapperinside {
    width: 90%;
    margin-left: 5%;
}

.settxtboximg {
    position: absolute;
    left: 5%;
    top: 44%;
    color: #262626;
    display: block;
    width: 30px;
    text-align: center;
    height: 30px;
    background-color: #e2e2e2;
    font-size: 25px;
    padding-top: 2px;
}

.settxtboximg2 {
    position: absolute;
    left: 0%;
    top: 29%;
    color: #262626;
    display: block;
    width: 30px;
    text-align: center;
    height: 30px;
    background-color: #e2e2e2;
    font-size: 25px;
    padding-top: 2px;
}

.txtloginbox {
    border: 1px solid #e2e2e2;
    height: 30px !important;
    border-radius: 0px;
    margin-bottom: 10px;
    padding-left: 35px !important;
}

.crossloginname {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 25px;
}



.changenumber {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.61);
    top: 0;
    right: 0;
    display: none;
}

.changenumberwrapper {
    width: 70%;
    height: auto;
    padding-bottom: 15px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .changenumberwrapper h5 {
        display: block;
        background-color: orange;
        color: white;
        padding: 5px;
    }

.changenumberwrapperinside {
    width: 90%;
    margin-left: 5%;
    background-color: white;
}

.changenumberwrapperinside2 {
    width: 90%;
    margin-left: 5%;
    background-color: white;
    position: absolute;
    top: 42PX;
    display: none;
}


.crossloginnumber {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 25px;
}

.lgnamebtn2 {
    border: none;
    background-color: orange;
    color: white;
    float: right;
    font-size: 14px;
    width: 70px;
    height: 30px;
    margin-top: 10px;
}

.lgbtnresentotp, .lgbtnresentotp:focus {
    float: right;
    background-color: transparent;
    border: none;
    color: #2bbbad;
    box-shadow: none;
    outline: none;
}



.changeemail {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.61);
    top: 0;
    right: 0;
    display: none;
}

.changeemailwrapper {
    width: 70%;
    height: auto;
    padding-bottom: 15px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .changeemailwrapper h5 {
        display: block;
        background-color: orange;
        color: white;
        padding: 5px;
    }

.changemailwrapperinside {
    width: 90%;
    margin-left: 5%;
}

.crossloginemail {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 25px;
}



.changepassword {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.61);
    top: 0;
    right: 0;
    display: none;
}

.changepasswordwrapper {
    width: 70%;
    height: auto;
    padding-bottom: 15px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .changepasswordwrapper h5 {
        display: block;
        background-color: orange;
        color: white;
        padding: 5px;
    }

.changepasswordwrapperinside {
    width: 90%;
    margin-left: 5%;
    background-color: white;
}

.changepasswordwrapperinside2 {
    width: 90%;
    margin-left: 5%;
    background-color: white;
    position: absolute;
    top: 42PX;
    display: none;
}


.crossloginpassword {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 25px;
}

/*==============MangeAddress.aspx===========*/

.myaddresspage {
    width: 100%;
    /*background-color:gray;*/
    height: 100vh;
    padding-top: 100px;
}

.wrappermyaddresspage {
    margin: auto;
    width: 70%;
    height: auto;
    /*background-color:red;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-left: 17%;
}


    .wrappermyaddresspage h2 {
        display: block;
        width: 100%;
        font-weight: 400;
        font-size: 1.5em;
        padding-left: 15px;
    }

    .wrappermyaddresspage ul {
        display: flex;
        width: 100%;
        font-weight: 400;
        font-size: 1em;
    }

        .wrappermyaddresspage ul li {
            text-decoration: none;
            list-style: none;
        }

#addrestable {
    width: 100%;
}

    #addrestable tr {
        width: 33%;
        display: inline-block;
    }

    #addrestable td {
        width: 100%;
        display: block;
    }

.firsttd {
    display: flex;
}

.addadress {
    margin: auto;
    width: 40%;
    height: 100px;
    display: flex;
    flex-direction: column !important;
}

    .addadress i {
        color: gray;
        font-size: 3em;
        align-self: center;
    }

.addressbar {
    margin-bottom: 30px;
    width: 90% !important;
    height: 270px;
    background-color: #f8f8f8;
    border: 2px dashed lightgrey;
    position: relative;
}

.brderaddress {
    border: 2px solid lightgrey;
}

.btnaddress {
    border: none;
    background-color: #262626;
    color: white;
    padding: 5px 10px;
    margin-top: 10px;
    transition: 0.3s;
}

    .btnaddress:hover, .btnaddresspopup:hover, .lnkbtneditaddress:hover {
        background-color: orange;
        transition: 0.3s;
        color: white;
    }

.addressbartop {
    display: block;
    padding: 2px 10px;
    height: 20px;
    width: 100%;
    border-bottom: 1px solid gray;
    font-size: 12px;
    font-weight: 600;
    color: green;
}


.addressbarwrapper {
    width: 100%;
    height: 185px;
    padding: 10px;
}

    .addressbarwrapper p {
        margin: 0px;
    }

#adusername {
    width: 100%;
    font-weight: 500;
}

#adaddress1, #adaddress2, #ladlandmarks {
    font-size: 12px;
    width: 100%;
}

#spanlandmarks {
    font-weight: 700;
}

#adstate, #adnumber {
    font-weight: 700;
    font-size: 12px;
}

#state, #city, #pincode, #f2, #id {
    display: none;
    font-size: 10px;
}

.addressbarbelow {
    width: 100%;
    display: block;
    height: 40px;
    text-align: center;
}

.addressbarbottom {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 32px;
    /*border-top: 1px solid gray;*/
}

    .addressbarbottom ul li {
        display: inline-block;
        list-style: none;
    }

        .addressbarbottom ul li:first-child {
            width: 25%;
        }

        .addressbarbottom ul li:nth-child(2) {
            width: 25%;
        }

        .addressbarbottom ul li:nth-child(3) {
            width: 50%;
            text-align: right;
            padding-right: 10px;
        }

.lnkbtneditaddress {
    border: none;
    background-color: black;
    color: white;
    margin-left: 10px;
    width: 60px;
    padding: 2px 0px;
    font-size: 12px;
}

.lnkbtnDeleveraddress {
    border: none;
    background-color: #f78f26;
    color: white;
    margin-left: 7px;
    width: 94%;
    padding: 2px 15px;
    font-size: 12px;
}

.clrbtn {
    background-color: #dc1b1b;
}

.clrbtn2 {
    background-color: transparent;
    color: #1224f1;
    width: auto;
    font-weight: 700;
    padding: 3px 5px;
}


.mdadress {
    display: block;
    text-align: center;
    background-color: #262626;
    color: white;
    font-size: 1.2em;
    padding: 5px 0px;
}

.lbladdress {
    margin-top: 8px;
    font-weight: 500;
}



/*==============Add Address.aspx===========*/

.addaddresspage {
    width: 100%;
    /*background-color:gray;*/
    height: 100vh;
    padding-top: 100px;
}

.wrapperaddaddresspage {
    margin: auto;
    width: 70%;
    height: auto;
    /*background-color:red;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-left: 17%;
}


    .wrapperaddaddresspage h2 {
        display: block;
        width: 100%;
        font-weight: 400;
        font-size: 1.5em;
        padding-left: 15px;
    }

    .wrapperaddaddresspage ul {
        display: flex;
        width: 100%;
        font-weight: 400;
        font-size: 1em;
    }

        .wrapperaddaddresspage ul li {
            text-decoration: none;
            list-style: none;
        }

.txtaddress {
    width: 100%;
    height: 30px;
    padding: 5px;
    position: relative;
    top: -8px;
}

.ddlstatedropdown {
    width: 100%;
    height: 30px;
    margin-top: 32px;
}

.btnaddresspopup {
    background-color: #262626;
    border: none;
    color: white;
    padding: 5px 15px;
}

/*==============Login.aspx===========*/

.loginpage {
    width: 100%; /*background-color:gray;*/
    height: 100vh;
    padding-top: 40px;
}

.loginpagewrapper {
    margin: auto;
    width: 100%;
    height: 93.6vh;
    /*background-color:greenyellow;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    overflow: hidden;
}

.loginright {
    width: 60%;
    /*background-color:white;*/
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    background-image: url('../images/login.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-size: 100% 100%;
}

    .loginright img {
        margin: auto;
        height: 100%;
    }

.loginleft {
    width: 40%;
    background-color: #262626;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-image: url('../images/login2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-size: 100% 100%;
}

.loginwrapperleft {
    margin-left: 10%;
    width: 80%;
    justify-content: center;
    height: 500px;
    /*background-color:red;*/
    margin-top: 30px;
    text-align: center;
    position: relative;
}

    .loginwrapperleft label {
        width: 100%;
        display: block;
        text-align: left;
        font-weight: 500;
        font-size: 1.2em;
        color: #60a042;
    }

    .loginwrapperleft input[type=text], .loginwrapperleft input[type=password] {
        width: 100%;
        height: 50px;
        padding: 10px;
        padding-left: 60px;
        font-size: 1.1em;
        border: 1px solid gray;
    }

.loginbutton {
    width: 100%;
    height: 50px;
    padding: 10px;
    margin-top: 20px;
    background-color: #60a042;
    border: none;
    color: white;
}

    .loginbutton:hover {
        background-color: #abd372;
    }

.keyuser {
    background-color: #60a042;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 2em;
    text-align: center;
    position: absolute;
    left: 0;
    padding-top: 10px;
}

.keyuser2 {
    width: 50px;
    height: 50px;
    color: black;
    font-size: 1.5em;
    text-align: center;
    position: absolute;
    right: 0;
    padding-top: 12px;
    cursor: pointer;
}

    .keyuser2:hover {
        color: orange;
    }

.loginwrapperleft ul {
    margin-top: 20px;
}

    .loginwrapperleft ul li {
        display: inline-block;
        width: 49.5%;
        text-align: left;
    }

        .loginwrapperleft ul li a {
            color: white;
        }

        .loginwrapperleft ul li:nth-child(2) {
            text-align: right;
        }

.myrow {
    width: 100%;
    position: relative;
    text-align: left;
    margin-top: 15px;
}

.alertboxlogin {
    width: 100%;
    height: 50px;
    padding: 8px;
    margin: 10px 0px;
    font-size: 1.2em;
    color: green;
}

.alertboxloginclass {
    border: 2px solid #abd373;
    -moz-box-shadow: inset 0 0 5px #abd373;
    -webkit-box-shadow: inset 0 0 5px #abd373;
    box-shadow: inset 0 0 5px #abd373;
    background-color: white;
}



.forgetpasswrodlogin {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.61);
    top: 0;
    right: 0;
    display: none;
}


#showmssglogincontrol {
    height: 32px;
    width: 100%;
}

.forgetpasswrodloginwrapper {
    width: 70%;
    height: auto;
    padding-bottom: 15px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.forgetpasswrodlogin h5 {
    display: block;
    background-color: orange;
    color: white;
    padding: 5px;
}

.forgetpasswrodlogininside {
    width: 90%;
    margin-left: 5%;
}

.crossloginpage {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 25px;
}

.settxtboxloginimg1 {
    position: absolute;
    left: 5%;
    top: 32%;
    color: #262626;
    display: block;
    width: 30px;
    text-align: center;
    height: 30px;
    background-color: #e2e2e2;
    font-size: 25px;
    padding-top: 2px;
}

.settxtboxloginimg2 {
    position: absolute;
    left: 5%;
    top: 47.5%;
    color: #262626;
    display: block;
    width: 30px;
    text-align: center;
    height: 30px;
    background-color: #e2e2e2;
    font-size: 25px;
    padding-top: 2px;
}

.settxtboxloginimg3 {
    position: absolute;
    left: 5%;
    top: 63.2%;
    color: #262626;
    display: block;
    width: 30px;
    text-align: center;
    height: 30px;
    background-color: #e2e2e2;
    font-size: 25px;
    padding-top: 2px;
}

.resentotplogin {
    border: none;
    background-color: transparent;
    color: #2bbbad;
    float: left;
    font-size: 14px;
    width: auto;
    height: 30px;
    margin-top: 10px;
}



.loginwithotp {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.61);
    top: 0;
    right: 0;
    display: none;
}



#showmssglogincontrollogin {
    height: 32px;
    width: 100%;
}

.loginwithotpwrapper {
    width: 70%;
    height: auto;
    padding-bottom: 15px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loginwithotp h5 {
    display: block;
    background-color: orange;
    color: white;
    padding: 5px;
}

.loginwithotpwrapperinside {
    width: 90%;
    margin-left: 5%;
}

.settxtboxloginimg2 {
    position: absolute;
    left: 5%;
    top: 47.5%;
    color: #262626;
    display: block;
    width: 30px;
    text-align: center;
    height: 30px;
    background-color: #e2e2e2;
    font-size: 25px;
    padding-top: 2px;
}

.resentotplogin {
    border: none;
    background-color: transparent;
    color: #2bbbad;
    float: left;
    font-size: 14px;
    width: auto;
    height: 30px;
    margin-top: 10px;
}
/*==============purchaserform.aspx===========*/
.mobomrp {
    display: none;
}

.purchasepage {
    width: 75%;
    min-height: 450px;
    height: auto;
    float: left;
    position: relative;
    margin-bottom: 110px;
    padding: 50px;
    padding-top: 90px;
}




.itempurchase {
    width: 100%;
    margin-left: 0%;
    height: auto;
    /*background-color:burlywood;*/
    margin-top: 10px;
}

.purtbl {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 3px;
}

    /*.purtbl {
    width: 100%;
    border-collapse: collapse;
}*/

    .purtbl th {
        background-color: #f2f2f2;
        font-weight: 400;
        text-align: right;
        padding-right: 5px;
        height: 50px;
    }

        .purtbl th:first-child {
            width: 60%;
        }

        .purtbl th:nth-child(2) {
            width: 10%;
        }

        .purtbl th:nth-child(3) {
            width: 10%;
        }

        .purtbl th:nth-child(4) {
            width: 10%;
        }

        .purtbl th:nth-child(5) {
            width: 10%;
        }




.itempurchasewarpper {
    width: 100%;
    height: 100px;
    overflow: hidden;
    border: 0px solid #f3f1f1;
}

.purleft {
    width: 12%;
    height: 100px;
    /*background-color:gold;*/
    float: left;
    overflow: hidden;
}

.purright {
    width: 88%;
    height: 100px;
    /*background-color:ghostwhite;*/
    float: left;
    overflow: hidden;
    padding-top: 10px;
}

    .purright h5 {
        font-size: 14px;
        height: 18px;
        font-weight: 400;
        /*overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;*/
        padding-left: 10px;
        width: 55%;
    }

.purimg {
    height: 100%;
    width: 100%;
    border: 1px solid #f2f2f2;
}

.purratingmrp {
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: 600;
}

.producmrp {
    color: red;
    text-decoration: none;
    margin-top: -5px;
}

.productprice {
    margin-top: -0px;
    margin-top: -5px;
    color: black;
    font-size: 14px;
    font-weight: 400;
}

.yousaveamt {
    color: gray;
    font-size: 14px;
    margin-left: 10px;
}

.productpricers {
    color: green;
    margin-top: -0px;
    margin-top: -5px;
}

.purchhasreqtydiv {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    justify-content: flex-start;
}

.btnaddremovepur {
    width: 25px;
    height: 25px;
    background-color: lightgray;
    color: green;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

    .btnaddremovepur:hover {
        background-color: orange;
    }

    .btnaddremovepur:focus {
        outline: none;
        border: 0px;
        border-radius: 0px;
    }

.txtproqtypur {
    text-align: center;
    width: 40px;
    height: 25px;
    border: none;
    border: 1px solid lightgray;
    font-size: 14px;
}

    .txtproqtypur:focus {
        list-style: none;
        box-shadow: none;
        border: 0px;
        border: 1px solid green;
        outline: none;
    }

#spanpricefinal0 {
    margin-left: 50%;
}

#spanpricefinal1 {
    margin-left: 5%;
}

#spanpricefinal2 {
    margin-left: 4%;
}

#spanpricefinal3 {
    margin-left: 3%;
}

#spanpricefinal4 {
    margin-left: 0%;
}


.divaddrem {
    width: 100px;
    display: flex;
    margin-left: 4%;
}

.totalpricecss {
    width: 70px;
    text-align: right;
}

.purul li {
    display: inline-block;
    text-decoration: none;
}

.btnulli {
    background-color: transparent;
    color: lightblue;
    border: none;
    outline: none;
    font-size: 12px;
    width: auto;
    border-left: 1px solid black;
    padding: 0px 5px;
}

    .btnulli:hover {
        color: blue;
    }




.prorightmoney {
    width: 25%;
    background-color: #fafafa;
    min-height: 450px;
    height: auto;
    position: relative;
    right: 0;
    padding: 10px;
    float: left;
    top: 102px;
}

    .prorightmoney h5 {
        background-color: #f2f2f2;
        padding: 5px 10px;
        color: black;
        text-align: center;
    }

.btnrderplaced {
    padding: 8px 35px;
    background-color: #f6c954;
    color: white;
    border: none;
    font-size: 1.4rem;
    width: 100%;
    height: auto;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: bolder;
}

.lblnew3 {
    font-size: 10px;
    width: 30px;
    height: 30px;
    background-color: #b30000;
    border-radius: 100%;
    text-align: center;
    overflow: hidden;
    line-height: 1;
    padding-top: 6px;
    position: relative;
    top: -6px;
    color: white;
    font-weight: 600;
    top: 5px;
}

.trdivider {
    /*border : 1px solid gray;*/
    border-bottom: 1px solid #F2F2F2;
}

.productdetiosdiv {
    width: 80%;
    height: auto;
    /*background-color:lightgoldenrodyellow;*/
    display: flex;
    flex-wrap: wrap;
    margin-left: 10%;
    margin-top: 20px;
}

    .productdetiosdiv hr {
        width: 100%;
        margin-left: 0px;
        height: 1px;
        background-color: #f2f2f2;
    }

.prolbl {
    width: 50%;
    height: auto;
    min-height: 30px;
    max-height: 80px;
}

.prowidth {
    text-align: right;
    width: 46%;
}

.txtrecordsproduct {
    background-color: #fafafa;
    border: none;
}

    .txtrecordsproduct:focus {
        outline: black !important;
        box-shadow: none !important;
        border: none !important;
    }

.txtcoupan {
    width: 100%;
    border: 1px solid black;
    margin-bottom: 5px;
    padding: 5px;
}

.btncoupan {
    width: 60px;
    border: none;
    margin-bottom: 5px;
    float: right;
    background-color: #f2828d;
    color: white;
    outline: none;
}

.fotter2 {
    width: 100%;
    height: auto;
    float: left;
}

/*==============Payment.aspx===========*/

.paymentcontainer {
    width: 100%;
    display: flex;
    height: 100vh;
}

.paymentwrapper {
    width: 40%;
    height: auto;
    background-color: #fafafa;
    margin: auto;
    /*-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.75);*/
    text-align: center;
    margin-top: 65px;
}

    .paymentwrapper h2 {
        display: block;
        width: 100%;
        background-color: #f1c659;
        color: white;
        text-align: left;
        padding-left: 5px;
    }


.payh3 {
    font-size: 20px;
    display: block;
    text-align: left;
    width: 94%;
    margin-left: 3%;
}

.payp1 {
    width: 94%;
    margin-left: 3%;
    text-align: justify;
    font-size: 14px;
}

.addresscontainer {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.showaddress {
    width: 45%;
    height: 250px;
    border: 1px solid black;
    background-color: #f2f2f2;
    margin-left: 3%;
    margin-bottom: 15px;
    position: relative;
    background-color: white;
}

.buttonconainer {
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: 0;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.delname {
    text-align: left;
    width: 100%;
    height: 35px;
    display: block;
    padding: 0px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    font-size: 20px;
}

.lblcontactname {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    display: block;
    width: 45%;
    float: left;
    padding: 0px 5px;
}

.delcontactname {
    font-size: 14px;
    text-align: left;
    display: block;
    width: 55%;
    float: left;
    padding: 0px 5px;
}

.deladdress {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0px 5px;
    height: auto;
    font-size: 12px;
}

.delcsp {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0px 5px;
    height: auto;
    font-size: 12px;
    font-weight: bold;
}

.btndladdress {
    /*border:none;*/
    width: 100%;
    background-color: #f1c659;
    /*color:white;*/
}

.btndladdress2 {
    /*border:none;*/
    width: 48%;
    /*background-color:#765d69;*/
    /*color:white;*/
    margin-top: 5px;
}
/*-----------MakePayment--------------------*/

.makepaymentcontainer {
    width: 100%;
    display: flex;
    height: 100vh;
}

.makepaymentwrapper {
    width: 90%;
    height: auto;
    margin: auto;
    text-align: center;
    margin-top: 65px;
    display: flex;
    flex-wrap: wrap;
}

.makepaymentwrapperleft {
    width: 50%;
    height: 50px;
}

    .makepaymentwrapperleft hr {
        width: 70%;
        margin-left: 0px;
    }

.makepaymentwrapperright {
    width: 50%;
    height: 50px;
}

    .makepaymentwrapperright hr {
        width: 70%;
        margin-left: 0px;
    }

.makepaymentwrapper h2 {
    display: block;
    width: 100%;
    background-color: #f1c659;
    color: white;
    text-align: left;
    padding: 5px;
}


.mph3 {
    font-size: 20px;
    display: block;
    text-align: left;
    width: 94%;
    margin-left: 1%;
}

.mpp1 {
    width: 90%;
    margin-left: 3%;
    text-align: justify;
    font-size: 14px;
    font-style: italic;
    margin-right: 10%;
}


.mpul {
    text-align: left;
    width: 96%;
    font-size: 13px;
    margin-left: 35px;
}

    .mpul li {
        line-height: 1.5;
    }

.pcontainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.pname {
    width: 100%;
    font-size: 14px;
}

.pprice {
    color: gray;
    margin-right: 30px;
    font-size: 12px;
    margin-bottom: 5px;
}

.pqty {
    color: gray;
    margin-right: 30px;
    font-size: 12px;
    margin-bottom: 5px;
}

.psubtotal {
    color: gray;
    margin-right: 10px;
    font-size: 12px;
    margin-bottom: 5px;
}

#mptotalamount {
    color: #d42727;
    font-size: 2.2em;
    font-weight: 600;
}

#btnplaceorder {
    width: 200px;
    height: 50px;
    margin: 20px;
}
/*------------------------------Success--------------------------------------*/
.mysuccess {
    background-color: #abd373;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 1.5rem;
}

    .mysuccess h1 {
        font-size: 4rem;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
    }
/*------------------------------Success--------------------------------------*/

.myorderwrapper {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
}

#tblorder th {
    background-color: #ececec;
}
/*----------------------------------------------------processconfirm----------------*/
.processconfirm {
    width: 100%;
    min-height: 100vh;
    background-color: #white;
    padding: 2%;
    padding-top: 80px;
    display: flex;
    flex-wrap: wrap;
}

.prosleft {
    width: 60%;
    background-color: white;
    padding-left: 50px;
    padding-right: 80px;
    padding-top: 10px;
}

.prosright {
    width: 40%;
    background-color: #f2f2f2;
}

.tblprocon {
    width: 100%;
    height: 400px;
    /*background-color:red;*/
}

.protblpc {
    width: 100%;
    /*background-color:yellow;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 3%;
}

.protblpctbl {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

    .protblpctbl tr td:first-child {
        width: 15%;
    }

    .protblpctbl tr td:nth-child(2) {
        width: 60%;
        vertical-align: central;
        padding: 10px;
    }


    .protblpctbl tr td:last-child {
        width: 15%;
        vertical-align: central;
        padding: 10px;
    }








.pcimgcontainer {
    width: 100%;
    position: relative;
    text-align: left;
}

    .pcimgcontainer span {
        display: block;
        padding: 0px 8px;
        background-color: #808080;
        color: white;
        position: absolute;
        right: 0px;
        top: -10px;
        text-align: center;
        border-radius: 100%;
    }

    .pcimgcontainer img {
        max-width: 100%;
        border: 1px solid #808080;
        border-radius: 10px;
    }




.pssubtotal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0% 5%;
}



.resentotploginpc {
    border: none;
    background-color: transparent;
    color: orange;
    font-size: 14px;
    width: auto;
    height: 30px;
    position: absolute;
    left: 0;
    margin-left: 20px;
}
