/*********************
START:PRODUCTS
*********************/
.productsInner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-block: 60px 40px;
}

.productsFilter {
  width: 24%;
  background-color: rgba(235, 235, 235, 0.3);
  border-radius: var(--border-radius10);
}

.productsShowcase {
  width: 74%;
}

.woocommerce ul.products {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
  padding: 0.5rem;
  width: auto !important;
  margin: 8px !important;
  flex-basis: calc(33.33% - 16px);
  border-radius: var(--border-radius10);
}

.woocommerce ul.products li.product:nth-child(odd) {
  background: linear-gradient(to bottom, rgba(98, 98, 98, 0.1), rgba(98, 98, 98, 0));
}

.woocommerce ul.products li.product:nth-child(even) {
  background: linear-gradient(to bottom, rgba(245, 242, 247, 1), rgba(245, 242, 247, 0));
}


.woocommerce ul.products li.product span.price {
  color: var(--primary-color);
  font-weight: bold;
}

.woocommerce ul.products li.product a {
  font-family: var(--font-familyNum);
}

.woocommerce ul.products li.product a h2 {
  color: var(--secondary-color);
}

.woocommerce ul.products::before {
  display: none;
}

.woocommerce ul.products li .imageWrapper img {
  border-radius: var(--border-radius10);
}

.sortbyShop {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--border-color);
  margin-block-end: 22px;
}

.sortbyShop span {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.sortbyShop span img {
  margin-inline-end: 5px;
}

.sortbyShop ul.dropdownMenu {
  display: flex;
  margin-block-end: 0;
}

.sortbyShop ul.dropdownMenu li {
  padding-block: 10px;
}

.sortbyShop ul.dropdownMenu li:not(:last-child) {
  margin-inline-end: 40px;
}

.sortbyShop ul.dropdownMenu li.active {
  color: var(--primary-color);
  position: relative;
}

.sortbyShop ul.dropdownMenu li.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 5px;
  position: absolute;
  bottom: -1px;
  right: 0;
}

.sortbyShop ul.dropdownMenu li a {
  font-weight: bold;
  padding-block: 10px;
}

ul.allProducts {
  position: relative;
  min-height: 300px;
}

ul.allProducts li {
  background-color: var(--baseLight-color);
  border-radius: var(--border-radius5);
  position: relative;
}

ul.allProducts li .imageWrapper {
  border-radius: var(--border-radius5);
  background-color: #f0f2f1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 100%; */
  margin: 15px;
  box-sizing: border-box;
  min-height: 220px;
}

ul.allProducts li .imageWrapper img {
  width: 70%;
  height: auto;
}

ul.allProducts li h2.woocommerce-loop-product__title {
  margin: 0 15px !important;
}

ul.allProducts li span.price {
  font-weight: bold !important;
  font-family: var(--font-familyNum);
  margin: 12px 15px !important;
  display: block;
}

ul.allProducts li span.price ins {
  text-decoration: none !important;
}

ul.allProducts li form.cart {
  margin-inline: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 15px;
  position: relative;
}

ul.allProducts li .quantity {
  display: flex;
  align-items: center;
}

/* Chrome, Safari, Edge, Opera */
ul.allProducts li .quantity input::-webkit-outer-spin-button,
ul.allProducts li .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
ul.allProducts li .quantity input[type="number"] {
  -moz-appearance: textfield;
  width: 30px;
  text-align: center;
  border: none;
  font-family: var(--font-familyNum);
}

ul.allProducts li .quantity button {
  width: 25px;
  background-color: var(--baseLight-color);
  border: solid 1px #aaaaaa;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 25px;
}

ul.allProducts li a.add_to_cart_button {
  color: var(--primary-color);
  position: relative;
  padding: 5px 5px 5px 25px;
  background-color: var(--baseLight-color);
}

ul.allProducts li a.add_to_cart_button:hover {
  background-color: var(--baseLight-color);
  color: var(--primary-color);
}

ul.allProducts li a.add_to_cart_button.loading::after {
  content: "";
  position: absolute;
  background-color: var(--baseLight-color);
  top: 1px;
  left: -3px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
}

ul.allProducts li a.add_to_cart_button:before {
  content: "";
  background: url(../img/icons/basket.svg) no-repeat;
  width: 20px;
  height: 20px;
  font-weight: 400;
  margin-right: 0.5em;
  position: absolute;
  left: 0;
  top: 0;
}

a.added_to_cart.wc-forward {
  position: absolute;
  left: 26px;
  font-size: 0.7rem;
  bottom: -12px;
  color: var(--primary-color);
}

ul.allProducts .lds-dual-ring.overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: all 0.5s;
  border-radius: var(--border-radius5);
}

ul.allProducts .hidden {
  display: none !important;
}

ul.allProducts .lds-dual-ring.overlay img {
  width: 200px;
  margin-block-start: 50px;
  border-radius: 50%;
  height: 200px;
  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

.inProducts a.but {
  width: 17%;
  margin: 30px auto 10px;
}

/* pagination */
.woocommerce nav.woocommerce-pagination {
  width: 65%;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  width: 35px;
  height: 35px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-left: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  width: 100%;
  height: 100%;
}


.woocommerce nav.woocommerce-pagination ul li span {
  font-weight: 700;
}

.woocommerce nav.woocommerce-pagination ul li:not(:last-child) {
  margin-left: 0.5rem;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  color: var(--baseLight-color);
}

/* pagination */

/* added_to_cart */
.woocommerce a.button.added::after {
  content: unset;
}

/* added_to_cart */
/*********************
END:PRODUCTS
*********************/

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  float: none;
}

/*********************
START:WIDGET
*********************/
.widget {
  width: 100%;
  padding: 1rem;
}

.widgetTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 1rem;
}

.widgetBody ul li:not(:last-child) {
  margin-block-end: 1rem;
}

.widgetBody form {
  width: 100%;
}

.widget .woocommerce-ordering {
  width: 100%;
  margin: 0;
}

.woocommerce-ordering .woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  float: none;
}

.price_slider {
  margin-bottom: 1em;
}

.rtl.woocommerce .price_label,
.rtl.woocommerce .price_label span {
  direction: rtl;
}

.price_slider_amount {
  text-align: center;
  line-height: var(--line-height160);
}

.price_slider_amount button[type="submit"] {
  background-color: var(--primary-color);
  color: var(--baseLight-color);
  padding: 10px 30px;
  font-family: var(--font-familyNum);
}

.price_slider_amount button[type="submit"]:hover {
  background-color: #043b23;
  color: var(--baseLight-color);
}

.filter--option__items form {
  width: 100%;
}

.price_slider_amount .button {
  font-size: 1.15em;
  color: var(--baseLight-color);
  background-color: var(--primary-color);
  padding: 1px 30px;
}

.price_label {
  font-family: var(--font-familyNum);
}

.ui-slider {
  position: relative;
  text-align: left;
}

.count {
  color: var(--primary-color);
  font-size: 14px;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
  border: solid 1px var(--primary-color);
  cursor: pointer;
  background: var(--primary-color);
  outline: none;
  top: -0.2em;
}

.ui-slider .ui-slider-handle:last-child {
  margin-left: -0.9em;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  border: 0;
  background: var(--primary-color);
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
}

.price_slider_wrapper .ui-widget-content {
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  margin-top: 20px;
}

.ui-slider-horizontal {
  height: 0.5em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}

/*********************
END:WIDGET
*********************/

/*********************
START: WHAT CONTRACT
*********************/
.whatContract {
  padding: 60px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--border-radius10);
  background-image: url(../img/icons/servicesRectangle-blue.svg);
}

.whatContract--image {
  width: 35%;
}

.whatContract--image>img {
  width: 100%;
}

.whatContract--search {
  width: 55%;
}

.whatContract p {
  margin-block: 1.25rem;
}

.whatContract select {
  width: 50%;
  margin-block-end: 1rem;
}

.whatContract .form--group {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  width: 100%;
  background-color: #fcfcfc;
  border-radius: var(--border-radius10);
  color: var(--secondary-color) !important;
  border: 1px solid var(--border-input);
}

.whatContract .form--group input {
  border: none;
}

.whatContract .form--group button {
  border: none;
  margin-inline-end: 0.75rem;
}

/*********************
END: WHAT CONTRACT
*********************/
.woocommerce ul.products li.product a img {
	    width: 100px ;
    height: auto;
    margin: 13px auto;
}
/*********************
START:MEDIA
*********************/
@media screen and (max-width: 1320px) {}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 992px) {
  .whatContract {
    background-color: var(--blueLight1-color);
    background-image: unset;
    padding: 2rem;
  }

  .woocommerce ul.products li.product {
    flex-basis: calc(50% - 16px);
  }
	
	.sortbyShop {
		font-size: 12px;
	}

@media screen and (max-width: 768px) {
  .whatContract {
    flex-direction: column;
  }

  .whatContract--search {
    width: 100%;
  }

  .whatContract--image {
    width: 50%;
    margin-block-end: 2rem;
  }

	.productsFilter{
		margin-bottom: 1.5rem;
	}
  .productsInner {
    flex-wrap: wrap;
    margin-block: 20px 40px;
  }
	
	.sortbyShop {
		font-size: 16px;
	}

  .productsFilter,
  .productsShowcase {
    width: 100%;
  }

  .widgetBody {
    margin-block-end: 0;
  }

  .sortbyShop {
    flex-wrap: wrap;
  }

  .sortbyShop ul.dropdownMenu {
    width: 100%;
    overflow-x: scroll;
  }

  .sortbyShop ul.dropdownMenu li {
    min-width: 71px;
  }

  .sortbyShop ul.dropdownMenu li:last-child {
    min-width: 155px;
  }

  ul.allProducts {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  section.products .inProducts .topInProducts .filterCategories a:not(:last-child) {
    margin-inline-end: 8px;
    padding: 15px 4px;
  }

  ul.allProducts li .imageWrapper {
    margin: 5px;
    min-height: 140px;
  }

  ul.allProducts li .imageWrapper img {
    width: 90%;
  }
  ul.allProducts li form.cart {
    flex-direction: column;
    margin-inline: 2px;
  }
}

@media screen and (max-width: 425px) {
  .whatContract--image {
    width: 100%;
  }

  .whatContract select {
    width: 100%;
  }

  .woocommerce ul.products li.product{
    flex-basis: calc(100% - 16px);
  }
}

/*********************
END: MEDIA
*********************/