/* ROOT STYLES */
:root {
  --bs-body-bg: #f1f2f4;
}

body {
  font-family: "Quicksand", sans-serif;
  color: #253d4e;
}

@media (min-width: 1900px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1600px;
  }
}

/* NAVIGATOR CSS */
.min-banner-navigator {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  max-height: 440px;
}

.min-banner-navigator > img {
  max-width: 100%;
  width: 100%;
}

.min-banner-navigator > div {
  position: absolute;
  top: 0px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 220px;
}

/* FOOTER CSS */
footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding-top: 50px;
}

.footer-contact > ul {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: column;
}

.footer-contact > ul > li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-contact > ul > li > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 5px;
}

.footer-contact > ul > li > div > strong {
  margin-right: 5px;
}

.footer-contact > ul > li > div > p {
  margin: 0px;
}

.footer-contact > ul > li > i {
  min-width: 30px;
  min-height: 30px;
  background-color: #29a56c;
  display: flex;
  border-radius: 100%;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.footer-links > ul {
  list-style: none;
  padding: 0px;
}

.footer-links > ul > li > a {
  font-weight: bold;
  display: block;
  padding: 5px 0px;
}

.footer-payments > ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-payments > ul > li {
  padding: 10px;
  width: 70px;
}

.footer-payments > ul > li > img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid #ddd;
}

.footer-copyright > p {
  margin: 0px;
}

.footer-copyright {
  padding: 10px 0px;
}

@media only screen and (max-width: 600px) {
  .footer-contact {
      text-align: center;
  }

  .footer-contact > ul {
      text-align: left;
  }
}

/* PRODUCT THUMB SMALL CSS */
.product-thumb-small {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.product-thumb-small-img {
  min-width: 100px;
  min-height: 100px;
  background-color: #fff;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
  margin-right: 10px;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}

.product-thumb-small-img > img {
  max-width: 100%;
  max-height: 100%;
  transition: 0.5s all ease;
}

.product-thumb-small-meta {
  display: flex;
  flex-direction: column;
}

.product-thumb-small-meta > label {
  font-weight: bold;
  color: #29a56c;
  font-size: 18px;
}

.product-thumb-small-meta> label>span {
  margin-left: 5px;
  font-size: 15px;
  text-decoration: line-through;
  opacity: .7;
}

.product-thumb-small-meta > strong {
  font-size: 16px;
  margin-bottom: 0px;
  transition: 0.5s all ease;
}

.product-thumb-small:hover > .product-thumb-small-img > img {
  transform: scale(1.1);
}

.product-thumb-small:hover > .product-thumb-small-meta >strong {
  font-size: 18px;
}

/* PRODUCT THUMB LARGE */
.product-thumbnail {
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  transition: 0.5s all ease;
  cursor: pointer;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.product-thumbnail-image > img {
  max-width: 100%;
  max-height: 100%;
}

.product-thumbnail:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #BCE3C9;
}

span.product-thumbnail-discount {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #f5b43e;
  padding: 5px 10px;
  display: inline-block;
  border-bottom-right-radius: 10px;
  color: #fff;
}

.product-thumbnail-meta > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product-thumbnail-meta > div > button {
  margin-left: auto;
  background-color: #29a56c;
  color: #fff;
  border-radius: 10px;
  border: none;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 16px;
}

.product-thumbnail-meta > strong {
  display: flex;
  font-size: 20px;
  margin-bottom: 5px;
}

.product-thumbnail-meta > span {
  display: flex;
  margin-bottom: 5px;
  font-weight: bold;
}

.product-thumbnail-meta {
  width: 100%;
  padding: 20px;
  margin-top: auto;
}

.product-thumbnail-meta > div > label {
  font-weight: bold;
  color: #29a56c;
  font-size: 22px;
}

.product-thumbnail-meta > div > label>span {
  margin-left: 5px;
  font-size: 18px;
  text-decoration: line-through;
  opacity: .7;
}

.product-thumbnail-image {
  display: flex;
  width: 100%;
  text-decoration: none;
  height: 300px;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

/* CATEGORY THUMB CSS  */
.category-thumb {
  position: relative;
  background: #F4F6FA;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px 0px 18px 0px;
  margin-bottom: 20px;
  min-height: 180px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

.category-thumb:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #BCE3C9;
}

a.category-thumb > div {
  height: 90px;
}

a.category-thumb > div > img {
  max-width: 100%;
  max-height: 100%;
}

a.category-thumb > label {
  font-weight: bold;
  color: #253d4e;
}

a.category-thumb > span {
  font-size: 12px;
  font-weight: bold;
  color: #253d4e;
}

/* SITE SLIDER CSS */
.site-slider-slide {
  padding: 0px 10px;
}

.site-slider-title {
  display: flex;
  flex-direction: row;
  padding: 20px 0px;
}

.site-slider-title > h3 {
  font-weight: bold;
  margin: 0px;
}

.site-slider-title > div {
  margin-left: auto;
}

.site-slider-nav {
  border-radius: 100%;
  border: none;
  background-color: #29a56c59;
  color: #fff;
  height: 35px;
  width: 35px;
  outline: none;
  margin-left: 10px;
}

.site-slider-nav:hover {
  background-color: #29a56c;
}

#site_category_slider .site-slider-slide {
  width: 150px;
}

/* BIG BANNER CSS */
.big-banner-carousel {
  border-radius: 30px;
  overflow: hidden;
}

.big-banner-carousel .carousel-control-next,.big-banner-carousel .carousel-control-prev {
  height: 40px;
  width: 40px;
  margin-top: auto;
  margin-bottom: auto;
  background: #29a56c;
  border-radius: 100%;
}

.big-banner-carousel .carousel-control-next {
  right: 15px;
}

.big-banner-carousel .carousel-control-prev {
  left: 15px;
}

.big-banner-carousel:hover .carousel-control-next, .big-banner-carousel:hover .carousel-control-prev {
  opacity: 1;
}

.big-banner-carousel .carousel-caption h5 {
  color: #253D4E;
  font-size: 50px;
  font-weight: bold;
}

.big-banner-carousel .carousel-caption p {
  color: #253D4E;
  font-weight: bold;
}

.big-banner-carousel .carousel-caption {
  left: 0px;
  text-align: -webkit-auto;
  padding: 60px;
  max-width: 1000px;
  bottom: -100px;
  transition: 0.5s all ease;
}

.big-banner-carousel .carousel-item.active .carousel-caption {
  bottom: 0px;
}

.big-banner-carousel .carousel-item.active .carousel-caption h5 {
  font-size: 71px;
}

.big-banner-carousel .carousel-item.active .carousel-caption p {
  font-size: 30px;
}

.big-banner-carousel .carousel-item {
  height: auto;
}

.big-banner-carousel .carousel-item > img {
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .big-banner-carousel .carousel-caption {
      padding: 10px 50px;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: center;
  }

  .big-banner-carousel .carousel-item.active .carousel-caption h5 {
      font-size: 40px;
  }

  .big-banner-carousel .carousel-item.active .carousel-caption p {
      font-size: 20px;
  }

  .big-banner-carousel .carousel-item {
      height: 300px;
  }

  .big-banner-carousel .carousel-item > img {
      position: absolute;
      top: 0px;
      bottom: 0px;
      margin: auto;
      width: auto;
      max-height: 100%;
      left: -50%;
  }
}

/* HEADER CSS */
header {
  background-color: #fff;
  width: 100%;
}

.header-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-1-account {
  margin-left: auto;
}

.header-1-account > ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: row;
}

.header-1-form {
  max-width: 400px;
  width: 100%;
}

.header-1-form > div {
  width: 100%;
  border-radius: 5px;
  border: 2px solid #29a56c;
  position: relative;
  height: 50px;
  overflow: hidden;
}

.header-1-form > div > input {
  border: none;
  outline: none;
  width: 100%;
  padding: 0px 30px 0px 10px;
  font-size: 16px;
  height: 100%;
}

.header-1-form > div > i {
  position: absolute;
  right: 15px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0px;
  font-size: 20px;
  color: #29a56c;
}

header .header-1-wrapper,header .header-2-wrapper {
  border-bottom: 1px solid #ddd;
}

.header-1 > a {
  padding: 5px 0px;
  margin-right: 15px;
  height: 80px;
}

.header-1-account > ul > li {
  padding: 10px 5px;
}

.header-1-account > ul > li > a > div {
  display: flex;
  flex-direction: row;
  color: inherit;
}

.header-1-account > ul > li > a > div > label {
  position: relative;
  margin-right: 6px;
  color: inherit;
}

.header-1-account > ul > li > a > div > label > span {
  position: absolute;
  top: -8px;
  display: inline-block;
  background: #29a56c;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  font-size: 11px;
  left: 15px;
  color: #fff;
  text-align: center;
}

.header-1-account > ul > li > a > div > label >i {
  font-size: 20px;
}

.header-1-account > ul > li > a > div > span {
  font-weight: 400;
}

.header-2 {
  width: 100%;
  position: relative;
}

.header-2 ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.header-2>ul {
  display: flex;
  flex-direction: row;
}

.header-menu {
  position: absolute;
  left: 0px;
  background-color: #fff;
  top: 100px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #ececec;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all ease;
  padding: 20px;
  z-index: 101;
}

.header-2 li.small-menu {
  position: relative;
}

.header-2 li.small-menu .header-menu {
  width: 200px;
  background: #fff;
  border-radius: 10px;
}

.header-2>ul > li > a,.header-2>ul > li > label {
  padding: 10px 10px;
  display: block;
}

.header-2>ul > li > a,.header-2>ul > li > label {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  color: #253D4E;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  transition: 0.2s all ease;
  min-width: 100px;
}

.header-2>ul > li > a > div,.header-2>ul > li > label > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px 0px;
  justify-content: center;
}

.header-2>ul > li > a > div > i,.header-2>ul > li > label > div>i {
  margin-left: 5px;
}

.header-2 li.mega-menu .header-menu {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
}

.header-2>ul > li:hover > a, .header-2>ul > li:hover > label {
  background: #3BB77E;
  color: #fff;
}

.header-2>ul > li {
  padding: 5px 0px;
}

.header-2>ul > li:hover .header-menu {
  opacity: 1;
  visibility: visible;
  top: 64px;
}

.header-2 .header-menu ul > li:hover > a {
  background-color: #29a56c;
  color: #fff;
  padding-left: 5px;
}

.header-2 .header-menu ul > li > a {
  font-weight: 600;
  font-size: 15px;
  color: #7E7E7E;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  padding-left: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: 0.5s all ease;
}

.header-2 .mega-menu .header-menu label {
  color: #3BB77E;
  font-size: 19px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

a.mega-menu-banner > img {
  width: 100%;
}

.header-1-account > ul > li>a, .header-1-account > ul > li>div {
  display: flex;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s all ease;
  color: #253D4E !important;
  min-width: 100px;
  justify-content: center;
  border: none;
  background-color: transparent;
}

.header-1-account > ul > li:hover>a, .header-1-account > ul > li:hover>div {
  background-color: #29a56c !important;
  color: #fff !important;
}

.header-1-account > ul > li:hover > a > div > label > span {
  background-color: #253D4E;
}

.header-1-wrapper {
  padding: 20px 0px;
  width: 100%;
}

.header-2-wrapper {
  transition: 0.5s all ease;
}

.header-1-mobile {
  list-style: none;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  margin-bottom: 0px;
  display: none;
}

.header-1-mobile > li > button {
  border: none;
  height: 70px;
  width: 70px;
  min-width: 70px;
  font-size: 25px;
  color: #253d4e;
  background-color: transparent;
}

.header-2-mobile-close {
  position: fixed;
  display: none;
  right: 10px;
  top: 10px;
  z-index: 101;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #3bb77e;
  border: 3px solid #3bb77e;
  font-size: 23px;
  padding: 0px;
}

@media only screen and (max-width: 600px) {
  .header-2-wrapper.open > .header-2-mobile-close {
      display: inline-block;
  }

  .header-1-mobile {
      display: flex;
  }

  .header-2 {
      border-right: 1px solid #ddd;
  }

  .header-2-wrapper {
      position: fixed;
      top: 0px;
      left: -100%;
      width: 100%;
      height: 100%;
      max-width: 100%;
      background-color: #fff;
      z-index: 101;
      overflow: auto;
      padding-right: 100px;
  }

  .header-2-wrapper.open {
      left: 0px;
  }

  .header-2>ul {
      flex-direction: column;
      align-items: flex-start;
  }

  .header-2>ul > li {
      width: 100%;
      padding: 0px;
      border-bottom: 1px solid #fff;
  }

  .header-2>ul > li > a > div, .header-2>ul > li > label > div {
      justify-content: flex-start;
      color: #fff;
  }

  .header-2-wrapper > .container {
      padding: 0px;
  }

  .header-2>ul > li > a, .header-2>ul > li > label {
      background-color: #29a56c;
      border-radius: 0px;
  }

  .header-2>ul > li > a > div > i, .header-2>ul > li > label > div>i {
      margin-left: auto;
  }

  .header-2 li.small-menu .header-menu, .header-menu {
      position: relative;
      opacity: 1;
      width: 100%;
      visibility: visible;
      top: 0px;
      box-shadow: unset;
      border-radius: 0px;
      border: none;
  }

  .header-2>ul > li:hover .header-menu {
      top: 0px;
  }

  .header-1-account {
      position: fixed;
      bottom: 0px;
      z-index: 101;
      background-color: #fff;
      width: 100%;
      left: 0px;
      box-shadow: 0px -7px 14px 0px rgba(0, 0, 0, 0.05);
  }

  .header-1-account > ul > li {
      flex: 1;
      padding: 0px;
  }

  .header-1-account > ul > li>a {
      min-width: unset;
  }

  .header-1-account > ul > li:hover>a, .header-1-account > ul > li:hover>div {
      background-color: transparent !important;
      color: inherit !important;
  }

  .header-1-account > ul > li>a>div, .header-1-account > ul > li>div>div {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      display: flex;
  }

  .header-1-account > ul > li>a>div > span, .header-1-account > ul > li>div>div > span {
      font-size: 12px;
      font-weight: bold;
  }

  header {
      position: sticky;
      top: 0px;
      left: 0px;
      width: 100%;
      z-index: 101;
      box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, 0.05);
  }

  .header-1-wrapper {
      padding: 0px;
  }

  .header-1 > a {
      height: 70px;
      padding: 15px 0px;
  }

  .header-1 > a > img {
      max-height: 100%;
  }

  .header-1-form {
      position: fixed;
      top: 70px;
      left: 0px;
      width: 100%;
      padding: 10px;
      background-color: #fff;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      opacity: 0;
      transition: 0.5s all ease;
      visibility: hidden;
  }

  .header-1-form.open {
      opacity: 1;
      top: 70px;
      visibility: visible;
  }
}

/* DETAIL PAGE CSS */
.detail-gallery {
  position: relative;
}

.detail-gallery .zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 22px;
  opacity: 0.6;
}

.slider-nav-thumbnails .slick-list {
  margin: 0 -10px;
}

.slider-nav-thumbnails .slick-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  max-height: 120px;
}

.slider-nav-thumbnails .slick-slide img {
  border-radius: 17px;
}

.slider-nav-thumbnails .slick-slide.slick-current::before {
  border-bottom: 5px solid #333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  top: -6px;
  width: 0;
}

.slider-nav-thumbnails .slick-slide.slick-current img {
  border: 2px solid #a2d2c9;
}

.slider-nav-thumbnails div.slick-slide {
  margin: 0 10px;
}

.slider-nav-thumbnails button {
  opacity: 0;
}

.slider-nav-thumbnails button.slick-arrow {
  margin: 0;
  border: 0;
  background: #29a56c82;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  z-index: 9;
  color: #fff;
}

.slider-nav-thumbnails button.slick-arrow:hover {
  color: #fff;
  background-color: #3BB77E;
}

.slider-nav-thumbnails button.slick-arrow.slick-prev {
  left: -20px;
}

.slider-nav-thumbnails button.slick-arrow.slick-next {
  right: -20px;
}

.slider-nav-thumbnails:hover button {
  opacity: 1;
}

.slider-nav-thumbnails .slick-prev, .slider-nav-thumbnails .slick-next {
  font-size: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.detail-gallery .product-image-slider {
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 15px;
  border: 1px solid #ececec;
  overflow: hidden;
}

.detail-gallery .product-image-slider img {
  opacity: 1;
  border-radius: 16px;
}

.detail-gallery .product-image-slider.slider-nav-thumbnails {
  background: none;
  border-radius: 0;
}

.detail-gallery .product-image-slider button.slick-arrow {
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
}

.detail-gallery .product-image-slider button.slick-arrow i {
  color: #adadad;
}

.zoomContainer, .zoomWindow {
  z-index: 9999;
}

.single-product .zoomContainer, .single-product .zoomWindow {
  z-index: 99;
}

/* DETAIL PAGE META DATA */
.detail-info > label {
  font-weight: bold;
  color: #29a56c;
  font-size: 30px;
}

.detail-info > label>span {
  margin-left: 5px;
  font-size: 20px;
  text-decoration: line-through;
  opacity: .7;
}

.variant-data > ul {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.variant-data > ul > li > a {
  display: flex;
  padding: 10px;
  background-color: #fff;
  color: #29a56c;
  font-weight: bold;
  font-size: 20px;
  border-radius: 10px;
  text-decoration: none;
  min-width: 70px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border: 2px solid #29a56c;
}

.variant-data > ul > li {
  padding-right: 15px;
}

.variant-data > ul > li.active > a {
  background-color: #29a56c;
  color: #fff;
}

/* BREADCRUMB CSS */
.page-header .page-title {
  font-weight: 900;
  font-size: 4rem;
}

.page-header.breadcrumb-wrap {
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #ececec;
  font-family: "Quicksand", sans-serif;
}

.breadcrumb {
  display: inline-block;
  padding: 0;
  text-transform: capitalize;
  color: #7E7E7E;
  font-size: 14px;
  font-weight: 600;
  background: none;
  margin: 0;
  border-radius: 0;
}

.breadcrumb i {
  position: relative;
  text-align: center;
  padding: 0 10px;
  font-size: 9px;
}

.breadcrumb > a {
  text-decoration: none;
  color: inherit;
}

/* QUANTITY INPUT */
.quantity-input {
  width: 80px;
  position: relative;
}

.quantity-input > button {
  position: absolute;
  border: none;
  font-size: 9px;
  border-radius: 100%;
  background-color: #29a56c;
  height: 15px;
  width: 15px;
  padding: 0px;
  color: #fff;
  right: 5px;
}

.quantity-input > input {
  border: 2px solid #29a56c;
  font-weight: bold;
  color: #29a56c;
  text-align: center;
}

.quantity-input >button.quantity-input-plus {
  top: 5px;
}

.quantity-input >button.quantity-input-minus {
  bottom: 5px;
}

/* LISTING CATEGORY BANNER CSS */
.listing-banner {
  position: relative;
  min-height: 250px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-banner > img {
  position: absolute;
}

.listing-banner-meta {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  z-index: 1;
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #000000, transparent);
  padding: 0px 60px;
}

.listing-banner-meta > h1 {
  color: #fff;
}

.listing-banner-meta .breadcrumb {
  color: #fff;
}

/* LISTING FILTERS CSS */
.sidebar-widget {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
}

.sidebar-widget > ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}

.sidebar-widget > ul > li > a > div {
  width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 5px;
}

.sidebar-widget > ul > li > a {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sidebar-widget > ul > li > a > div > img {
  max-width: 100%;
  max-height: 100%;
}

ul.listing-categories > li {
  display: flex;
  flex-direction: row;
  align-items: center;
}

ul.listing-categories > li > span {
  margin-left: auto;
  background-color: #29a56c;
  border-radius: 10px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  font-size: 12px;
}

.sidebar-widget > ul > li {
  margin-bottom: 5px;
  cursor: pointer;
}

.sidebar-price-range {
  margin-bottom: 15px;
  padding: 0px 15px;
}

.listing-filters-close {
  display: none;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 101;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #3bb77e;
  border: 3px solid #3bb77e;
  font-size: 23px;
  padding: 0px;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 600px) {
  .listing-filters {
      position: fixed;
      top: 0px;
      left: -100%;
      background-color: #fff;
      width: 100%;
      padding-right: 50px;
      z-index: 101;
      overflow: auto;
      height: 100%;
      transition: 0.5s all ease;
      opacity: 0;
  }

  .listing-filters.open {
      left: 0%;
      opacity: 1;
  }
}

/* PAGINATION CSS */
.pagination-area .page-item {
  margin: 0 5px;
}

.pagination-area .page-item:first-child {
  margin-left: 0;
}

.pagination-area .page-item:first-child .page-link {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination-area .page-item:last-child .page-link {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.pagination-area .page-item.active .page-link, .pagination-area .page-item:hover .page-link {
  color: #fff;
  background: #3BB77E;
}

.pagination-area .page-item:last-child .page-link {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  line-height: 43px;
}

.pagination-area .page-item:first-child .page-link {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  line-height: 43px;
}

.pagination-area .page-link {
  border: 0;
  padding: 0 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  color: #7E7E7E;
  line-height: 40px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  background-color: #dbe5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pagination-area .page-link.dot {
  background-color: transparent;
  color: #7E7E7E;
  letter-spacing: 2px;
}

/* ACCOUNT NAVIGATION */
.account-section {
  display: flex;
  flex-direction: row;
}

.account-navigation {
  width: 250px;
  margin-right: 10px;
  position: sticky;
  top: 80px;
}

.account-navigation > ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.account-navigation > ul > li {
  padding: 5px 0px;
}

.account-navigation > ul > li > a,.account-navigation > ul > li > button {
  display: flex;
  align-items: center;
  border: none;
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
  padding: 10px 15px;
  cursor: pointer;
  text-decoration: none;
}

.account-navigation > ul > li > a > i, .account-navigation > ul > li > button > i {
  font-size: 14px;
  display: flex;
  width: 30px;
  height: 30px;
  background-color: #29a56c;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
}

.account-navigation > ul > li > a > span, .account-navigation > ul > li > button > span {
  font-weight: bold;
}

.account-navigation > ul > li > a.active, .account-navigation > ul > li > button.active {
  background-color: #29a56c;
  color: #fff;
}

.account-navigation > ul > li > a.active > i, .account-navigation > ul > li > button.active > i {
  background-color: #fff;
  color: #29a56c;
}

@media only screen and (max-width: 600px) {
  .account-navigation {
      height: 100%;
      background-color: transparent;
      max-width: 100px;
  }

  .account-navigation > ul > li > a,.account-navigation > ul > li > button {
      align-items: center;
      flex-direction: column;
      border-radius: 0px;
  }

  .account-navigation > ul > li {
      padding: 0px;
      border-bottom: 1px solid #ddd;
  }

  .account-navigation > ul > li > a > span, .account-navigation > ul > li > button > span {
      font-size: 12px;
      text-align: center;
  }

  .account-navigation > ul > li > a > i, .account-navigation > ul > li > button > i {
      margin-right: 0px;
  }

  .account-navigation > ul {
      height: 100%;
      background-color: #fff;
      border-right: 1px solid #ddd;
  }
}
