body {
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

body::-webkit-scrollbar {
    width: 3px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px var(--primary-color);
    ;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    outline: 1px solid slategrey;
}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: #021535;
    ;
}

::selection {
    color: #fff;
    background: #021535;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility !important;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #383d3b;
    --secondary-color: #F68B1E;
    --tertiary-color: #DFE9E5;
    --accent-color-1: #FFEED7;
    --accent-color-2: #FCF5EC;
    --accent-color-3: #EBF2E3;
    --accent-color-4: #F2E3E3;
    --black-color: #000000;
    --white-color: #ffffff;
    --border-color: #CDCDCD;
    --all-tag: #7C7C7C;
}


/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 1200;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

a.primary-button {
    background: var(--secondary-color);
    color: var(--white-color) !important;
    padding: .4em .8em;
    border-radius: .2em;
    text-decoration: none;
    font-size: .9em;
}

a.primary-button:hover {
    background: var(--primary-color);
    color: var(--white-color);
    padding: .4em .8em;
    border-radius: .2em;
    text-decoration: none;
    font-size: .9em;
}

a.secondary-button {
    background: var(--primary-color);
    color: var(--white-color) !important;
    padding: .4em .8em;
    border-radius: .2em;
    text-decoration: none;
    font-size: .9em;
}

button.secondary-button {
    background: var(--primary-color);
    color: var(--white-color);
    padding: .4em .8em;
    border-radius: .2em;
    text-decoration: none;
    font-size: .9em;
    border: none;
}

button.secondary-button:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: .4em .8em;
    border-radius: .2em;
    text-decoration: none;
    font-size: .9em;
    border: none;
}

button.primary-button {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: .4em .8em;
    border-radius: .2em;
    text-decoration: none;
    font-size: .9em;
    cursor: pointer;
    border: none;
}

button.primary-button:hover {
    background: var(--primary-color);
    color: var(--white-color);
    padding: .4em .8em;
    border-radius: .2em;
    text-decoration: none;
    font-size: .9em;
}

a.anchor-tag {
    color: var(--white-color);
    font-size: .9em;
    text-decoration: none;
    padding: .4em .8em;
}
button.anchor-tag {
    color: var(--white-color);
    font-size: .8em;
    text-decoration: none;
    padding: .4em .8em;
    cursor: pointer;
    background: transparent;
    border: none;
}
a.black-tag {
    color: var(--black-color);
    font-size: .9em;
    text-decoration: none;
    padding: .4em .8em;
}

a.all-tag {
    color: var(--all-tag);
    font-size: .9em;
    text-decoration: none;
}

a.all-tag:hover {
    color: var(--secondary-color);
    font-size: .9em;
    text-decoration: none;
}

a.black-tag:hover {
    color: var(--primary-color);
    font-size: .9em;
    text-decoration: none;
    padding: .4em .8em;
}

a.black-tag.active {
    color: var(--primary-color);
    font-size: .9em;
    text-decoration: none;
    padding: .4em .8em;
    font-weight: 600;
}

a.anchor-tag:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: .4em .8em;
    border-radius: .2em;
    text-decoration: none;
    font-size: .8em;
}

a.tertiary-button {
    color: var(--all-tag);
    text-decoration: none;
    border: .1em solid;
    border-color: var(--all-tag);
    background: transparent;
    padding: .4em .8em;
    font-size: .8em;
}

a.tertiary-button:hover {
    color: var(--white-color);
    text-decoration: none;
    border: .1em solid;
    border-color: var(--all-tag);
    background: var(--all-tag);
    padding: .4em .8em;
    font-size: .8em;
}

.select-time select {
    padding: 1px 1px 1px 10px;
    background: #e9e9e9;
    border: 1px solid #e9e9e9;
    border-radius: .2em;
    margin-top: 1em;
}

.select-time {
    float: left;
    width: 100%;
}

p.delivery-time {
    margin-top: 2em!important;
    margin-bottom: 0;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 0.4em 0.8em;
    border-radius: 0.2em;
    text-decoration: none;
    font-size: .9em;
    cursor: pointer;
    border: none;
    width: 198px;
    text-align: center;
}

#toggle-search {
    float: right;
    background-position: -60px 0;
}

#toggle-search.open:after {
    top: 40px;
}

/* #search-form {
    -moz-transition: max-height, 0.5s;
    -o-transition: max-height, 0.5s;
    -webkit-transition: max-height, 0.5s;
    transition: max-height, 0.5s;
    position: absolute;
    top: 51px;
    right: 0;
    width: 57.5%;
    max-height: 0;
    overflow: hidden;
    background-color: #e1e4e7;
}

#search-form.open {
    max-height: 60px;
    z-index: 999
}

#search-form fieldset {
    position: relative;
    margin: 0 60px 0 0;
    padding: 0;
    border: none;
}

#search-form input {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    height: 50px;
}

#search-form input[type="search"] {
    width: 100%;
    padding: 0 5px 0 22px;
    color: var(--black-color);
    background: var(--accent-color-1);
    border: none;
    font-weight: 300;
}

#search-form input[type="submit"] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    margin: 0;
    padding: 0;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--white-color);
    background: var(--primary-color);
    border: none;
    cursor: pointer;
}
 */
.machine-opt label {
    font-size: .9em;
    color: rgb(77, 77, 77);
    margin-bottom: .7em;
    margin-left: .5em;
}

.total-price.first-row ul {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.total-price.first-row ul li {
    font-size: .8em;
    margin-right: 1em;
    color: #777;
    position: relative;
}

.total-price.first-row ul li:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 13px;
    background: #777;
    right: -6px;
    top: 3px;
}

.more-like .product-list-slide .item .product-box {
    height: 350px;
}

.myOrder-items table thead tr th {
    background: var(--accent-color-1)!important;
    color: var(--black-color)!important;
    padding: .4em;
    font-size: .8em;
    border: 1px solid rgb(224, 224, 224);
    text-align: left;
}

.myOrder-items table thead tr th:last-child {
    text-align: center;
}

.myOrder-items table tbody tr td {
    padding: .8em;
    text-align: left;
    font-size: .8em;
    border: 1px solid rgb(235, 235, 235);
}

.myOrder-items table tbody tr td:last-child {
    text-align: center;
}

.myOrder-items table tbody tr:nth-child(even) {
    background: rgb(253, 253, 253);
}

.order-details table thead tr th,
.order-details table tbody tr td {
    width: 50%!important;
}

.order-details table thead tr th {
    padding: 1.5em;
}

.order-details table tbody tr td {
    padding: 1.5em;
}

.order-details table tbody tr td img {
    width: 4em;
    margin-right: 1em;
}

.order-details table thead tr th:last-child {
    text-align: left;
}

.order-details table tbody tr td:last-child {
    text-align: left;
}

.order-details table tbody tr:last-child {
    font-weight: 600;
    color: var(--black-color);
}

.order-details ul {
    list-style: none;
    display: inline-flex;
    margin: 0;
    padding: 0;
    margin-bottom: 1em;
}

.order-details ul li {
    margin-right: 1em;
    font-size: .8em;
    color: var(--black-color);
    background: rgba(236, 236, 236, 0.753);
    padding: 0.2em 1em;
}

#sticky-ad {
    position: sticky;
    position: -webkit-sticky;
    top: 120px;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container-fluid {
    width: 90%;
}

.has-error small {
    color: #a60c0c;
}

p.help-block.help-block-error {
    font-size: 13px;
    color: #a60c0c;
}


select.locator {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0.4em 0.8em;
    font-size: .8em;
    border-radius: 0.2em;
}


/*new css*/

*:focus {
    outline: 0;
}

.logo {
    border-right: solid 1px #e1d2be;
    padding-right: 1em;
}

.logo img {
    width: 100%;
}


/*new css*/

.top-nav {
    float: left;
    width: 100%;
    background-color: var(--primary-color);
    padding: 0.7em 0;
}

.top-nav h1 {
    font-size: .9em;
    margin-bottom: 0;
    color: var(--white-color);
    font-weight: 400;
}

.notification-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

span.notification-bell {
    width: 1em;
    height: 1.5em!important;
    background: var(--secondary-color);
    padding: .22em .33em;
    border-radius: 50%;
    color: var(--white-color)!important;
    margin-right: .5em;
    text-align: center;
}

.top-nav h1 span {
    color: var(--secondary-color);
    font-weight: 500;
}

.top-nav-button {
    text-align: right;
}

.top-nav-button ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
    position: relative;
}

.top-nav-button ul li {
    /* border-right: .1em solid;
    border-color: var(--border-color); */
    position: relative;
    /* width: 8.5em; */
    text-align: center;
    margin-left: .5em;
}

.top-nav-button ul li::after {
    content: '';
    position: absolute;
    /* width: .1em; */
    height: 1.1em;
    /* right: 0; */
    right: -4px;
    top: .25em;
    bottom: 0;
    border: .01em solid;
    border-color: #e9e2da26;
    /* background-color: var(--border-color); */
}

.top-nav-button ul li:last-child:after {
    width: none!important;
    border-right: 0!important;
    height: 0!important;
}

.top-nav-button ul li a {
    color: var(--white-color);
    font-size: .8em;
    text-decoration: none;
}

.top-nav-button ul li a img {
    margin-right: .4em!important;
    position: relative;
    top: -2px;
}

.top-nav-button ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(133deg) brightness(111%) contrast(101%);
}


/* Menu Section */

.menu-section {
    background-color: var(--accent-color-1);
    padding: .3em 0;
    float: left;
    width: 100%;
    position: sticky;
}

.menu-section nav.navbar {
    padding-left: 0;
    padding-right: 0;
}

a.navbar-brand img {
    width: 8em;
}

li.nav-item a.black-tag {
    font-size: .9em!important;
}

.menu-main-box .dropdown:hover>.dropdown-menu {
    display: block;
}

.menu-main-box .dropdown-menu {
    border: none;
    padding: 1em;
    position: relative;
    background: var(--accent-color-1);
    padding-top: 2em;
}

.menu-main-box .dropdown-item:focus,
.menu-main-box .dropdown-item:hover {
    background: transparent;
    border-bottom: .1em solid;
    border-color: var(--white-color);
}

.back-items ul {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.back-items ul li {
    /* padding: 0em .4em; */
    font-size: .9em;
}

span.back-items ul li a img {
    width: 1.1em;
    position: relative;
    top: -.1em;
    margin-right: .2em!important;
}

span.item-count-menu {
    background: #BD6C1A;
    padding: .1em .4em;
    border-radius: 50%;
    font-size: .8em;
    position: relative;
    top: -.05em;
    padding-bottom: .04em;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

.sticky + .banner-slider-section {
    padding-top: 102px;
}

.back-items ul li a.primary-button {
    padding: .6em 1em;
}


/* Menu Section end */


/* Banner section */

.banner-slider-section {
    float: left;
    width: 100%;
    padding: 2em 0em;
    background-color: var(--white-color);
}


/* .home-slider-out.slider-one {
    display: flex;
    flex-direction: column;
    justify-content: center;
} */

.home-slider-in .carousel-item img {
    border-radius: .2em;
}


/* banner section end */


/* Category Chain slider */

.category-slider-chain {
    float: left;
    width: 100%;
    padding: 1em 1em;
    padding-bottom: 2em;
}

.category-wrap {
    position: relative;
    /* padding-top: 0.5em; */
}

.category-img {
    width: 35%;
    float: left;
    border-right: .1em solid;
    border-color: var(--border-color);
}

.category-img-in-wrap {
    width: 60px;
    height: 60px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-img-in-wrap img {
    border-radius: 50%;
    width: 86%!important;
}

.category-title {
    width: 65%;
    float: right;
    padding: .6em .65em;
    padding-top: .8em;
}

.category-title img {
    width: .5em!important;
    float: right;
    position: relative;
    top: -.4em;
    left: -.3em;
}

.category-out-wrap {
    background: var(--tertiary-color);
    height: 5em;
    padding: .5em;
    border-radius: .3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-title h1 {
    font-size: .8em;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 600;
}

.category-title a.all-tag {
    font-size: .7em;
}


/* Category Chain slider end */


/* Content section */

.content-section {
    float: left;
    width: 100%;
    padding: 1em;
}

.left-box-outer-wrap {
    padding: 0;
}

.left-box-main-wrap {
    padding: .5em;
    background-color: var(--primary-color);
    position: relative;
    border-radius: .3em;
}

.left-delivery-box {
    width: 95%;
    padding: 1em;
    border-bottom: .1em dotted;
    border-color: #1B6649;
    margin: 0 auto;
}

.left-delivery-box h1 {
    font-size: .9em;
    margin-bottom: 0;
    color: var(--white-color);
    font-weight: 400;
    text-align: center;
}

.left-delivery-box h1 span {
    color: var(--secondary-color);
    font-weight: 500;
}

.left-features-box {
    width: 95%;
    padding: 1.5em 0;
    border-bottom: .1em dotted;
    border-color: #1B6649;
    margin: 0 auto;
}

.left-box-features-items .owl-nav.disabled + .owl-dots {
    margin-top: -2em;
    position: relative;
    z-index: 1;
}

.left-box-features-items .owl-dots .owl-dot.active span,
.left-box-features-items .owl-dots .owl-dot:hover span {
    background: transparent;
    border: .2em solid;
    border-color: var(--primary-color);
}

.left-box-features-items .owl-dots .owl-dot span {
    background-color: #05523573;
    width: .7em;
    height: .7em;
    border-radius: 50%;
    margin: .2em;
}

.left-box-features-items .item {
    border-radius: .3em;
}

.leftfeatre-img-box {
    border-radius: .3em;
}

.leftfeatre-img-box img {
    width: 100%;
    border-radius: .3em;
}

.left-most-selling-product {
    width: 95%;
    padding: 1.5em 0;
    border-bottom: .1em dotted;
    border-color: #1B6649;
    margin: 0 auto;
}

.left-most-selling-product p {
    font-size: 1em;
    margin-bottom: 0;
    color: var(--white-color);
    font-weight: 500;
}

.left-most-selling-product p img {
    margin-right: 10px!important;
    width: 1.34em;
    position: relative;
    top: -.15em;
}

.left-selling-product-in-wrap {
    position: relative;
    background-color: var(--white-color);
    border-bottom: .1em solid #EEE7DD;
    height: 5em;
    /* border-radius: .3em .3em 0 0; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .5em;
}

.left-selling-product-in-wrap a {
    text-decoration: none;
}

.left-selling-product-in-wrap a:hover img.left-most-selling-arrow {
    filter: brightness(0) saturate(100%) invert(22%) sepia(10%) saturate(7466%) hue-rotate(123deg) brightness(92%) contrast(96%);
}

.left-prodcut-image-wrap {
    width: 30%;
    float: left;
    position: relative;
}

.left-prodcut-title-wrap {
    width: 70%;
    float: right;
    padding-left: .7em;
}

.left-prodcut-title-box p {
    color: var(--primary-color);
    font-size: 1em;
    font-weight: 500;
}

.left-prodcut-title-box {
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-prodcut-title-box p span {
    color: var(--secondary-color);
    font-size: .8em;
    font-weight: 600;
}

.left-prodcut-image-box::after {
    content: '';
    position: absolute;
    width: .05em;
    height: 3em;
    right: 0;
    top: .8em;
    border: 1px solid #EEE7DD;
}

.left-prodcut-wraper {
    margin-top: 1em;
}

img.left-most-selling-arrow {
    float: right;
    position: absolute;
    right: 2em;
    width: .6em!important;
}

.left-prodcut-image-box img {
    width: inherit!important;
}

.testimonial-left-box {
    width: 95%;
    padding: 1.5em 0;
    border-bottom: .1em dotted;
    border-color: #1B6649;
    margin: 0 auto;
}

.testimonial-left-box p {
    font-size: 1em;
    margin-bottom: 0;
    color: var(--white-color);
    font-weight: 500;
}

.testimonial-left-box p img {
    margin-right: 10px!important;
    width: 1.34em;
    position: relative;
    top: -.15em;
}

.left-box-testimonial-items {
    margin-top: 1em;
}

.testimonial-inner-wrap {
    background-color: var(--accent-color-2);
    text-align: center;
    padding: 2em;
    border-radius: .2em;
    padding-bottom: 3em;
}

.testimonial-inner-wrap p.customer-name {
    font-size: 1em;
    color: var(--black-color);
    font-weight: 600;
}

.testimonial-inner-wrap p.testimonial-content {
    font-size: .85em;
    line-height: 1.4em;
    margin-top: 1em;
    margin-bottom: 1em;
        font-weight: normal;
    color: var(--black-color);
}

.testimonial-inner-wrap img.rating-img {
    width: 6em!important;
}

.testimonial-inner-wrap img.testi-quote {
    width: 2em!important;
    margin-bottom: 1.2em;
}

.left-box-testimonial-items .owl-nav.disabled + .owl-dots {
    margin-top: -2em;
    position: relative;
    z-index: 1;
}

.left-box-testimonial-items .owl-dots .owl-dot.active span,
.left-box-testimonial-items .owl-dots .owl-dot:hover span {
    background: transparent;
    border: .2em solid;
    border-color: var(--primary-color);
}

.left-box-testimonial-items .owl-dots .owl-dot span {
    background-color: #05523573;
    width: .7em;
    height: .7em;
    border-radius: 50%;
    margin: .2em;
}

.left-box-testimonial-items .item {
    border-radius: .3em;
}

.left-prodcut-image-box {
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.get-touch {
    width: 95%;
    padding: 1.5em 0;
    margin: 0 auto;
}

.get-touch p {
    font-size: 1.2em;
    margin-bottom: 0;
    color: var(--white-color);
    font-weight: 500;
    line-height: .5em;
}

.get-touch p img {
    margin-right: 10px!important;
    width: 1.34em;
    position: relative;
    top: .1em;
}

.get-touch p span {
    font-size: .7em;
    margin-left: 2.6em;
}

.left-side-contact-box {
    padding: 2em 1em;
    background-color: var(--secondary-color);
    margin-top: 1em;
    border-radius: .2em;
}

.left-side-contact-box img {
    width: 1.2em!important;
    margin-right: 1em;
    position: relative;
    top: -.1em;
}

.left-side-contact-box a {
    color: var(--white-color);
    text-decoration: none;
    font-size: .9em;
}

.wats-box {
    border-right: .01em solid;
    border-color: var(--primary-color);
}

.left-box-second-box-outer {
    position: relative;
}

.leftad-offer-wraper {
    padding: 1em;
    position: relative;
    background-color: var(--accent-color-1);
}

.left-ad-offer-slide .item,
.left-ad-offer-slide .item img {
    border-radius: .2em;
}


/* Content section end */


/* Content Right side section */

.contnet-outer-wraper {
    padding: 0em 2em;
    padding-right: 1em;
}

.prodcut-section h2 {
    color: var(--black-color);
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 0;
}

.right-product-box {
    width: 100%;
    padding: 1.5em 0;
    margin: 0 auto;
}

.product-list-slide .item .product-box {
    padding: 1em 1.5em;
    border-radius: .2em;
    position: relative;
    min-height:40%;
}
.product-box-image-wrapper {
	height:34px;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.sec-one {
    background: rgb(223, 233, 229);
    background: radial-gradient(circle, rgba(223, 233, 229, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(223, 233, 229, 1) 100%);
}

.sec-two {
    background: rgb(252, 245, 236);
    background: radial-gradient(circle, rgba(252, 245, 236, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(252, 245, 236, 1) 100%);
}

.sec-three {
    background: rgb(235, 242, 227);
    background: radial-gradient(circle, rgba(235, 242, 227, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(235, 242, 227, 1) 100%);
}

.sec-four {
    background: rgb(242, 227, 227);
    background: radial-gradient(circle, rgba(242, 227, 227, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(242, 227, 227, 1) 100%);
}

.product-box img {
    width: 13em!important;
    height: 12em;
    margin-bottom: 1em;
    object-fit: contain;
}

.product-box a {
    font-size: .8em;
    margin-bottom: .5em;
    font-weight: 500;
    color: var(--black-color);
    position: relative;
    text-decoration: none;
    display: block;
    line-height: 1.5em;
    /* height: 34px; */
}

.product-box p {
    font-size: .8em;
    margin-bottom: .5em;
    font-weight: 500;
    color: var(--black-color);
    position: relative;
}

p.price-in-list {
    font-size: .9em;
    font-weight: 600!important;
    color: var(--primary-color);
}


p.price-in-list span.price {
    font-weight: 400!important;
    color: var(--all-tag);
    font-size: .8em;
    margin-left: .5em;
    text-decoration: line-through;
}


p.price-in-list span.rate-type{
    font-size:12px;
}


.offer-prcntg-tag {
    height: 2em;
    width: 2em;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .3em;
    border-radius: 50%;
    position: absolute;
    top: .75em;
    left: .75em;
}

.offer-prcntg-tag p {
    color: var(--white-color);
    text-align: center;
    margin-bottom: 0;
    font-size: .7em;
}

.product-fav {
    height: 2em;
    width: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .3em;
    border-radius: 50%;
    position: absolute;
    top: .5em;
    right: .5em;
}

.product-fav a {
    color: var(--black-color);
    text-align: center;
    margin-bottom: 0;
    font-size: 1.2em;
}

.product-fav a:hover {
    color: var(--secondary-color);
}

.product-list-slide .owl-nav {
    display: block;
    position: absolute;
    top: -70px;
    right: 0;
}

.product-list-slide .owl-nav button.owl-next,
.product-list-slide .owl-nav button.owl-prev {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 0;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    opacity: .7;
}

.product-list-slide .owl-nav button.owl-next:hover,
.product-list-slide .owl-nav button.owl-prev:hover {
    opacity: 1;
    background-color: var(--secondary-color);
}

.product-list-slide .owl-nav button.owl-next span,
.product-list-slide .owl-nav button.owl-prev span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: -.1em;
}

.product-list-slide span {
    cursor: pointer;
}

.count-box {
    padding: 0;
}

.count-num {
    width: 95%;
    border-radius: .2em;
    background-color: var(--white-color);
    margin: 0 auto;
    margin-left: .8em;
    text-align: center;
}

.product-list-slide .minus,
.plus {
    width: 1.6em;
    height: 1.85em;
    border: none;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
}

.product-list-slide input {
    height: 2.1em;
    width: 3em;
    text-align: center;
    font-size: .9em;
    border: none;
    display: inline-block;
    vertical-align: middle;
    margin: -6px;
}

.add-cart-list button.secondary-button {
    width: 100%;
    font-size: .8em;
    padding: .4em .7em;
    cursor: pointer;
}

.add-minus {
    position: relative;
    top: .1em;
}

.add-minus:nth-child(2n) {
    top: .5em;
}

.add-cart-list span {
    margin-right: .7em;
}

.ad-box,
.ad-box img {
    border-radius: .2em;
}


/* Count new Style */

.product-add-to-cart-wrapper .input-group {
    margin-left: 1em;
    margin-bottom: 0!important;
}

.product-add-to-cart-wrapper .input-group-text {
    background: var(--primary-color);
    border-radius: .2em 0em 0em .2em;
    color: var(--white-color);
    font-size: .8em;
    padding: .4em .8em;
    height: 2.4em;
}

.product-add-to-cart-wrapper input.product-qty {
    font-size: .8em;
    text-align: center;
    width: 4em;
    margin-top: 1px;
    height: 2.25em;
    border: .1em solid var(--primary-color);
    border-radius: 0em .2em .2em 0em!important;
}

a.secondary-button.addCartandbuy.btn-order-now {
    background: var(--primary-color);
    font-size: .8em!important;
    color: var(--white-color);
    position: relative;
    left: 1em;
    padding: .4em .5em;
    padding-right: .9em;
    border-radius: .2em!important;
    padding-bottom: 0.3em;
    height: 2.3em;
}

.prodcut-detail-content-wraper .product-add-to-cart-wrapper .input-group-text {
    background: var(--white-color);
    border-radius: .2em 0em 0em .2em;
    color: var(--primary-color);
    font-size: .8em;
    padding: .4em .8em;
    height: 2.5em;
}

.prodcut-detail-content-wraper .product-add-to-cart-wrapper input.product-qty {
    font-size: .8em;
    text-align: center;
    width: 4em;
    margin-top: 0px;
    height: 2.5em;
    border-radius: 0em .2em .2em 0em!important;
    border: .1em solid var(--white-color);
    border-left: .1em solid var(--primary-color)!important;
}

.prodcut-detail-content-wraper a.secondary-button.addCartandbuy.btn-order-now {
    background: var(--white-color);
    font-size: .8em!important;
    color: var(--primary-color)!important;
    position: relative;
    left: 1em;
    padding: .4em .5em;
    padding-right: .9em;
    border-radius: .2em!important;
    padding-bottom: 0.3em;
    height: 2.3em;
    font-weight: 600;
}

.product-detail-in-wraper p.price-in-list {
    font-size: 1.2em;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.product-add-to-cart-wrapper button.bootstrap-touchspin-down {
    padding: .28em .7em;
    position: relative;
    top: .1em;
    background-color: var(--primary-color)!important;
    height: 2.18em;
    font-size: .825em;
    border: none;
}

.product-add-to-cart-wrapper button.bootstrap-touchspin-up {
    padding: .25em .7em;
    position: relative;
    top: .07em;
    background-color: var(--primary-color)!important;
    height: 2.2em;
    font-size: .825em;
    border: none;
}

.prodcut-detail-content-wraper button.bootstrap-touchspin-down {
    padding: .28em .7em;
    position: relative;
    top: 0em;
    background-color: var(--secondary-color)!important;
    height: 2.38em;
    font-size: .825em;
    border: none;
    color: var(--white-color);
}

.prodcut-detail-content-wraper button.bootstrap-touchspin-up {
    padding: .35em .7em;
    position: relative;
    background-color: var(--secondary-color)!important;
    height: 2.39em;
    font-size: .825em;
    border: none;
    color: var(--white-color);
    top: 0em;
}

.prodcut-detail-content-wraper span.input-group-addon.bootstrap-touchspin-postfix.input-group-append .input-group-text {
    border-radius: 0;
    height: 2.47em;
    background: #d8d8d8;
    border: 1px solid #d8d8d8;
}


/* Count New Style end */


/* Fomr style New */

.tab-content.dashboard_content h3 {
    font-size: 1em;
    margin-bottom: 0;
    font-weight: 600;
}

.tab-content.dashboard_content label {
    font-size: .8em;
    font-weight: 500;
}

.tab-content.dashboard_content input {
    font-size: .7em;
    padding: 20px 10px;
    color: var(--black-color);
}


/* Form style New End */

.feature-slides .item,
.feature-slides .item img {
    border-radius: .2em;
}

.content-box-wraper {
    padding: 2em 0em;
    border-top: .1em solid;
    border-color: var(--border-color);
}

.content-box-wraper h5 {
    font-size: 1em;
    color: var(--black-color);
    font-weight: 600;
}

.content-box-wraper p {
    font-size: .85em;
    color: var(--all-tag);
    line-height: 1.6em;
}

.more-btn {
    text-align: right;
    margin: 0 auto;
}


/* Content Right side section end */


/*succes-page*/

.succes-page {
    float: left;
    width: 100%;
}

.succes-page-titil {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
}

.succes-page-titil h1 {
    color: darkseagreen;
}

.succes-page-titil h4 {
    color: var(--gold);
}

.succes-page-summary {
    float: left;
    width: 100%;
    font-size: 13px;
}

.succes-page-summary .table td {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px #dee2e6 dashed;
}

.succes-page .expected-delivery {
    margin-bottom: 2em;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.content1-right {
    padding: 9%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    background: #f9f9f9;
    margin: 4em 0;
}

.custom-order-modal{
    padding: 5% 5%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    background: #f9f9f9;
	
}

.succes-page .content1-right {
    border: dashed 2px #001436;
}


/*succes-page*/


/* Footer section */

.footer-section {
    float: left;
    width: 100%;
    background-color: var(--primary-color);
    padding: 3em 1em;
    position: relative;
}

.footer-section:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footer-logo {
    width: 100%;
    position: relative;
}

.footer-socialbox {
    width: 100%;
    margin-top: 1em;
}

.footer-socialbox h1 {
    font-size: 1.3em;
    color: var(--white-color);
    font-weight: 500;
}

.footer-socialbox h2 {
    font-size: .85em;
    color: var(--white-color);
    font-weight: 400;
    margin-top: 1em;
    line-height: 1.6em;
}

.footer-socialbox ul {
    list-style: none;
    display: inline-flex;
    margin: 0;
    padding: 0;
    margin-top: .9em;
}

.footer-socialbox ul li {
    margin-right: 2em;
}

.footer-socialbox ul li a {
    color: var(--white-color);
    font-size: 1.5em;
    text-decoration: none;
}

.footer-socialbox ul li a:hover {
    color: var(--secondary-color);
}

.rights-copy-img {
    width: 100%;
    margin-top: 1em;
}

.rights-copy-img img {
    width: 4em;
}

.rights-copy-img p {
    font-size: .7em;
    padding-top: 1em;
    color: #CECECE;
}

.footer-right-box {
    padding-left: 2em;
}

.news-letter {
    width: 100%;
    position: relative;
}

.news-letter h6 {
    font-size: 1.3em;
    color: var(--secondary-color);
    font-weight: 500;
}

.news-letter p {
    color: #CECECE;
    font-size: .85em;
    margin-bottom: 1.5em;
}

.news-letter input {
    width: 50%;
    padding: .8em;
    padding-bottom: .75em;
    border-radius: .2em 0 0 .2em;
    border: .1em solid;
    border-color: var(--primary-color);
    font-size: .85em;
    color: var(--black-color);
    background-color: #ffffff7a;
}

.news-letter button {
    padding: .78em 1.7em;
    padding-bottom: .7em;
    font-size: .85em;
    position: relative;
    left: -.6em;
    border: 1px solid;
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    border-radius: .2em;
}

.news-letter::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--black-color);
    opacity: 1;
    /* Firefox */
}

.news-letter:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--black-color);
}

.news-letter::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--black-color);
}

.footer-menu-links p {
    font-size: 1.3em;
    font-weight: 500;
    color: var(--white-color);
    padding: 1em 0em;
    margin-bottom: 0;
}

.footer-menu-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-links ul li {
    line-height: 1.5em;
}

.footer-menu-links ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: .85em;
}

.footer-menu-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-menu-outer {
    padding: 1em 0;
}

.footer-menu-outer:nth-child(2n) {
    border-left: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    padding-left: 2.6em;
}


p.footer-contact-number {
    font-size: .7em;
    padding: 0;
    color: #CECECE;
    margin-bottom: 2em;
}

p.footer-store-timing {
    padding: 0;
    font-size: .9em;
    font-weight: 500;
    color: var(--white-color);
}

p.footer-store-timing span {
    color: var(--secondary-color);
}

.footer-menu-outer:nth-child(3n) {
    padding-left: 2.6em;
}

.footer-passio {
    width: 100%;
    text-align: right;
    position: relative;
}

.footer-passio a {
    position: absolute;
    right: 0;
}

.top-top {
    width: 1em;
    height: 1em;
    position: absolute;
    top: 3em;
    right: 7em;
}

.top-top a.primary-button {
    padding: 7px 8px;
    border-radius: 50%;
    /* padding: 1em 2em; */
    font-size: .9em;
}


/* Footer section end */


/* Products Page */

.prodcuts-outer-wrap {
    padding: .3em;
    margin-bottom: .5em;
}

.porducts-page-list-box {
    padding: 1em 1em;
    border-radius: .2em;
    position: relative;
}

.porducts-page-list-box .count-num {
    display: inline-flex;
    /* margin: 0 auto; */
}


/* .porducts-page-list-box .count-num input {
    width: 20%;
} */

.porducts-page-list-box .minus,
.plus {
    width: 2em;
    height: 1.85em;
    border: none;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    cursor: pointer;
}

.porducts-page-list-box input {
    height: 2.1em;
    width: 3em;
    text-align: center;
    font-size: .9em;
    border: none;
    display: inline-block;
    vertical-align: middle;
}

.filter-box {
    width: 95%;
    margin: 0 auto;
    padding: .5em 0;
}

.filter-box h1 {
    font-size: 1.2em;
    color: var(--white-color);
    margin-bottom: 1em;
}

.filter-box h1 img {
    width: .9em;
    margin-right: .4em!important;
}

.filter-box .card {
    margin-bottom: 1em;
    border-radius: .2em!important;
}

.categoty .card-header {
    padding: .5em;
    background-color: #EEE7DD;
    border: none!important;
}

.categoty .card-header h5 button {
    color: var(--black-color);
    text-decoration: none;
    font-weight: 600;
    font-size: .8em;
}

.categoty .card-body {
    padding: 0;
}

.categoty .card-body ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

.categoty .card-body ul li {
    padding: .5em 1.2em;
    border-bottom: .01em solid;
    border-color: #EEE7DD;
}

.categoty .card-body ul li a {
    color: var(--black-color);
    font-size: .8em;
    font-weight: 500;
    text-decoration: none;
}

.categoty .card-body ul li a:hover {
    font-size: .85em;
    font-weight: 600;
    transition: 1s;
    padding-left: .5em;
}

.catogory-sublist {
    overflow: visible
}

.categoty .card-body ul li label {
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: .8em;
    font-weight: 500;
}

.categoty .card-body ul li input {
    position: relative;
    top: .14em;
    left: -.2em;
}

.categoty .card-body .range-slider {
    padding: .7em 1.5em;
}

.range-slider-line {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--secondary-color);
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: .2em;
}

.range-slider-line::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 13px;
    height: 13px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
}

.range-slider-line::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    cursor: pointer;
}

.price-filter input {
    width: 45%;
    border: 1px solid;
    border-color: var(--border-color);
    border-radius: .2em;
    font-size: .8em;
    padding: .3em .5em;
    color: var(--black-color);
}

.price-filter input.price-max {
    position: relative;
    left: 1.5em;
}


/* Products Page End */


/* Product Details */

.prodcut-detail-img {
    background-color: var(--accent-color-3);
    border-radius: .2em;
}

.product-detail-img-slide-wrap {
    background-color: var(--accent-color-3);
    padding: 3em;
    width: 100%;
    object-fit: cover;
    height: 30em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: .2em;
}

.product-detail-img-slide-wrap img {
    width: 28em!important;
}

.product-detail-img-slide .owl-nav.disabled + .owl-dots {
    margin-top: 0em;
    position: relative;
    z-index: 1;
    top: -1em;
}

.product-detail-img-slide .owl-dots .owl-dot.active span,
.product-detail-img-slide .owl-dots .owl-dot:hover span {
    background: transparent;
    border: .2em solid;
    border-color: var(--primary-color);
}

.product-detail-img-slide .owl-dots .owl-dot span {
    background-color: #05523573;
    width: .7em;
    height: .7em;
    border-radius: 50%;
    margin: .2em;
}

.prodcut-detail-content-wraper {
    padding-right: 0;
}

.prodcut-detail-content {
    background-color: var(--primary-color);
    height: 100%;
    border-radius: .2em;
    padding: 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-detail-in-wraper {
    padding: .8em 0;
    border-bottom: .05em dotted;
    border-color: #1B6649;
}

.product-detail-in-wraper h1 {
    font-size: 1em;
    color: var(--white-color);
    font-weight: 600;
}

.product-detail-in-wraper h2 {
    font-size: .8em;
    color: #C6E4D9;
    margin-bottom: 0;
}

.product-detail-in-wraper h3 {
    font-size: 1em;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: .2em;
}

.product-detail-in-wraper h3 span {
    color: var(--white-color);
    font-size: .7em;
    font-weight: 500;
}

.product-detail-in-wraper h4 {
    font-size: .8em;
    color: #C6E4D9;
    margin-bottom: 0;
}

.product-detail-in-wraper h5 {
    font-size: .8em;
    color: var(--white-color);
    font-weight: 500;
    background-color: #054B30;
    padding: .5em;
    width: 386px;
    text-align: center;
    border-radius: .2em;
    margin-bottom: 2em;
    margin-top: 1em;
}

.product-detail-in-wraper h5 span {
    color: var(--secondary-color);
}

.product-detail-in-wraper h5 img {
    width: 1.3em;
    position: relative;
    top: -.1em;
}

.product-detail-in-wraper h6 {
    font-size: .8em;
    color: #C6E4D9;
    margin-bottom: 0;
}

.product-detail-in-wraper h6 img {
    width: 1em!important;
    position: relative;
    top: -.1em;
    margin-right: .7em;
}

p.product-details-hed {
    font-size: 1em;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: .2em;
    text-transform: uppercase;
    margin-top: .8em;
}

.product-detail-in-wraper p {
    font-size: .8em;
    color: #C6E4D9;
}

.product-detail-in-wraper ul {
    list-style: none;
    display: inline-flex;
    margin: 0;
    padding: 0;
}

.product-detail-in-wraper ul li {
    margin-right: 1em;
}

.product-detail-in-wraper ul li select {
    background-color: #ffffffa8;
    padding: .7em .4em;
    text-align: left;
    width: 8em;
    border-radius: .2em;
    font-size: .8em;
    color: var(--black-color);
    position: relative;
    top: -.3em;
}

.product-detail-in-wraper ul li a {
    background-color: #ffffffa8;
    padding: .8em .8em;
    text-align: left;
    width: 8em;
    border-radius: .2em;
    font-size: .8em;
    color: var(--black-color);
    text-decoration: none;
}

.product-detail-in-wraper ul li a.primary-button {
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: .2em;
    padding: .6em .8em;
    text-decoration: none;
    font-size: .9em;
}

.product-detail-in-wraper ul li a.primary-button:hover {
    background: var(--white-color);
    color: var(--secondary-color);
    border-radius: .2em;
    padding: .6em .8em;
    text-decoration: none;
    font-size: .9em;
}

.discripition-out-wrap {
    position: relative;
    padding: 0;
}

.discripition-in-wrap {
    padding: 2em;
    background-color: var(--accent-color-2);
    border-radius: .2em;
}

.discripition-in-wrap p.descrip-hed {
    font-weight: 600;
    font-size: 1em;
    color: var(--black-color);
    margin-bottom: .8em;
}

.discripition-in-wrap p {
    font-size: .8em;
    color: var(--black-color);
    margin-bottom: 0;
}

.frequently-out-wrap {
    position: relative;
    padding-right: 0;
}

.frequently-in-wrap {
    background-color: var(--accent-color-3);
    padding: 1.3em;
    border-radius: .2em;
}

.frequently-in-wrap p {
    font-weight: 600;
    font-size: 1em;
    color: var(--black-color);
    margin-bottom: .8em;
}

.frequently-in-wrap p span.add-all {
    color: var(--primary-color);
    font-size: .8em;
}

.frequently-in-wrap p span.all-rupee {
    color: var(--secondary-color);
    font-size: .8em;
}

.frequently-items .left-prodcut-image-wrap {
    width: 25%;
}

.frequently-items .left-prodcut-title-wrap {
    width: 75%;
}

.frequently-in-wrap .left-prodcut-title-box p {
    color: var(--primary-color);
    font-size: .7em;
    font-weight: 500;
    margin-bottom: 0;
}

.frequently-in-wrap img.left-most-selling-arrow {
    right: 1em;
}

.more-like {
    float: left;
    width: 100%;
    padding: 1em;
}


/* Product Details End */


/* Cart Page */

.cart-pages {
    width: 100%;
    float: left;
    margin-bottom: 4em;
}

.shopping-cart {
    padding-top: 80px;
    padding-bottom: 60px;
}

.cart-table {
    margin: 4em 0;
    float: left;
    width: 100%;
}

.cart-table table {
    width: 100%;
    border: 1px solid #f9f9f9;
}

.cart-table table tr th {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    border: 1px solid #ebebeb;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    background: #dbb9a0;
}

.cart-table table tr th.p-name {
    text-align: left;
}

.cart-table table tr td {
    text-align: center;
    padding: 10px;
    border: solid 0px #ebebeb;
}

.cart-table table tr td.first-row {
    padding-top: .8em;
}

.cart-table table tr td.cart-pic {
    width: 11%;
}

.cart-table table tr td.cart-title {
    text-align: left;
}

.cart-table table tr td.cart-title h5 {
    color: var(--black-color);
    font-size: .9em;
    font-weight: 300;
    margin: 0;
    margin-bottom: .1em;
}

.cart-table table tr td.p-price {
    width: 16%;
}

.cart-table table tr td.p-price,
.cart-table table tr td.total-price {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
}

.cart-table table tr td.qua-col {
    width: 16%;
}

.cart-table .quantity {
    float: left;
    margin: 10px 0;
}

.cart-table .pro-qty {
    width: auto;
    height: 30px;
    border: 1px solid #f2eeeb;
    padding: 0 0px;
    float: left;
    margin-right: 2px;
}

.cart-table .pro-qty .qtybtn {
    font-size: 24px;
    color: #b2b2b2;
    float: left;
    line-height: 27px;
    cursor: pointer;
    width: auto;
    font-weight: 300;
    padding: 0 10px;
}

.cart-table .qtybtn.dec {
    font-size: 30px;
}

.cart-table .pro-qty input {
    text-align: center;
    width: 52px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    color: #4c4c4c;
    line-height: 23px;
    float: left;
}

.cart-table .total-price {
    width: 100%;
    float: left;
    font-size: .9em;
}

.cart-table table tr td.close-td {
    font-size: 16px;
    color: #252525;
    width: 20%;
}

.cart-table table tr td.close-td i {
    cursor: pointer;
}

.cart-buttons {
    margin-bottom: 34px;
    float: left;
    width: 100%;
    height: auto;
}

.cart-buttons .continue-shop {
    color: #b2b2b2;
    background: #ffffff;
    padding: 10px;
    float: left;
    font-size: 14px;
    width: 50%;
    text-align: center;
}

.cart-buttons .up-cart {
    color: #fff;
    background: #dbb9a0;
    padding: 10px;
    float: left;
    font-size: 14px;
    width: 50%;
    text-align: center;
}

.discount-coupon {
    margin-bottom: 30px;
}

.discount-coupon h6 {
    color: var(--black-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.discount-coupon .coupon-form {
    position: relative;
}

.discount-coupon .coupon-form input {
    width: 100%;
    height: 46px;
    border: 2px solid #ebebeb;
    color: #b2b2b2;
    font-size: 14px;
    padding-left: 20px;
}

.discount-coupon .coupon-form .coupon-btn {
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
    background: #dbb9a0;
    border: 1px solid #ebebeb;
    padding: 11px;
    font-size: 14px;
}

.proceed-checkout ul {
    background: var(--accent-color-2);
    padding: 0px 10px 10px 10px;
    border-radius: .2em;
}

.proceed-checkout ul li {
    list-style: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--black-color);
    text-transform: uppercase;
    overflow: hidden;
}

.proceed-checkout ul li.subtotal {
    font-weight: 400;
    text-transform: capitalize;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 14px;
}

.proceed-checkout ul li.subtotal span {
    font-weight: 700;
}

.proceed-checkout ul li.cart-total {
    padding-top: 10px;
}

.proceed-checkout ul li.cart-total span {
    color: #021536;
    width: 27%;
}

.proceed-checkout ul li span {
    float: right;
}

.proceed-checkout a.primary-button {
    text-align: center;
}

.cart-pic img {
    width: 88%;
}

.proceed-checkout .proceed-btn:hover {
    background: var(--gold);
}

.car-ryt {
    float: left;
    width: 100%;
    margin: 4em 0;
    background: #f9f9f9;
    padding: 1em;
    border-radius: 0.2em;
}

.discount-coupon span i {
    float: left;
    font-size: 17px;
    color: var(--gold);
    margin-right: 10px;
}

.order-summary {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
}

.order-summary tbody {
    border: solid 0px #ebebeb;
}

.save-color {
    color: var(--primary-color);
}

.cart-number {
    padding: 10px;
    background: #f9f9f9;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    border-radius: .2em;
}

.cart-number h6 {
    margin: 0;
}

.order-summary td {
    border-top: none !important;
    padding: 10px 0;
}

.titile-oder-summary-text {
    color: var(--black-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 20px;
}

.titile-oder-summary-text span i {
    float: left;
    font-size: 17px;
    color: var(--gold);
    margin-right: 10px;
}

.cart-table-item {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.mob-none {
    display: block;
}

.footer-sub-but {
    display: none;
}

.select-size-cart {
    float: left;
    width: auto;
    margin-top: 5px;
}

.select-size-cart p {
    font-size: 12px;
    margin-bottom: 0;
}

.select-size-cart .form-control {
    font-size: 12px;
    width: auto;
    border-radius: 0;
    border-color: #f2eeeb;
    margin-top: 5px;
    height: 30px;
}


/* Cart Page End */


/* Checkput Page */

.chekout-page {
    float: left;
    width: 100%;
}

.oder-confirmation {
    float: left;
    width: 100%;
    margin: 4em 0;
}

.address-section {
    float: left;
    width: 100%;
}

.addrs-one {
    float: left;
    width: 100%;
    padding: 15px;
    border: 1px solid #f9f9f9;
    margin-bottom: 10px;
}

.addrs-one:hover {
    background: var(--accent-color-2);
}

.addrs-two {
    float: left;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #f9f9f9;
}

.addrs-two:hover {
    background: var(--accent-color-2);
}

.title-oder-com {
    padding: 10px 0;
}

.title-oder-com h6 {
    font-size: .9em!important;
    color: var(--black-color);
}

.title-oder-com i {
    float: left;
    font-size: 14px;
    color: var(--secondary-color);
    margin-right: 10px;
}

.address-section p {
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
}

.slt-adr {
    background: var(--accent-color-1);
    margin: 0 10px;
    color: #fff;
    padding: 2px 15px;
    border-radius: 50px;
    font-size: 11px;
    color: var(--all-tag);
    position: relative;
    top: -.3em;
}

.address-section h6 {
    font-size: 16px;
    padding: 4px;
    color: var(--black-color);
    text-transform: uppercase;
}

.add-new-addres {
    float: left;
    width: 100%;
}

.add-addres-form {
    float: left;
    width: 100%;
}

.button-add-new {
    float: left;
    width: 100%;
}

.button-add-new .btn {
    background: #dbb9a0;
    color: #fff;
    font-size: 13px;
    border-radius: 0;
    margin: 10px 0;
    text-transform: uppercase;
}

.button-add-new .btn:hover {
    background: var(--black-color);
}

.payment-methods {
    float: left;
    width: 100%;
    margin: 10px 0;
}

.payment-methods .panel-body {
    font-size: 0.9em;
    font-weight: 300;
    margin: 2em 0;
}

.payment-slt .form-check {
    border: 1px solid #eeeeee;
    margin-bottom: 10px;
    float: left;
    width: 100%;
    padding: 10px 30px;
}

.payment-slt label {
    font-size: 14px;
    float: left;
    width: 100%;
    color: #021536;
}

.payment-slt .form-check-input {
    margin-top: 7px;
}

.payment-slt .form-check:hover {
    background: var(--light-gold);
}

.payment-methods {}

.payment-methods .panel-heading {
    background: var(--accent-color-1);
    border-radius: .2em;
}

.payment-methods .panel-default > .panel-heading a {
    display: block;
    padding: 15px 15px;
    font-size: 14px;
    color: #001436;
    text-decoration: none;
}

.expected-delivery {
    float: left;
    width: 100%;
    padding: 15px;
    margin-bottom: 4em;
    background: var(--accent-color-1);
    border-radius: .2em;
}

.icon-calendar {
    float: left;
    font-size: .8em;
    padding-right: 15px;
}

.time-date-exde {
    float: left;
}

.time-date-exde h6 {
    font-size: .9em;
    color: var(--black-color);
}

.time-date-exde p {
    margin: 0;
    font-size: .8em;
    color: var(--black-color);
}

.chekout-page .car-ryt {
    margin-bottom: 15px;
}

.gift-options label {
    font-size: 15px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
}

.radiotextsty {
    color: #021536;
    font-size: 14px;
}

.customradio {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default radio button */

.customradio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #BEBEBE;
}


/* On mouse-over, add a grey background color */

.customradio:hover input ~ .checkmark {
    background-color: transparent;
}


/* When the radio button is checked, add a blue background */

.customradio input:checked ~ .checkmark {
    background-color: white;
    border: 1px solid #BEBEBE;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.customradio input:checked ~ .checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.customradio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

.gift-options {
    float: left;
    width: 100%;
    padding: 10px;
    background: #fff;
    margin-bottom: 20px;
}


/* Checkout Page End */


/* Wishlist */

.myorder-table {
    margin: 0em 0;
    float: left;
    width: 100%;
}

.myorder-table h6 {
    font-size: 1.2em;
    color: var(--black-color);
    font-weight: 500;
}

.myorder-table table {
    width: 100%;
    border: 1px solid #f9f9f9;
}

.myorder-table table tr th {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    border: 1px solid #ebebeb;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    background: #dbb9a0;
}

.myorder-table table tr th.p-name {
    text-align: left;
}

.myorder-table table tr td {
    /* text-align: center; */
    text-align: right;
    padding: 10px;
    border: solid 0px #ebebeb;
}

.myorder-table table tr td.first-row {
    padding-top: 10px;
}

.myorder-table table tr td.cart-pic {
    width: 11%;
}

.myorder-table table tr td.cart-title {
    text-align: left;
}

.myorder-table table tr td.cart-title h5 {
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

.myorder-table table tr td.p-price {
    width: 16%;
}

.myorder-table table tr td.p-price,
.myorder-table table tr td.total-price {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
}

.myorder-table table tr td.qua-col {
    width: 16%;
}

.myorder-table .quantity {
    float: left;
    margin: 10px 0;
}

.myorder-table .pro-qty {
    width: auto;
    height: 30px;
    border: 1px solid #f9f9f9;
    padding: 0 0px;
    float: left;
}

.myorder-table .pro-qty .qtybtn {
    font-size: 24px;
    color: #b2b2b2;
    float: left;
    line-height: 27px;
    cursor: pointer;
    width: auto;
    font-weight: 300;
    padding: 0 10px;
}

.myorder-table .qtybtn.dec {
    font-size: 30px;
}

.myorder-table .pro-qty input {
    text-align: center;
    width: 52px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    color: #4c4c4c;
    line-height: 23px;
    float: left;
}

.myorder-table .total-price {
    width: 100%;
    float: left;
}

.myorder-table table tr td.close-td {
    font-size: 16px;
    color: #252525;
    width: 8%;
}

.myorder-table table tr td.close-td i {
    cursor: pointer;
}

.profile-page .cart-table-item a {
    float: left;
    width: 100%;
}

.profile-page .cart-table-item a:hover {
    background-color: var(--accent-color-3)!important;
}

.name-profile {
    float: left;
    width: 100%;
    background: var(--accent-color-1);
    padding: 15px;
    border-radius: 0px;
    color: var(--black-color) !important;
}

.name-profile h6 {
    font-size: .9em;
    color: var(--black-color);
    margin-bottom: .2em;
}

.name-profile p {
    margin-bottom: 0;
    font-size: .8em;
    color: var(--black-color);
}

.pnavigationrow {
    width: 100%;
    float: left;
    background-color: var(--accent-color-4);
    margin-top: 1em;
}

.profile-list-menu ul {
    list-style: none;
    margin: 0;
    padding: 1em;
}

.profile-list-menu li {
    padding: 15px 10px;
    background: #fff;
    margin-bottom: 15px;
    float: left;
    width: 100%;
}

.profile-list-menu li:hover {
    background-color: var(--accent-color-2);
}

.profile-list-menu li a {
    color: var(--black-color);
    text-decoration: none;
    font-size: .9em!important;
    font-weight: 500;
}

.profile-list-menu li span {
    float: right;
}

.cart-table-item a {
    text-decoration: none;
    color: inherit;
}

.dashboard-item table tr:hover {
    background-color: var(--accent-color-2);
}

.mob-tog {
    display: none;
}

.continue-but {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 0;
    width: 100%;
    padding: 10px 20px;
    margin-top: 2em;
    float: left;
    font-size: 14px;
}


/* Wishlist End */


/* Form Popup */

.form-modal .modal-body {
    background: #f9f9f9;
    border-radius: .2em;
}

.form-heading {
    color: #fff;
    font-size: 23px;
}

.panel h2 {
    color: var(--black-color);
    font-size: 1.5em;
    margin: 0 0 1em 0;
}

.panel p {
    color: #777777;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 24px;
}

.login-form .form-control {
    border-radius: 0px;
    font-size: 13px;
    height: 45px;
    line-height: 50px;
    border: 1px solid #ced4da;
    box-shadow: none;
    background: #fff;
}

.login-form textarea.form-control {
    height: inherit;
}

.main-div {
    border-radius: 2px;
    text-align: left;
}

.login-form .form-group {
    margin-bottom: 10px;
}

.login-form {
    text-align: center;
    width: 100%;
}

.forgot a {
    color: #777777;
    font-size: 14px;
    text-decoration: underline;
}

.login-form .btn.btn-primary {
    background: #dbb9a0 none repeat scroll 0 0;
    border-color: #dbb9a0;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0;
    border-radius: 0;
    border-radius: .2em;
}

.forgot {
    text-align: left;
    margin: 1em 0em;
}

.botto-text {
    color: #ffffff;
    font-size: 14px;
    margin: auto;
}

.login-form .btn.btn-primary.reset {
    background: #ff9900 none repeat scroll 0 0;
}

.back {
    text-align: left;
    margin-top: 10px;
}

.back a {
    color: #444444;
    font-size: 13px;
    text-decoration: none;
}

.form-modal a.primary-button {
    margin-top: .2em;
    width: 100%;
    text-align: center;
}

.form-modal a.tertiary-button {
    margin-top: .2em!important;
    width: 100%!important;
    text-align: center!important;
    margin-top: 2em!important;
}

.new-account a.primary-button {
    margin-top: .2em;
    width: 100%;
    text-align: center;
}


/* Form Popup End */

.social-media-login-button {
    float: left;
    text-align: center;
    padding: 0 20px;
    width: 33.33%;
    opacity: 0.85;
    cursor: pointer;
    transition: 0.2s;
    color: white;
}

.social-media-login-button:hover {
    opacity: 1;
    transition: 0.1s;
}

.social-media-login-button svg {
    padding: 10px;
}

.social-media-login-button .contents {
    margin-bottom: 2px
}

.social-media-login-button .contents > * {
    display: block;
    line-height: 1;
    color: inherit;
}

.social-media-login-button .contents .title {
    font-weight: 600;
    font-size: 12px;
    padding-bottom: 8px;
}

.social-media-login-button .contents .description {
    font-size: 13px;
    padding-top: 3px;
}

.social-media-login {
    float: left;
    width: 100%;
    margin-top: 15px;
}

.left-box-outer-wrap {
    display: block;
}


/* Add Address */

.add-address-form-box input {
    width: 100%;
    margin-bottom: 1.5em;
    font-size: .9em;
    padding: .5em .7em;
    border: 1px solid rgb(208, 208, 208);
    border-radius: .2em;
}

a#get-otp-button {
    font-size: 13px;
    color: #055234;
    font-weight: 600;
}
.addCartandbuy {
    background-color: var(--secondary-color) !important;
}

.add-decrease .btn-primary{
    background: #075234;
    border: none;
}
.product-add-to-cart-wrapper{
    width: fit-content;
}

.left-prodcut-image-box img{
    width: 30px !important;
    height: 30px;
}

.text-remember-me{
    font-size: 12px;
}

button:focus {outline:0;}


.pl-pagingation{
    margin-top: 1em;
}

.pl-pagingation li{
   float: left;
    list-style: none;
    padding: 0 20px 0 0;
}

.pl-pagingation li {
padding: 10px;
    background: #ffffff;
    border-radius: 60px;
    width: 30px;
    border: solid 1px #f68b1e4f;
    height: 30px;
    float: left;
    text-align: center;
    font-size: 12px;
    display: flex;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
}
.pl-pagingation li a{
        color: #000;
}
.pl-pagingation .active{
    background: #f68b1e;
    
}
.pl-pagingation .active a{
      color: #fff;
}


/* Search Bar */
.login-popup a.dropdown-item {
    white-space: inherit;
    color: var(--black-color);
}
.login-popup .dropdown-menu {
    z-index: 9999;
    margin-top: .75em;
    margin-left: -1em;
    border-radius: 0em 0 .3em .3em;
}
.login-popup a.dropdown-item.active {
    background: transparent;
}

.menu-wrapper {
    width: 100%;
    margin-left: 0;
}
.searchbox {
    padding-left: 11px;
    margin-top: 11px;
    width: 70%;
}
.box-one {
    width: 100%;
    /* height: 2em; */
    /* background: var(--accent-color-1); */
    margin-bottom: 10px;
    position: relative;
    display: flex;
    position: relative;
    top: 11px;
    border-top: 1px solid #f6debd;
}
.searchbox input {
    width: 88%;
    display: inline-flex;
    font-size: .8em;
    padding: .8em;
    padding-top: .9em;
    height: 2.5em;
    border: 1px solid #d1d1d1;
}
.searchbox button.secondary-button {
    font-size: .8em;
    cursor: pointer;
    border: 1px solid #d1d1d1;
    border-radius: 0em .3em .3em 0em;
}
.searchbox input:focus {
    border-color: transparent;
    box-shadow: none;
}
.searchbox .input-group-text {
    padding: 0rem .1rem!important;
    background-color: var(--accent-color-2);
    font-size: .8em;
}
.basket-box {
    width: 30%;
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    position: relative;
}
.basket-box ul {
    list-style: none;
    display: inline-flex;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
}
.basket-box ul li {
    margin-left: 10px;
}
.basket-box a.primary-button {
    font-size: .8em;
    text-align: center;
    right: 0;
    position: relative;
    top: 5px;
    padding: .5em .8em;
}
.basket-box a.secondary-button {
    font-size: .8em;
    text-align: center;
    right: 0;
    position: relative;
    top: 5px;
    padding: .5em .8em;
}
.basket-box img {
    width: 1.2em;
    position: relative;
    top: -1px;
    left: 0px;
}
.logo-box-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}
/* .logo-box-wrap img {
    width: auto!important;
} */
.menu-items-wrap {
    padding-right: 0;
}
button.all-categry-btn {
    background-color: transparent;
    color: inherit;
    border: none;
    padding: 0;
    cursor: pointer;
}
.searchbox a.dropdown-item {
    font-size: .8em;
    color: var(--black-color);
}
.stellarnav {
    display: block;
}
.stellarnav ul {
    text-align: left;
}
.stellarnav.dark.left .menu-toggle, .stellarnav.dark.right .menu-toggle {
    border-bottom: 0;
    position: absolute;
    right: 0;
}

.searchbox .input-group-prepend select {
    background-color: transparent;
    border: none;
    cursor: pointer;
}


/* Search Bar End */

.footer-search {display: none;}

/*mobile footer menu*/

#mob-footer{
    float: left;
    width: 100%;
    padding: 10px;
   
    background-color: var(--primary-color);
    display: none;
}
.stellarnav .menu-toggle span.bars {
    top: 13px;
}
.profile-in-header {
    display: none;
}
/*mobile footer menu*/

/* Media Query */

@media only screen and (max-width: 1440px) {
    .stellarnav.dark li a {
        padding: 6px 7px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 1397px) {
    li.nav-item a.black-tag {
        font-size: .8em!important;
    }
    a.black-tag {
        padding: .4em .5em;
        font-size: .8em!important;
    }
    a.primary-button {
        font-size: .8em;
    }
    a.secondary-button {
        font-size: .8em;
    }
    a.black-tag:hover {
        color: var(--primary-color);
        font-size: .8em!important;
        text-decoration: none;
        padding: .4em .5em;
    }
    a.black-tag.active {
        color: var(--primary-color);
        font-size: .8em!important;
        text-decoration: none;
        padding: .4em .5em;
        font-weight: 600;
    }
    .container-fluid {
        width: 100%;
    }
    .stellarnav.dark li a {
        padding: 6px 7px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1230px) and (min-width: 1132px) {
    a.primary-button:hover {
        background: var(--primary-color);
        color: var(--white-color);
        padding: .4em .8em;
        border-radius: .2em;
        text-decoration: none;
        font-size: .8em;
    }
    .category-img-in-wrap {
        width: 40px;
        height: 40px;
    }
    .category-title h1 {
        font-size: .75em;
    }
    .category-title a.all-tag {
        font-size: .6em;
    }
    .category-title {
        padding: .2em;
        line-height: 1em;
    }
    .category-out-wrap {
        height: 3.4em;
        padding-top: .3em;
    }
    .product-list-slide .item .product-box {
        padding: .8em;
    }
    .product-list-slide .minus,
    .plus {
        width: 1em;
    }
    .porducts-page-list-box .minus,
    .plus {
        width: 1em;
    }
    .frequently-in-wrap .left-prodcut-title-box p {
        font-size: .7em;
    }
    .frequently-in-wrap img.left-most-selling-arrow {
        right: 1em;
        width: .4em!important;
    }
    .cart-pic img {
        width: 49%!important;
    }
    .stellarnav.dark li a {
        padding: 6px 7px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1217px) {
    a.black-tag {
        padding: .4em .4em;
    }
    li.nav-item a.black-tag {
        font-size: .75em!important;
    }
    a.primary-button {
        padding: .3em .5em;
    }
    a.secondary-button {
        padding: .3em .5em;
    }
    .back-items ul li a.primary-button {
        padding: .6em .7em;
    }
    .stellarnav.dark li a {
        padding: 6px 7px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1132px) {
    a.navbar-brand img {
        width: 5em;
    }
    a.secondary-button {
        padding: .3em .3em;
        font-size: .75em;
    }
    a.primary-button {
        font-size: .75em;
    }
    .product-add-to-cart-wrapper a.secondary-button.addCartandbuy.btn-order-now {
        width: 100%;
        left: 0;
        text-align: center;
    }
    .product-add-to-cart-wrapper input.product-qty {
        /* width: 70%; */
        /* width: 90%; */
        width: 64%;
        margin-bottom: 1em;
    }
    .stellarnav.dark li a {
        padding: 6px 7px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1132px) and (min-width: 1024px) {
    li.nav-item a.black-tag {
        font-size: .6em;
    }
    a.primary-button:hover {
        font-size: .6em;
        padding: .4em .8em;
    }
    a.primary-button {
        font-size: .6em;
        padding: .4em .8em;
    }
    .top-nav h1 {
        font-size: .65em;
    }
    a.secondary-button {
        font-size: .6em;
        padding: .4em .8em;
    }
    select.locator {
        padding: 0.4em 0.5em;
        font-size: .6em;
    }
    .top-nav-button ul li a {
        font-size: .6em;
    }
    .top-nav-button ul li a:hover {
        font-size: .6em;
    }
    a.black-tag {
        padding: .4em .5em;
        font-size: .6em!important;
    }
    a.black-tag:hover {
        padding: .4em .5em;
        font-size: .6em!important;
    }
    .category-out-wrap {
        height: 3em;
        padding-top: .7em;
    }
    .category-img-in-wrap {
        width: 40px;
        height: 40px;
    }
    .category-title h1 {
        font-size: .6em;
        position: relative;
        top: .5em;
    }
    .category-title a.all-tag {
        font-size: .5em;
        position: relative;
        top: -.5em;
    }
    .category-title {
        padding: .3em;
    }
    .prodcut-section h2 {
        font-size: .8em;
    }
    .product-list-slide .owl-nav {
        top: -50px;
    }
    .product-list-slide .owl-nav button.owl-next,
    .product-list-slide .owl-nav button.owl-prev {
        width: 1em;
        height: 1em;
    }
    .product-list-slide .owl-nav button i.bi.bi-arrow-left-short,
    i.bi.bi-arrow-right-short {
        position: relative;
        top: -.2em;
    }
    .product-list-slide .item .product-box {
        padding: .5em;
    }
    .product-box img {
        width: 15em!important;
    }
    .offer-prcntg-tag {
        height: 1.5em;
        width: 1.5em;
    }
    .offer-prcntg-tag p {
        font-size: .5em;
    }
    .product-fav a {
        font-size: .9em;
    }
    .product-box a {
        font-size: .7em;
    }
    p.price-in-list {
        font-size: .7em;
    }
    .product-list-slide .minus,
    .plus {
        width: 1em;
        font-size: .7em;
    }
    .porducts-page-list-box .minus,
    .plus {
        width: 1em;
        font-size: .7em;
    }
    .product-list-slide input {
        font-size: .65em;
    }
    .add-cart-list button.secondary-button {
        width: 100%;
        font-size: .7em;
        padding: .33em .5em;
        cursor: pointer;
    }
    .count-num {
        width: auto;
    }
    .content-box-wraper h5 {
        font-size: .8em;
    }
    .content-box-wraper p {
        font-size: .7em;
        color: var(--all-tag);
        line-height: 1.4em;
    }
    .footer-logo img {
        width: 5em;
    }
    .footer-socialbox h1 {
        font-size: 1em;
    }
    .footer-socialbox h2 {
        font-size: .7em;
    }
    .footer-socialbox ul li a {
        font-size: .8em;
    }
    .footer-socialbox ul li {
        margin-right: 1em;
    }
    .rights-copy-img img {
        width: 3em;
    }
    .rights-copy-img p {
        font-size: .5em;
    }
    .news-letter h6 {
        font-size: 1em;
    }
    .news-letter p {
        font-size: .7em;
    }
    .footer-menu-links ul li a {
        font-size: .7em;
    }
    p.footer-store-timing {
        font-size: .7em;
    }
    .left-prodcut-title-box p {
        font-size: .7em;
    }
    img.left-most-selling-arrow {
        width: .4em;
        right: 1em;
    }
    .testimonial-inner-wrap {
        padding: 1em;
    }
    .testimonial-inner-wrap p.testimonial-content {
        font-size: .7em;
    }
    .left-side-contact-box a {
        font-size: .5em;
    }
    .left-side-contact-box {
        padding: 1em;
    }
    .get-touch p {
        font-size: .8em;
    }
    .cart-pic img {
        width: 49%!important;
    }
    .cart-table table tr td.cart-title h5 {
        font-size: .7em!important;
    }
    .cart-table .total-price {
        font-size: .7em;
    }
    .cart-table .pro-qty {
        height: 20px;
    }
    .cart-table .qtybtn.dec {
        font-size: .7em;
        line-height: 20px;
    }
    .cart-table .pro-qty input {
        font-size: .7em;
        line-height: 17px;
    }
    .cart-table .pro-qty .qtybtn {
        font-size: .7em;
        line-height: 20px;
    }
    .cart-table table tr td.close-td {
        font-size: .7em;
    }
    .titile-oder-summary-text {
        font-size: 1em;
    }
    .titile-oder-summary-text span i {
        font-size: 1em;
    }
    .order-summary td {
        font-size: .7em;
    }
    .proceed-checkout ul li {
        font-size: .7em;
    }
    .address-section h6 {
        font-size: .7em;
    }
    .title-oder-com h6 {
        font-size: .7em!important;
    }
    .address-section p {
        font-size: .7em;
    }
    .slt-adr {
        font-size: .6em;
    }
    a.tertiary-button {
        font-size: .6em;
    }
    .select-time select {
        font-size: .6em;
    }
    .select-time select {
        font-size: .7em;
        padding: .5em 2.8em;
    }
    .product-add-to-cart-wrapper a.secondary-button.addCartandbuy.btn-order-now {
        width: 100%;
        left: -8px;
        text-align: center;
    }
    .product-add-to-cart-wrapper input.product-qty {
        width: 70%;
    }
    .product-add-to-cart-wrapper {
        width: 83%;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 992px) {
    li.nav-item a.black-tag {
        font-size: .6em!important;
    }
    .top-nav h1 {
        font-size: .65em;
    }
    .product-add-to-cart-wrapper a.secondary-button.addCartandbuy.btn-order-now {
        width: 91%;
        left: 0;
        text-align: center;
    }
    .product-add-to-cart-wrapper {
        width:90%;
    }
    .stellarnav.dark li a {
        padding: 6px 5px;
        font-size: 10px;
    }
    
    .left-side-contact-box {
        padding: 1em .3em;
    }
    .left-side-contact-box a {
        font-size: 10px;
    }
    
}

@media only screen and (max-width: 991px) {
    .container-fluid {
        width: 100%;
    }
    .category-slider-box.owl-theme .owl-nav {
        display: none;
    }
    .category-slider-box.owl-theme .owl-dots {
        display: none;
    }
    .odr-rgt {
        order: 1;
    }
    .odr-lft {
        order: 2;
    }
    .product-list-slide .owl-nav.disabled {
        display: block;
        position: absolute;
        top: -70px;
        right: 0;
    }
    a.navbar-brand img {
        width: 7em;
    }
    li.nav-item a.black-tag {
        font-size: .9em!important;
    }
    a.primary-button {
        font-size: .9em;
        padding: .4em .8em;
    }
    a.secondary-button {
        padding: .4em .8em;
        font-size: .9em;
    }
    .top-nav h1 {
        text-align: center;
    }
    .home-slider-in {
        margin-bottom: 1.5em;
    }
    .banner-slider-section {
        padding-bottom: 0;
    }
    .category-img-in-wrap {
        margin: 0 auto;
    }
    .category-title img {
        left: -2.3em;
    }
    .category-title {
        padding-left: 3em;
    }
    .contnet-outer-wraper {
        padding: 1em;
    }
    .footer-menu-outer:nth-child(2n) {
        border: none;
        padding-left: 0em;
    }
    .footer-menu-outer:nth-child(3n) {
        padding-left: 0;
    }
    .footer-menu-outer {
        padding-bottom: 0;
    }
    .footer-passio a {
        position: relative;
        left: 1em!important;
        top: 1em;
    }
    .footer-section {
        padding: 3em 0;
    }
    .top-top.mobile-to-top {
        width: 2em;
        height: 2em;
        position: absolute;
        bottom: 3em!important;
        right: 2em!important;
    }
    .cart-pic img {
        width: 50%;
    }
    .cart-table table tr th {
        font-size: 12px;
    }
    .cart-table {
        margin: 4em 0;
        overflow: auto;
    }
    .cart-table table tr td.cart-pic {
        width: 20%;
    }
    .cart-table {
        margin: 1em 0;
    }
    .car-ryt {
        margin: 0em 0px 1em 0;
        padding: 1em;
    }
    .cart-pages {
        margin-bottom: 1em;
    }
    .mob-none {
        display: none !important
    }
    .mob-proceed-btn {
        position: fixed;
        bottom: 0;
        width: 50%;
        right: 0;
        z-index: 99;
        padding: .7em !important;
        font-size: .9em !important;
    }
    .proceed-checkout a.primary-button {
        border-radius: 0;
    }
    .price-footer-summery {
        position: fixed;
        bottom: 0;
        width: 50%;
        left: 0;
        z-index: 99;
        background: var(--accent-color-1);
        padding: 7px;
        color: var(--primary-color);
        text-align: center;
    }
    .price-footer-summery h6 {
        line-height: 0;
        padding: 14px;
        margin: 0;
    }
    .footer-sub-but {
        display: block !important
    }
    .cart-buttons .continue-shop {
        font-size: 12px !important;
    }
    .cart-buttons .up-cart {
        font-size: 12px !important;
    }
    .oder-confirmation {
        margin: 2em 0em;
    }
    .mob-tog {
        display: block;
    }
    .modal-dialog-slideout {
        min-height: 100%;
        margin: 0 0 0 auto;
        background: #fff;
    }
    .modal.fade .modal-dialog.modal-dialog-slideout {
        -webkit-transform: translate(100%, 0)scale(1);
        transform: translate(100%, 0)scale(1);
    }
    .modal.fade.show .modal-dialog.modal-dialog-slideout {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        display: flex;
        align-items: stretch;
        -webkit-box-align: stretch;
        height: 100%;
    }
    .modal.fade.show .modal-dialog.modal-dialog-slideout .modal-body {
        overflow-y: auto;
        overflow-x: hidden;
    }
    .modal-dialog-slideout .modal-content {
        border: 0;
    }
    .modal-dialog-slideout .modal-header,
    .modal-dialog-slideout .modal-footer {
        height: 69px;
        display: block;
    }
    .modal-dialog-slideout .modal-header h5 {
        float: left;
    }
    .product-detail-in-wraper h5 {
        width: inherit!important;
        text-align: left;
        line-height: 1.8em;
    }
    .product-detail-in-wraper ul {
        display: block;
    }
    .product-detail-in-wraper ul li {
        margin-bottom: 2em;
    }
    .product-detail-in-wraper ul li a {
        width: inherit;
    }
    .top-nav-button {
        /* display: none; */
    }
    li.nav-item {
        line-height: 2.5em;
    }
    .prodcut-detail-content-wraper {
        padding-left: 0;
        margin-top: 1em;
    }
    .frequently-out-wrap {
        padding-left: 0;
        margin-top: 1em;
    }
    .more-like .product-list-slide .item .product-box {
        height: inherit;
    }
    .navbar-collapse {
        flex-basis: auto;
    }
    .logo {
        width: 180px;
    }
    .navbar {
        padding: 5px 15px;
        z-index: 9;
    }
    .stellarnav .menu-toggle {
        padding: 5px 0px !important;
        padding: 0;
    }
    .navbar .form-inline {
        flex-flow: row wrap;
        align-items: center;
        justify-content: center;
    }
    .stellarnav.mobile {
        top: 3px;
    }
    a.primary-button {
        background: var(--secondary-color);
        color: var(--white-color);
        padding: 0.4em 0.8em;
        border-radius: 0;
        text-decoration: none;
        font-size: .9em;
        width: 100%;
        float: left;
        padding: 0;
        line-height: 1;
        margin: 0;
    }
    a.secondary-button {
        padding: 0.4em 0.8em;
        border-radius: 0;
        text-decoration: none;
        font-size: .9em;
        width: 100%;
        float: left;
        padding: 0;
        line-height: 1;
        margin: 0;
    }
    a.secondary-button.addCartandbuy.btn-order-now {
        width: auto;
    }
    
    
       #mob-footer{
   position: fixed;
        bottom: 0;
    display: block;
    z-index: 999;
        display: flex;
    justify-content: space-around;
}
    #mob-footer a{
           color: #fff;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    
    .product-add-to-cart-wrapper {
    width:90%;}
    .product-add-to-cart-wrapper input.product-qty {
    	    width: 25%;
    }
    /* .product-add-to-cart-wrapper a.secondary-button.addCartandbuy.btn-order-now {
    	    width: 45%;
        left: 1em;
    } */
    .product-add-to-cart-wrapper a.secondary-button.addCartandbuy.btn-order-now {
        width: 45%;
        left: .5em;
    }
    a.secondary-button.addCartandbuy.btn-order-now {
	padding:.7em .7em}

    .box-one {
        /* display: block; */
        /* margin-top: 28px!important; */
        /* border-top: none;
        left: -40px;
        top: -13px; */
        display: none;
    }
    .basket-box {
        display: none;
        width: inherit;
    }
    .searchbox {
        width: 100%;
        
    }
    .login-popup .dropdown-menu {
        margin-left: -5em;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
        z-index: 9;
    }
    .stellarnav {
        overflow: inherit;
    }
    .footer-search {
        display: block;
        background: var(--accent-color-1);
        position: fixed;
        z-index: 9999;
        bottom: 0;
        padding: .5em;
        width: 100%;
    }
    .footer-search select {
        background-color: transparent!important;
        padding: 0;
        border: none;
        font-size: .7em;
    }
    .footer-search button.secondary-button {
        border-radius: 0em .3em .3em 0em;
    }
    .footer-search .input-group-text {
        background: var(--accent-color-1);
        padding: 0 .5em;

        border: 1px solid var(--primary-color);
    }
    .footer-search input {
        border: 1px solid var(--primary-color);
        font-size: .8em;
    }
    .footer-search input:focus {
        /* border: none; */
        border: 1px solid var(--primary-color);
        box-shadow: none;
    }
    .profile-in-header {
        position: relative;
        left: -30px;
        top: 3px;
        display: block;
    }
    .pro-headerbox i.bi.bi-person-circle {
        font-size: 22px;
        color: #000;
    }
    .pro-headerbox .dropdown-menu {
        margin-left: -81px;
    }
    
}

@media only screen and (max-width: 768px) {
	/* .product-add-to-cart-wrapper a.secondary-button.addCartandbuy.btn-order-now {
	    width: 100%;
	    left: 0em;
	} */
	.product-add-to-cart-wrapper input.product-qty {
	    width: 51%;
	}
	input.field-update-quantity {
	    width: 60%!important;
	}
    span.search-mob-text {
        display: none;
    }
    .product-add-to-cart-wrapper .input-group {
        margin-left: .5em;
    }
    .input-group-prepend {
        margin-right: -1px;
    }
    .product-add-to-cart-wrapper a.secondary-button.addCartandbuy.btn-order-now {
        width: 45%;
        left: .5em;
    }
	
}

@media only screen and (max-width: 610px) {
	.product-add-to-cart-wrapper input.product-qty {
        width: 80%;
    }
}
@media only screen and (max-width: 510px) {
    .searchbox .input-group-prepend select {
        width: 55px;
    }
    .product-add-to-cart-wrapper input.product-qty {
        width: 79%;
    }
}

@media only screen and (max-width: 490px) {
    .stellarnav.mobile {
        /* width: 60%; */
    }
    .searchbox .input-group-prepend select {
        width: 55px;
        font-size: .8em;
    }
    .product-add-to-cart-wrapper input.product-qty {
        width: 78%;
    }
}

@media only screen and (max-width: 411px) {
    .proceed-checkout a.primary-button {
        text-align: center;
        font-size: .7em!important;
    }
    .price-footer-summery h6 {
        font-size: .7em!important;
        padding: .9em;
    }
    .product-add-to-cart-wrapper input.product-qty {
        width: 70%;
    }
}
@media only screen and (max-width: 390px){
	.product-add-to-cart-wrapper input.product-qty {
	    width: 80%;
	}
    .product-add-to-cart-wrapper input.product-qty {
        width: 60%;
    }
}

/* Media Query End */