.main-products.main-products-style.product-grid {
  display: block !important;
}

.catalog-product--list {
  width: 100%;
}

.catalog-product--list td {
  font-size: 15px;
}

.catalog-product--list td.td-name {
  max-width: 300px;
}

.catalog-product--list .btn-wishlist {
  padding: 5px;
  top: -10px;
}

.catalog-product--list td.td-first-discount {
  padding: 0px;
  min-width: 100px;
}

.catalog-product--list td.td-first-discount span {
  display: block;
  text-align: center;
  background-color: #282A35;
  border-radius: 8px;
  padding: 3px 8px;
  color: #fff;
  font-size: 13px;
} 

.products-filter {
  justify-content: center;
  align-items: flex-end !important;
}

.products-filter .select-group {
  position: absolute;
  right: 0;
}

.login-warning {
  margin: 20px auto 0px auto;
  max-width: 1180px;
}

.login-warning a {
  font-family: 'roboto-bold', sans-serif;
}

.catalog-product--list .btn-wishlist,
.catalog-product--list .btn-wishlist:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}

.catalog-product--list .btn-wishlist::before {
  color: #000;
  font-size: 26px;
}

.heart--icon::before {
  content: '\f08a' !important;
  font-family: icomoon !important;
  color: #000;
  font-size: 26px;
}

.catalog-product--list .btn-cart:before {
  display: none !important;
}

.catalog-product--list .btn-cart {
  box-shadow: 0 3px 8px rgb(0 0 0 / 10%);
  background-color: transparent;
  color: var(--c-dark-blue) !important;
  text-transform: uppercase;
  margin-right: 0px;
  height: 46px;
  font-size: 15px;
}

.catalog-product--list .btn-cart svg {
  width: 22px;
  margin-left: 10px;
}

.catalog-product--list .btn-cart:hover svg path {
  fill: #fff;
}

.catalog-product--list .cart-td {
  display: flex;
  align-items: center;
}

.catalog-product--list .cart-td .stepper {
  margin-right: 25px;
}

.filter-categories--wrapper {
  padding: 35px 75px;
  background-color: #E0EBFE;
}

html:not(.popup) .filter-categories--wrapper .page-title {
  text-align: center;
  margin-bottom: 25px;
}

.filter-categories--selects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
}

.filter-subcategories.disabled {
  cursor: not-allowed;
}

.filter-subcategories.disabled .select2-container .select2-selection--single {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
}

.select2-dropdown {
  width: 310px !important;
  left: -28px !important;
  border: none !important;
}

.select2-container .select2-selection--single {
  border: none;
}

.filter-categories--select-wrapper > .input-group {
  background-color: white;
  width: 310px;
}

.filter-categories--select-wrapper.loading .lds-ellipsis{
  display: block;
}

.select2-container {
  flex: 1;
}

.select--index {
  margin-left: 10px;
  position: relative;
}

.select--index::after {
  content: "";
  width: 1px;
  height: 24px;
  position: absolute;
  right: -5px;
  top: -1px;
  background-color: var(--c-dark-blue);
}

.select2-results .select2-results__option {
  transition: all 0.1s ease;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--c-dark-blue) !important;
}

.filter-categories--submit-wrapper button {
  width: 100%;
  border-radius: 0px !important;
}

#searchCategoriesBtn {
  text-transform: uppercase;
}

.main-products.main-products-style.product-grid.auto-grid {
  overflow: auto;
}

.lds-ellipsis {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 100%;
  left: calc(50% - 40px);
  top: 0;
  z-index: 9;
  display: none;
}
.lds-ellipsis div {
  position: absolute;
  top: 40%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--c-dark-blue);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

@media only screen and (max-width: 1536px) {
  .products-filter .select-group {
    display: none !important;
  }
}

@media only screen and (max-width: 900px) {
  .filter-categories--selects {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filter-categories--select-wrapper > .input-group {
    width: auto;
  }
}