﻿.CategoriesBox .wrapp-img {
  transition: all 350ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
  -webkit-transition: all 350ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
  -moz-transition: all 350ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
  -ms-transition: all 350ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
  -o-transition: all 350ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
}

.CategoriesBox .wrapp-img.bg-White:hover {
  background: var(--Lsilver) !important;
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-unstyled {
  list-style: none;
}

.Categories .CatItem {
  flex: 0 0 calc(20% - 1rem)
}

.Categories .CatItem img {
  object-fit: cover;
  aspect-ratio: 2.34 / 1.56;
}

.pagination {
  list-style: none;
}

.pagination .page-item {
  padding: 0.3rem 0.5rem;
  border-radius: var(--b-radius);
  background: var(--Lsilver);
  margin: 0 0.2em;
}

.pagination .page-item .page-link {
  color: var(--Black);
  padding: 0.5rem;
}

.pagination .page-item.active {
  background: var(--Black);
}

.pagination .page-item.active .page-link {
  color: var(--White);
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-unstyled {
  list-style: none;
}

.pagination {
  list-style: none;
  display: flex;
}


.ProductList .Product .MoreBox {
  height: 4rem;
  bottom: 0;
  z-index: 2;
}

.ProductList .Product .Detail {
  bottom: 0;
  transform: translateY(100%);
  transition: all ease-in-out 0.4s;
}

.ProductList .Product:hover .Detail {
  transform: translateY(0%);
}

.ProductList .Product .SecondImage {
  right: 0;
  top: 0;
  opacity: 0;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

.ProductList .Product picture:first-of-type img {
  opacity: 1;
  transition: all ease-in-out 0.4s;
}

.ProductList .Product:hover picture:first-of-type img {
  opacity: 0
}

.ProductList .Product:hover .SecondImage {
  opacity: 1;
}

.ProductList svg {
  max-width: 1.5rem;
  max-height: 1.5rem;
}

.ProductList .sortorder {
  background-color: transparent;
  border: 0;
}

.ProductList .pb-6 {
  padding-bottom: 4.2rem
}

.ProductList hr {
  margin: 0.5rem 0
}

.ProductList .Product .Discount {
  top: 0.5rem;
  left: 0.5rem;
  border-radius: calc(var(--b-radius) / 2);
}

.CatItem .d-grid {
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  right: 0;
  top: 0;
}

.price-ranges-info input {
  background-color: transparent;
  border: none;
}

.ProductList .Product .P-img {
  flex: 1 0 auto;
  width: 100%;
}

.is-special {
  border-top: 0.3rem solid var(--accent-color);
}

.favoriteBtn.active {
  color: red
}

.addToBasket.active {
  color: var(--accent-color3) !important;
}

.ProductList svg {
  max-height: 1.3rem;
  max-width: 1.3rem;
}

.sortorder option {
  min-height: 1rem;
}

.FilterBody .check-moding {
  max-height: 30rem;
  overflow-y: auto;
}

.ShopFilter {
  border: 0.1em solid var(--accent-color);
  margin-top: 1.5rem;
  border-radius: calc(var(--b-radius) * 3);
  overflow: hidden;
}

/**********************OnlyActiveAndDiscounted************************/
.only-active-check-label::after,
.only-dis-check-label::after {
  content: '';
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  transition: all .2s;
  border-radius: 50%;
  background: var(--accent-color);
  border: 0.1em solid var(--accent-color4);
  top: 0;
  left: 0;
}

.only-active-check-label::before,
.only-dis-check-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: calc(var(--b-radius) * 4);
  transition: background-color .2s;
  width: 3rem;
  height: 1.5rem;
  background: var(--silver);
  display: inline-block;
  transition: all 0.4s;
  -webkit-border-radius: calc(var(--b-radius) * 4);
  -moz-border-radius: calc(var(--b-radius) * 4);
  -ms-border-radius: calc(var(--b-radius) * 4);
  -o-border-radius: calc(var(--b-radius) * 4);
}

.only-active-check:checked+label::after,
.only-dis-check:checked+label::after {
  left: 1.5rem;
}

.only-active-check:checked+label::before,
.only-dis-check:checked+label::before {
  background-color: var(--accent-color4);
}

@media(max-width:768px) {
  .productstabinfo .SideBar {
    top: 0;
    right: -100%;
    background: var(--White);
    height: 100vh;
    transition: all ease-in-out 0.4s;
    display: block;
    padding: 0;
    z-index: 22;
  }

  .productstabinfo .SideBar.active {
    right: 0
  }

  .productstabinfo .SideBar:after {
    content: '';
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
    display: block;
    right: 0;
    top: 0;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: all ease-in-out 0.5s;
    visibility: hidden;
  }

  .productstabinfo .SideBar.active:after {
    opacity: 1;
    visibility: visible;
  }

  .productstabinfo .SideBar #listfilters {
    padding-top: 10vh;
    position: relative;
    z-index: 22222222;
    background: var(--White);
    padding: 10vh 0.5rem 0;
    height: 100vh;
    width: 100%;
    overflow: auto;
  }

  .CloseFilter-BTN {
    left: -3rem;
    top: 15vh;
    writing-mode: vertical-rl;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}


.productstabinfo :where(select, input) {
  border: 0.1rem solid var(--accent-color);
  border-radius: var(--b-radius);
}


.pagination {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.pagination .page-item:before,
.pagination .page-item:after {
  content: '';
  position: absolute;
}

.pagination .page-item {
  background: var(--Lsilver);
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: var(--b-radius);
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination .page-item::before {
  width: calc(100% + 1rem);
  left: -0.3rem;
  height: calc(100% + 1rem);
  display: block;
  top: -0.2rem;
  z-index: -1;
  border: 0.27rem solid var(--sh-dark);
  border-radius: inherit;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}

.pagination .page-item::after {
  width: calc(100% + 2rem);
  right: -0.3rem;
  height: calc(100% + 1.5rem);
  display: block;
  bottom: 0;
  z-index: 2;
  border: 0.36rem solid var(--White);
  border-radius: inherit;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}

.pagination .page-item .page-link {
  color: var(--Black);
  padding: 0.5rem 1rem;
  z-index: 22;
  position: relative;
}

.pagination .page-item.active {
  background: var(--accent-color);
}

.pagination .page-item.active .page-link {
  color: var(--White);
}


.SeoDescription {
  max-height: 30rem;
}

.check-moding select {
  width: 100%;
}

.VendorsGroup .swiper-slide {
  width: 20%;
}

.VendorsGroup .swiper-slide.BeSeller {
  width: 39.5rem;
}

#ecommerce-txt-search {
  background: transparent;
  outline: 0;
  border: 0;
  padding: 2rem;
}

#ecommerce-txt-search::placeholder {
  color: rgba(0, 0, 0, 0.5)
}

.ecommerce-search-btn {
  left: 0.5rem;
  top: 1rem;
  z-index: 5;
  cursor: pointer;
  display: block;
}

.ecommerce-search-result {
  top: 100%;
  background: var(--White);
  z-index: 3;
  width: 100%;
}

.HorizontalTabs {
  position: relative;
  height: 100%;
  display: block
}

.HorizontalTabs .tab {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap
}

.HorizontalTabs .tab label {
  padding: 1rem !important;
  flex: 1 0 max-content;
  text-align: center;
  cursor: pointer;
  transition: .3s linear;
  background: var(--silver);
  color: var(--Black);
}

.HorizontalTabs .tab h1,
.HorizontalTabs .tab h2,
.HorizontalTabs .tab h3,
.HorizontalTabs .tab h4,
.HorizontalTabs .tab h5,
.HorizontalTabs .tab h6,
.HorizontalTabs .tab strong {
  font-size: 1em;
  line-height: 2em
}

.HorizontalTabs .tab label.active {
  flex: 2 0 max-content;
  background: var(--accent-color);
  color: var(--White);
}

.HorizontalTabs .tab-content {
  display: none;
  padding: 2em .5em;
  opacity: 0;
  animation: .4s linear tabfade
}

.HorizontalTabs .tab-content.active {
  display: block;
  opacity: 1
}

@keyframes tabfade {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.addToBasket,
.SharePopUp,
.favoriteBtn {
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  display: block;
  background: var(--White);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:960px) {
  .VendorsGroup .swiper-slide {
    width: 25%;
  }

  .Categories .CatItem {
    flex: 0 0 calc(30% - 1rem)
  }

}

@media (max-width:768px) {
  .VendorsGroup .swiper-slide {
    width: 36%;
  }

  .VendorsGroup .swiper-slide.BeSeller {
    width: calc(100% - 1rem);
  }

  .p-lg-relative {
    position: relative;
  }
}

@media (max-width:540px) {
  .VendorsGroup .swiper-slide {
    width: 48%;
  }

  .Categories .CatItem {
    flex: 0 0 calc(50% - 1rem)
  }

}