@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

html {
    font-size: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

body {
    font-family: inter, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    color: #121212;
    background: #fafafa
}

a,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: 0 0;
    text-decoration: none
}

@media only screen and (max-width:768px) {

    a,
    button {
        cursor: default !important;
        border: none;
        outline: none
    }
}

img,
video {
    display: block;
    max-width: 100%;
    /* height: auto; */
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.container {
    /*max-width: 80rem;
    width: 100%;
    height: auto;
    padding: 0 2rem;
    margin: 0 auto*/
}

@media only screen and (max-width:992px) {
    .container {
        /*        padding: 0 1rem;*/
        /*        margin: 0 auto*/
    }
}

.brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    color: var(--main);
    border: none;
    outline: none;
    text-transform: uppercase;
    text-rendering: optimizeLegibility
}

.header {
    /* display: block; */
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    /* height: auto; */
    height: 100px;
    /* padding: 25px 0;  */
    margin: 0 auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #FFF;

}

.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between !important;
}

.header-item-left {
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%*/
    padding: 15px 0px;
}

.header_logo_img { width:180px; object-fit: contain; }

.header-item-center {
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66%;
    flex: 0 0 66%*/
    /*height: 70px;*/
    height: auto;
    display: flex;
}

.header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: none;
}

.header-item-right .menu-icon {
    font-size: 1.35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    margin-left: 1rem;
    border: none;
    outline: none;
    color: #121212;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.menu-section {
    /*padding-right: calc((100vw - 280px) / 3.8);*/
    padding-right: calc((30vw - 280px));
    display: flex;
   /* align-items: center;*/
}

.header .menu>ul>li {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    line-height: normal;
    margin-left: 40px;
    height: 100px;
    cursor: pointer;
}

.header .menu>ul>li>a,
.header .menu>ul>li>.menu-sec-dropdown>a
 {
    position: relative;
    font-family: inherit;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.25;
    border: none;
    outline: none;
    color: #323232;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.header .menu>ul>li .menu-subs {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    border: none;
    outline: none;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    border-radius: .25rem;
    border-top: 3px solid var(--main);
    background: #fafafa;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.header .menu>ul>li .menu-subs>ul>li {
    line-height: 1
}

.header .menu>ul>li .menu-subs>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: .75rem 0;
    border: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.header .menu>ul>li .menu-column-1 {
    min-width: 16rem;
    max-width: 20rem
}

.header .menu>ul>li .menu-subs.menu-mega {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
    display: block;
    line-height: 1
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: .5rem 0;
    border: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.header .menu>ul>li .menu-subs.menu-column-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 68rem;
    width: 100%;
    padding: 1.25rem 1rem
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding: 0 1rem
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    padding: .75rem 0;
    border: none;
    outline: none;
    color: var(--main);
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
    text-align: center
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-top: .75rem;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover,
.header .menu>ul>li .menu-subs>ul>li>a:hover {
    color: var(--main)
}

.header-item-right a:hover,
.header .menu>ul>li:hover>a {
    color: var(--main)
}

@media only screen and (min-width:993px) {
    .header .menu>ul>li.menu-item-has-children:hover .menu-subs {
        margin-top: .5rem;
        opacity: 1;
        visibility: visible
    }
}

.menu-mobile-header,
.menu-mobile-trigger {
    display: none
}

@media only screen and (max-width:992px) {

    .header-item-center {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .header-item-left,
    .header-item-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }

    .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .header .menu-mobile-trigger {
        position: relative;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: none;
        margin-left: 1.25rem;
        background: 0 0;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out
    }

    .header .menu-mobile-trigger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: .25rem;
        background: #121212;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out
    }

    .header .menu-mobile-trigger span:nth-child(1) {
        top: 0
    }

    .header .menu-mobile-trigger span:nth-child(2),
    .header .menu-mobile-trigger span:nth-child(3) {
        top: .5rem
    }

    .header .menu-mobile-trigger span:nth-child(4) {
        top: 1rem
    }

    .header-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 20rem;
        height: 100%;
        z-index: 1099;
        overflow: hidden;
        background: #fafafa;
        -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }

    .header .menu.active {
        -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
        transform: translate(0%);
        display: inline-block;
    }

    .menu-section {
        padding-right: 0;
    }

    .header .menu>ul>li {
        display: block;
        line-height: 1;
        margin: 0
    }

    .menu-sec-dropdown
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .header .menu>ul>li>a,
    .header .menu>ul>li>.menu-sec-dropdown
    {
        /* display: block; */
        display: flex;
        line-height: 3.125rem;
        height: 3.125rem;
        /* padding: 0 3.125rem 0 1rem; */
        padding: 0 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, .1)
    }

    .header .menu>ul>li>a i.ion {
        position: absolute;
        font-size: 1.25rem;
        line-height: 3.125rem;
        top: 0;
        right: 0;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    .header .menu .menu-mobile-header {
        position: relative;
        position: -webkit-sticky;
        position: sticky;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        top: 0;
        height: 3.125rem;
        z-index: 501;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        background: #fafafa
    }

    .header .menu .menu-mobile-header .menu-mobile-arrow {
        display: none;
        font-size: 1.25rem;
        line-height: 3.125rem;
        width: 3.125rem;
        height: 3.125rem;
        cursor: pointer;
        border-right: 1px solid rgba(0, 0, 0, .1);
        color: #121212;
        text-align: center
    }

    .header .menu .menu-mobile-header.active .menu-mobile-arrow {
        display: block
    }

    .header .menu .menu-mobile-header .menu-mobile-title {
        font-family: inherit;
        font-size: 1rem;
        font-weight: bold;
        line-height: inherit;
        color: #121212;
        text-transform: capitalize;
        text-rendering: optimizeLegibility;
        padding-left: 15px;
    }

    .header .menu .menu-mobile-header .menu-mobile-close {
        font-size: 2.25rem;
        line-height: 3.125rem;
        cursor: pointer;
        width: 3.125rem;
        height: 3.125rem;
        border-left: 1px solid rgba(0, 0, 0, .1);
        color: #121212;
        text-align: center
    }

    .header .menu .menu-section {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 100px;
    }

    .header .menu>ul>li .menu-subs {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .header .menu>ul>li .menu-subs.menu-mega {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .header .menu>ul>li .menu-subs.active {
        display: block
    }

    .header .menu>ul>li .menu-subs.menu-column-4>.list-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0
    }

    .header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
        margin-top: 0
    }

    .header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
        margin-bottom: 1.25rem
    }

    .header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0
    }

    .header .menu>ul>li .menu-subs>ul>li>a {
        display: block
    }

    .header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
        margin-bottom: 1rem
    }

    .header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
        display: block
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, .55);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }

    .overlay.active {
        opacity: 1;
        visibility: visible
    }

    .header-item-right {
        display: block;
        display: flex;
        gap: 15px;
    }
}

.main {
    display: block;
    width: 100%;
    min-height: 100vh;
    background-image: url(https://source.unsplash.com/pkhBlvTLyog/1920x1280);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat
}

.menu-mobile-close .fa-times {
    font-family: "Font Awesome 5 Pro";
}



/* *************************** */
.megamenu
{
    width: 100%;
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 9999;
    cursor: auto;
}

.megamenu-content
{
    width: 100%;
    margin: auto;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* background: linear-gradient(101deg, rgba(233, 233, 233, 0.72) 5.07%, rgba(233, 233, 233, 0.72) 5.07%); */
    /* backdrop-filter: blur(16px); */
    border-radius: 10px;
}

.header
{
    position: relative;
}

.header .menu>ul>li:hover .megamenu
{
    display: block;
}


@media screen and (min-width:1025px) and (max-width:1240px)
{
  .megamenu-links{gap: 8%;}
  .menu-section{padding-right: 0;}
}

@media screen and (min-width:992px) and (max-width:1024px)
{
  .megamenu-links{gap: 8%;}
  .menu-section{padding-right: 0;}
}

.menu-sec-dropdown
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.minimenu
{
    width: 100%;
    display: none;
    position: absolute;
    top: 100px;
    left: 25px;
    z-index: 9999;
    cursor: auto;
}

.minimenu-content
{
    width: 200px;
    margin: auto;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /*background: linear-gradient(101deg, rgba(233, 233, 233, 0.72) 5.07%, rgba(233, 233, 233, 0.72) 5.07%);
    backdrop-filter: blur(16px);*/
    border-radius: 10px;
}

.header .menu>ul>li:hover .minimenu
{
    display: block;
}

@media (min-width: 768px) {
    #megamenu-container:hover + #megamenu, #minimenu-container:hover + #minimenu {
        display: block;
    }
}
.show_megamenu {
    display: block !important;
}

.row.header-top-space
{
    justify-content: space-between;
}





















.size ul li .size_item { width: 35px; height: 35px; line-height: 35px; text-align: center; border: 1px solid #6B6B6B; display: inline-block; color: var(--black_one); font-weight: 500; font-size: 18px; margin-bottom: 8px;}

.size ul li .size_item:hover { background-color: var(--main); border: 1px solid var(--main); color: var(--white); }
.size_item.active { background-color: var(--main); border: 1px solid var(--main); color: var(--white) !important; }

.left-slider-tooltip { left: 0; }
.right-slider-tooltip { right: 0; }

/* loader */

#loader-wrapper {background: rgba(255, 255, 255, 0.6);height: 100%; position: fixed; display: flex; align-items: center; justify-content: center; width: 100%; z-index: 99999;;}
#loader-wrapper img {left: 50%;  position: absolute; top: 50%; width: 100px; transform: translate(-50%, -50%); height: auto;}
#loader {-moz-border-bottom-colors: none;  -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; animation: 2s linear 0s normal none infinite running spin; border-color: var(--main) transparent transparent; border-image: none; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; -o-border-radius: 50%; border-style: solid; border-width: 3px; display: block; height: 200px;  position: relative; width: 200px;}
#loader::before {-moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; animation: 3s linear 0s normal none infinite running spin; border-color: var(--main) transparent transparent; border-image: none; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; -o-border-radius: 50%; border-style: solid; border-width: 3px; bottom: 5px; content: ""; left: 5px; position: absolute; right: 5px; top: 5px;}
#loader::after {-moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; animation: 1.5s linear 0s normal none infinite running spin; border-color: var(--main) transparent transparent; border-image: none; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; -o-border-radius: 50%; border-style: solid; border-width: 3px; bottom: 15px; content: ""; left: 15px; position: absolute; right: 15px; top: 15px;}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.megamenu-part h4 , .megamenu-part h4 a { color: #545454; line-height: 22px;}
.megamenu-card-img { width: fit-content; }
.megamenu-card-img img { max-height: 200px; object-fit: contain; }
.categories_main .nav-pills li + li { border-left: none; }

.customer_order_list_tbl tr td { vertical-align: middle; }
.main_btn.view_order_btn { min-width: 120px; line-height: 32px; }

.order-dtl-head .view_invoice_btn { color: var(--white); font-size: 18px; background-color: var(--main); padding: 10px 25px; border-radius: 5px; }

.purchase_billing_info { border: 1px solid #EDEDED; border-radius: 0.5rem; padding: 1rem 1rem 0; }

.whats-app { position: fixed; width: 50px; height: 50px; bottom: 50px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 3px 4px 3px #999; right: 25px; z-index: 100; }
.my-float { margin-top: 10px; }

.whatsapp { position: fixed; bottom: 30px; right: 30px; z-index: 10; }
.whatsapp-ico { fill: white; width: 50px; height: 50px; padding: 3px; background-color: #4dc247; border-radius: 50%; box-shadow: 2px 2px 6px rgba(0,0,0,0.4); }

.profile_review { margin-top: 0; }
.profile_review_box { margin: 1rem 0; border: 1px solid #CBCBCB; border-radius: 0.5rem; padding: 0.5rem 1rem; }
.review_btm p { font-size: 16px; }

/*** Start Menu CSS ***/
.header .menu>ul>li { margin-left: 26px; }

@media screen and (min-width: 1025px) and (max-width: 1240px) {
    .menu-section { padding-right: 0.75rem; }
}
@media (max-width: 1199px) {
  .header .menu > ul > li { margin-left: 18px; }
}
@media screen and (min-width: 992px) and (max-width: 1024px) { 
    .header .menu > ul > li { margin-left: 12px; }
    .header .menu .menu-section { padding-right: 0.5rem; }
}
@media (max-width: 991px) {
    .header .menu > ul > li { margin-left: 0px; }
}
/*** End Menu CSS ***/
























