@charset "UTF-8";
.c-chevron {
  position: relative;
}
.c-chevron::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
@media (max-width: 767.98px) {
  .c-chevron--hide-mobile::after {
    display: none;
  }
}
.c-chevron--right::after {
  border-style: solid;
  border-width: 15px 15px 15px 0;
  border-color: transparent rgb(255, 255, 255) transparent transparent;
  top: 50%;
  right: -1px;
  z-index: 1;
  transform: translateY(-50%);
}
.c-chevron--top::after {
  border-style: solid;
  border-width: 15px 15px 0;
  border-color: rgb(255, 255, 255) transparent transparent;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.c-chevron--left::after {
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent rgb(255, 255, 255);
  top: 50%;
  left: -1px;
  z-index: 1;
  transform: translateY(-50%);
}
.c-chevron--bottom::after {
  border-style: solid;
  border-width: 0 15px 15px;
  border-color: transparent transparent rgb(255, 255, 255);
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.c-icon {
  position: relative;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  background-color: rgb(245, 245, 245);
}
.c-icon__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-icon__desc {
  font-size: 14px;
  line-height: 20px;
}

.c-loading-overlay {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 3;
}
.c-loading-overlay.show {
  display: block;
}
.c-loading-overlay__btn {
  width: 65px;
  height: 65px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.c-loading-overlay__btn .c-loading-overlay__icon-hover {
  display: none;
}
.c-loading-overlay__btn:hover .c-loading-overlay__icon {
  display: none;
}
.c-loading-overlay__btn:hover .c-loading-overlay__icon-hover {
  display: block;
}
.c-pagination {
  display: flex;
}
.c-pagination--right {
  justify-content: flex-end;
}
.c-pagination__item {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(224, 224, 224);
  color: rgb(66, 66, 66);
  padding: 8px 10px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .c-pagination__item {
    padding: 15px 20px;
    font-size: 16px;
  }
}
.c-pagination__item:hover {
  background-color: rgb(245, 245, 245);
  color: rgb(117, 117, 117);
  text-decoration: none;
}
.c-pagination__item:nth-child(n+2) {
  border-left: 0;
}
.c-pagination__item:last-child {
  border-right: 1px solid rgb(224, 224, 224);
}
.c-pagination__item--active {
  background-color: rgb(245, 245, 245);
  color: rgb(117, 117, 117);
}
.c-pagination__item--inactive {
  border-top: 0;
  border-bottom: 0;
  pointer-events: none;
}

.c-product-filter {
  padding: 0 5px;
}
.c-product-filter__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.c-product-filter__badge {
  background: rgb(33, 33, 33);
  color: rgb(255, 255, 255);
  padding: 0 5px;
}
.c-product-filter__badge:empty {
  display: none;
}
.c-product-filter__color {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  line-height: 12px;
  color: rgb(255, 255, 255);
  box-sizing: content-box;
}
.c-product-filter__color--black {
  background-color: rgb(33, 33, 33);
}
.c-product-filter__color--blue {
  background-color: rgb(60, 74, 109);
}
.c-product-filter__color--brown {
  background-color: rgb(118, 73, 68);
}
.c-product-filter__color--red {
  background-color: rgb(237, 28, 36);
}
.c-product-filter__color--gray {
  background-color: rgb(137, 131, 141);
}
.c-product-filter__color--green {
  background-color: rgb(81, 162, 81);
}
.c-product-filter__color--yellow {
  background-color: rgb(255, 224, 13);
}
.c-product-filter__color--orange {
  background-color: rgb(255, 162, 0);
}
.c-product-filter__color--purple {
  background-color: rgb(181, 59, 126);
}
.c-product-filter__color--pink {
  background-color: rgb(233, 52, 99);
}
.c-product-filter__color--white {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(224, 224, 224);
  color: rgb(33, 33, 33);
  margin: -1px;
}
.c-product-filter__color::before {
  font-size: 12px;
}
.c-product-filter__checkbox {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 10px 15px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-product-filter__checkbox {
    padding: 7px 15px;
  }
  .c-product-filter__checkbox:first-child {
    padding-top: 0;
  }
  .c-product-filter__checkbox:hover {
    color: rgb(158, 158, 158);
  }
  .c-product-filter__checkbox:hover .c-product-filter__color {
    border: 2px solid rgb(158, 158, 158);
    margin: -2px;
  }
}
.c-product-filter__checkbox.active {
  font-weight: bold;
}
.c-product-filter__checkbox.active .c-product-filter__color::before {
  content: "\ea0b";
  vertical-align: middle;
}
.c-product-filter__checkbox.disabled {
  pointer-events: none;
  color: rgb(189, 189, 189);
}
.c-product-filter__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 10px 15px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-product-filter__option {
    padding: 7px 15px;
  }
  .c-product-filter__option:first-child {
    padding-top: 0;
  }
  .c-product-filter__option:hover {
    color: rgb(158, 158, 158);
  }
}
.c-product-filter__option.active {
  font-weight: bold;
}
.c-product-filter__option.active::after {
  content: "\ea0b";
  font-family: "Font Awesome 5 Pro Critical", "Font Awesome 5 Pro";
  font-weight: 400;
}
.c-product-filter__search {
  width: 100%;
  height: 40px;
  padding: 12px 25px 12px 10px;
  border-radius: 0;
  font-size: 13px;
}
.c-product-filter__search-wrapper {
  margin: 15px;
  position: relative;
}
.c-product-filter__search-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  color: rgb(158, 158, 158);
}
.c-product-filter__search-icon::before {
  content: "\ea27";
}
.c-product-filter__search-icon.icon-clear::before {
  content: "怐";
}
.c-product-filter__popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  flex-direction: column;
  align-content: flex-start;
  z-index: 1030;
  background-color: rgb(255, 255, 255);
}
.c-product-filter__popup.show {
  display: flex;
}
.c-product-filter__popup-heading {
  display: flex;
  flex-basis: 50px;
  justify-content: space-between;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  background-color: rgb(245, 245, 245);
}
.c-product-filter__popup-body {
  flex: 1;
  overflow-y: auto;
}
.c-product-filter__popup-footer {
  flex-basis: 60px;
  padding: 20px 15px;
  line-height: 20px;
}

/*# sourceMappingURL=blog-noncritical.css.map */
