@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/fonts/helvetica_neue/HelveticaNeue-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

:root {
  --font-helvetica: 'Helvetica Neue', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

.all-products {
  border-top: 2px solid #E9EEF2;
}

.all-products .form-group .form-select {
  color: #7A8B94;
  font-size: 13px;
  font-family: var(--font-inter);
  border: 0.5px solid #BCBCBC;
}

.all-products .form-group .form-select:focus {
  box-shadow: unset;
}

.all-products .filter-sort-wrap {
  position: sticky !important;
  top: 55px;
  width: 100%;
  z-index: 2;
  cursor: pointer;
  background: #F4F4F4;
  backdrop-filter: blur(1px);
}

.all-products .filter-sort-wrap .filter-sort-item {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.all-products .filter-sort-wrap .border-end {
  border-color: 1px solid #000000;
}

.all-products .breadcrumb {
  font-family: var(--font-helvetica);
  font-weight: 500;
  font-size: 15px;
  color: #7A8B94;
  gap: 4px;
}

.all-products .breadcrumb .breadcrumb-item .tabler-book {
  color: #E3373E;
}

.all-products .breadcrumb .breadcrumb-item a {
  color: rgb(122, 139, 148);
}

.all-products .breadcrumb .active {
  color: #E3373E;
}

.filters {
  font-family: var(--font-inter);
  background: #fff;
  border: 1px solid #ECF0F3;
  border-radius: 20px;
  padding: 24px 20px;
}

.filters .filters-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.filters .filters-header a.clear-all {
  font-size: 14px;
  font-weight: 500;
  color: #E3373E;
  text-decoration: none;
}

.filters .filters-header a.clear-all:hover,
.filters .filters-header a.clear-all:focus {
  color: rgb(211.5789473684, 29.6210526316, 37.0263157895);
  text-decoration: underline;
}

.filters hr {
  margin: 16px 0;
  border: none;
  border-top: 1px solid #BCBCBC;
}

.filters .filter-section:not(:first-of-type) {
  margin-top: 4px;
}

.filter-section .filter-list {
  max-height: 150px;
  overflow-y: auto;
  scrollbar-width: none;
}

.filters .filter-section h6 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #3C4852;
}

.filters .filter-section .form-check {
  display: flex;
  align-items: center;
  min-height: auto;
  margin-bottom: 16px;
  padding-left: 0;
}

.filters .filter-section .form-check:last-child {
  margin-bottom: 0;
}

.filters .filter-section .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin: 0 12px 0 0;
  flex-shrink: 0;
  border: 2px solid #D7DBE0;
  background-color: #fff;
  cursor: pointer;
  float: none;
}

.filters .filter-section .form-check .form-check-input:checked {
  background-color: #1170F0;
  border-color: #1170F0;
  background-size: 14px;
}

.filters .filter-section .form-check .form-check-input:focus {
  box-shadow: none;
}

.filters .filter-section .form-check .form-check-label {
  font-size: 12px;
  color: #17181A;
  cursor: pointer;
}

#mobileFilter .offcanvas-body .filters .filter-section .filter-list {
  max-height: 150px;
  overflow-y: auto;
  scrollbar-width: none;
}

#mobileFilter .offcanvas-body .filters .filter-section .input-group .form-control {
  border-right: none;
  border-color: #FFDB00;
  padding: 4px 10px;
}

#mobileFilter .offcanvas-body .filters .filter-section .input-group .form-control:focus {
  box-shadow: unset;
  border-color: #FFDB00;
}

#mobileFilter .offcanvas-body .filters .filter-section .input-group .form-control::-moz-placeholder {
  font-size: 12px;
}

#mobileFilter .offcanvas-body .filters .filter-section .input-group .form-control::placeholder {
  font-size: 12px;
}

#mobileFilter .offcanvas-body .filters .filter-section .input-group .input-group-text {
  border-color: #FFDB00;
  border-left: none;
  background: #FFDB00;
  color: #fff;
}

#mobileFilter .filter-footer {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
}

#mobileFilter .filter-footer .btn {
  font-weight: 400;
  font-size: 15px;
  padding: 5px 20px;
}

.mobile-sorting {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.mobile-sorting .filters {
  padding: 10px;
}

.mobile-sorting .filters .form-check-input:focus {
  box-shadow: unset;
}

.mobile-sorting .filters .form-check-label {
  font-family: var(--font-inter);
  font-size: 16px;
}

@media (max-width: 768px) {
  .header {
    border-bottom: unset;
  }

  .all-products {
    margin-top: 60px;
    border-top: unset;
  }
}

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