.products-grid-load-all .load-all-products {
  display: block;
  line-height: 1.33;
  border: solid 1px var(--porto-primary-color);
  width: 100%;
  height: auto;
  text-indent: 0;
  background: none;
  max-width: 420px;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--porto-primary-color);
  border-radius: 4px;
  padding: 20px 30px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.products-grid-load-all .load-more-spinner {
  position: relative;
  text-align: center;
  display: block;
}

.products-grid-load-all .load-more-spinner .lm-loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
  display: inline-block;
  margin-right: 10px;
}

.products-grid-load-all .load-more-spinner .lm-loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #000000;
  animation: prixClipFix 2s linear infinite;
}

.no-addtocart ul.products li .product-inner {
  position: relative;
}

.no-addtocart ul.products li .product-inner .add-links-wrap .add-links {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
}

.no-addtocart ul.products li .product-inner .add-links-wrap .add-links .button.add_to_cart_button,
.no-addtocart ul.products li .product-inner .add-links-wrap .add-links .button.add_to_cart_read_more {
  display: none !important;
}

.no-addtocart ul.products li .product-inner .add-links-wrap .add-links .yith-wcwl-add-to-wishlist > div {
  position: relative;
  top: unset;
  left: unset;
}

.no-addtocart ul.products li .product-inner .add-links-wrap .add-links .yith-wcwl-add-to-wishlist a {
  border: none;
  background: transparent;
}

/* Animations */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
