/* [project]/src/components/filter/OptionsPanel/OptionsPanel.scss.css [app-client] (css) */
@media (min-width: 0) and (max-width: 639.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * .65);
    padding-left: calc(var(--bs-gutter-x) * .65);
  }
}

.options-wrapper {
  background-color: #efefef;
  justify-content: space-between;
  min-height: auto;
  padding: 12px 16px;
  display: flex;
}

.options-wrapper .option-btn {
  opacity: .5;
  color: #101010;
  border: none;
  gap: 8px;
  width: auto;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 300;
  transition: all .2s linear;
}

.options-wrapper .option-btn .image-wrapper {
  max-width: 20px;
}

.options-wrapper .option-btn:hover {
  opacity: 1;
  color: #101010;
  background-color: #0000;
}

.options-wrapper .option-btn:hover .image-wrapper {
  filter: none;
}

/* [project]/src/components/filter/SearchesPanel/SearchesPanel.scss.css [app-client] (css) */
.searches-wrapper {
  flex-wrap: wrap;
  gap: 8px;
  padding: .5rem;
  display: flex;
}

/* [project]/src/components/common/Inputs/SearchList/SearchList.scss.css [app-client] (css) */
@media (min-width: 0) and (max-width: 639.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * .65);
    padding-left: calc(var(--bs-gutter-x) * .65);
  }
}

/* [project]/src/components/common/Inputs/SearchListItem/SearchListItem.scss.css [app-client] (css) */
@media (min-width: 0) and (max-width: 639.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * .65);
    padding-left: calc(var(--bs-gutter-x) * .65);
  }
}

.search-list-item {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-family: proxima-nova, sans-serif;
  font-size: 1rem;
  transition: background-color .1s;
  display: flex;
  position: relative;
}

.search-list-item.highlighted {
  color: #656565;
  background-color: #f8f8f8;
}

.search-list-item .wrapper {
  display: flex;
  overflow: hidden;
}

.search-list-item .wrapper pre {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.search-list-item .wrapper .highlighted {
  text-overflow: unset;
}

.search-list-item .counter {
  color: #ad9d6f;
  justify-content: center;
  align-items: center;
  padding: 2px 6px 0;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
}

.search-list-item:hover {
  color: #656565;
  background-color: #f8f8f8;
}

.search-list-item pre {
  margin: 0;
  font-family: proxima-nova, sans-serif;
  font-size: 1rem;
}

.search-list-item .highlighted {
  color: #fff;
  background: #ad9d6f;
}

/* [project]/src/components/base/NoResultsFound/NoResultsFound.scss.css [app-client] (css) */
@media (min-width: 0) and (max-width: 639.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * .65);
    padding-left: calc(var(--bs-gutter-x) * .65);
  }
}

.no-results-found {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0 20px;
  display: flex;
}

@media (max-width: 767.98px) {
  .no-results-found {
    padding: 25px 0;
  }
}

.no-results-found .title {
  margin-bottom: 10px;
  font-family: proxima-nova, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.no-results-found p {
  color: #6e6e6e;
  text-align: center;
  max-width: 200px;
  margin: 0;
  font-family: proxima-nova, sans-serif;
  font-size: .9rem;
}

.no-results-found .image-wrapper {
  opacity: .2;
  width: 115px;
  margin-bottom: 30px;
}

/* [project]/src/components/common/UniversalNavSearch/UniversalNavSearch.scss.css [app-client] (css) */
@media (min-width: 0) and (max-width: 639.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * .65);
    padding-left: calc(var(--bs-gutter-x) * .65);
  }
}

.search-desktop-button {
  align-items: center;
  display: flex;
}

@media (max-width: 1279.98px) {
  .search-desktop-button {
    visibility: hidden;
    display: none;
  }
}

.search-desktop-button .icon {
  min-height: auto;
  max-height: unset;
}

.search-desktop-button .icon .image-wrapper {
  width: 21px;
  min-width: 21px;
}

.search-wrapper {
  transition: margin-right .2s ease-in;
  position: relative;
}

.search-wrapper .search-input {
  clip-path: inset(0 0 0 80%);
  cursor: pointer;
  max-height: 48px;
}

.search-wrapper .search-input .input-control {
  border: 1px solid #0000;
  transition: none;
}

.search-wrapper .search-input .input-control:hover {
  background: none;
  border-color: #0000;
}

.search-wrapper .search-input .input-icon {
  right: 14px !important;
}

.search-wrapper .search-input .input-icon .image-wrapper {
  min-width: 1.375rem;
  max-width: 1.375rem;
}

.search-wrapper .search-input .input-icon .image-wrapper.close {
  width: 1.375rem;
  min-width: 1.375rem;
}

.search-wrapper .label-placeholder {
  display: none;
}

.search-wrapper .input-wrapper input::placeholder {
  color: #101010;
  opacity: 1;
  font-weight: 600 !important;
}

.search-wrapper .input-wrapper input:not(:-moz-placeholder-shown) {
  padding: 1rem;
}

.search-wrapper .input-wrapper input:not(:placeholder-shown) {
  padding: 1rem;
}

.search-wrapper.open .search-input {
  animation: .2s ease-in-out forwards showSearchAnimation;
  margin-right: 0 !important;
}

@keyframes showSearchAnimation {
  from {
    clip-path: inset(0 0 0 100%);
  }

  to {
    clip-path: inset(0);
  }
}

.search-wrapper.open .search-input .input-control {
  border: 1px solid #949494;
  padding: 10px 44px 10px 16px;
  transition: all .35s;
}

.search-wrapper.open .search-input .input-control:hover {
  border-color: #9c9c9c;
  background: #f9f9f9 !important;
}

.search-wrapper.open .search-input .input-control:focus {
  color: #101010 !important;
  background: #f0f0f0 !important;
  border-color: #9c9c9c !important;
}

.search-wrapper .search-list {
  background-color: #fff;
  max-width: 330px !important;
  position: absolute !important;
  top: 76px !important;
  transform: translate(0) !important;
}

.search-wrapper .search-list:before {
  right: 13px;
  left: unset;
  border-bottom: 8px solid #fff;
}

.search-wrapper .search-list .bouncing-loader {
  width: 100%;
  position: relative;
  top: 0;
  transform: translateY(0);
}

.search-wrapper .search-list .close-balloon {
  display: none !important;
}

.search-wrapper.mobile {
  visibility: hidden;
  display: none;
}

@media (max-width: 1279.98px) {
  .search-wrapper.mobile {
    visibility: visible;
    display: flex;
  }
}

.search-wrapper.mobile.open {
  z-index: 999;
  background-color: #fff;
  align-items: center;
  width: 148px;
  min-height: 70px;
  padding: 0 1rem;
  transition: all .2s ease-in;
  animation: .2s ease-in forwards scale;
  display: flex;
  position: fixed;
  top: 0;
  left: 62px;
}

@keyframes scale {
  0% {
    opacity: 0;
    width: 148px;
    left: 62px;
  }

  100% {
    opacity: 1;
    width: 100%;
    left: 0;
  }
}

.search-wrapper.mobile.open .search-input {
  margin-right: 0;
}

.search-wrapper.mobile.open .search-input .input-control {
  border-radius: unset !important;
}

.search-wrapper.mobile.open .search-input .input-icon {
  right: 14px !important;
}

.search-wrapper.mobile.open .search-input ::placeholder {
  opacity: .35;
}

.search-wrapper.mobile.open .search-list {
  background: #fff;
  border: none;
  width: 100% !important;
  max-width: 100% !important;
  padding: 12px 0 !important;
  top: 72px !important;
  left: 0 !important;
  transform: translate(0) !important;
  box-shadow: 0 16px 12px -7px #0007150d !important;
}

.search-wrapper.mobile.open .search-list .close-balloon {
  left: 50%;
  transform: translateX(-50%);
}

.search-wrapper.mobile.open .search-list:before {
  content: none;
}

.search-wrapper.mobile .search-input {
  margin: 0;
  padding: 0;
}

.search-wrapper.mobile .search-input .input-control {
  border-radius: 0;
}

