@charset "UTF-8";
.category-description {
  margin: 20px 0 30px;
}

.subtitle {
  color: #6c757d;
  font-weight: 700;
  font-size: 1.4em;
}

.products-container {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 50px;
  gap: 50px;
  flex-direction: row-reverse;
}

/* Paginstion + listing */
.listing-pagination {
  padding: 8px 0 15px;
  font-size: 0.9em;
  border-bottom: 1px solid #F6F6F6;
}

/* Pagination */
.pagination-container {
  align-items: center;
}

.pagination p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 10px 0 0;
}
.pagination p span {
  font-weight: 700;
  font-size: 1.2em;
  color: #2A2A2A;
}
.pagination .pages > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 30px;
  border: 1px solid #e9ecef;
  border-left: 0;
}
.pagination .pages > *:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-left: 1px solid #e9ecef;
}
.pagination .pages > *:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.pagination .pages a:hover {
  background: #F6F6F6;
  color: red !important;
}
.pagination .pages .active {
  background: #D02229;
  color: #fff;
  border-color: #D02229;
}
.pagination .pages .previous:before {
  content: "←";
}
.pagination .pages .next:before {
  content: "→";
}

.listing > .pagination-container {
  margin: 15px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid #F6F6F6;
}

.pagination-container .show-more.loading {
  color: transparent !important;
  background: #ddd url("/static/spinner.svg") no-repeat center/40% !important;
  border: 1px solid #ddd !important;
}

/* Sorting */
#sorting .disabled {
  font-weight: 700;
  color: #D02229;
}
#sorting a {
  color: #626262;
}

/* Products listing */
.listing {
  width: 100%;
}

.products {
  display: flex;
  flex-wrap: wrap;
  margin-top: -30px;
  margin-right: -15px;
  margin-left: -15px;
}
.products article {
  flex: 0 0 auto;
  width: 25%;
  padding-right: 15px;
  padding-left: 15px;
  margin-top: 50px;
}
.products .product .pn {
  font-size: 1em;
}
.products .product .add-to-cart {
  font-size: 0.9em;
}
.products .product .add-to-favorites:before,
.products .product .remove-from-favorites:before {
  width: 20px;
  height: 20px;
}
.products .product .pb > * {
  height: 48px;
}
.products .product .img {
  height: 200px;
  margin: 0 0 20px;
}

/* Filter */
.filter {
  width: 245px;
  min-width: 245px;
}
.filter .subtitle {
  margin: 0 0 30px;
}
.filter .price {
  background: #fff !important;
}
.filter .filter-group {
  margin: 0 0 25px;
  position: relative;
}
.filter .filter-group .title {
  position: relative;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 700;
  margin: 0 0 10px;
}
.filter .filter-group label {
  font-size: 0.9em;
  display: inline;
}
.filter .filter-group .disabled {
  opacity: 0.4;
}
.filter .filter-group .disabled:hover input {
  cursor: not-allowed;
}
.filter .filter-group.collapsed .items {
  display: none;
}
.filter .filter-group.price-filter .title {
  cursor: default;
}
.filter .filter-group:not(.price-filter) .title:after {
  -webkit-transition: all ease-in-out 0.15s;
  -moz-transition: all ease-in-out 0.15s;
  -ms-transition: all ease-in-out 0.15s;
  -o-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
  content: "";
  border-bottom: 1px solid #2A2A2A;
  border-right: 1px solid #2A2A2A;
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  position: absolute;
  right: 7px;
  top: 7px;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.filter .title.expander-down:after {
  -webkit-transform: rotate(-135deg) !important;
  -ms-transform: rotate(-135deg) !important;
  transform: rotate(-135deg) !important;
}
.filter .price-filter .items > div:first-child {
  gap: 0;
}
.filter .price-filter #price_from {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.filter .price-filter #price_to {
  position: relative;
  left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.filter .tip {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 28px -10px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 0 5px 28px -10px rgba(0, 0, 0, 0.49);
  box-shadow: 0 5px 28px -10px rgba(0, 0, 0, 0.49);
  position: absolute;
  top: -3px;
  right: -140px;
  background: #D02229;
  font-size: 12px;
  padding: 5px;
  width: 150px;
  text-align: center;
  z-index: 20;
  transition: visiblity 0.5s, opacity 0.5s;
  opacity: 0;
  visibility: hidden;
  color: #fff;
}
.filter .tip a {
  color: #fff;
  text-decoration: underline !important;
}
.filter .tip a:hover {
  color: #fff;
}
.filter .tip.show {
  opacity: 1;
  visibility: visible;
}
.filter .tip:after {
  content: "";
  display: block;
  position: absolute;
  left: -8px;
  top: 50%;
  margin-top: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #D02229;
  z-index: 10;
}
.filter .items > div {
  margin: 0 0 5px;
  display: flex;
  gap: 5px;
  align-items: flex-start;
}
.filter .items input[type=checkbox] {
  position: relative;
  top: 2px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9em;
  margin: 0 0 30px;
}
.tags a {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  background: #f4f5f6;
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  border: 0;
}
.tags a:hover {
  background: #2A2A2A;
  color: #fff;
}
.tags .subtitle {
  margin: 0 0 20px;
  width: 100%;
}

/* Description */
.bottom-description h2,
.bottom-description h3,
.bottom-description h4 {
  margin: 15px 0 10px;
}
.bottom-description p {
  margin: 0 0 10px;
}
.bottom-description ul {
  margin: 0 0 15px 15px;
}
.bottom-description li {
  list-style: disc;
}

.is-special-offers .toggle-filter,
.is-special-offers .toggle-sorting {
  display: none;
}

@media screen and (min-width: 769px) {
  #filterform {
    display: block !important;
  }
}
@media screen and (max-width: 1400px) {
  .products .product .pb > * {
    height: 38px;
  }
  .product .add-to-cart {
    padding: 0 20px;
    letter-spacing: 0;
    gap: 5px;
  }
}
@media screen and (max-width: 1250px) {
  .products article {
    width: 33.3333%;
  }
  .filter {
    width: 200px;
    min-width: 200px;
  }
  .filter .filter-group .title {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 1100px) {
  .products article {
    width: 50%;
  }
  .product .pb {
    justify-content: flex-start;
  }
  .product .add-to-cart {
    width: auto;
  }
  .listing-pagination {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .products-container {
    flex-direction: column-reverse;
    position: relative;
    gap: 20px;
  }
  .filter {
    width: 100%;
    min-width: 100%;
  }
  .filter .subtitle {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    font-size: 0.9em;
    font-weight: 400;
    padding: 10px 15px;
    color: #6c757d;
    border: 1px solid #6c757d;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    margin: 0;
  }
  .filter .subtitle:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g fill="rgb(108,117,125)"><path d="M22,19a.99974.99974,0,0,1-1,1H11.81573a2.982,2.982,0,0,1-5.6314,0H3a1,1,0,0,1,0-2H6.18427a2.98208,2.98208,0,0,1,5.63146,0H21A.99974.99974,0,0,1,22,19Zm-1-8H18.81573a2.98208,2.98208,0,0,0-5.63146,0H3a1,1,0,0,0,0,2H13.18433a2.982,2.982,0,0,0,5.6314,0H21a1,1,0,0,0,0-2ZM3,6H8.18433a2.982,2.982,0,0,0,5.6314,0H21a1,1,0,0,0,0-2H13.81573A2.98208,2.98208,0,0,0,8.18427,4H3A1,1,0,0,0,3,6Z"/></g></svg>') no-repeat center/100%;
  }
  .filter .filter-group .title {
    display: flex;
    gap: 20px;
  }
  .filter .filter-group .title:after {
    position: relative !important;
    top: 6px !important;
    right: 0 !important;
  }
  .filter .filter-group .tip {
    left: auto;
    right: 0;
  }
  .filter .buttons {
    flex-direction: row;
    justify-content: space-between;
  }
  .filter .buttons > * {
    width: 48%;
  }
  #filterform {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    display: none;
    padding: 15px;
    background: #f7f7f7;
    margin: 10px 0 0;
  }
  #sorting {
    padding: 0;
    justify-content: flex-end;
    position: absolute;
    top: 12px;
    right: 0;
    text-align: right;
    gap: 10px;
    display: inline-flex;
  }
  .cancel-filter {
    background: rgba(255, 255, 255, 0.4);
    color: #6c757d;
    border: 1px solid #6c757d;
  }
  .products .product .img {
    height: 150px;
    margin: 0 0 5px;
  }
  .listing-pagination .pagination-container {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  #sorting {
    top: 3px;
    gap: 0;
    flex-wrap: wrap;
  }
  #sorting p {
    width: 100%;
  }
  #sorting > *:not(p) {
    margin: 0 0 0 10px;
  }
  .listing {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 460px) {
  .filter .subtitle {
    padding: 10px;
  }
  .products article {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #F6F6F6;
  }
  .products .product .pn {
    min-height: auto;
    font-size: 1.1em;
  }
  .products .product .pb {
    justify-content: flex-start;
  }
  .products .product .product-price {
    margin: 0 0 5px;
  }
  .products .product .add-to-cart {
    width: auto;
  }
}

/*# sourceMappingURL=category.css.map */
