:root {
  --bs-primary-dark: #000000;
  --bs-primary-light: #fff;
  --bs-secondary: #007a7a;
  --bs-secondary-light: #dedede;
  --bs-primary-rgb: 98, 107, 102;
  --bs-link-color: #626b66;
  --bs-link-hover-color: none;
  --bs-border-radius: 0rem;
  --bs-border-radius-sm: 0rem;
  --bs-border-radius-lg: 0rem;
  --bs-border-radius-xl: 0rem;
  --bs-border-radius-2xl: 2rem;
  --bs-white-rgb: 255, 255, 255;
  --bs-btn-hover-bg: #006060;
}
.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #64748b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.widget-nav li a:hover {
  color: var(--bs-primary);
}

.widget-nav li a:hover .total-count {
  background-color: var(--bs-primary);
  color: #fff;
}
.service-nav li a:hover {
  color: #191d28;
  -webkit-box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
  box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
  border-color: var(--bs-primary);
}

.service-nav li a.active {
  background-color: var(--bs-secondary);
  color: #fff;
  border-color: var(--bs-primary);
}
.pt-info-tab-nav li a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: 1;
  width: 0;
  height: 1px;
  background-color: var(--bs-secondary);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pt-info-tab-nav li a.active {
  color: var(--bs-secondary);
}

.sb-prod-card {
  position: relative;
}

.sb-prod-card i {
  color: var(--bs-primary) !important;
}

.sb-prod-card .sb-qty {
  position: absolute;
  top: 5px;
  left: 5px;
  background: var(--bs-primary);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  color: teal;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sb-prod-card .product-price {
  color: #aaaaaa;
  display: block;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 8px;
  line-height: 18px;
  transition: all 0.22s cubic-bezier(0.07, 0.74, 0.56, 0.89);
}

.sb-prod-card:hover .product-price {
  color: #1c1c1c !important;
}

.card_deco {
  background-color: white;
}
.card_deco:hover {
  background-color: rgb(188, 133, 59);
  color: white;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.bg-primary{
  background-color: var(--bs-primary-dark);
}

.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}
.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}
.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}
.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

a {
  color: var(--bs-primary-dark);
  text-decoration: none;
}

a:hover {
  color: var(--bs-secondary);
}

.text-primary {
  color: var(--bs-primary-dark);
}
.text-teal {
  color:var(--bs-secondary);
}

.alert {
  --bs-alert-bg: var(--bs-primary-dark);
  --bs-alert-padding-x: 1.125rem;
  --bs-alert-padding-y: 0.75rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.4375rem;
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-border-radius);
}
.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-primary-dark),
    var(--bs-border-opacity)
  ) !important;
}


.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-light), var(--bs-text-opacity)) !important;
}

#toast-container > .toast-success,
#toast-container > .toast-success .toast-message a,
#toast-container > .toast-success .toast-message label {
  background-color: var(--bs-secondary) !important;
  color: #ffffff;
}

.theme-checkbox input:checked ~ .checkbox-field {
  color: #fff;
  background-color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
}

.btn {
  --bs-btn-padding-x: 1.125rem;
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-font-size: 0.8203125rem;
  --bs-btn-font-weight: normal;
  --bs-btn-line-height: 1.65;
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #007a7a;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0%;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: unset;
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  -webkit-transition: color 0.25s ease-in-out,
    background-color 0.25s ease-in-out, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.2s ease-in-out;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out,
    border-color 0.25s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out,
    border-color 0.25s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out,
    border-color 0.25s ease-in-out, box-shadow 0.2s ease-in-out,
    -webkit-box-shadow 0.2s ease-in-out;
}

.btn:hover {
  color: var(--bs-primary-light);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.btn-outline-primary {
  color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
  border-radius: 30px;
}


.gshop-header-cart:hover #carts_items {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 15px);
}

.gshop-header-contact .icon {
  width: 50px;
  height: 50px;
}

.gshop-header-contact::before {
  left: auto;
  right: -24px;
}

.gshop-header-contact::before,
.gshop-navbar-right::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background-color: rgba(110, 179, 86, 0.1);
}

@media (max-width: 575.98px) {
  .gshop-offcanvas-btn {
    width: 60px;
    height: 60px;
  }

  .gshop-offcanvas-btn svg {
    width: 18px;
  }
}

#top_move > a > i {
  font-size: 1.5rem;
  height: 35px;
  color: #007a7a;
  transition: height 0.22s ease;
}

/*End side floating action menu  */

#product_quen {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  background-color: white;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

#hover_cart_last_row {
  background-color: white;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.3125rem;
  --bs-pagination-font-size: 0.8203125rem;
  --bs-pagination-color: #454f5b;
  --bs-pagination-bg: transparent;
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: transparent;
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: #454f5b;
  --bs-pagination-hover-bg: #f4f6f8;
  --bs-pagination-hover-border-color: #f4f6f8;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0 rgba(78, 181, 41, 0.25);
  --bs-pagination-active-color: #ffffff;
  --bs-pagination-active-bg: #007a7a;
  --bs-pagination-active-border-color: transparent;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  flex-wrap:wrap;
  gap: 5px;
}
.pagination li .page-link {
  min-width: 40px;
  height: 40px;
  border-radius: 4px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.125rem;
  --bs-pagination-border-radius: 0.5rem;
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: 0.25rem;
}

.pagination .page-link:hover {
  background-color: var(--bs-primary-dark) !important;
  border-color: rgba(0, 0, 0, 0) !important;
  color: #fff !important;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}


.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 4px;
  font-size: 20px;
  line-height: initial;
}

.page-link > svg {
  margin-top: -0.125rem;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 767px) {
  #side_navigation {
    display: none;
  }
}

/*start header style here */
p {
  margin: 0;
  padding: 0;
}

.demo_header_first_row {
  color: #000000;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #f7f7f7;
}

#demo_search_product {
  border: 1px solid black;
  border-radius: 20px;
  padding: 5px 5px;
  width: 23.5rem;
}

#search_product_btn {
  position: absolute;
  top: 7px;
  right: 15px;
  color: black;
}

#mobile_product_search {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 20px;
  padding: 0.41rem 2.5rem 0.41rem 1rem;
  background-color: #f7f7f7;
  color: black;
  opacity: 0.5;
}

#mobile_product_search_icon {
  position: absolute;
  top: 8px;
  right: 15px;
  color: black;
}

#input_search {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 20px;
  padding: 0.41rem 2.5rem 0.41rem 1rem;
  background-color: #f7f7f7;
  color: black;
  opacity: 0.5;
}

#input_search:hover {
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 20px;
  background-color: #fff;
}

#input_search:focus {
  border: 1px solid #1d89dd;
  border-radius: 20px;
  background-color: #fff;
}

.demo_header_btns {
  color: #ffffff;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
}

.demo_header_navs {
  display: flex;
  align-items: center;
}

.demo_header_navs > li {
  margin-left: 25px;
  margin-top: 0;
}
.margin-l-10 {
  margin-left: 10px !important
}
.ml-10px{
  margin-left: 10px;
}
.demo_header_tabs > li {
  display: inline-block;
  margin-right: 15px;
  margin: 0;
  white-space: nowrap;
  line-height:2.3rem;
  height:100%;
  transition: all 500ms;
}
.demo_header_tabs li a {
  color: #fff;
  font-weight: 600;
  transition: all 1s;
  padding: 0px 10px;
  display: inline-block;
}

.demo_header_tabs li:hover a {
  color: black;
  background-color: white;
}



#offcanvasProductSearch {
  min-width: calc(100% - 20%);
  max-width: calc(100% - 20%);
}

body.overlay {
  transition: background-color 0.3s ease;
}

.overlay-active {
  background-color: rgba(0, 0, 0, 0.5);
}

::placeholder {
  color: rgba(0, 0, 0, 1);
  opacity: 1;
  font-weight: 400;
  font-size: 15px;
}

.category_menu .category_hover_div {
  position: absolute;
  left: 0px;
  width: 100%;
  min-height: 600px;
  top: 40px;
  background-color: white;
  padding: 10px;
  z-index: 50;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 2px 55px 55px rgba(0, 0, 0, 0.1);
}

.category_menu:hover .category_hover_div {
  opacity: 1;
  visibility: visible;
}
.category_menu:hover .demo_header_btns {
  background-color: white;
  color: black;
}

.category-dropdown-btn {
  font-size: 15px;
}

.category-dropdown-btn span i {
  font-size: 12px;
}

.myCartsDiv {
  position: absolute;
  top: 10px;
  right: -50%;
  width: 322px;
  background-color: white;
  min-height: 228px;
  visibility: hidden;
}

.myCartLink:hover .myCartsDiv {
  visibility: visible;
}


.right_header_menu {
  justify-content: end;
}

.search-form .submit-icon-btn-secondary:hover {
  background-color: var(--bs-primary-dark);
}

.search-form .submit-icon-btn-secondary {
  width: 48px;
  height: 48px;
  background-color: var(--bs-secondary);
  color: #fff;
  text-align: center;
  line-height: 48px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 0 5px 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* start product card style */
.product_container {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.has-submenu {
  position: relative;
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(
    --bs-breadcrumb-divider,
    "/"
  ); /* rtl: var(--bs-breadcrumb-divider, "/") */
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

/* end  product card style */

@media (max-width: 767.98px) {
  .demo_header_first_row {
    display: none;
  }

  .my_account_text {
    display: none;
  }

  .right_header_menu {
    justify-content: end;
  }

  .header_search_column {
    display: none;
  }

  .checkout_btn {
    display: none;
  }

  .right_header_menu {
    justify-content: end;
    padding-left: 0px;
    padding-right: 0px;
  }
  .template-pagination li a {
    min-width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #ffe5ce;
    color: var(--bs-secondary);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .template-pagination li a:hover {
    background-color: var(--bs-secondary);
    color: #fff;
  }

  .template-pagination li a.active {
    background-color: var(--bs-secondary);
    color: #fff;
  }

  .demo_header_navs > li {
    margin-left: 22px;
    font-size: 22px;
    margin-top: 0;
    padding: 0;
  }
}

@media (min-width: 767.98px) {
  .product_search_mobile {
    display: none;
  }
}
.vertical-product-card .product-btns .rounded-btn {
  padding: 2px 5px;
}

.vertical-product-card .product-btns .rounded-btn:hover {
  border-color: var(--bs-primary-dark);
}

/*start header style here */

/*start product info style*/

/*end product info style*/

.full-top-category-box {
  transition: all 0.3s ease 0s;
  height: 170px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.rounded-btn:hover {
  background-color: var(--bs-secondary);
  color: #fff;
}

.rounded-btn {
  width: 35px;
  height: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: #5d6374;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.rounded-btn svg path {
  fill: #5d6374;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.rounded-btn:hover {
  background-color: var(--bs-secondary);
  color: #fff;
}
.full-top-category-box:hover img {
  transform: scale(1.1);
}

.full-top-category-box .mask {
  opacity: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  -webkit-transition: -webkit-transform 0.15s 0.1s, opacity 0.15s ease-in-out;
  -moz-transition: -moz-transform 0.15s 0.1s, opacity 0.15s ease-in-out;
  transition: transform 0.15s 0.1s, opacity 0.15s ease-in-out;
}

.full-top-category-box .mask .content {
  position: absolute;
  padding: 0 20px;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.full-top-category-box:hover .mask {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.36, 0.76, 0, 0.88),
    opacity 0.16s ease-out;
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.36, 0.76, 0, 0.88),
    opacity 0.16s ease-out;
  transition: transform 0.4s cubic-bezier(0.36, 0.76, 0, 0.88),
    opacity 0.16s ease-out;
}

.full-top-category-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease 0s;
}

.full-top-category-box h5 {
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
  background: rgb(201, 170, 101);
  background: linear-gradient(
    0deg,
    rgba(201, 170, 101, 1) 28%,
    rgba(142, 106, 31, 1) 90%
  );
  padding: 2px 10px;
  font-size: 17px;
  border-radius: 5px;
}

.full-top-category-box .mask p {
  color: white !important;
  margin-bottom: 0px !important;
}

.full-top-category-box .mask .content h2 {
  font-size: 22px !important;
  color: #323232;
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-box-wrapper {
  position: absolute;
  min-width: 400px;
  top: calc(100% + 10px);
  right: -50px;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.side_list_style{
  border-top:2px solid rgb(184,184,184);
  padding-top:7px;
  color:rgb(160,160,160) !important;
}
.color-text{
  color:rgb(136,136,136);
}

.side_product_info_style{
  display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;
         text-overflow: ellipsis;
}
.category-dropdown-box {
  position: absolute;
  top: 60px;
  left:40%;
  width:650px;
  height:400px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 4px;
  z-index:3;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
  box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
}

.category-dropdown-box.active {
  top: 40px;
  opacity: 1;
  visibility: visible;
}


@media (max-width: 1199.98px) {
  .category-dropdown-box {
    left:0;
  }
}

@media (max-width: 991.98px) {
  .category-dropdown-box {
    left:0;
  }
}

@media (max-width: 767.98px) {
  .category-dropdown-box {
    left:0;
    width: 320px;
    height: 325px;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .category-dropdown-box {
    left:0;
  }
}

/* .alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: normal;
  color: var(--bs-alert-link-color);
}
.alert-dismissible {
  padding-right: 3.375rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.9375rem 1.125rem;
}
.alert-primary {
  --bs-alert-color: var(--bs-primary-text);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text);
} */
/* .alert-accent {
  --bs-alert-color: var(--bs-accent-text);
  --bs-alert-bg: var(--bs-accent-bg-subtle);
  --bs-alert-border-color: var(--bs-accent-border-subtle);
  --bs-alert-link-color: var(--bs-accent-text);
} */
/* .alert-secondary {
  --bs-alert-color: var(--bs-secondary-text);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text);
} */
/* .alert-success {
  --bs-alert-color: var(--bs-success-text);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text);
}
.alert-info {
  --bs-alert-color: var(--bs-info-text);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text);
}
.alert-warning {
  --bs-alert-color: var(--bs-warning-text);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text);
}
.alert-danger {
  --bs-alert-color: var(--bs-danger-text);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text);
}
.alert-light {
  --bs-alert-color: var(--bs-light-text);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text);
}
.alert-dark {
  --bs-alert-color: var(--bs-dark-text);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text);
} */


.demo2_header_cart_counter {
  position: absolute;
  top:-12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  background-color: black;
  color: white;
  border-radius: 50%;
  left:14px;
  font-weight: 600;
  filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
}

.carts_items {
  position: absolute;
  min-width: 400px;
  z-index: 12;
  background-color: red;
  top: 100%;
  right: -150px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.apt_cart_box {
  background: #fff;
  -webkit-box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
  box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
  padding: 0px;
  border:1px solid rgba(0,0,0,0.6);
  border-radius: 8px;
  width:400px;
  position: relative;
}

.apt_cart_box ul li .items-content h6:hover,
.apt_cart_box ul li .items-content .h6:hover {
  color: var(--bs-btn-hover-bg);
}

.total_cart_div{
  padding:10px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.5);
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart_buttons_div {
  padding: 10px 20px;
  border-top: 1px solid rgba(0,0,0,0.5);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.cart_center_div{
  display:flex;
  align-items: center;
  justify-content: space-between;
  padding:8px 20px;
}

.apt_cart_box ul {
  max-height:500px;
  min-height:170px;
  background-color: #f7f7f7;
  padding: 0px 5px;
  overflow-y: auto;
  overflow-x:hidden;
}
.apt_cart_box ul li{
    margin-top:2px; 
}


.demo2_header_Cart_empty {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.form-check {
  display: block;
  min-height: 1.44375rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}
.form-check-input {
  --bs-form-check-bg: var(--bs-form-control-bg);
  width: 1em;
  height: 1em;
  margin-top: 0.325em;
  vertical-align: top;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-secondary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  print-color-adjust: exact;
}
.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}
.form-check-input[type="radio"] {
  border-radius: 50%;
}
.form-check-input:active {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #a7da94;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(78, 181, 41, 0.25);
  box-shadow: 0 0 0 0 rgba(78, 181, 41, 0.25);
}
.form-check-input:checked {
  background-color:var(--bs-btn-hover-bg);
  border-color: var(--bs-secondary);
}
.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
  background-color: #4eb529;
  border-color: #4eb529;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}
.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  -webkit-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    -webkit-transition: none;
    transition: none;
  }
}

.theme-radio {
  position: relative;
  width: 18px;
  height: 18px;
}

.theme-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.theme-radio input:checked {
  opacity: 1;
}

.theme-radio .custom-radio {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #191d28;
  border-radius: 50%;
  position: relative;
}

#bottomCartOffcanvasUpperBtns{
   color: white;
}

.bottom_widgets{
  color: white;
  width: 100%;
  height: 100%;
  background-color: teal;
  display: flex;
  align-items: center;
  justify-content: center;
}




