::-moz-selection {
  color: #eee;
  background: #747171;
}
::selection {
  color: #eee;
  background: #747171;
}

ol,
ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "Catamaran", sans-serif;
}

body.noscroll {
  overflow: hidden;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: 0;
  color: #000;
}
footer {
  margin-top: 3rem;
  padding-top: 0;
  background-color: transparent;
  border-top: none;
  color: #000;
}
.body-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 80%);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}
.body-overlay.active {
  opacity: 1;
  visibility: visible;
}
.megamenu-pattern .container-fluid > ul > li:nth-child(3).active .sub-menu {
  display: flex !important;
}
.megamenu-wrapper {
  position: unset !important;
}

.sub-menu .content {
  display: flex !important;
  justify-content: space-between;
  padding: 1rem !important;
  margin: 0 1rem;
}

.sub-menu .content .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 !important;
  width: 100%;
}

.sub-menu .content .row .col-sm-4 {
  padding: 0;
}

.sub-menu .content .row .col-sm-4 .html .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sub-menu .content .row .col-sm-4 .html .item .item-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-menu .content .row .col-sm-4 .html .item .item-content > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.3rem;
  transition: 0.25s ease-in-out;
}
.sub-menu .content .row .col-sm-4 .html .item .item-content > a:hover {
  text-decoration: underline;
}

.sub-menu .content .row .col-sm-4 .html .item .item-content > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: #fff;
}
.megamenu-pattern .container-fluid > ul {
  position: unset;
}
.megamenu-wrapper {
  background-color: #fff;
}

.header-logo > img {
  width: 100%;
}
.sub-menu .content .row .col-sm-4 .html .item .item-content > ul > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 0.3rem;
  transition: 0.25s ease-in-out;
}
.sub-menu
  .content
  .row
  .col-sm-4
  .html
  .item
  .item-content
  > ul
  > li
  > a:hover {
  text-decoration: underline;
}

.megamenu-pattern .container-fluid > ul > li > a > strong {
  font-size: 14px;
  font-weight: bold;
}

.header-logo {
  margin-right: 2.5rem;
  width: 18%;
}
.megamenu-pattern .container-fluid > ul > li:hover,
.megamenu-pattern .container-fluid > ul > li > a:hover {
  background-color: #fff;
}
.megamenu-pattern .container-fluid > ul > li:hover > a {
  background-color: #fff;
}
.megamenu-pattern .container-fluid > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #706f6f;
  padding: 1.5rem 1rem;
  text-shadow: none;
  transition: 0.25s ease-in-out;
}
.megamenu-pattern .container-fluid > ul > li > a:hover {
  color: #000;
}
.header-cart {
  margin-right: 2rem;
  padding-top: 1rem;
}
.header-cart > a {
  width: 40px;
  height: 40px;
  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;
  position: relative;
}
.header-cart > a .cart-counts {
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background-color: #2d3032;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

.header-user-cart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  width: 15%;
}

.header-user > a {
  width: 40px;
  height: 40px;
  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;
}

.user-sub-menu {
  position: absolute;
  top: 80%;
  z-index: 9999;
  background-color: #fff;
  width: 180px;
  border-radius: 5px;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  opacity: 0;
  visibility: hidden;
  right: -100%;
  transform: translateX(20px);
  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: #2d3032;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  transition: 0.25s ease-in-out;
}
.user-sub-menu > ul > li > a {
  transition: 0.25s ease-in-out;
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-sub-menu > ul > li:nth-child(2) {
  background-color: #f5f5f5;
  transition: 0.25s ease-in-out;
}
.user-sub-menu > ul > li:nth-child(1) > a {
  color: #fff;
}
.user-sub-menu > ul > li:nth-child(1):hover {
  background-color: #fff;
  border: 1px solid #2d3032;
}
.user-sub-menu > ul > li:nth-child(1):hover > a {
  color: #000;
}

.header-cart > a > span {
  font-size: 14px;
  color: #706f6f;
}
.header-cart > a > i {
  color: #706f6f;
}
.header-user {
  margin-right: 2rem;
  padding-top: 1rem;
  position: relative;
}
.header-search #search > form > span > button {
  padding: 1rem 1.5rem;
  background-color: #fff;
  border: 1px solid #ddd;
  background-image: none;
  transition: 0.25s ease-in-out;
  outline: 0;
}
.header-search #search > form > span > button:hover {
  background-color: #6c757d;
  border: 1px solid transparent;
  color: #fff;
}
.header-search #search > form > span > button:active,
.header-search #search > form > span > button:active:hover,
.header-search #search > form > span > button:focus-visible {
  box-shadow: none;
  outline: 0;
}
.header-search #search form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search #search > form > input {
  border-radius: 5px 0 0 5px;
}
.header-search {
  width: 25%;
  padding-top: 2rem;
}

.header-menu {
  width: 47%;
  padding-top: 1rem;
}

.header-logo > a > img {
  width: 100%;
}
.megamenu-pattern .container-fluid > ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.home-cauresl-div #slideshow0 .owl-wrapper-outer {
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.item > img {
  width: 100%;
}
.home-mage-wrapper {
  display: flex;
}

.single-image > a {
  display: flex;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.single-image > a > img {
  width: 100%;
  transition: 0.3s ease-in-out;
}
.single-image > a:hover > img {
  transform: scale(1.1);
}
.single-image > a:hover .hover-background {
  visibility: visible;
  opacity: 0.8;
}

.double-image > a {
  margin-bottom: 1.7rem;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.double-image > a > img {
  width: 100%;
  transition: 0.3s ease-in-out;
}
.double-image > a:hover > img {
  transform: scale(1.1);
}
.double-image > a:hover .hover-background {
  visibility: visible;
  opacity: 0.7;
}
.hover-background {
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding-left: 2rem;
  padding-bottom: 2rem;
}
.home-image-cols.container {
  margin-top: 3rem;
}
/* FOOTER CSS */
.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;
  font-weight: 600;
  color: #000 !important;
}

.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; */
  flex-wrap: wrap;
}

.footer-wrapper-bottom-left {
  width: 70%;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-wrapper-bottom-center {
  width: 15%;
}

.footer-wrapper-bottom-right {
  width: 30%;
}

.footer-wrapper-bottom-left > ul > li {
  margin-right: 1.5rem;
}
.footer-wrapper-bottom-left > ul > li > a {
  color: #999 !important;
  transition: 0.25s ease-in-out;
  font-weight: 500;
  font-size: 13px !important;
}
.footer-wrapper-bottom-left > ul > li > a:hover {
  color: #000 !important;
}
.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;
  color: #000;
}
.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;
  color: #000;
}
.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 1rem 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;
  color: #000;
}
.footer-wrapper .row .col-sm-3 > ul > li > a {
  transition: 0.25s ease-in-out;
  font-size: 14px;
  color: #000 !important;
}
.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);
  width: 100%;
  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;
  color: #000 !important;
  margin: 0 0.5rem;
}
.footer-wrapper .row {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}
.footer-bottom > span {
  color: #000;
  display: flex;
}

.footer-wrapper-bottom-right > ul > li {
  list-style: none;
}

.footer-top-about-logo {
  margin-right: 1rem;
}

.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: #000;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
}
.footer-list-wrapper:hover > h5::before {
  width: 50%;
  opacity: 1;
  visibility: visible;
}

.footer-top-about-logo > img {
  width: 100%;
}

.footer-wrapper .row .col-sm-3 > ul > li {
  margin-bottom: 0.5rem;
}
/* FOOTER CSS END*/

/* CATEGORY CSS */

.row.category-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.category-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(33.333% - 2rem);
  margin: 1rem;
}

.category-image > img {
  width: 100%;
}

.category-image {
  display: flex;
  width: 100%;
}

.category-image > a > img {
  width: 100%;
  transition: 0.3s ease-in-out;
}

.category-text {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #e3e3e3;
}

.product-name > a {
  font-size: 15px;
  font-weight: bold;
}

.product-price > span {
  font-size: 15px;
  color: #000;
}

.product-price > span > strong {
  color: #000;
  margin-left: 0.5rem;
}

.category-image > a {
  display: flex;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.category-effect {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.category-image > a:hover .category-effect {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.category-effect > span {
  color: #fff;
  font-size: 16px;
}

.category-hover-background {
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.category-image > a:hover .category-hover-background {
  opacity: 0.7;
  visibility: visible;
}

.category-image > a:hover > img {
  transform: scale(1.1);
}

.category-page-title {
  background-color: #ecedf0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.category-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-breadcrumbs > li {
  list-style: none;
}
.category-breadcrumbs > li > a {
  font-size: 15px;
  color: #706f6f;
  margin: 0 0.5rem;
}
.category-page-title > h2 {
  color: #706f6f;
  margin: 1rem 0;
}

.category-title > h2 {
  margin: 0;
}

.product-price > span > .price {
  font-size: 13px;
  text-decoration: line-through;
  font-weight: 100;
}

/* CATEGORY CSS END */

/* PRODUCT CSS */
.product-carousel {
  position: relative;
}
.product-thumb {
  border: none;
}

.product-thumb > a {
  padding: 0;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}
.product-small-image {
  width: calc(25% - 1.5rem) !important;
  max-width: initial;
  margin-left: 0 !important;
  margin-right: 1.5rem;
}
.product-small-image > a {
  width: 100%;
}

.product-small-image > a > img {
  width: 100%;
}
.product-carousel .owl-nav .owl-next {
  color: #fff !important;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  right: 5%;
  width: 30px;
  height: 30px;
}
.product-carousel .owl-nav .owl-prev {
  color: #fff !important;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  left: 5%;
  width: 30px;
  height: 30px;
}
.product-carousel .owl-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.product-carousel .owl-nav .owl-next > span,
.product-carousel .owl-nav .owl-prev > span {
  font-size: 50px;
  font-weight: bold;
}
.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
  background: transparent;
}
.product-carousel .owl-dots .owl-dot > span {
  width: 30px;
  height: 5px;
  border-radius: 0;
  background: #fff;
  opacity: 0.5;
}
.product-carousel .owl-dots .owl-dot:hover > span {
  background: #fff;
  opacity: 0.5;
}
.product-carousel .owl-dots .owl-dot.active > span {
  background: #fff;
  opacity: 1;
}
.product-thumb a.thumbnail,
.product-image a.thumbnail {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}

.product-right-title > span {
  color: #444461;
  font-size: 22px;
  font-weight: bold;
  padding-left: 1rem;
  display: flex;
  line-height: 1.2;
}

.product-right-title {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-top: 0.5rem;
}
.price-div {
  padding: 1.3rem 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.5rem;
}
.price-div #power-price {
  display: flex !important;
}
.price-div #power-price > li {
  padding: 1rem 0;
  background-color: #fbfaf8;
}

.price-div #power-price > li > span {
  font-size: 17px;
  color: #444;
  font-weight: bold;
  margin-right: 0.8rem;
}

.price-div #power-price > li > strong {
  font-size: 19px;
  font-weight: bold;
  color: #000;
  padding: 0 2rem;
}

.modal-write > button,
.modal-write > button:hover,
.modal-write > button:active:hover,
.modal-write > button:active,
.modal-write > button:focus-visible {
  padding: 0;
  background-color: transparent !important;
  background-image: none !important;
  color: #000 !important;
  border: none;
  font-weight: bold;
  outline: 0 !important;
  box-shadow: none !important;
}
.modal-dialog {
  margin: 270px auto;
}
.modal-title {
  font-family: "Open Sans";
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header > button > span {
  font-size: 25px;
}

.modal-write {
  margin-bottom: 2rem;
  padding-left: 1rem;
}
.product-btn,
.product-btn:hover,
.product-btn:active,
.product-btn:active:hover,
.product-btn:focus-visible {
  background-color: #000 !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
  outline: 0 !important;
  padding: 1.5rem;
}

.product-breadcrumbs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ecedf0;
  margin-bottom: 3rem;
  padding: 1rem;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-breadcrumb-title > h2 {
  margin: 0;
}

.product-breadcrumb > li {
  padding: 0 0.5rem;
}
.product-breadcrumb > li > a {
  font-size: 15px;
  color: #706f6f;
}

.product-text > span {
  color: #444;
  font-size: 16px;
  letter-spacing: 1.1px;
  line-height: 1.5;
}
.product-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.product-small-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.modal-write > span > strong {
  color: #000;
}

.tab-pane > ul > li {
  border: 1px solid #ddd !important;
  padding: 1rem 2rem !important;
}
.product-wrapper {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.product-wrapper .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.iziToast.iziToast-color-green {
  background: #ecedf0 !important;
  background-color: #ecedf0 !important;
}
.product-contents {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.headcont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.product_group .pitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.product_group .pitem:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.headcont > a {
  color: #f59c5e;
  font-size: 15px;
  font-weight: bold;
}

.headcont > h5 {
  font-size: 15px;
}

.product_group {
  margin-bottom: 2rem;
}

.tab-pane .pitem .ptitle {
  width: 45%;
}

.tab-pane .pitem .quantity {
  width: 10%;
}

.tab-pane .pitem .pprice {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.form-group .headcont,
.form-group .product_group {
  background-color: #f5f5f5;
  padding: 0 1rem;
}

/* PRODUCT CSS END */

.table-wrapper {
  border: 1px solid #000;
  padding: 0;
  margin: 1rem 0;
}

.table-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.table-content .table-ul-wrapper > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.table-title {
  display: flex;
  width: 30%;
  border-right: 1px solid #000;
}

.table-content .table-ul-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}

.table-content .table-ul-wrapper > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 15px;
  color: #000;
  padding: 0.5rem;
}

.table-title > span {
  font-size: 15px;
  color: #000;
  padding: 0.5rem;
}

.table-content .table-ul-wrapper > ul > li:not(:last-child) {
  border-right: 1px solid #000;
}

.table-content:not(:last-child) {
  border-bottom: 1px solid #000;
}

div#tab-description {
  padding: 0 1rem;
  border: 1px solid #ddd;
}
.mobile-header-wrapper {
  display: none;
}
.search-wrapper {
  margin: 0;
}
.product-arrangament {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 1rem 0;
}
.product-arrangament-text > span {
  font-size: 15px;
  color: #000;
  font-weight: 600;
}
.home-cauresl-div .owl-carousel .owl-stage-outer {
  position: relative;
}
.home-cauresl-div .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 45px;
  height: 45px;
  background-color: #ddd;
  border-radius: 50%;
}
.home-cauresl-div .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 45px;
  height: 45px;
  background-color: #ddd;
  border-radius: 50%;
}
.home-cauresl-div .owl-carousel .owl-nav .owl-prev > i,
.home-cauresl-div .owl-carousel .owl-nav .owl-next > i {
  font-size: 20px;
}
.megamenu-pattern .container-fluid > ul > li::before {
  color: #2d3032 !important;
}
.close-menu::before {
  color: #2d3032 !important;
}
/*product-page-update-design*/
.product-left {
  width: 50% !important;
}

.swiper.gallery-top {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.product-image {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.3s ease;
}

.zoom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: crosshair;
}

.product-content .product-image > a {
  display: flex;
  align-items: center;
  position: relative;
}
.gallery-thumbs {
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.swiper.gallery-thumbs {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.gallery-thumbs .little-image {
  /* justify-content: center; */
}

.gallery-thumbs .little-image .swiper-slide {
  border: 1px solid #f3f3f3;
  border-radius: 5px;
  transition: 0.3s ease-in;
  cursor: pointer;
}

.gallery-thumbs .little-image .swiper-slide > a {
  display: flex;
  align-items: center;
  position: relative;
}

.gallery-thumbs .little-image .swiper-slide > a > img {
  width: 100%;
  border-radius: 5px;
}

.gallery-thumbs .little-image .swiper-slide > img {
  width: 100%;
  border-radius: 5px;
}
.product-right {
  width: 50% !important;
}
.product-content .product-image > a > img {
  width: 100%;
}
/*product-page-update-design-end*/
@media screen and (max-width: 1025px) {
  .footer-wrapper-bottom-left > ul > li > a {
    font-size: 12px !important;
  }
  .header-cart {
    width: 15%;
  }
  .product-price > span {
    font-size: 13px;
  }
  .product-name > a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .footer-wrapper-bottom-left {
    width: 75%;
  }
  .footer-wrapper-bottom-right {
    width: 25%;
  }
  .footer-wrapper-bottom-left > ul > li > a {
    font-size: 9px !important;
  }
  .header-logo,
  .header-cart,
  .header-search {
    display: none;
  }
  .mobile-logo,
  .mobile-cart,
  .mobile-search {
    display: flex !important;
  }
  .mobile-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }

  .mobile-search {
    width: 60%;
  }
  .mobile-search #search {
    width: 100%;
  }
  .mobile-search #search > form {
    width: 85%;
  }

  .mobile-header-wrapper .header-cart {
    margin-right: 0;
    padding-top: 0.5rem;
    align-items: center;
    justify-content: center;
  }
  .header-wrapper.container {
    width: 100%;
    justify-content: flex-end;
    padding: 0;
    background-color: #2d3032;
  }
  .header-menu {
    width: 100%;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  span.icon-bar {
    background-color: #fff !important;
  }
  .navbar-header > button:hover,
  .navbar-header > button:active:hover,
  .navbar-header > button:focus {
    background-color: #2d3032 !important;
  }
  .megamenu-wrapper {
    padding: 0 !important;
  }

  ul.megamenu {
    flex-direction: column !important;
  }

  .megamenu-pattern .container-fluid {
    padding: 0 !important;
  }
  .responsive ul.megamenu > li {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .responsive ul.megamenu > li > a {
    width: 100%;
  }
  .sub-menu .content {
    padding: 0 !important;
  }

  .sub-menu .content .row .col-sm-12 .html > ul > li > a {
    padding: 1rem;
    width: 100% !important;
    display: flex;
  }
  .header-wrapper .header-user-cart-wrapper .header-cart,
  .header-wrapper .header-user-cart-wrapper .header-user {
    display: none;
  }
  .header-cart.mobile-cart {
    width: 50%;
  }
  .header-user {
    padding-top: 0.5rem;
  }
  .header-wrapper.container .header-user-cart-wrapper {
    display: none;
  }
  .megamenu-wrapper {
    position: fixed !important;
  }

  .sub-menu .content {
    flex-direction: column;
    height: 100% !important;
    margin: 0 !important;
  }

  .sub-menu .content .row {
    flex-direction: column;
    margin: 0 !important;
  }

  .sub-menu .content .row .col-sm-4 {
    width: 100%;
    padding: 0 !important;
    height: 100% !important;
    margin: 0 !important;
  }

  .item-image {
    display: none;
  }

  .sub-menu .content .row .col-sm-4 .html {
    height: 100%;
  }

  .sub-menu .content .row .col-sm-4 .html .item .item-content {
    width: 100%;
  }

  .sub-menu .content .row .col-sm-4 .html .item .item-content > a {
    width: 100%;
    padding: 1rem;
    justify-content: flex-start;
  }

  .sub-menu .content .row .col-sm-4 .html .item .item-content > ul > li > a {
    width: 100%;
    padding: 1rem;
  }

  .sub-menu .content .row .col-sm-4 .html .item .item-content > ul {
    width: 100%;
  }

  .sub-menu .content .row .col-sm-4 .html .item .item-content > ul > li {
    width: 100%;
    display: flex;
  }
  .sub-menu
    .content
    .row
    .col-sm-4
    .html
    .item
    .item-content
    > ul
    > li:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
  .sub-menu .content .row .col-sm-12 {
    width: 100%;
    padding: 0 !important;
  }

  .sub-menu .content .row .col-sm-12 .html > ul > li:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
  .sub-menu .content .row .col-sm-4 .html .item .item-content > ul > li > a {
    justify-content: initial;
  }
  .sub-menu .content {
    width: 100%;
  }
  .megamenu-pattern .container-fluid > ul > li > a {
    justify-content: initial;
  }
}
@media screen and (min-width:769px){
  .mobile-product-slider {
    display: none;
}
}
@media screen and (max-width: 769px) {
  .product-content {
    display: none;
}
.product-right {
  margin-top: 3rem;
}
  .image-text {
    font-size: 14px;
    padding-left: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .category-content {
    width: calc(50% - 2rem);
  }
  .product-content {
    flex-direction: column;
  }
  .product-left,
  .product-right {
    width: 100% !important;
  }
  
  .product-right {
    padding: 0;
  }
  .product-right-title > span,
  .price-div #power-price > li,
  .modal-write {
    padding-left: 0;
  }
  .navbar-header {
    background-color: #2d3032;
  }
  .header-user {
    margin-right: 0.8rem;
  }
  .double-image.col-sm-4 {
    width: 95%;
  }
  .home-image-cols {
    max-width: 540px;
  }
}
@media screen and (max-width: 695px) {
  .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;
    padding: 0 !important;
  }
  .footer-wrapper-bottom-left > ul {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-wrapper .row .col-sm-3 > h5 {
    font-size: 15px;
  }
  .footer-wrapper .row .col-sm-3 > ul > li > a {
    font-size: 12px;
  }
  .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;
  }

  .footer-bottom > span {
    font-size: 11px;
  }
}
@media screen and (max-width: 552px) {
  .home-mage-wrapper {
    flex-direction: column;
  }
  .category-content {
    width: calc(100% - 2rem);
  }
  .table-content .table-ul-wrapper > ul > li,
  .table-title > span {
    font-size: 12px;
  }
  .mobile-header-wrapper {
    flex-direction: column;
  }

  .header-logo.mobile-logo {
    width: 35%;
    margin-right: 0;
  }
  .header-user > a,
  .header-cart > a {
    width: 48px;
    height: 48px;
  }
  .navbar-header {
    background-color: #2d3032;
  }
  .header-user {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
  }
  .header-cart.mobile-cart {
    justify-content: flex-start;
  }
  .header-user-cart-wrapper {
    width: 100%;
  }
  .user-sub-menu {
    right: -15%;
  }
  .double-image.col-sm-4 {
    width: 100%;
  }

  .single-image.col-sm-8 {
    margin-bottom: 1.7rem;
  }

  .home-image-cols.container {
    padding: 0;
  }
}
@media screen and (max-width: 426px) {
  .user-sub-menu {
    right: -22%;
  }
  .table-title {
    width: 20%;
  }
  .table-content .table-ul-wrapper {
    width: 80%;
  }
  .table-content .table-ul-wrapper > ul > li,
  .table-title > span {
    font-size: 10px;
  }
}

@media screen and (max-width: 376px) {
  .table-title {
    width: 17%;
  }
  .table-content .table-ul-wrapper {
    width: 83%;
  }
  .table-content .table-ul-wrapper > ul > li,
  .table-title > span {
    font-size: 9px;
  }
}
@media screen and (max-width: 321px) {
  .table-title {
    width: 15%;
  }
  .table-content .table-ul-wrapper {
    width: 85%;
  }
  .table-content .table-ul-wrapper > ul > li,
  .table-title > span {
    font-size: 7px;
  }
}

.em-table-ul {
  width: 100% !important;
}

