/*
---------------------
Products-selection
---------------------
*/

.products-selection {
  padding-bottom         : 15px;
}

/*
----------------------------------
Part - Products-sort-order
----------------------------------
*/

.products-selection .sort-by-row {
  display           : -webkit-box;
  display           : -ms-flexbox;
  display           : flex;
  -webkit-box-align : center;
  -ms-flex-align    : center;
  align-items       : center
}

.products-selection .sort-by svg {
  margin-right: 10px;
}

.products-selection .sort-by {
  color: #004B49;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.26px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.products-sort-order {
  position: relative;
  color : var(--color-grey-font-default)
}

.products-sort-order .select-title {
  display    : flex;
  align-items: center;
  font-weight: 500;
  color      : #004B49;
  cursor     : pointer;
  text-transform: initial;
  width      : 100%;
  margin-left: 10px;
}

.products-sort-order .select-list {
  display : block;
  transition: all 0.35s ease-in-out;
  padding : .625rem 1.25rem;
  color: #004B49;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.26px;
}

.products-sort-order .select-list:hover {
  background      : var(--color-secondary);
  color           : #fff;
  text-decoration : none
}

.products-sort-order .dropdown-menu {
  left          : auto;
  background    : #f6f6f6;
  border        : none;
  border-radius : 0;
  box-shadow    : 2px 2px 4px 0 rgba(0, 0, 0, .1);
  margin        : 0
}

.selectedFilters_duplicate_top.inline {
  margin: 15px 0 5px 0;
  text-align: left;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.selectedFilters_duplicate_top .cf {
  background: rgba(87, 124, 110, 0.20);
  border-radius: 15px;
  padding: 2px 7px 2px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  line-height: 1;
  color: #004B49;
  font-weight: 500;
  gap: 10px;
}

/*
----------------------------------
Media Queries
----------------------------------
*/

@media (max-width : 575px) {

  .products-selection .filter-button {
    padding-left : 0
  }

}

@media (max-width : 767px) {

  .products-selection h1 {
    padding-top   : 0;
    text-align    : center;
    margin-bottom : 1rem
  }

  .products-selection .showing {
    padding-top : 1rem
  }

  .products-sort-order .select-title {
    margin-left : 0
  }

}

@media screen and (min-width: 1024px) {
  .products-sort-order .dropdown-menu {
    width : 16.88rem;
  }
  .selectedFilters.inline{
    display: none !important;
  }
}

@media screen and (max-width : 1023px ) {
  .products-selection .sort-by {
    display: none;
  }
}
