﻿.product-selectors .product-sorting {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: none;
}



@media only screen and (min-width: 1000px) {
  .product-selectors .product-sorting {
    display: flex;
  }
}

@media only screen and (min-width: 790px) {
  .product-selectors .product-sorting {
    flex-direction: row;
  }
}

.product-selectors .product-sorting .products-count {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 0;
}

.product-selectors .product-sorting .products-order-by {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 1px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  /* identical to box height, or 17px */
  /* Black */
  padding: 15px;
  color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

  .product-selectors .product-sorting .products-order-by option {
    font-style: normal;
    font-weight: 500;
    padding: 15px;
    font-size: 14px;
    line-height: 120%;
    padding: 15px;
    cursor: pointer;
    color: #000000;
  }




.filter-and-sort-mobile-selectors {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 1000px) {
  .filter-and-sort-mobile-selectors {
    display: none;
  }
}


.btn-action-outline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 11px 14px;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 1px;
  font-weight: 600;
  font-size: 14px;
  max-width: 200px;
  line-height: 120%;
  flex: 1;
  /* identical to box height, or 17px */

  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* Black */
  color: #000000;
  text-decoration: none;
}

  .btn-action-outline:hover, .btn-action-outline:focus {
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
  }

.filter-and-sort-mobile-selectors .products-count {
  padding: 18px 0px;
  margin-bottom: 0;
}

.tailgreeter-modal-background {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2000;
  width: 100%;
  /*background: rgba(0, 0, 0, 0.4);*/
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  transition: 0.5s all ease;
}

@media only screen and (min-width: 1000px) {
  .tailgreeter-modal-background {
    display: none;
  }
}

.tailgreeter-modal-background::-webkit-scrollbar {
  display: none;
}

.tailgreeter-modal-background.tailgreeter-modal-show {
  left: 0;
}

.tailgreeter-mobile-sorting-options {
  position: relative;
  background: white;
  z-index: 2000;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 97%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  text-transform: uppercase;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  transition: 0.5s all ease;
}

  .tailgreeter-mobile-sorting-options::-webkit-scrollbar {
    display: none;
  }



  .tailgreeter-mobile-sorting-options .close-icon {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .tailgreeter-mobile-sorting-options .tailgreeter-options-title {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
    text-transform: none;
    margin-top: 12px;
  }

  .tailgreeter-mobile-sorting-options .tailgreeter-options {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

    .tailgreeter-mobile-sorting-options .tailgreeter-options .tailgreeter-option {
      padding: 24px 0px;
      border-bottom: 1px solid #E6E6E6;
      margin-bottom: 0;
      font-weight: 700;
      font-size: 16px;
      line-height: 120%;
      text-transform: uppercase;
      background: white;
      color: #000000;
      cursor: pointer;
    }

      .tailgreeter-mobile-sorting-options .tailgreeter-options .tailgreeter-option.active {
        color: #E90C00;
      }

      .tailgreeter-mobile-sorting-options .tailgreeter-options .tailgreeter-option:first-of-type {
        border-top: 1px solid #E6E6E6;
      }

    .tailgreeter-mobile-sorting-options .tailgreeter-options .attribute-title-wrapper {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0px;
      margin-bottom: 0;
      border-top: 1px solid #E6E6E6;
      cursor: pointer;
    }

      .tailgreeter-mobile-sorting-options .tailgreeter-options .attribute-title-wrapper .attribute-title {
        margin-bottom: 0;
      }

    .tailgreeter-mobile-sorting-options .tailgreeter-options .attribute-values {
      padding-bottom: 18px;
      font-family: 'Maven Pro';
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 120%;
      color: #000000;
    }

      .tailgreeter-mobile-sorting-options .tailgreeter-options .attribute-values .attribute-value {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 9px 0px;
      }

        .tailgreeter-mobile-sorting-options .tailgreeter-options .attribute-values .attribute-value label {
          margin-bottom: 0;
          font-weight: 400;
          font-size: 14px;
          line-height: 120%;
          cursor: pointer;
          color: #000000;
        }

        .tailgreeter-mobile-sorting-options .tailgreeter-options .attribute-values .attribute-value input[type="checkbox"] {
          accent-color: #000000;
          cursor: pointer;
        }

          .tailgreeter-mobile-sorting-options .tailgreeter-options .attribute-values .attribute-value input[type="checkbox"]:checked + label {
            font-weight: 600;
          }

  .tailgreeter-mobile-sorting-options .attribute-title-wrapper:not(.collapsed),
  .tailgreeter-mobile-sorting-options .attribute-title-wrapper:not(.collapsed) .attribute-title {
    color: #E90C00;
  }

  .tailgreeter-mobile-sorting-options .tailgreeter-options .attribute-title-wrapper .fa-chevron-down {
    transition: 0.3s transform ease-in;
  }

  .tailgreeter-mobile-sorting-options .tailgreeter-options .attribute-title-wrapper.collapsed .fa-chevron-down {
    transform: rotate(180deg);
  }

.form-floating {
  width: min(100%, 132px);
}

.price-divider {
  width: min(100%, 20px);
}

@media only screen and (max-width: 1000px) {
  .ui-state-default::before {
    margin-top: 0;
  }

  .form-floating span {
    bottom: 12px;
  }

  .ui-slider {
    width: min(100%, 290px);
  }
}
