html {
  scroll-behavior: smooth;
}

#product-wizard {
  max-width: 800px;
  margin: 0 auto;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
}

/* .product-item {
    width: 25%;
    padding: 10px;
} */

.load-more,
.next-step {
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 20px 0;
}

#filter-form {
  display: flex;
  flex-direction: column;
}

/*Common CSS*/
/*
    Common 
*/

.wizard,
.tabcontrol {
  display: block;
  width: 100%;
  overflow: hidden;
}

.wizard a,
.tabcontrol a {
  outline: 0;
}

.wizard ul,
.tabcontrol ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.wizard ul>li,
.tabcontrol ul>li {
  display: block;
  padding: 0;
}

/* Accessibility */
.wizard>.steps .current-info,
.tabcontrol>.steps .current-info {
  position: absolute;
  left: -999em;
}

.wizard>.content>.title,
.tabcontrol>.content>.title {
  position: absolute;
  left: -999em;
}

/*
    Wizard
*/

/*
    Tabcontrol
*/

.tabcontrol>.steps {
  position: relative;
  display: block;
  width: 100%;
}

.tabcontrol>.steps>ul {
  position: relative;
  margin: 6px 0 0 0;
  top: 1px;
  z-index: 1;
}

.tabcontrol>.steps>ul>li {
  float: left;
  margin: 5px 2px 0 0;
  padding: 1px;

  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.tabcontrol>.steps>ul>li:hover {
  background: #edecec;
  border: 1px solid #bbb;
  padding: 0;
}

.tabcontrol>.steps>ul>li.current {
  background: #fff;
  border: 1px solid #bbb;
  border-bottom: 0 none;
  padding: 0 0 1px 0;
  margin-top: 0;
}

.tabcontrol>.steps>ul>li>a {
  color: #5f5f5f;
  display: inline-block;
  border: 0 none;
  margin: 0;
  padding: 10px 30px;
  text-decoration: none;
}

.tabcontrol>.steps>ul>li>a:hover {
  text-decoration: none;
}

.tabcontrol>.steps>ul>li.current>a {
  padding: 15px 30px 10px 30px;
}

.tabcontrol>.content {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 35em;
  overflow: hidden;
  border-top: 1px solid #bbb;
  padding-top: 20px;
}

.tabcontrol>.content>.body {
  float: left;
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%;
}

.tabcontrol>.content>.body ul {
  list-style: disc !important;
}

.tabcontrol>.content>.body ul>li {
  display: list-item;
}

#cat-filter-form {
  width: 50%;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* modal popup new */
#product-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
  background: #fff;
  padding: 20px;
  z-index: 99999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

#product-popup::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

#product-popup::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

#product-popup::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #000;
}

#product-popup .popup-content {
  position: relative;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

#product-popup .popup-content .wb-step-cart-single {
  width: 50%;
}

#product-popup .popup-content .wb-right-section-div {
  width: 50%;
  padding-left: 20px;
}

#product-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: #000 !important;
  padding: 0;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
}

.product-slider {
  width: 100%;
  margin-bottom: 20px;
}

.product-slider img {
  width: 100%;
  height: auto;
}

.slick-dots {
  text-align: center;
  margin-top: 20px;
}

/* modal popup new */
fieldset {
  padding: 20px;
  margin: 0;
  border: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
}

a[href="#finish"],
a[href="#next"],
a[href="#previous"] {
  padding: 10px 20px;
  background-color: #000;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid #000;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

a[href="#previous"] {
  background-color: #fff !important;
  color: #000 !important;
}

a[href="#previous"]:hover {
  background-color: #000 !important;
  color: #fff !important;
}

a[href="#finish"]:hover,
a[href="#next"]:hover,
a[href="#previous"]:hover {
  background-color: #fff;
  color: #000;
}

ul[role="tablist"] {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

ul[role="tablist"] li {
  width: 33%;
  text-align: center;
  position: relative;
  font-weight: bold;
  padding: 10px;
  background-color: #e9ecef;
  color: #333;
  border-radius: 5px;
}

ul[role="tablist"] li.current {
  background-color: #000;
  color: white;
}

ul[role="tablist"] li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50%;
  width: 100%;
  height: 4px;
  background-color: #ddd;
  z-index: -1;
}

ul[role="tablist"] li:first-child::before {
  display: none;
}

fieldset {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

fieldset.current {
  opacity: 1;
}

/* edited by raheel lct20 */

/* finished editing by raheel lct20 */

input:invalid:focus {
  outline-color: #dc3545;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#image-slider {
  display: flex;
  overflow-x: auto;
}

#image-slider img {
  max-width: 100%;
  margin-right: 10px;
}

#cat-filter-form {
  width: 70% !important;
}

.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
}

.filter-outer {
  display: flex;
  padding: 0 60px;
}

.cat-filters {
  width: 30%;
  padding-left: 40px;
}

#cat-filter-form .steps ul {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  column-gap: 10px;
}

#cat-filter-form .steps ul li a {
  color: #000 !important;
  display: block;
  font-size: 14px;
  margin-bottom: 0 !important;
}

#cat-filter-form .steps ul li.current a {
  color: #fff !important;
}

#cat-filter-form .product-list img {
  height: 380px;
  object-fit: contain;
  width: 100%;
}

#cat-filter-form .product-list .product-item {
  background: #fff;
  box-shadow: 0 0 10px #00000014;
  padding: 20px 15px;
  padding-bottom: 20px;
  border: 1px solid #000;
  cursor: pointer;
  position: relative;
  border-radius: 20px;
  padding-top: 0;
}

#cat-filter-form .product-list .product-item input {
  position: absolute;
  left: -999px;
  visibility: hidden;
}

#cat-filter-form .product-list .product-item.wb-selected-product {
  border-width: 3px;
  box-shadow: 0 0 10px #0000006b;
}

#cat-filter-form .product-list .product-item h3 {
  font-size: 18px;
  font-weight: 500;
}

#cat-filter-form .actions ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

#cat-filter-form .actions ul li {
  list-style: none;
}

div#product-popup .popup-content .product-image img {
  height: 180px;
}

div#product-popup .popup-content h1 {
  font-size: 28px;
  color: #000;
  font-weight: 600;
  display: inline;
}

#product-popup .close-popup:focus {
  outline: none;
}

#product-popup .popup-content .product-price span {
  color: #000;
  font-weight: 600;
}

#product-popup .popup-content .product-sku {
  color: #000;
  font-weight: 600;
}

#product-popup .popup-content .product-description {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  white-space: break-spaces;
}

#cat-filter-form .product-list .product-item input[type="radio"]:checked~label {
  background: antiquewhite;
}

div#cart-summary {
  display: flex;
  justify-content: end;
  column-gap: 20px;
  padding-right: 20px;
}

div#cart-summary {
  color: #000;
  display: flex;
  justify-content: end;
  column-gap: 20px;
  padding-right: 60px;
  margin-bottom: 20px;
  margin-top: 10px;
  padding-left: 60px;
}

#cat-filter-form .product-list .product-item p {
  margin-bottom: 0;
  color: #000;
}

#cat-filter-form .product-list .product-item .variation-selector label {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  color: #000;
}

#cat-filter-form .product-list .product-item .variation-selector label label {
  margin-bottom: 5px;
}

#cat-filter-form .product-list .product-item .variation-selector label select {
  outline: none;
}

.cat-filters .hide-filter {
  display: none;
}

.wb-steps-loader {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #00000069;
  z-index: 9999;
}

.wb-steps-loader img {
  margin: auto;
  height: 120px;
}

.wb-steps-loader .loader-img {
  height: 100%;
  display: flex;
  align-items: center;
}


#product-popup .popup-content .product-gallery ul.slick-dots {
  display: none;
}

#product-popup .popup-content .product-gallery img {
  object-fit: contain;
  width: 100%;
  aspect-ratio: 1 / 1;
}

#product-popup .popup-content .slick-slide {
  height: 326px;
}

#product-popup .popup-content .product-gallery ul.slick-dots {
  display: none !important;
}

#product-popup .popup-content .product-gallery .slick-arrow::before {
  color: #000 !important;
}

#product-popup .popup-content .product-gallery .slick-next {
  right: 0 !important;
}

#product-popup .popup-content .product-gallery .slick-prev {
  left: 0 !important;
}

.cat-filters .filter-price {
  padding: 30px;
  background: #000;
  border-radius: 20px;
}

#cat-filter-form fieldset.current .wb-error-message {
  color: red;
  font-size: 16px;
  margin-top: 5px;
}

.cat-filters h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.cat-filters label {
  color: #fff;
  margin-bottom: 7px;
  display: inline-block;
}

.cat-filters span {
  color: #fff;
  margin-bottom: 7px;
  display: inline-block;
  margin-top: 5px;
}

.cat-filters span.ui-slider-handle {
  border-radius: 20px;
  cursor: pointer;
  top: -0.55em !important;
}

.cat-filters span.ui-slider-handle.ui-state-active {
  background: #fff;
  border-color: #000;
}

.cat-filters input#cat-step-filter,
.cat-filters input#cat-step-reset {
  background: #fff;
  border-radius: 10px;
  color: #000;
  border: 2px solid #fff;
  transition: 0.3s all;
}

input#cat-step-filter label {
  color: #000;
}

.cat-filters input#cat-step-filter:hover,
.cat-filters input#cat-step-reset:hover {
  outline: none;
}

.cat-filters input#cat-step-filter:hover,
.cat-filters input#cat-step-reset:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

#cat-filter-form input#checkout-fridge {
  width: 16px;
  height: 16px;
  accent-color: #000 !important;
  outline: none;
}

.cat-filters input#cat-step-reset {
  margin-left: 15px;
}

#product-popup .popup-content .product-gallery .swiper-wrapper {
  height: 100%;
}

#product-popup .popup-content .thumbnail-swiper .swiper-slide {
  height: max-content;
  border: 1px solid #000;
  opacity: 0.5;
  cursor: pointer;
}

#product-popup .popup-content .thumbnail-swiper {
  height: max-content;
  margin-top: 5px;
  margin-bottom: 15px;
}

#product-popup .popup-content .thumbnail-swiper .swiper-slide img {
  object-fit: contain;
  transform: scale(0.9);
  width: 100%;
  aspect-ratio: 1 / 1;
}

#product-popup .popup-content .product-gallery .main-swiper {
  border: 1px solid #000;
}

#product-popup .popup-content .thumbnail-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

#product-popup .popup-content .product-categories {
  font-weight: 600;
  color: #000;
}

#product-popup .popup-content .wb-product-dimension {
  color: #000;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 600;
  margin-bottom: 15px;
}

#product-popup .popup-content .product-short-description {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

#cat-filter-form .product-list .product-item .wb-popular-batch {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #000;
  color: #fff;
  line-height: normal;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 14px;
}

#cat-filter-form .product-list .product-item .open-popup-view a.open-popup {
  background: #000;
  padding: 5px 15px;
  color: #fff;
  margin-top: 10px;
  display: block;
  width: fit-content;
  margin-left: auto;
  line-height: normal;
  text-transform: capitalize;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid #000;
  transition: 0.3s all;
}

#cat-filter-form .product-list .product-item .open-popup-view a.open-popup {
  pointer-events: visible !important;
}

.warning-div {
  display: flex;
  flex-direction: row-reverse;
}

.warning-div span.error-msg-warn img {
  max-width: 36%;
  height: 40px !important;
  margin-right: 10px;
}

.warning-div span.error-msg-warn {
  display: flex;
  align-items: center;
  color: red;
}

#cat-filter-form .product-list .product-item.disabled {
  border-color: red;
  border-width: 2px;
  pointer-events: none;
}

.product-item span.wb-waring-msg {
  line-height: normal;
  margin-top: 10px;
  display: block;
  font-size: 14px;
  border: 1px solid #f5c6cb;
  border-radius: 0.25rem;
  padding: 10px;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

#cat-filter-form .product-list .product-item .open-popup-view a.open-popup:hover {
  background: transparent;
  color: #000;
}

.product-list p.empty {
  color: red;
  font-size: 17px;
}

.wb-checkbox-button label {
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  color: #000;
  border: 2px solid #000;
  transition: 0.3s all;
  cursor: pointer;
}

.wb-checkbox-button input {
  opacity: 0;
  position: absolute;
  transition: 0.3s all;
}

.wb-checkbox-button input:checked+label {
  background: #000;
  color: #fff;
}

#cat-filter-form fieldset button.scroll-to-item1,
#cat-filter-form fieldset button.scroll-to-item2 {
  position: absolute;
  top: 33%;
  transform: translateY(-40%);
  box-shadow: none;
  outline: none;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  text-transform: capitalize;
  display: none;
  width: 36px;
  height: 36px;
  font-size: 0;
}

#cat-filter-form fieldset button.scroll-to-item1::before,
#cat-filter-form fieldset button.scroll-to-item2::before {
  content: "\25BC";
  position: relative;
  width: 30px !important;
  height: 30px !important;
  top: 0;
  left: 0;
  z-index: 999;
  display: block;
  font-size: 24px;
}

#cat-filter-form fieldset button.scroll-to-item1::before {
  transform: rotate(90deg);
  left: -6px;
  top: -5px;
}

#cat-filter-form fieldset button.scroll-to-item2::before {
  transform: rotate(270deg);
  left: -12px;
  top: -4px;
}

#cat-filter-form fieldset {
  position: relative;
}

#cat-filter-form fieldset button.scroll-to-item2 {
  right: -20px;
}

#cat-filter-form fieldset button.scroll-to-item1 {
  left: -20px;
}

.cat-filters-mobile button#show-filter {
  width: 100%;
  border: 1px solid #fff;
  padding: 10px 0;
  outline: none;
}

.cat-filters-mobile button#show-filter:hover {
  background: #fff;
  color: #000;
}


#cat-filter-form .steps ul li::after,
#cat-filter-form .steps ul li::before {
  display: none;
}

#cat-filter-form .actions ul li a {
  background: #000 !important;
  padding: 10px 20px !important;
  border: 2px solid #000 !important;
  color: #fff !important;
}

#cat-filter-form .actions ul li a:hover {
  background: #fff !important;
  color: #000 !important;
}

p.error-cart-msg {
  padding: 0 60px;
  color: red;
}

.wb-plan-select {
  padding: 40px 0 10px 60px;
}

.wb-plan-select a {
  background: #000;
  padding: 14px 24px;
  color: #fff;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #000;
  transition: 0.3s all;
}

.wb-plan-select a:hover {
  background: #fff;
  color: #000;
}

#wb-choose-plan a[disable=disabled] {
  background: #0000007d;
  border-color: #00000000 !important;
  pointer-events: none;
}

.wb-plan-active {
  border: 2px solid #000;
  border-radius: 20px;
}

.wb-step-choose-your-plan .elementor-price-table {
  cursor: pointer;
}

.wb-step-choose-your-plan .elementor-price-table__footer a {
  pointer-events: none;
}

.wb-plan-active .elementor-price-table__footer a {
  background: #000 !important;
  color: #fff !important;
}

.wb-cyp-box {
  display: none;
}

/* media query start here */

@media (max-width: 1536px) {
  .filter-outer {
    padding: 0 15px;
  }
}

@media (max-width:1380px) {
  #cat-filter-form .steps ul li a {
    font-size: 12px;
  }
}
@media (max-width:1199px) {
  .cat-filters input#cat-step-filter, .cat-filters input#cat-step-reset {
    margin: 5px;
    width: 100%;
}

}
@media (max-width: 1024px) {
  .product-list {
    grid-template-columns: 1fr 1fr;
  }

  #cat-filter-form .steps ul li {
    min-width: 165px;
  }

  #cat-filter-form .steps ul li.current {
    display: block;
    width: 100%;
  }

  #cat-filter-form .steps {
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 5px;
  }

  #cat-filter-form .steps::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
  }

  #cat-filter-form .steps::-webkit-scrollbar {
    width: 12px;
    background-color: #f5f5f5;
    height: 5px;
  }

  #cat-filter-form .steps::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #000;
  }

  #cat-filter-form .steps ul {
    margin-bottom: 0;
  }

  #cat-filter-form fieldset {
    padding: 20px 0;
  }

  div#cart-summary {
    padding-right: 15px;
    padding-left: 15px;
  }

  .cat-filters {
    padding-left: 15px;
  }

  .cat-filters input#cat-step-filter,
  .cat-filters input#cat-step-reset {
    padding: 5px 10px;
    font-size: 14px;
  }

  .cat-filters input#cat-step-reset {
    margin-left: 5px;
  }

  .cat-filters .filter-price {
    padding: 20px;
  }

  #product-popup .popup-content .thumbnail-swiper .swiper-slide,
  #product-popup .popup-content .thumbnail-swiper .swiper-slide img {
    height: 75px;
  }

  .wb-plan-select {
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .col-full {
    max-width: 100% !important;
    margin: 0 !important;
  }
}


@media (max-width: 767px) {
  .filter-outer {
    flex-wrap: wrap !important;
    padding: 0 10px;
  }

  #cat-filter-form,
  .cat-filters {
    width: 100% !important;
  }

  .cat-filters {
    padding-left: 0 !important;
    margin-bottom: 20px;
    position: fixed;
    bottom: -400px;
    left: 0;
    width: 100%;
    height: fit-content;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: 0.5s all;
    transform: translateY(0);
    z-index: 1000;
  }

  .cat-filters.show {
    bottom: -15px;
  }

  #cat-filter-form .product-list .product-item {
    min-width: 100%;
  }

  .product-list {
    overflow-x: auto;
    display: flex;
    padding-bottom: 10px;
    column-gap: 0;
  }

  .product-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
  }

  .product-list::-webkit-scrollbar {
    width: 12px;
    background-color: #f5f5f5;
    height: 5px;
  }

  .product-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #000;
  }

  #cat-filter-form fieldset {
    min-width: 100%;
  }

  #product-popup .popup-content {
    flex-direction: column;
  }

  #product-popup .popup-content .wb-step-cart-single {
    width: 100%;
  }

  #product-popup .popup-content .wb-right-section-div {
    width: 100%;
    padding-left: 0;
  }

  #product-popup .popup-content .product-gallery .swiper-wrapper {
    height: 420px !important;
  }

  #product-popup .popup-content .product-gallery img {
    height: 420px !important;
    object-fit: contain;
  }

  #product-popup .close-popup {
    font-size: 18px;
    width: 30px;
    height: 30px;
    right: 5px;
  }

  #product-popup .popup-content .thumbnail-swiper .swiper-slide {
    height: 85px !important;
  }

  #product-popup .popup-content .thumbnail-swiper .swiper-slide img {
    height: 85px !important;
  }

  #product-popup .popup-content .thumbnail-swiper {
    height: 90px;
  }

  div#product-popup .popup-content h1 {
    font-size: 24px;
  }

  #product-popup {
    padding: 20px 10px;
    width: 95% !important;
    max-width: 450px;
    padding-right: 5px;
  }

  #cat-filter-form fieldset button.scroll-to-item1,
  #cat-filter-form fieldset button.scroll-to-item2 {
    display: block !important;
  }

  #cat-filter-form .product-list img {
    height: 250px;
    object-fit: contain;
  }

  #cat-filter-form .product-list .product-item .wb-popular-batch {
    display: none;
  }

  .cat-filters-mobile {
    display: block !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    border-radius: 0;
    background: #000;
    padding: 10px;
    z-index: 9999;
  }

  .cat-filters .hide-filter {
    display: flex;
    position: absolute;
    top: 0px;
    right: 10px;
    background: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
  }

  button#show-filter {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #000;
    transition: 0.3s all;
    cursor: pointer;
  }

  .cat-filters .filter-price {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  #cat-filter-form {
    padding-bottom: 80px !important;
  }

  .cat-filters input#cat-step-filter,
  .cat-filters input#cat-step-reset {
    width: 48%;
  }

  div#cart-summary {
    display: none;
  }

  .cat-filters.show .range-slider {
    padding-left: 45px;
    padding-right: 45px;
  }

  #cat-filter-form .actions ul li a {
    padding: 10px 12px !important;
    font-size: 12px;
  }

  #product-popup .popup-content .product-gallery .swiper-wrapper {
    height: 100% !important;
  }

  #product-popup .popup-content .product-gallery img {
    height: 100% !important;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  #product-popup .popup-content .thumbnail-swiper .swiper-slide {
    height: 100% !important;
  }

  #product-popup .popup-content .thumbnail-swiper .swiper-slide img {
    height: 100% !important;
    width: 100%;
    aspect-ratio: 1 / 1;
  }
  .wb-plan-select {
    padding-left: 10px;
  }
  #product-popup .popup-content .product-description{
    white-space:unset;
  }
  #product-popup .popup-content .product-description strong {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

}

@media (max-width:480px) {
  #product-popup .popup-content .product-gallery .swiper-wrapper {
    height: 100% !important;
  }

  #product-popup .popup-content .product-gallery img {
    height: 100% !important;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  #product-popup .popup-content .thumbnail-swiper .swiper-slide {
    height: 100% !important;
  }

  #product-popup .popup-content .thumbnail-swiper .swiper-slide img {
    height: 100% !important;
    width: 100%;
    aspect-ratio: 1 / 1;
  }
}

/* media query end here */