.primary-color {
  color: #004c98;
}

.secondary-color {
  color: #fe8c0e;
}

.white-color {
  color: #fff;
}

.dark-color {
  color: #1a1a1a;
}

.primary-bg {
  background: #004c98;
}

.secondary-bg {
  background: #fe8c0e;
}

.white-bg {
  background: #fff;
}

.dark-bg {
  background: #1a1a1a;
}

.primary-btn {
  background-color: #004c98;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  padding: 8px 10px;
  transition: 0.3s;
  border: 1px solid #004c98;
}
.primary-btn:hover {
  box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, 0.3);
}

.primary-outline-btn {
  border: 1px solid #004c98;
  color: #004c98;
  background: transparent;
  border-radius: 10px;
  font-size: 14px;
  padding: 8px 10px;
  transition: 0.3s;
}
.primary-outline-btn:hover {
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.list-products {
  margin-top: 20px;
  margin-bottom: 20px;
}
.list-products .hero {
  margin-bottom: 30px;
}
.list-products .hero .breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.list-products .hero .breadcrumb ul li {
  font-size: 14px;
  position: relative;
}
.list-products .hero .breadcrumb ul li:not(:first-child) {
  padding-right: 12px;
}
.list-products .hero .breadcrumb ul li:not(:first-child)::before {
  content: "/";
  position: absolute;
  right: 0;
  font-size: 14px;
  color: #999;
}
.list-products .hero .breadcrumb ul li a {
  color: #999;
  transition: 0.3s;
}
.list-products .hero .breadcrumb ul li a:hover {
  color: #1a1a1a;
}
.list-products .hero .breadcrumb ul li.active {
  color: #1a1a1a;
}
.list-products .hero h1 {
  font-family: "Yekan-ExtraBold";
}
.list-products .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-content: flex-end;
}
.list-products .modal-content {
  background: #fff;
  position: relative;
  margin: auto;
  bottom: 0px; /* Start offscreen */
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
  animation: slideUp 0.4s ease-out forwards;
}
.list-products #sort .modal-content {
  height: max-content !important;
}
.list-products .close {
  cursor: pointer;
}
@keyframes slideUp {
  from {
    transform: translateY(1000px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.list-products .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}
.list-products .mobile-filter .filter-mobile,
.list-products .mobile-filter .sort-mobile {
  width: 50%;
  padding: 4px;
}
.list-products .mobile-filter .filter-mobile button,
.list-products .mobile-filter .sort-mobile button {
  width: 100%;
  border: 1px solid #cdcdcd;
  color: #1a1a1a;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border-radius: 6px;
  background: transparent;
  font-family: "yekan-Re";
  cursor: pointer;
}
.list-products .mobile-filter .filter-mobile button img,
.list-products .mobile-filter .sort-mobile button img {
  width: 14px;
}
.list-products .categories {
  margin-bottom: 30px;
}
.list-products .categories .cat-card {
  text-align: center;
  padding: 10px;
  background: #f7f7f7;
  border-radius: 8px;
}
.list-products .categories .cat-card a {
  color: #1a1a1a;
  font-size: 12px;
}
.list-products .categories .cat-card a img {
  height: 85px;
  width: auto;
  margin: auto;
}
.list-products .categories .cat-card a p {
  margin-top: 6px;
}
.list-products .sort-mobile ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.list-products .sort-mobile ul li {
  width: 100%;
}
.list-products .sort-mobile ul button {
  background: transparent;
  border: 0;
  color: #898989;
  font-family: "Yekan-Re";
  padding: 0;
  border: 1px solid #cdcdcd;
  cursor: pointer;
  width: 100%;
  border-radius: 8px;
  padding: 8px;
  font-size: 14px;
}
.list-products .sort-mobile ul button.active {
  border-color: #fe8c0e;
  color: #fe8c0e;
}
.list-products .sort {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 12px;
  padding: 0 8px;
}
.list-products .sort .sort-title {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-family: "Yekan-Md";
}
.list-products .sort .sort-title img {
  width: 16px;
}
.list-products .sort ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
.list-products .sort ul button {
  background: transparent;
  border: 0;
  color: #898989;
  font-family: "Yekan-Re";
  padding: 0;
  cursor: pointer;
}
.list-products .sort ul button.active {
  color: #fe8c0e;
}
.list-products .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 12px;
}
.list-products .pagination li button {
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  padding: 4px 10px;
  font-size: 16px;
  font-family: "Yekan-Re";
  border-radius: 6px;
  cursor: pointer;
}
.list-products .pagination li button.active {
  background: #004c98;
  color: #fff;
  border-color: #004c98;
}
.list-products .pagination li:first-child button, .list-products .pagination li:last-child button {
  font-family: "Yekan-Re";
  font-size: 14px;
  background: transparent;
  border: 0;
  padding: 0;
  color: #1a1a1a;
}
.list-products .pagination li:first-child button.disabled, .list-products .pagination li:last-child button.disabled {
  color: #ccc;
  cursor: default;
}
.list-products .filters {
  padding-top: 4px;
  padding-left: 10px;
  position: sticky;
  top: 0.5rem;
}
.list-products .filter-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Yekan-Bold";
  font-size: 16px;
  margin-bottom: 12px;
}
.list-products .filter-title img {
  width: 24px;
}
.list-products .card {
  background: #fff;
  /* Rounded sliders */
}
.list-products .card .switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 20px;
}
.list-products .card .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.list-products .card .switch-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding: 0.25rem;
}
.list-products .card .switch-box label {
  cursor: pointer;
  width: 100%;
  font-family: "Yekan-Md";
}
.list-products .card .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #efefef;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 0 !important;
}
.list-products .card .slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 5px;
  bottom: 5px;
  background-color: #b3b3b3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.list-products .card input:checked + .slider {
  background-color: #1a1a1a;
}
.list-products .card input:checked + .slider::before {
  background-color: #fff;
}
.list-products .card input:checked + .slider:before {
  -webkit-transform: translateX(21px);
  -ms-transform: translateX(21px);
  transform: translateX(21px);
}
.list-products .card .slider.round {
  border-radius: 34px;
}
.list-products .card .slider.round:before {
  border-radius: 50%;
}
.list-products .card .accordion-item {
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  padding: 6px;
  margin-bottom: 10px;
}
.list-products .card .accordion-item .cat {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  color: #737373;
}
.list-products .card .accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}
.list-products .card .accordion-item .accordion-header {
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 14px;
  gap: 8px;
  position: relative;
  font-family: "Yekan-Md";
}
.list-products .card .accordion-item .accordion-header::after {
  content: "";
  position: absolute;
  transition: 0.3s;
  left: 2px;
  top: 0;
  bottom: 0;
  align-content: center;
  background-image: url("../images/chevron-down-menu.svg");
  background-size: 100% 100%;
  width: 18px;
  height: 100%;
}
.list-products .card .accordion-item .accordion-header img {
  height: 26px;
}
.list-products .card .accordion-item .accordion-content {
  display: none;
  padding: 4px;
  border-top: 1px solid #cdcdcd;
  max-height: 14rem;
  overflow: auto;
}
.list-products .card .accordion-item .accordion-content li {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0;
  font-size: 14px;
  padding: 4px 0;
}
.list-products .card .accordion-item .accordion-content li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.list-products .card .accordion-item .accordion-content li .checkbox-input {
  display: block;
  position: relative;
  padding-right: 26px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.list-products .card .accordion-item .accordion-content li .checkbox-input input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  inset: 0;
}
.list-products .card .accordion-item .accordion-content li .checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 1px solid #999;
  border-radius: 4px;
}
.list-products .card .accordion-item .accordion-content li .checkbox-input input:checked ~ .checkmark {
  background-color: #1a1a1a;
}
.list-products .card .accordion-item .accordion-content li .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.list-products .card .accordion-item .accordion-content li .checkbox-input input:checked ~ .checkmark:after {
  display: block;
}
.list-products .card .accordion-item .accordion-content li .checkbox-input .checkmark:after {
  left: 5px;
  top: 1px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.list-products .card .ui-slider-handle {
  border-radius: 50%;
  background-color: #fe8c0e;
  width: 15px;
  height: 15px;
  border: 0;
  outline: none;
  cursor: pointer;
}
.list-products .card .ui-slider-horizontal {
  background: #e7e7e7;
  height: 0.4em;
  border: 0 !important;
}
.list-products .card .price-filter-range {
  margin-top: 10px;
}
.list-products .card .ui-slider-range {
  background: #fe8c0e;
}
.list-products .card .slider-price {
  padding: 0.75rem;
}
.list-products .card .ui-state-active {
  border: 0 !important;
}
.list-products .card .btn-submit {
  width: 100%;
  background: #004c98;
  color: #fff;
  border: 1px solid #004c98;
  padding: 6px;
  font-size: 14px;
  border-radius: 8px;
  margin-top: 10px;
  font-family: "Yekan-Md";
  transition: 0.3s;
  cursor: pointer;
}
.list-products .card .btn-submit:hover {
  background: transparent;
  color: #004c98;
}
.list-products .card .min,
.list-products .card .max {
  padding: 0.5rem;
  margin-top: 8px;
}
.list-products .card .min small,
.list-products .card .max small {
  font-family: "Yekan-ExtraBold";
}
.list-products .card .min input,
.list-products .card .max input {
  border: 0;
  border-bottom: 1px solid #999;
  text-align: center;
  font-family: "Yekan-ExtraBold";
  font-size: 18px;
}
.list-products .card .min input:focus, .list-products .card .min input:active,
.list-products .card .max input:focus,
.list-products .card .max input:active {
  border: 0;
  outline: none;
  border-bottom: 1px solid #999;
}
.list-products .description {
  margin-top: 50px;
}

@media (min-width: 1400px) {
  .filters {
    width: 23%;
  }
  .products {
    width: 77%;
  }
  .products .product-col {
    width: 25%;
    padding: 4px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .filters {
    width: 30%;
  }
  .products {
    width: 70%;
  }
  .products .product-col {
    width: 33.33%;
    padding: 4px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .filters {
    width: 30%;
  }
  .products {
    width: 70%;
  }
  .products .product-col {
    width: 33.33%;
    padding: 4px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .filters {
    width: 100%;
  }
  .products {
    width: 100%;
  }
  .products .product-col {
    width: 33.33%;
    padding: 4px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .filters {
    width: 100%;
  }
  .products {
    width: 100%;
  }
  .products .product-col {
    width: 50%;
    padding: 4px;
  }
}
@media (max-width: 576px) {
  .hero {
    margin-bottom: 20px !important;
  }
  .hero h1 {
    font-size: 25px;
  }
  .hero .breadcrumb li {
    font-size: 12px !important;
  }
  .filters {
    width: 100%;
  }
  .products {
    width: 100%;
  }
  .products .product-col {
    width: 100%;
    padding: 4px;
  }
  .products .product-col .product-card {
    padding: 6px;
  }
  .products .product-col .product-card a {
    display: flex;
    align-items: stretch;
  }
  .products .product-col .product-card a .rate img {
    width: 18px;
  }
  .products .product-col .product-card a .old-price {
    height: unset;
  }
  .products .product-col .product-card a .title {
    margin-top: 0;
    padding-left: 40px;
    font-size: 13px;
    height: 2.5rem;
  }
  .products .product-col .product-card a .price .non-existent {
    text-align: left !important;
  }
  .products .product-col .product-card a img {
    width: 120px;
  }
  .products .product-col .product-card a .info {
    border: 0;
  }
}

/*# sourceMappingURL=products-list.css.map */
