.cat {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
.cat .chose-item {
  position: relative;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.cat .chose-item img {
  width: 100%;
}
.cat .chose-item .item .cat_name {
  width: 100%;
  height: 83px;
  position: absolute;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.cat .chose-item .item .cat_name p {
  font-size: 16px;
  font-weight: bold;
  color: #737373;
  text-align: center;
  transition: 0.5s all ease-in-out;
}
.cat .chose-item .item .cat_name:before {
  content: "";
  position: absolute;
  bottom: -83px;
  width: 300px;
  height: 166px;
  background: #f8f8f8;
  border-radius: 100% 100%;
  z-index: -1;
  transition: 0.5s all ease-in-out;
}
@media (max-width: 500px) {
  .cat .chose-item .item .cat_name:before {
    display: none;
  }
}
.cat .chose-item .item:hover .cat_name p {
  color: #fff;
}
.cat .chose-item .item:hover .cat_name:before {
  background: #e42014;
}

.nav-tabs {
  list-style-type: none;
  display: flex;
  margin-bottom: 40px;
  border: none !important;
  padding: 0;
  justify-content: center;
}
.nav-tabs li {
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin-bottom: 0 !important;
  background: #F1F3F2;
  color: #737373;
  margin-right: 10px;
}
.nav-tabs li:last-child {
  margin-right: 0;
}
.nav-tabs li a {
  background-color: #F1F3F2 !important;
  border: none !important;
  color: #737373;
  text-transform: uppercase;
}
.nav-tabs .active {
  background: #e42014;
  color: #fff;
}
.nav-tabs .active a {
  background-color: #e42014 !important;
  border: none !important;
  color: #fff !important;
}

.tab-content {
  width: 100%;
}
.tab-content .tab-pane {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
.tab-content .tab-pane.active {
  display: grid !important;
}
.tab-content .tab-pane .item-prod-last {
  margin-right: 0px !important;
}
@media all and (max-width: 768px) {
  .tab-content .tab-pane .item-2nd {
    margin-right: 0px !important;
  }
}
.tab-content .tab-pane .item2 {
  position: relative;
  border: 1px solid #DDDDDD;
  border-radius: 20px;
  transition: 0.2s all ease-in-out;
  overflow: hidden;
  padding-bottom: 30px;
}
.tab-content .tab-pane .item2 img {
  width: 100%;
  border-radius: 20px;
  transition: 0.2s all ease-in-out;
}
.tab-content .tab-pane .item2 .cat_name {
  color: #737373;
  text-align: left;
  padding: 0px 15px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}
.tab-content .tab-pane .item2 .cat_name p {
  height: 20px;
  overflow: hidden;
}
.tab-content .tab-pane .item2 .cat_name:hover {
  color: #F6B626;
}
.tab-content .tab-pane .item2 .item-model {
  text-align: left;
  padding: 0px 15px;
  margin-bottom: 10px;
}
.tab-content .tab-pane .item2 .item-rate {
  padding: 0px 15px;
  text-align: left;
}
.tab-content .tab-pane .item2:hover {
  border: 1px solid #e42014;
  margin: -10px;
  padding: 10px 10px 30px 10px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
}
.tab-content .tab-pane .item2:hover img {
  border-radius: 10px;
}

@media (max-width: 960px) {
  .cat {
    grid-template-columns: 1fr 1fr;
  }
  .cat .chose-item .item .cat_name:before {
    width: 100%;
  }
  .cat .chose-item .item .cat_name {
    background: none;
  }
  .nav-tabs {
    white-space: nowrap;
    overflow: auto;
    justify-content: unset;
  }
  .nav-tabs::-webkit-scrollbar {
    display: none;
  }
  .nav-tabs li {
    margin-right: 40px;
  }
  .nav-tabs li:last-child {
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .tab-content .tab-pane {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  .tab-content .tab-pane .item2 {
    padding-bottom: 10px;
  }
  .tab-content .tab-pane .item2:hover {
    padding: 0 0 10px 0;
    margin: 0;
  }
  .tab-content .tab-pane .item2 .cat_name {
    padding: 0 10px;
  }
  .tab-content .tab-pane .item2 .item-model {
    padding: 0 10px;
  }
  .tab-content .tab-pane .item2 .item-rate {
    padding: 0 10px;
  }
}
.block_products_filter {
  margin-bottom: 20px;
}
.block_products_filter .sort-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.block_products_filter .sort-tabs-wrapper .sort-label {
  font-size: 14px;
  color: #737373;
  font-weight: 500;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs {
  display: flex;
  gap: 8px;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #F1F3F2;
  border-radius: 20px;
  color: #737373;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab i {
  font-size: 14px;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab:hover {
  background: #E5E7E6;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab.active {
  background: #fff;
  color: #F6B626;
  border-color: #F6B626;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab.active i {
  color: #F6B626;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab.sort-tab-price i.fa-caret-up,
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab.sort-tab-price i.fa-caret-down {
  font-size: 16px;
  color: #999;
  margin-left: -3px;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab.sort-tab-price i.arrow-active {
  color: #F6B626;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab.sort-tab-price.active i.fa-caret-up,
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab.sort-tab-price.active i.fa-caret-down {
  color: #999;
}
.block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab.sort-tab-price.active i.arrow-active {
  color: #F6B626;
}

@media (max-width: 768px) {
  .block_products_filter .sort-tabs-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .block_products_filter .sort-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }
  .block_products_filter .sort-tabs-wrapper .sort-tabs {
    white-space: nowrap;
  }
  .block_products_filter .sort-tabs-wrapper .sort-tabs .sort-tab {
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 500px) {
  .cat .chose-item .item .cat_name {
    height: 50px;
    background: #fff;
    border-radius: 0;
    position: unset;
    transition: 0.5s all ease-in-out;
  }
  .cat .chose-item .item:hover .cat_name p {
    color: #737373;
  }
  .cat .chose-item {
    border-radius: 5px;
  }
  .tab-content .tab-pane .item2 {
    border-radius: 5px;
  }
  .tab-content .tab-pane .item2:hover {
    margin: 0;
  }
  .tab-content .tab-pane .item2:hover img {
    border-radius: 5px;
  }
  .tab-content .tab-pane .item2 img {
    border-radius: 5px;
  }
  .nav-tabs li {
    margin-right: 20px;
    height: 30px;
  }
  .nav-tabs li a {
    font-size: 12px;
    padding: 0 12px;
  }
  .block_products_filter .sort-tabs-wrapper .sort-label {
    font-size: 12px;
  }
}/*# sourceMappingURL=default.css.map */