.badge-big {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -moz-max-content;
  width: max-content;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.4rem;
  font-weight: 500;
}
.badge-big i {
  font-size: 1.5rem !important;
}

.noUi-target,
.noUi-target * {
  box-sizing: border-box;
  /* stylelint-disable */
  touch-action: none;
  /* stylelint-enable */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: none;
}

.noUi-base,
.noUi-connects {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Wrapper for all connect elements.
  */
.noUi-connects {
  z-index: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}

.noUi-connect,
.noUi-origin {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform-origin: 0 0;
  will-change: transform;
  transform-style: preserve-3d;
  transform-style: flat;
}

.noUi-connect {
  width: 100%;
  height: 100%;
  background: #e1565e;
}

.noUi-origin {
  width: 10%;
  height: 10%;
}

/* Give origins 0 height/width so they don't interfere with clicking the
  * connect elements.
  */
.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-touch-area {
  width: 100%;
  height: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

/* Offset direction
*/
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  right: auto;
  left: 0;
}

.noUi-state-drag * {
  /* stylelint-disable */
  cursor: inherit !important;
  /* stylelint-enable */
}

/* Slider size and handle placement;
  */
.noUi-horizontal {
  height: 8px;
  margin: 0 8px;
}

.noUi-handle {
  position: absolute;
  cursor: default;
  background: #B12028;
  border: 1px solid #B12028;
  border-radius: 50%;
  outline: none;
  backface-visibility: hidden;
}

.noUi-horizontal .noUi-handle {
  top: -4px;
  right: -8px;
  width: 16px;
  height: 16px;
}

.noUi-vertical {
  width: 8px;
  margin: 8px 0;
}

.noUi-vertical .noUi-handle {
  top: -8px;
  right: -4px;
  width: 16px;
  height: 16px;
}

/* Styling;
  * Giving the connect element a border radius causes issues with using transform: scale
  */
.noUi-target {
  position: relative;
  background: var(--gray-200);
  border: 0 solid var(--gray-300);
  border-radius: 0.5rem;
}

/* Handles and cursors;
  */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-active {
  background: #86181e;
}

/* Disabled state;
  */
[disabled] .noUi-connect {
  background: var(--gray-200);
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
  *
  */
.noUi-value {
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.noUi-value-sub {
  font-size: 10px;
  color: #ccc;
}

/* Markings;
  *
  */
.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

/* Horizontal layout;
  *
  */
.noUi-pips-horizontal {
  top: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 10px 0;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  width: 2px;
  height: 5px;
  margin-left: -1px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
  *
  */
.noUi-pips-vertical {
  top: 0;
  left: 100%;
  height: 100%;
  padding: 0 10px;
}

.noUi-value-vertical {
  padding-left: 25px;
  transform: translate(0, -50%);
}
.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  position: absolute;
  display: block;
  padding: 1px 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: center;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
}

.noUi-horizontal .noUi-tooltip {
  bottom: 120%;
  left: 50%;
  transform: translate(-50%, 0);
}

.noUi-vertical .noUi-tooltip {
  top: 50%;
  right: 120%;
  transform: translate(0, -50%);
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  bottom: 10px;
  left: auto;
  transform: translate(50%, 0);
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  top: auto;
  right: 28px;
  transform: translate(0, -18px);
}

.display-toggle__link {
  width: 1.7em;
  height: 1.7em;
  font-size: 1.125rem;
  line-height: 1.7em;
  color: var(--gray-900);
  text-align: center;
  background: var(--gray-100);
  border-radius: 50%;
}
.display-toggle__link:hover, .display-toggle__link:focus {
  color: var(--gray-900);
  background: var(--gray-200);
}
.display-toggle__link.active {
  color: var(--white);
  background: var(--primary);
}
.display-toggle__icon {
  font-size: inherit;
  line-height: inherit;
}

#mobile_filters .modal-dialog-aside {
  max-width: 500px;
}
.search-filters .list-group {
  display: flex;
  flex-direction: column;
}
.search-filters .list-group-item {
  width: 99%;
  padding: 0.55rem 0.25rem 0.55rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.8;
}
.search-filters .list-group-item .search-filters__header {
  font-weight: 400;
  font-size: 1rem;
}
.search-filters .list-group-item .magnitude {
  color: var(--gray-500);
}

#js-product-list-top .total_products {
  font-size: 1rem;
  font-weight: 500;
  color: #6c757d;
}
@media (max-width: 992px) {
  #js-product-list-top .total_products {
    font-size: calc(0.8rem + 0.3225806452vw);
  }
}
#js-product-list-top .search-select {
  cursor: pointer;
}
#js-product-list-top .search-select .select-title {
  position: relative;
  padding-right: 25px;
}
@media (max-width: 991.98px) {
  #js-product-list-top .search-select .select-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
#js-product-list-top .search-select .select-title span {
  color: var(--primary);
}
#js-product-list-top .search-select .select-title i {
  position: absolute;
  top: -1px;
  right: 0;
  color: #B12028;
}
#js-product-list-top .search-select .dropdown-menu {
  padding: 10px;
}
#js-product-list-top .search-select .dropdown-menu.show {
  position: absolute;
  top: 0 !important;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 5rem;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
@media (min-width: 576px) {
  #js-product-list-top .search-select .dropdown-menu.show {
    top: -15px !important;
    left: 100% !important;
    right: auto !important;
    transform: translate(-100%, 38px) !important;
  }
}
#js-product-list-top .filter_button {
  display: flex;
  align-items: center;
  font-size: 1rem;
  border: 1px solid var(--primary);
  border-radius: 0.5rem;
  font-weight: 400;
  padding: 0;
  cursor: pointer;
}
#js-product-list-top .filter_button .search-filters__title {
  padding: 10px 5px 10px 15px;
}
#js-product-list-top .filter_button .clear_icon {
  display: block;
  width: 15px;
  height: 19px;
  background-image: url(/themes/spaw25/assets//img-dist/2360edd191c37c0fb450bdea9a428156.svg);
  background-size: 15px 19px;
  background-repeat: no-repeat;
  margin: 0 8px;
}
#js-product-list-top .filter_button .filters_icon {
  display: block;
  width: 19px;
  height: 17px;
  background-image: url(/themes/spaw25/assets//img-dist/26964f3717f0c1e47cd2bbb997712b1e.svg);
  background-size: 19px 17px;
  background-repeat: no-repeat;
  padding: 10px 15px 10px 5px;
  margin: 10px 15px 10px 5px;
}

#subcategories ul li .card {
  border: 1px solid #B12028;
  overflow: hidden;
}
#subcategories ul li .card .card-body {
  padding: 0.5rem;
  transition: 0.3s all ease;
}
#subcategories ul li .card .card-body a {
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-100);
}
#subcategories ul li .card .card-body a img {
  transition: 0.3s all ease;
  background-color: #dee2e6;
}
#subcategories ul li:hover .card-body, #subcategories ul li:focus .card-body {
  background-color: var(--gray-200);
}
#subcategories ul li:hover .card-body img, #subcategories ul li:focus .card-body img {
  scale: 1.05;
}
