@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&family=Catamaran:wght@100;200;300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
  --theme-color: #000;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
ol,
ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "Catamaran", sans-serif;
}

body.noscroll {
  overflow: hidden;
}

h3,
h4 {
  font-family: "Roboto", cursive;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: 0;
  color: #000;
}
.header-menu {
  transition: 0.25s ease-in-out;
}
.header-menu.sticked {
  position: fixed;
  top: 0;
  z-index: 9999999;
  width: 100%;
  box-shadow: rgb(0 0 0 / 6%) 0px 3px 6px, rgb(0 0 0 / 5%) 0px 3px 6px;
}
body.padd {
  padding-top: 60px;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  height: 120px;
  background-color: #fff;
}
.header-logo {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-search input:focus-visible {
  outline: 0;
}

.header-search input[type="text"]:focus {
  border-color: var(--theme-color);
  border-radius: 5px 0 0 5px;
  background-color: #fff;
  box-shadow: none;
}

.header-search {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-search form.example {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

form.example input[type="text"] {
  padding: 10px;
  font-size: 13px;
  border: 2px solid #eee;
  border-radius: 5px 0 0 5px;
  float: left;
  width: 80%;
  background: #fff;
  height: 48px;
}

form.example button {
  float: left;
  width: 13%;
  padding: 11px;
  background: var(--theme-color);
  color: white;
  font-size: 17px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  border: 1px solid transparent;
}

form.example button:hover {
  background: var(--theme-color);
}

form.example::after {
  content: "";
  clear: both;
  display: table;
}
.btn-group {
  cursor: pointer;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 46px;
}

.btn-group .user-btn {
  padding: 1rem 1rem;
  background-color: #fff;
  border: 2px solid #eee;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-group .user-btn i {
  padding-right: 1rem;
}

.btn-group .user-btn:hover {
  padding: 1rem 1rem;
  background-color: #fff;
  border: 2px solid var(--theme-color);
  border-radius: 4px;
}

.btn-group a {
  color: #000;
}

.header-right {
  display: flex;
  align-items: center;
  width: 35%;
  justify-content: space-evenly;
}

.user-text {
  padding: 0.5rem;
}
.user-text > span,
.wishlist-content > a > span,
.cart-content > a > span {
  font-weight: 600;
  font-size: 15px;
  line-height: 14px;
  transition: color 0.25s ease-in-out;
  color: #000;
}
.iziToast-wrapper {
  z-index: 9999999999999999999 !important;
}
.user-text > p {
  font-size: 11px;
}
.header-user {
  position: relative;
}
.header-user > a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 50%;
  margin-right: 0.5rem;
  background-color: #f5f5f5;
  transition: 0.25s ease-in-out;
}
.header-user,
.header-wishlist,
.header-cart {
  /* margin-right: 1rem; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}

.header-wishlist > a,
.header-cart > a,
.header-languages {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 50%;
  margin-right: 0.5rem;
  position: relative;
  background-color: #f5f5f5;
  transition: 0.25s ease-in-out;
}
.header-user > a:hover,
.header-wishlist > a:hover,
.header-cart > a:hover,
.header-languages:hover {
  background-color: #e5e5e5;
}
.header-languages:hover .dropdown-menu {
  display: block;
}

.header-user > a > i,
.header-wishlist > a > i,
.header-cart > a > i {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-text,
.cart-text {
  margin-left: 1rem;
  position: absolute;
  top: -3px;
  right: -3px;
  width: 20px;
  height: 20px;
  background-color: var(--theme-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.user-sub-menu {
  position: absolute;
  top: 80%;
  z-index: 9999;
  background-color: #fff;
  width: 180px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.header-user:hover .user-sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.user-sub-menu > ul {
  padding: 1rem;
}
.user-sub-menu > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: 0.25s ease-in-out;
  cursor: pointer;
}
.user-sub-menu > ul > li:nth-child(1) {
  background-color: var(--theme-color);
  margin-bottom: 1rem;
  transition: 0.25s ease-in-out;
}
.user-sub-menu > ul > li:nth-child(1):hover {
  background-color: #cf1919;
}
.user-sub-menu > ul > li:nth-child(2) {
  background-color: #f5f5f5;
  transition: 0.25s ease-in-out;
}
.user-sub-menu > ul > li:nth-child(2):hover {
  background-color: #bbb;
}

.user-sub-menu > ul > li:nth-child(1) > a {
  color: #fff;
}
.user-sub-menu > ul > li > a {
  transition: 0.25s ease-in-out;
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
button.btn.btn-link.dropdown-toggle > i {
  color: #000;
}
button.btn.btn-link.dropdown-toggle > i:not(:last-child) {
  font-size: 2rem;
}
button.btn.btn-link.dropdown-toggle:hover {
  text-decoration: none;
}
span.hidden-xs.hidden-sm.hidden-md {
  display: none;
  color: #000;
}
button.btn.btn-link.dropdown-toggle {
  padding: 0 !important;
}
.dropdown-menu {
  position: absolute;
  top: 150% !important;
  right: -100%;
  margin: 0 !important;
  padding: 0 !important;
  left: auto !important;
  transition: 0.25s ease-in-out;
}
.dropdown-menu > li > a {
  padding: 1rem !important;
}
.dropdown-menu > li > a > img {
  margin-right: 0.5rem;
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #aaa;
}

.header-menu .mega-menu {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.header-menu .mega-menu .main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-menu .mega-menu .main-menu > li {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-menu .mega-menu .main-menu > li > a {
  display: block;
  color: #000;
  text-align: center;
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
}
.header-menu .mega-menu .main-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--theme-color);
  z-index: 9999999999;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}
.header-menu .mega-menu .main-menu > li:hover > a::before {
  bottom: 5px;
  opacity: 1;
  visibility: visible;
  z-index: 9999999999;
}

.header-menu .mega-menu .main-menu > li:hover .header-sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transition: 0.2s ease-in-out;
}

.header-menu-right .header-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-menu-right .header-menu-list > li {
  padding: 2rem 2rem;
  margin-right: 0;
}

.header-menu-right .header-menu-list > li:hover {
  background-color: #f5f5f5;
}

.header-menu-right .header-menu-list > li > a {
  display: flex;
}

.header-menu-right .header-menu-list > li > a > i {
  color: #000;
  font-size: 18px;
  margin-right: 1rem;
}

.header-menu-right .header-menu-list > li > a > span {
  display: block;
  color: #000;
}

.main-menu > li > div {
  position: absolute;
  top: 130%;
  left: 10%;
  right: 10%;
  display: flex;
  padding: 1.5rem;
  -webkit-box-shadow: 0 0 30px 15px rgb(0 0 0 / 5%);
  -moz-box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 30px 15px rgb(0 0 0 / 5%);
  background-color: #fff;
  z-index: 99;
  transition: 0.4s ease-in-out;
}

.main-menu > li > div > div:nth-child(1) {
  width: 100%;
  /* display: flex; */
}

.main-menu > li > div > div:nth-child(1) > div {
  width: 100%;
  padding-top: 1rem;
}
.submenu-col-1 > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.main-menu > li > div > div:nth-child(1) > div > a {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: flex;
}

.main-menu > li > div > div:nth-child(1) > div > ul > li {
  margin-bottom: 1rem;
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-menu > li > div > div:nth-child(1) > div > ul > li > a {
  color: #999;
  transition: 0.25s ease-in-out;
}

.main-menu > li > div > div:nth-child(1) > div > ul > li > a:hover {
  color: var(--theme-color);
  padding-left: 0.8rem;
}

.main-menu > li > div > div:nth-child(2) {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.main-menu > li > div > div:nth-child(2) > div {
  display: flex;
}

.main-menu > li > div > div:nth-child(2) > div:nth-child(2) {
  display: flex;
}

.main-menu > li > div > div:nth-child(2) > div > img {
  transition: 0.3s ease-in-out;
  width: 100%;
  padding: 0.5rem;
  border-radius: 15px;
}

.main-menu > li > div > div:nth-child(2) > div > img:hover {
  box-shadow: 0 0 30px 15px rgb(0 0 0 / 5%);
}

.main-menu > li > div > div:nth-child(2) > div.image-split > img {
  transition: 0.3s ease-in-out;
  width: 50%;
}

.main-menu > li > div > div:nth-child(2) > div.image-split > img:hover {
  box-shadow: 0 0 30px 15px rgb(0 0 0 / 3%);
}

.header-sub-menu {
  opacity: 0;
  visibility: hidden;
}

.home-cauresl-div .row {
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.home-cauresl-div .row .col-sm-12 {
  padding: 0 !important;
}
.item {
  overflow: hidden;
  position: relative;
}
.item > img {
  width: 100% !important;
}
.owl-wrapper-outer {
  border: none !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
}
.owl-carousel .owl-nav div {
  opacity: 1 !important;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgb(255 255 255 / 30%);
  transition: all 0.3s ease;
}
.owl-carousel .owl-nav div i {
  font-size: 40px;
  margin: 0 !important;
}
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  display: flex;
  align-items: center;
}
.owl-carousel .owl-nav .owl-next {
  font-size: 36px !important;
  color: #ffffff !important;
  height: 100px !important;
  width: 100px !important;
  background: rgba(5, 35, 54, 0.5) !important;
  border-radius: 50% !important;
  line-height: 100px !important;
  position: absolute !important;
  right: -50px !important;
  top: 50% !important;
  margin-top: -50px;
  justify-content: flex-start;
}
.owl-carousel .owl-nav .owl-prev {
  font-size: 36px !important;
  color: #ffffff !important;
  height: 100px !important;
  width: 100px !important;
  background: rgba(5, 35, 54, 0.5) !important;
  border-radius: 50% !important;
  line-height: 100px !important;
  position: absolute !important;
  left: -50px !important;
  top: 50% !important;
  margin-top: -50px !important;
  justify-content: center !important;
}

.owl-carousel .owl-nav .owl-next > i,
.owl-carousel .owl-nav .owl-prev > i {
  font-size: 3rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2.5rem !important;
}

.home-cauresl-div {
  position: relative;
  overflow: hidden;
}
.btn-default:hover {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.item-wrapper.container {
  background-color: rgba(17, 17, 17, 0.4);
  position: absolute;
  z-index: 9999999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 50px 90px;
  max-width: 60%;
}

.item-wrapper > span {
  color: var(--theme-color);
  font-size: 25px;
  letter-spacing: 4px;
}
.item-wrapper > h2 {
  font-size: 45px;
  font-weight: 600;
  line-height: 55px;
  color: #fff;
  margin-bottom: 2.5rem;
}
.item-wrapper > a {
  color: #fff;
  padding: 1rem 2.5rem;
  background-color: var(--theme-color);
  z-index: 9;
}

.category-img-div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 2rem;
}
.category-img-div-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  padding: 0 2rem;
}

.category-img {
  position: relative;
  overflow: hidden;
}
.category-img > img {
  width: 100%;
  border-radius: 5px;
}

.category-img:not(:last-child) {
  margin-right: 2rem;
}
.category-img-div-title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  background-color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
}
.category-img-div-title > a {
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  font-size: 25px;
  position: absolute;
  top: 80%;
  letter-spacing: 2.5px;
}
.category-img:hover .category-img-div-title {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.category-img:hover .category-img-div-title > a {
  opacity: 1;
  visibility: visible;
  top: 50%;
  transform: translateY(-50%);
}
.category-div-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu-container {
  margin-top: 3rem;
}

.nav-menu-container.container > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 1rem 0;
}
.nav-menu-container.container > ul > li {
  width: calc(100% - 1rem);
  margin: 0 0.5rem;
}
.nav-menu-container.container > ul > li > a {
  transition: 0.3s ease-in-out;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu-container.container > ul > li.active > a {
  border: none;
  color: #fff;
}
.nav-menu-container.container > ul > li > a:hover {
  background-color: var(--theme-color);
  color: #fff;
  border: none;
}
.nav > li > a:focus {
  text-decoration: none;
  background-color: #fff;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  color: #555;
  cursor: pointer;
  background-color: var(--theme-color);
  color: #fff;
  border: none !important;
  border-bottom-color: transparent;
}
.content-img > a > img {
  width: 100%;
  /* border-radius: 5px 5px 0 0; */
  border-bottom: 6px solid var(--theme-color);
}

.tab-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.content-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  height: 100%;
  width: 100%;
}

.content-title > span {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  text-align: center;
}
.content-price {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.tab-wrapper-content {
  /* padding: 1rem; */
  /* border-radius: 5px 5px 0 0; */
  width: calc(33% - 1.5rem);
  margin-bottom: 3rem;
  transition: 0.3s ease-in-out;
}
.tab-wrapper-content:hover {
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
  -webkit-box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
}
.tab-wrapper-content .content-img > a > img {
  transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}
.tab-wrapper-content:hover .content-img > a > img {
  transform: scale(1.1);
}
.tab-wrapper-content:nth-child(1),
.tab-wrapper-content:nth-child(2),
.tab-wrapper-content:nth-child(4),
.tab-wrapper-content:nth-child(5) {
  margin-right: 1.5rem;
}
.content-img {
  position: relative;
  overflow: hidden;
}
.add-cart {
  position: absolute;
  background-color: var(--theme-color);
  width: 100%;
  bottom: -72px;
  opacity: 0;
  /* border-radius: 0 0 5px 5px; */
  transition: bottom 0.4s ease-in-out, opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.add-cart-hearth {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-right: 2px solid #fff;
  transition: 0.2s ease-in-out;
}
.add-cart-hearth:hover {
  background-color: #ddd;
  color: #000;
}
.add-cart-hearth:hover > a > i {
  color: #000;
}

.add-cart-hearth > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-cart-hearth > a > i {
  color: #fff;
  font-size: 18px;
  transition: 0.2s ease-in-out;
}
.add-cart > button {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  height: 50px;
  width: 100%;
  padding: 1.5rem;
  background-color: transparent;
  border: none;
  transition: 0.3s ease-in-out;
}
.add-cart > button:hover {
  background-color: #ddd;
  color: #000;
}
.tab-wrapper-content:hover .add-cart {
  bottom: 0;
  opacity: 1;
  /* border-radius: 0 0 5px 5px; */
}
div#myTabContent {
  padding: 2rem;
}
.home-banner {
  margin-top: 2rem;
}
.home-banner > a > img {
  width: 100%;
}
.header-bottom {
  position: relative;
}
.special-price {
  margin-right: 1.5rem;
}
.special-price > h4 {
  font-size: 16px;
}
.price > h4 {
  font-size: 16px;
}
.old-price > h4 {
  font-size: 13px;
  color: var(--theme-color);
  text-decoration: line-through;
}
.home-nav-menu {
  padding: 1.5rem;
  background-color: #fbfbfb;
}
.nav-menu-container.container > ul > li.active > a:hover {
  background-color: var(--theme-color);
  color: #fff;
}
.account-sub-menu > ul > li > a {
  color: #000;
}
.item .tab-wrapper-content {
  width: auto;
}

#a3 .item .tab-wrapper-content {
  box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}
.product-image {
  cursor: crosshair;
}
.owl-dots {
  display: none !important;
}
.owl-carusel-title {
  display: flex;
  align-items: center;
  padding: 2rem 6rem 0;
  justify-content: center;
  margin: 2rem 0;
}

.owl-carusel-title > h4 {
  font-size: 25px;
}

.owl-pagination {
  display: none;
}
.two-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.two-banner-content .banner-left > a > img,
.two-banner-content .banner-right > a > img {
  width: 100%;
  z-index: 3;
  transform: scale(1.1);
  transition: 1s ease-in-out;
}
.two-banner-content .banner-left:hover > a > img,
.two-banner-content .banner-right:hover > a > img {
  transform: scale(1);
}
.two-banner-content .banner-left {
  margin-right: 1.5rem;
}
.two-banner-content .banner-left,
.two-banner-content .banner-right {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: 0.25s ease-in-out;
  border: 1px solid #eee;
}
.banner-animate {
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: transparent;
  position: absolute;
  border: 1px solid #646464;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}
.two-banner-content .banner-left:hover,
.two-banner-content .banner-right:hover {
  opacity: 0.8;
}
.two-banner-content .banner-left:hover .banner-animate,
.two-banner-content .banner-right:hover .banner-animate {
  opacity: 1;
  visibility: visible;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
}
.footer-wrapper {
  padding: 5rem 10%;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 50px -15px;
  background-color: #fbfbfb;
}

.footer-wrapper-top {
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.footer-top-about {
  width: 50%;
  padding-right: 1rem;
  display: flex;
}
.footer-top-about .footer-top-about-content > h3,
.footer-top-contact > h3 {
  margin-top: 0;
  max-width: 250px;
  font-family: "Roboto";
  font-size: 18px;
}

.footer-top-contact {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
}

.footer-top-menu {
  width: 30%;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.footer-top-menu > ul {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
}

.footer-top-menu > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  background-color: var(--theme-color);
  z-index: 999;
  width: 0;
  transition: 0.25s ease-in-out;
}
.footer-top-menu > ul > li > a {
  position: relative;
  font-weight: bold;
}
.footer-top-menu > ul > li:hover > a::before {
  width: 100%;
}
.footer-top-contact > span > i {
  font-size: 17px;
  margin-right: 1rem;
}

.footer-top-contact > span {
  display: flex;
  margin-bottom: 0.5rem;
  align-items: center;
  font-size: 15px;
}
.footer-wrapper-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #eee;
}
.footer-wrapper-bottom-left > ul {
  display: flex;
  /* padding-top: 2rem; */
}

.footer-wrapper-bottom-left {
  width: 50%;
}

.footer-wrapper-bottom-center {
  width: 15%;
}

.footer-wrapper-bottom-right {
  width: 50%;
}

.footer-wrapper-bottom-left > ul > li {
  margin-right: 1.5rem;
}
.footer-wrapper-bottom-left > ul > li > a {
  color: #999;
  transition: 0.25s ease-in-out;
  font-weight: 500;
}
.footer-wrapper-bottom-left > ul > li > a:hover {
  color: var(--theme-color);
}
.footer-wrapper-bottom-right > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 1rem;
}
.footer-wrapper-bottom-right > ul > li:not(:last-child) {
  margin-right: 1rem;
}
.footer-wrapper-bottom-right > ul > li > a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-in-out;
}
.footer-wrapper-bottom-right > ul > li > a:hover {
  border-radius: 5px;
  box-shadow: 0 0 8px 2px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 0 0 8px 2px rgb(0 0 0 / 10%);
}

.footer-wrapper-bottom-right > ul > li > a > i {
  font-size: 1.8rem;
}
.home-two-banner {
  margin-bottom: 5rem;
}
.footer-wrapper-bottom-center-logo {
  transition: 0.25s ease-in-out;
}
.footer-wrapper-bottom-center-logo:hover {
  transform: translateY(-1.5rem);
}
.footer-three-box {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.footer-three-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33%;
}

.footer-three-box-content > img {
  max-width: 75px;
  max-height: 75px;
}

.footer-three-box-content > span {
  font-size: 2.5rem;
  margin: 1rem 0;
}
.footer-top-about .footer-top-about-content > span {
  color: #555;
  max-width: 300px;
  display: flex;
  font-size: 13px;
}
.footer-top-contact > span {
  color: #555;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 3rem 0;
  flex-direction: column;
}
.footer-wrapper .row .col-sm-3:not(:last-child) {
  border-right: 1px solid #eee;
}
.footer-wrapper .row .col-sm-3 > ul,
.footer-wrapper .row .col-sm-3 > h5 {
  text-align: center;
}
.footer-wrapper .row .col-sm-3 > h5 {
  font-size: 18px;
}
.footer-wrapper .row .col-sm-3 > ul > li > a {
  transition: 0.25s ease-in-out;
  font-size: 15px;
}
.footer-wrapper .row .col-sm-3 > ul > li > a:hover {
  padding-left: 1rem;
}
.footer-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.card-payment {
  margin: 1.5rem;
}
.card-payment > img {
  filter: grayscale(1);
  transition: filter 0.5s ease-in-out;
}
.card-payment > img:hover {
  filter: grayscale(0);
}
.footer-bottom > span > a {
  font-weight: bold;
  padding-right: 0.5rem;
}
.footer-wrapper .row {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}
.footer-top-about-logo {
  margin-right: 2rem;
}
.header-menu .mega-menu .main-menu > li > a > i {
  margin-left: 0.5rem;
  font-size: 25px;
}
.breadcrumb {
  background-color: #fff;
  margin-left: 2rem;
  margin-top: 1.5rem;
  padding: 0;
}
.breadcrumb > li > a {
  font-size: 18px;
  color: #555;
}
.breadcrumb > li > a > i {
  font-size: 25px;
  color: #000;
}
/* .row.product-content {
  display: flex;
} */
.content-div {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.product-content-left {
  width: 55%;
}
.p-image-column {
}
.p-image-column .image-col-box {
}
.p-image-column .image-col-box > {
  display: flex;
}
.p-image-column .image-col-box > a > span {
  display: flex;
}
.p-image-column .image-col-box > a > span > img {
  width: 100%;
}
.p-image-column .image-col-box > a > span > img:last-child {
  pointer-events: none;
}
.p-image-column .image-col-box + .image-col-box {
  margin-top: 4rem;
}
.product-content-right {
  width: 45%;
  background-color: #fbfbfb;
  margin-left: 1.5rem;
  height: 100%;
  box-shadow: 0 0 7px 0px rgb(0 0 0 / 15%);
  padding: 2rem 0;
  position: sticky;
  top: 70px;
  max-height: calc(100vh - 85px);
  overflow-y: auto;
}

/* width */
.product-content-right::-webkit-scrollbar {
  width: 4px;
}

/* Track */
.product-content-right::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.product-content-right::-webkit-scrollbar-thumb {
  background: transparent;
}

.product-content-right:hover::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.product-content-right:hover::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.product-content-right::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.thumbnails > li > a > img {
  width: 100%;
}
.content-right-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.content-right-wrapper .btn-group > button {
  background-color: transparent;
  border: none;
  outline: none;
}
.content-right-wrapper .btn-group > button:hover {
  background-color: transparent;
}
.content-right-wrapper .btn-group > button > i {
  font-size: 2.5rem;
  transition: transform 0.25s ease-in-out, color 0.35s ease-in-out;
}
.content-right-wrapper .btn-group > button:hover > i {
  font-size: 2.5rem;
}
.content-right-wrapper .btn-group > button > i.active {
  transform: rotate(215deg);
  color: #cf1919;
}
.content-right-wrapper .btn-group > button:focus {
  background-color: transparent;
  border: none;
  outline: none;
}
.content-right-wrapper .btn-group > button:focus:hover {
  background-color: transparent;
  border: none;
  outline: none;
}
.content-right-wrapper .btn-group > button:active {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
.right-wrapper-title > span {
  font-size: 3rem;
  font-weight: 200;
}

.right-wrapper-title {
  padding-top: 1rem;
}
ul.list-unstyled > li {
  line-height: 2.5rem;
  font-weight: bold;
}
.col-sm-3 ul.list-unstyled > li {
  line-height: 2.5rem;
  font-weight: initial;
}
ul.list-unstyled > li > div#power-model,
ul.list-unstyled > li > div#power-stock {
  font-weight: 400;
}
ul.list-unstyled {
  margin-top: 1rem;
  /* padding: 0 2rem; */
}
ul.list-unstyled.price-list {
  display: flex;
  align-items: baseline;
  flex-direction: column;
}
.cart-div-button > button,
.cart-div-button > button:hover,
.cart-div-button > button:focus,
.cart-div-button > button:active,
.cart-div-button > button:active:hover,
.pull-right > button,
.pull-right > button:hover,
.pull-right > button:focus,
.pull-right > button:active,
.pull-right > button:active:hover {
  background-color: var(--theme-color);
  border: none;
  border-radius: 0;
  outline: none;
}

.btn-primary.disabled,
.btn-primary.disabled.active,
.btn-primary.disabled.focus,
.btn-primary.disabled:active,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled],
.btn-primary[disabled].active,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary.active,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
  background-color: var(--theme-color);
  border-color: transparent;
}
.price-wrapper {
  display: flex;
  /* flex-direction: row-reverse; */
  align-items: center;
}

.price-title > strong {
  font-size: 2rem;
  margin-right: 1rem;
}

.price-wrapper > li:nth-child(2) {
  font-size: 2rem;
}
.price-wrapper > li:nth-child(1) {
  padding-right: 0.5rem;
}
#product .form-group {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 2rem 0;
}
.form-options > input {
  text-align: center;
  font-size: 2rem;
  width: 50%;
  min-height: 44px !important;
  border: 1px solid #eee;
  border-radius: 0;
  box-shadow: none;
}

.form-options {
  width: calc(50% - 1rem);
  min-height: 44px;
  margin-right: 1rem;
}

.cart-div-button {
  width: 50%;
}
a.thumbnail,
a.thumbnail.active,
a.thumbnail:focus,
a.thumbnail:hover {
  border: none;
}
.product-content-right div#product {
  padding: 0 2rem;
}
.product-tab-wrapper {
  background-color: #fff;
  padding-top: 2rem;
}
.cart-div-button > button {
  transition: 0.25s ease-in-out;
  padding: 0;
  height: 44px;
}
.cart-div-button > button:hover {
  background-color: #646464 !important;
}
.form-options {
  display: flex;
  align-items: center;
}
.minus-div,
.plus-div {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  padding: 0 2rem;
  cursor: pointer;
}
.plus-div > i,
.minus-div > i {
  font-size: 1.6rem;
}
.product-social-title {
  margin-bottom: 1rem;
}
.product-social > ul {
  display: flex;
  align-items: center;
}
.product-social > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-right: 1rem;
}

.content-bottom {
  height: 85px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.form-group.required.power-option {
  flex-direction: column;
  align-items: baseline;
}

label.control-label {
  margin: 0 !important;
}

div#power-price > li > h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}
.power-discount-product {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 2px;
  background-color: #000 !important;
  color: #ffffff;
  font-weight: 700;
  z-index: 1;
}
.product-content-right .list-unstyled {
  padding: 0 2rem;
}

button.power-inactive {
  position: relative;
}

button.power-inactive::after {
  content: attr(data-stock-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attributes-content-wrapper {
  display: flex;
  width: 100%;
}

.attributes-content-wrapper > span {
  width: 50%;
  font-size: 18px;
}
.attributes-content-wrapper .attribute-name {
  font-weight: bold;
  position: relative;
}
.attributes-content-wrapper .attribute-text {
  margin-left: 1rem;
}
.attributes-content-wrapper .attribute-name::after {
  content: ":";
  position: absolute;
  right: 0;
}
.product-attribute-title > button,
.product-attribute-title > button:hover,
.product-attribute-title > button:active,
.product-attribute-title > button:focus,
.product-attribute-title > button:active:hover {
  border: none;
  outline: 0;
  background-color: transparent;
  color: #000;
  font-size: 1.7rem;
  font-weight: 400;
  padding: 0;
  box-shadow: none;
  font-family: "Catamaran";
  margin-left: 1rem;
}
.product-attribute-title {
  margin: 2rem 0;
}
.attributes-content-title {
  font-size: 2rem;
  font-weight: bold;
}
.attributes-content-wrapper:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.modal-dialog {
  width: 600px;
  margin: 180px auto;
}
.modal-content {
  padding: 2rem;
  z-index: 99999999999999999;
}
.owl-carousel {
  background-color: transparent !important;
}
.product-tab:hover {
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 15%) !important;
  -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 15%) !important;
}
.navbar-default {
  background-color: transparent !important;
}
.megamenu-wrapper {
  background-color: #fff !important;
}
.megamenu-pattern .container > ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.megamenu-pattern .container > ul > li > a {
  text-shadow: none !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
.megamenu-pattern .container > ul > li > a > strong {
  font-size: 18px;
  font-weight: 600;
}
.megamenu-pattern .container > ul > li > a > i {
  font-size: 2.3rem;
  margin-left: 0.5rem;
  padding-right: 0 !important;
}
.megamenu-pattern .container > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 4px;
  background-color: var(--theme-color);
  width: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}
.megamenu-pattern .container > ul > li > a:hover::before {
  position: absolute;
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}
ul.megamenu > li > a:hover,
ul.megamenu > li.active > a,
ul.megamenu > li.home > a,
ul.megamenu > li:hover > a {
  background-color: transparent !important;
}
ul.megamenu li .sub-menu .content .static-menu a.main-menu {
  transition: 0.25s ease-in-out;
}
ul.megamenu li .sub-menu .content .static-menu a.main-menu:hover {
  padding-left: 0.8rem;
}
#power-price .deafult {
  display: none !important;
}
#power-price > li > span {
  font-size: 16px;
}
.attributes-content-title > button > span {
  font-size: 27px;
}
.header-search .input-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group > form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-search .input-group > form > input {
  padding: 10px;
  font-size: 13px;
  border: 2px solid #eee;
  border-radius: 5px 0 0 5px;
  float: left;
  width: 80%;
  background: #fff;
  height: 48px;
  box-shadow: none;
}
.header-search .input-group > form > span > button,
.header-search .input-group > form > span > button:active:hover,
.header-search .input-group > form > span > button:focus {
  float: left;
  padding: 11px 2rem;
  background: var(--theme-color);
  color: white;
  font-size: 17px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  border: 1px solid transparent;
  height: 48px;
  outline: none;
  box-shadow: none;
}
.col-sm-9 > p > a {
  display: none;
}
#banner0 {
  display: none !important;
}
.filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  background-color: #f5f5f5;
  margin: 0;
}

.filter-list .filter-list-btn {
  width: 100%;
}
.category-product-wrapper {
  flex-wrap: wrap;
}
.category-content {
  width: calc(25% - 1.5rem);
  margin-right: 1.5rem;
  background-color: #fff;
  transition: width 0.25s ease-in-out;
}
.category-wrapper {
  background-color: #f7f6f6;
}
.category-wrapper > .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
#compare-total {
  display: none;
}
.row.category-list-text {
  padding: 2rem 0;
}
.related-div {
  display: flex;
  align-items: center;
}
.related-div > h3 {
  font-family: "Catamaran";
}
.footer-list-wrapper > h5 {
  position: relative;
}
.footer-list-wrapper > h5::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
}
.footer-list-wrapper:hover > h5::before {
  width: 50%;
  opacity: 1;
  visibility: visible;
}
.mobile-operation {
  display: none;
}
.mobile-user-submenu {
  display: none;
}
.mobile-header-top {
  display: none;
}

@media screen and (max-width: 1025px) {
  .header-right {
    justify-content: flex-end;
    margin-right: 1rem;
  }

  .category-content {
    width: calc(33.333% - 1.5rem);
    margin-right: 1.5rem;
    background-color: #fff;
  }
}
@media screen and (max-width: 991px) {
  .header-top {
    flex-direction: column;
    height: auto;
  }
  .header-logo {
    width: 100%;
    margin-bottom: 1rem;
  }
  .header-search {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .header-right {
    width: 100%;
    justify-content: space-evenly;
  }
  .footer-wrapper-bottom-left {
    width: 75%;
  }
  .footer-wrapper-bottom-right {
    width: 25%;
  }
  .footer-wrapper-bottom-left > ul > li > a {
    font-size: 11px;
  }
  .header-menu {
    justify-content: flex-end;
    background-color: #fbfbfb;
    border-bottom: 1px solid #aaa;
    border-top: 1px solid #aaa;
  }
  .megamenu-pattern > .container {
    width: 100%;
  }
  .megamenu-pattern .container > ul {
    flex-direction: column;
  }

  .responsive ul.megamenu > li {
    width: 100%;
  }
  .megamenu-wrapper {
    padding: 0;
  }
  .megamenu-pattern .container > ul > li > a {
    justify-content: flex-start;
    padding: 1.5rem 1rem;
    height: auto;
  }
  .megamenu-pattern .container > ul > li > a > i {
    display: none;
  }
  .responsive ul.megamenu > li.click:before,
  .responsive ul.megamenu > li.hover:before {
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #555 !important;
    padding: 13px 10px 10px 50px !important;
  }
  .fa-remove:before,
  .fa-close:before,
  .fa-times:before {
    color: #555;
    font-size: 17px;
  }
  .responsive ul.megamenu > li.active .close-menu {
    top: 50% !important;
    transform: translateY(-49%);
    right: -5px !important;
    height: 100%;
    background-color: transparent;
  }
  .responsive ul.megamenu > li.active .close-menu:before {
    content: "\f068";
    font-family: FontAwesome;
    color: #555 !important;
    font-weight: 400;
    font-size: 18px;
  }
  .sub-menu .content {
    height: 100% !important;
    padding: 0 !important;
  }
  .responsive ul.megamenu .sub-menu .content .row {
    width: 100%;
    margin: 0;
  }
  .responsive ul.megamenu .sub-menu .content .row > div {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .responsive ul.megamenu .sub-menu .content .row > .static-menu {
    margin-top: 0 !important;
    border-top: none !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
    padding: 0 !important;
  }
  .responsive ul.megamenu .sub-menu .content .row > .static-menu .menu > ul {
    padding: 0;
  }
  .responsive
    ul.megamenu
    .sub-menu
    .content
    .row
    > .static-menu
    .menu
    > ul
    > li {
    border-top: 1px solid #eee;
    padding: 1rem;
  }
  .responsive
    ul.megamenu
    .sub-menu
    .content
    .row
    > .static-menu
    .menu
    > ul
    > li
    > a {
    font-size: 14px;
    color: #555;
  }
  ul.megamenu > li > a strong {
    font-weight: 400;
    color: #000;
  }
  .body-overlay {
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 80%);
    z-index: 9999999;
    transition: 0.25s ease-in-out;
  }
  .body-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .megamenu-wrapper {
    background-color: #fff !important;
    z-index: 9999999;
  }
  .header-menu.sticked {
    border-top: none;
  }
}
@media screen and (max-width: 769px) {
  .category-content {
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    background-color: #fff;
  }
  .content-div {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
  }
  .product-content-left {
    width: 90%;
    margin-bottom: 2rem;
  }
  .product-content-right {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 695px) {
  .owl-item .content-img .add-cart {
    height: 50px;
  }
  .header-search .input-group {
    margin-left: 2.5rem;
    justify-content: unset;
  }
  .owl-carousel .owl-nav .owl-next {
    height: 50px !important;
    width: 50px !important;
    right: -18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
  }
  .owl-controls .owl-nav .owl-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .owl-controls .owl-nav .owl-prev {
    transform: translateY(-50%);
  }
  .owl-carousel .owl-nav .owl-prev {
    height: 50px !important;
    width: 50px !important;
    left: -18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: -0 !important;
  }
  .owl-carousel .owl-nav .owl-next > i {
    margin-left: 1.5rem !important;
    font-size: 2rem;
  }
  .owl-carousel .owl-nav .owl-prev > i {
    margin-left: 0.5rem !important;
    font-size: 2rem;
  }
  .category-img-div-top {
    flex-direction: column;
  }
  .category-img-div-top .category-img {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .category-img-div {
    flex-wrap: wrap;
    margin-top: 0;
  }
  .category-img-div .category-img {
    width: calc(50% - 1rem);
    margin-right: 1rem;
    margin-bottom: 1.5rem;
  }
  .tab-wrapper-content {
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px !important;
    margin: 0 1rem 1rem;
  }
  .nav-menu-container.container > ul > li > a {
    padding: 0.8rem;
    font-size: 10px;
  }
  .nav-menu-container.container > ul > li {
    width: auto;
    margin: 0;
  }
  .tab-wrapper {
    margin: 0;
  }
  .tab-wrapper-content {
    width: calc(50% - 1rem);
    margin: 0 1rem 1rem 0 !important;
    border-radius: 5px;
  }
  .two-banner-content {
    flex-direction: column;
  }
  .banner-left {
    margin-right: 0 !important;
    margin-bottom: 1.5rem;
  }
  .footer-three-box-content > img {
    max-width: 50px;
    max-height: 50px;
  }
  .footer-three-box-content > span {
    font-size: 1.8rem;
    text-align: center;
    display: flex;
    align-items: center;
  }
  .footer-three-box-content:not(:last-child) {
    margin-right: 1.5rem;
    min-height: 150px;
  }
  .footer-three-box-content {
    box-shadow: rgb(149 157 165 / 10%) 0px 8px 24px !important;
    padding: 1.5rem 1rem;
    border-radius: 10px;
    height: 150px;
  }
  .footer-wrapper {
    padding: 1rem 4%;
  }
  .footer-wrapper-top {
    flex-direction: column;
  }
  .footer-top-about {
    width: 100%;
    margin-bottom: 2rem;
  }
  .footer-top-contact {
    width: 100%;
    padding-left: 0;
  }
  .footer-wrapper-bottom {
    flex-direction: column;
  }
  .footer-wrapper-bottom-left {
    width: 100%;
  }
  .footer-wrapper-bottom-right {
    width: 100%;
  }
  .footer-wrapper-bottom-right > ul {
    justify-content: center;
  }
  .footer-wrapper-bottom-left > ul {
    align-items: center;
    justify-content: center;
  }
  .card-payment {
    margin: 1rem;
  }
  .add-cart {
    opacity: 1;
    visibility: visible;
    bottom: 0;
  }
  .footer-wrapper .row .col-sm-3 > h5 {
    font-size: 15px;
  }
  .footer-wrapper .row .col-sm-3 > ul > li > a {
    font-size: 12px;
  }
  .category-img:hover .category-img-div-title > a {
    font-size: 20px;
  }
  .content-title > span {
    font-size: 11px;
  }
  .add-cart {
    height: 35px;
  }
  .add-cart > button {
    font-size: 13px;
    height: 35px;
  }
  .add-cart-hearth {
    height: 35px;
    width: 35%;
  }
  .nav-menu-container {
    padding: 0 !important;
  }
  .nav-menu-container .tab-content {
    padding: 0 !important;
  }
  .footer-wrapper-bottom-right > ul > li > a {
    box-shadow: 0 0 8px 2px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0 0 8px 2px rgb(0 0 0 / 10%);
    border-radius: 5px;
  }
  .user-sub-menu {
    left: -20px;
  }
  .mobile-operation {
    display: flex;
    position: fixed;
    bottom: 0;
    background-color: #f5f5f5;
    z-index: 99999999;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    box-shadow: rgb(0 0 0 / 6%) 0px 3px 6px, rgb(0 0 0 / 5%) 0px 3px 6px;
    border-top: 2px solid #ddd;
  }
  .mobile-user-wrapper,
  .mobile-wishlist-wrapper,
  .mobile-cart-wrapper {
    padding: 1rem;
    width: 33%;
  }

  .mobile-user-wrapper,
  .mobile-wishlist-wrapper {
    border-right: 1px solid #ccc;
  }
  .mobile-user-content,
  .mobile-wishlist-content,
  .mobile-cart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-user-content > a > i,
  .mobile-wishlist-content > a > i,
  .mobile-cart-content > a > i {
    font-size: 2rem;
  }

  .mobile-user-submenu {
    padding-bottom: 0;
    bottom: -100%;
    position: fixed;
    z-index: 9999999;
    background-color: #fff;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: 0.3s ease-in-out;
  }
  .mobile-user-submenu.active {
    padding-bottom: 0;
    bottom: 0;
    position: fixed;
    z-index: 9999999;
    background-color: #fff;
    width: 100%;
    height: 100%;
  }
  .mobile-user-submenu-title > span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
  }

  .mobile-user-submenu-title {
    position: relative;
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
  }

  .mobile-user-submenu-title > i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-user-submenu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
  }

  .mobile-register {
    width: 50%;
    margin: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: var(--theme-color);
    transition: transform 0.1s ease-in-out;
  }

  .mobile-login {
    width: 50%;
    margin: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #eee;
    transition: transform 0.1s ease-in-out;
  }

  .mobile-register > a {
    padding: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
  }
  .mobile-register:active {
    transform: scale(0.95);
  }
  .mobile-login:active {
    transform: scale(0.95);
  }

  .mobile-login > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    font-size: 17px;
  }
  .header-right {
    display: none;
  }
  .footer-bottom {
    padding-bottom: 8rem;
  }
  .mobile-user-submenu {
    display: block;
  }
  .add-cart-hearth:hover {
    background-color: var(--theme-color);
    color: #fff;
  }
  .add-cart > button:hover {
    background-color: var(--theme-color);
    color: #fff;
  }
  .add-cart-hearth:hover > a > i {
    color: #fff;
  }
  .input-group > form {
    width: 100%;
    display: block;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 426px) {
  #product .form-group {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 2rem 0;
    flex-direction: column;
  }
  .form-options {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .cart-div-button {
    width: 100%;
  }
}
.bf-layout-id-new .bf-count {
  background: var(--theme-color) !important;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.bf-layout-id-new .ui-widget-header {
  background: var(--theme-color) !important;
}

.bf-check-position {
  margin-top: 1.5rem;
}

.row.search-wrapper {
  background-color: #f7f6f6;
  padding: 0 2rem 0 4rem;
}

.search-div {
  overflow: hidden;
}

.search-div > h2 {
  padding-left: 2rem;
}

.row.search-wrapper-div {
  background-color: #f7f6f6;
}

.modal-backdrop {
  z-index: 9999999 !important;
}

.modal {
  z-index: 99999999 !important;
}

.category-div-title > h2 {
  text-align: center;
}
ul.megamenu li .sub-menu .content {
  border-bottom: 4px solid var(--theme-color) !important;
}

.loader-wrapper .loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}
.loader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: 9999999999;
  background-color: #fff;
}

.loader > img {
  width: 100%;
}

.iziToast.iziToast-color-green {
  background: #f5f5f5 !important;
  border-color: #f5f5f5 !important;
}

div#tab-description > p {
  padding: 1rem 0.5rem;
}

form#form-review {
  padding: 1rem 0.5rem;
}
