/*============================================================================================*/
/* LISTING */
/*============================================================================================*/
.listing_header h1 {
  font-size: 32px;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .listing_header h1 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.products__filter {
  width: 300px;
}
@media (max-width: 991px) {
  .products__filter {
    display: none;
    width: initial;
  }
}
.products__listing {
  flex-basis: calc(100% - 310px);
}
@media (max-width: 991px) {
  .products__listing {
    flex-basis: 100%;
  }
}
.products h1 {
  font-weight: 500;
  font-size: 26px;
  font-size: 1.625rem;
}
.products h2 {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
}
.products h3 {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}

.toolbox {
  padding-right: 15px;
  border: 1px solid #dddddd;
  margin-bottom: 10px;
  height: 50px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.toolbox__view_mode {
  color: #444;
  margin-left: 14px;
}
@media (max-width: 575px) {
  .toolbox__view_mode {
    display: none;
  }
}
.toolbox__view_mode i {
  font-size: 20px;
  font-size: 1.25rem;
}
.toolbox__view_mode i:first-child {
  margin-right: 5px;
}
.toolbox__view_mode a {
  color: #444;
}
.toolbox__filters {
  display: none;
}
.toolbox__filters i {
  font-size: 20px;
  font-size: 1.25rem;
}
@media (max-width: 991px) {
  .toolbox__filters {
    display: block;
  }
}
.toolbox__filters a {
  color: #444;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (max-width: 575px) {
  .toolbox__filters span {
    display: none;
  }
}
.toolbox__dropdown {
  position: absolute;
  left: 10px;
  top: 7px;
  min-width: 160px;
  min-height: 36px;
  max-height: 36px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  color: #444;
  z-index: 9999;
  outline: none;
  border: 1px solid #dddddd;
  border-radius: 2px;
  background-color: #f3f3f3;
  transition: max-height 0.3s;
}
.toolbox__dropdown input:focus + label {
  background: #def;
}
.toolbox__dropdown input {
  width: 1px;
  height: 1px;
  display: inline-block;
  position: absolute;
  opacity: 0.01;
}
.toolbox__dropdown label {
  border-top: 0.06em solid #d9d9d9;
  display: block;
  height: 36px;
  line-height: 36px;
  padding-left: 1em;
  padding-right: 3em;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: 0.3s color ease-in-out;
}
.toolbox__dropdown label:nth-child(2) {
  margin-top: 36px;
  border-top: 1px solid #d9d9d9;
}
.toolbox__dropdown input:checked + label {
  display: block;
  border-top: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.toolbox__dropdown input:checked + label:nth-child(2) {
  margin-top: 0;
  position: relative;
}
.toolbox__dropdown::after {
  content: "";
  position: absolute;
  z-index: 10;
  width: 24px;
  height: 24px;
  right: 12px;
  top: 6px;
  background-image: url("../img/sort.svg");
  background-repeat: no-repeat;
}
.toolbox__dropdown.expanded {
  border: 1px solid #79797a;
  background: #fff;
  border-radius: 2px;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0;
  max-height: 240px;
}
.toolbox__dropdown.expanded label {
  border-top: 1px solid #d9d9d9;
}
.toolbox__dropdown.expanded label:hover {
  color: #79797a;
}
.toolbox__dropdown.expanded input:checked + label {
  color: #79797a;
}

.row_item {
  margin-bottom: 30px;
}
.row_item figure {
  position: relative;
  margin-bottom: 0;
  -webkit-box-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.25);
  box-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .row_item figure {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .row_item figure img {
    width: 100%;
    height: auto;
  }
}
.row_item .rating {
  margin-bottom: 5px;
}
.row_item a h3 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #444;
}
@media (max-width: 360px) {
  .row_item a h3 {
    font-size: 16px;
    font-size: 1rem;
  }
}
.row_item a h3:hover {
  color: #34a854;
}
.row_item p {
  margin-bottom: 20px;
}
.row_item ul {
  margin: 15px 0 0 0;
  padding: 0;
  list-style: none;
}
.row_item ul li {
  display: inline-block;
}
.row_item ul li a span {
  display: none;
}

.filter {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .filter {
    padding: 0 10px;
    margin-top: 50px;
  }
}
.filter__header {
  display: none;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  padding-left: 20px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #444;
}
.filter__header span {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 991px) {
  .filter__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.filter__close {
  all: unset;
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.filter__close i {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
}
@media (max-width: 991px) {
  .filter__body {
    overflow: hidden;
    overflow-y: auto;
    position: absolute;
    top: 50px;
    bottom: 60px;
    left: 0;
    right: 0;
  }
  .filter__body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  .filter__body::-webkit-scrollbar-thumb {
    background: #b4b4b4;
  }
  .filter__body::-webkit-scrollbar-track {
    background: #e9e9e9;
  }
  .filter__body {
    scrollbar-face-color: #b4b4b4;
    scrollbar-track-color: #e9e9e9;
  }
}
.filter__footer {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
}
@media (max-width: 991px) {
  .filter__footer {
    position: absolute;
    border-top: 1px solid #dddddd;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f4f4f4;
  }
}

.filter-group {
  font-size: 15px;
  font-size: 0.9375rem;
  border: 1px solid #dddddd;
  margin-bottom: 10px;
}
.filter-group form {
  display: block;
}
.filter-group__header {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #444;
  min-height: 50px;
  padding: 10px 20px;
  position: relative;
  background-color: #f4f4f4;
}
.filter-group__header:after {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: "themify";
  font-size: 14px;
  font-size: 0.875rem;
  position: absolute;
  right: 10px;
  top: 12px;
}
.filter-group__header.opened:after {
  content: "\e64b";
  transform: rotate(180deg);
}
.filter-group__header.closed:after {
  content: "\e64b";
  transform: rotate(0);
}
.filter-group__body {
  padding: 15px;
}
@media (min-width: 992px) {
  .filter-group__body {
    overflow: hidden;
    overflow-y: auto;
    max-height: 400px;
  }
  .filter-group__body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  .filter-group__body::-webkit-scrollbar-thumb {
    background: #b4b4b4;
  }
  .filter-group__body::-webkit-scrollbar-track {
    background: #e9e9e9;
  }
  .filter-group__body {
    scrollbar-face-color: #b4b4b4;
    scrollbar-track-color: #e9e9e9;
  }
}
.filter-group__subcategories {
  padding: 15px;
}
.filter-group__subcategories a {
  color: #444;
}
.filter-group label small {
  float: right;
  color: #dddddd;
  padding-top: 3px;
}
.filter-group ul {
  list-style: none;
  padding: 0 0 0 10px;
  margin: 0;
}
.filter-group ul li {
  margin-bottom: 8px;
}
.filter-group ul li:last-child {
  margin-bottom: 0;
}

.filter_link {
  all: unset;
  display: block;
  position: relative;
  padding: 0 0 0 28px;
  line-height: 20px;
  margin-bottom: 10px;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  color: #444;
  width: calc(100% - 20px);
}
.filter_link.checked .checkbox {
  background-color: #34a854;
  border: 1px solid transparent;
}
.filter_link.checked .checkbox:after {
  display: block;
}

.checkbox {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  border: 1px solid #dddddd;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

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