.bg__light-grey {
  background: #f9f9f9;
}

:root {
  --bp-primary: #1f4dc7;
  --bp-red: #E21402;
  --bp-red-hover: #AC1002;
  --bp-black: #000;
}

.btn-primary {
  background: #ff3636;
  color: #fff;
  border: none;
  border-radius: 0;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #ff3636;
  border-radius: 5px;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff;
  background: #AC1002;
  border: 1px solid #AC1002;
  box-shadow: none;
}
.btn-primary:active {
  color: #202020 !important;
  background-color: #fff !important;
  border: 1px solid #AC1002 !important;
  box-shadow: none !important;
}

.btn-secondary {
  color: #1f4dc7;
  background: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #1f4dc7;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #1f4dc7;
  color: #fff;
  border: 1px solid #1f4dc7;
  box-shadow: none;
}
.btn-secondary:active {
  background-color: #1f4dc7 !important;
  color: #fff !important;
  border: 1px solid #1f4dc7 !important;
  box-shadow: none !important;
}

.btn-link {
  color: #fff;
  background: #1f4dc7;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #1f4dc7;
}
.btn-link:hover, .btn-link:focus {
  background: #1f4dc7;
  color: #fff;
  border: 1px solid #1f4dc7;
  box-shadow: none;
}
.btn-link:active {
  background-color: #1f4dc7 !important;
  color: #fff !important;
  border: 1px solid #1f4dc7 !important;
  box-shadow: none !important;
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-secondary.disabled,
.btn-secondary:disabled,
.btn-link.disabled,
.btn-link:disabled {
  cursor: no-drop;
  color: #000;
  background-color: #ced4da;
  border-color: #ced4da;
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus,
.btn-primary:disabled:hover,
.btn-primary:disabled:focus,
.btn-secondary.disabled:hover,
.btn-secondary.disabled:focus,
.btn-secondary:disabled:hover,
.btn-secondary:disabled:focus,
.btn-link.disabled:hover,
.btn-link.disabled:focus,
.btn-link:disabled:hover,
.btn-link:disabled:focus {
  color: #555555;
  background-color: #dee2e6;
  border-color: #dee2e6;
  box-shadow: none;
}

.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.4rem;
}

.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: #6589e7;
}

.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: #1f4dc7;
  border: 1px solid #1f4dc7;
  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: #e9ecef;
  border: 0 solid #dee2e6;
  border-radius: 0.4rem;
}

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

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

.noUi-active {
  background: #183c9b;
}

/* Disabled state;
  */
[disabled] .noUi-connect {
  background: #e9ecef;
}

[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: #202020;
  text-align: center;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
}

.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);
}

#subcategories-boxs {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
}

#subcat {
  display: flex;
  width: auto;
  overflow: auto;
  justify-content: space-between;
  padding-bottom: 0;
}
#subcat li {
  display: inline-block;
  width: auto;
  padding: 0;
  background-color: #F6F8FB;
  border: 1px solid transparent;
  border-radius: 10px;
  margin: 0 7px 7px 0;
}
#subcat li a {
  line-height: 34px;
  padding: 8px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #subcat {
    display: block;
  }
  #subcat li {
    margin: 7px;
  }
}

.search-filters {
  padding: 0;
  text-align: left;
}
.search-filters .custom-checkbox .custom-control-label:before {
  border-radius: 0px;
}
@media (min-width: 768px) {
  .search-filters .custom-checkbox {
    padding: 0 3px;
  }
}
.search-filters__blocks {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  width: auto;
  overflow: auto;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .search-filters__blocks {
    display: block;
    text-align: left;
    justify-content: left;
    overflow: visible;
  }
}
.search-filters__blocks .clear-all-wrapper {
  float: left;
  margin-right: 1rem;
}
.search-filters__block {
  border: 1px solid #E5E7EB;
  padding: 0;
  background-color: #FFFFFF;
  border-radius: 10px;
  position: relative;
  display: block;
  width: auto;
  margin: 0 7px 7px 0;
}
@media (min-width: 768px) {
  .search-filters__block {
    display: inline-block;
    margin: 0;
  }
}
.search-filters__header {
  font-size: inherit;
  cursor: pointer;
  padding: 0.25rem 2.25rem 0.25rem 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.195191 0.203526C0.320209 0.0785449 0.489748 0.00833454 0.666524 0.00833454C0.8433 0.00833454 1.01284 0.0785449 1.13786 0.203526L5.66652 4.73219L10.1952 0.203526C10.2567 0.139852 10.3303 0.0890636 10.4116 0.0541243C10.4929 0.0191849 10.5804 0.000794382 10.6689 2.51709e-05C10.7574 -0.00074404 10.8452 0.0161239 10.9272 0.0496445C11.0091 0.0831651 11.0835 0.132667 11.1461 0.195262C11.2087 0.257857 11.2582 0.332292 11.2917 0.414223C11.3253 0.496154 11.3421 0.58394 11.3414 0.672459C11.3406 0.760979 11.3222 0.848459 11.2873 0.929795C11.2523 1.01113 11.2015 1.08469 11.1379 1.14619L6.13786 6.14619C6.01284 6.27117 5.8433 6.34138 5.66652 6.34138C5.48975 6.34138 5.32021 6.27117 5.19519 6.14619L0.195191 1.14619C0.0702102 1.02117 0 0.851635 0 0.674859C0 0.498083 0.0702102 0.328544 0.195191 0.203526Z' fill='%23232323'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 8px 6px;
}
.search-filters__header:not(.collapsed) {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath transform='translate(0, 7) scale(1, -1)' fill-rule='evenodd' clip-rule='evenodd' d='M0.195191 0.203526C0.320209 0.0785449 0.489748 0.00833454 0.666524 0.00833454C0.8433 0.00833454 1.01284 0.0785449 1.13786 0.203526L5.66652 4.73219L10.1952 0.203526C10.2567 0.139852 10.3303 0.0890636 10.4116 0.0541243C10.4929 0.0191849 10.5804 0.000794382 10.6689 2.51709e-05C10.7574 -0.00074404 10.8452 0.0161239 10.9272 0.0496445C11.0091 0.0831651 11.0835 0.132667 11.1461 0.195262C11.2087 0.257857 11.2582 0.332292 11.2917 0.414223C11.3253 0.496154 11.3421 0.58394 11.3414 0.672459C11.3406 0.760979 11.3222 0.848459 11.2873 0.929795C11.2523 1.01113 11.2015 1.08469 11.1379 1.14619L6.13786 6.14619C6.01284 6.27117 5.8433 6.34138 5.66652 6.34138C5.48975 6.34138 5.32021 6.27117 5.19519 6.14619L0.195191 1.14619C0.0702102 1.02117 0 0.851635 0 0.674859C0 0.498083 0.0702102 0.328544 0.195191 0.203526Z' fill='%23232323'/%3E%3C/svg%3E") !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  padding: 10px 20px;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .search-filters__header:not(.collapsed) {
    position: inherit;
    z-index: 1010;
    margin: 0;
    padding: 0.25rem 2.25rem 0.25rem 1.25rem;
    background-color: transparent;
  }
}
.search-filters__collapse {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1005;
  padding: 60px 20px 20px 20px;
  border: 1px solid #f5f5f5;
  height: auto;
  overflow: auto;
}
.search-filters__collapse.show {
  display: block;
  min-width: 200px;
  max-height: 100vh;
}
.search-filters__collapse.show > div {
  text-align: left;
}
@media (min-width: 768px) {
  .search-filters__collapse.show > div {
    padding-left: 27px;
  }
}
@media (min-width: 768px) {
  .search-filters__collapse.show {
    padding: 2px 20px 20px 6px;
    position: absolute;
    top: 30px;
    left: 0px;
    right: initial;
    bottom: initial;
    background-color: #fff;
    max-height: 50vh;
  }
}
.search-filters__collapse .custom-control-label {
  white-space: nowrap;
}

.display-toggle__link {
  width: 1.7em;
  height: 1.7em;
  font-size: 1.125rem;
  line-height: 1.7em;
  color: #202020;
  text-align: center;
  border: 0;
}
.display-toggle__link:hover, .display-toggle__link:focus {
  color: #202020;
}
.display-toggle__link.active {
  color: #fff;
}
.display-toggle__icon {
  font-size: inherit;
  line-height: inherit;
}

.products-selection {
  padding: 0 5px;
}
.products-selection .select-custom {
  padding: 0.5rem 0.7rem 0.5rem 0.4rem;
  background-position-x: right 0.2rem;
}
@media (min-width: 768px) {
  .products-selection {
    padding: 0;
  }
}

.comments-pagination span,
.page-link {
  background: none;
  border: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #363636;
}

.page-item.active .page-link {
  font-weight: 400;
  color: #aeaeae;
  cursor: default;
  background: none;
}

.comments-pagination span:hover,
.page-link:hover {
  background: 0;
  color: #363636;
}

#left-column .card {
  background: #f5f5f5;
}

.product-miniature__desc p {
  margin: 0;
}
.product-miniature .price {
  bottom: 0;
}

section#main .product-miniature__actions .viewproduct {
  display: block;
  width: 180px;
  font-family: Roboto;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
}

.iksik {
  font-size: 15px !important;
}

#_mobile_filters .iksik {
  position: relative;
  bottom: 1px;
}

.card-title {
  text-transform: uppercase;
  font-size: 22px;
}

.card-header {
  background: #f5f5f5;
}

.product_bullets {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #787878;
}
.product_bullets ul li::before {
  padding-left: 8px;
  padding-right: 5px;
  content: url("data:image/svg+xml,%3Csvg width='10' height='11' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 0.455444C2.23865 0.455444 0 2.64171 0 5.33844C0 8.03516 2.23865 10.2214 5 10.2214C7.76135 10.2214 10 8.03516 10 5.33844C10 2.64171 7.76135 0.455444 5 0.455444ZM4.42308 7.21651L2.30769 5.15063L2.69231 4.58721L4.42308 5.71405L7.10712 3.46036L7.69231 4.02378L4.42308 7.21651Z' fill='%23787878'/%3E%3C/svg%3E%0A");
}

#category .promo-banner {
  padding: 0 0.625rem;
}

#category .banner_img {
  width: 100%;
}

.pagination {
  flex-wrap: wrap;
}
