.q-icon {
  display: inline-block;
  line-height: 1; }
  .q-icon.q-disabled {
    background-color: #666666 !important;
    opacity: 0.4 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    border: 0 !important; }
  .q-icon.q-circular {
    background-color: #ffffff;
    border-radius: 50%;
    padding: 1.25rem;
    border: 1px solid #e9e9e9;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
  .q-icon.q-icon-xlarge {
    font-size: 3rem; }
  .q-icon.q-icon-large {
    font-size: 1.375rem; }
  .q-icon.q-icon-medium {
    font-size: 1rem; }
  .q-icon.q-icon-small {
    font-size: 0.75rem; }
  .q-icon.primary:before {
    color: #f27a1a; }
  .q-icon.green:before {
    color: #0bc15c; }
  .q-icon.red:before {
    color: #b30000; }
  .q-icon.black:before {
    color: #333333; }
  .q-icon.dark-gray:before {
    color: #666666; }
  .q-icon.light-gray:before {
    color: #999999; }
  .q-icon.border-gray:before {
    color: #e6e6e6; }
  .q-icon.white:before {
    color: #ffffff; }
  .q-icon.yellow:before {
    color: #ffc000; }
  .q-icon.zero:before {
    color: #000000; }
  .q-icon > span {
    font-family: inherit; }
.q-modal-main {
  position: fixed;
  background-color: #f8f8f8;
  top: 0;
  left: 0;
  display: block;
  text-align: center;
  height: 100vh;
  width: 100vw;
  z-index: 1022;
  overflow-y: scroll; }
  .q-modal-main .q-modal-header {
    padding: 1rem 1rem 0 1rem;
    border-bottom: 1px solid #e9e9e9;
    width: 100%;
    height: 50px;
    display: flex;
    position: fixed;
    background-color: #ffffff;
    z-index: 1022; }
    .q-modal-main .q-modal-header .q-modal-title {
      font-size: 1rem;
      font-weight: 600;
      width: 90%;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      margin-bottom: 0;
      text-align: center;
      margin-right: auto;
      margin-left: auto;
      padding-left: 16px;
      height: 100%;
      line-height: 1rem; }
    .q-modal-main .q-modal-header .q-icon {
      padding: 0; }
    .q-modal-main .q-modal-header.q-has-left-icon .q-modal-title {
      padding-left: 0; }
  .q-modal-main .q-modal-content {
    background-color: #ffffff;
    overflow-y: scroll;
    -ms-overflow-style: none;
    padding: 12px;
    margin: 75px 15px 15px;
    border: 1px solid #e9e9e9; }
    .q-modal-main .q-modal-content::-webkit-scrollbar {
      width: 0;
      height: 0; }
  .q-modal-main .q-modal-actions {
    margin: 15px; }

body.q-disable-scroll {
  overflow: hidden; }

.q-slideInRight.q-modal-enter {
  transform: translateX(100vw); }

.q-slideInRight.q-modal-enter-active {
  transform: translateX(0);
  transition: transform 300ms; }

.q-slideInRight.q-modal-exit {
  transform: translateX(0); }

.q-slideInRight.q-modal-exit-active {
  transform: translateX(100vw);
  transition: transform 300ms; }

.q-slideInLeft.q-modal-enter {
  transform: translateX(-100vw); }

.q-slideInLeft.q-modal-enter-active {
  transform: translateX(0);
  transition: transform 300ms; }

.q-slideInLeft.q-modal-exit {
  transform: translateX(0); }

.q-slideInLeft.q-modal-exit-active {
  transform: translateX(-100vw);
  transition: transform 300ms; }

.q-slideInDown.q-modal-enter {
  transform: translateY(100vh); }

.q-slideInDown.q-modal-enter-active {
  transform: translateY(0);
  transition: transform 300ms; }

.q-slideInDown.q-modal-exit {
  transform: translateY(0); }

.q-slideInDown.q-modal-exit-active {
  transform: translateY(100vh);
  transition: transform 300ms; }

.q-slideInUp.q-modal-enter {
  transform: translateY(-100vh); }

.q-slideInUp.q-modal-enter-active {
  transform: translateY(0);
  transition: transform 300ms; }

.q-slideInUp.q-modal-exit {
  transform: translateY(0); }

.q-slideInUp.q-modal-exit-active {
  transform: translateY(-100vh);
  transition: transform 300ms; }
.latest-searches-suggestions .latest-searches-header {
  display: flex;
  padding: 15px 20px 10px;
  align-items: center;
  justify-content: space-between; }
  .latest-searches-suggestions .latest-searches-header .latest-searches-title {
    text-transform: uppercase;
    font-size: 1rem;
    padding: 0;
    font-weight: 600;
    color: #333333; }
  .latest-searches-suggestions .latest-searches-header .latest-searches-clear-text {
    color: #f27a1a;
    font-size: 1rem; }

.latest-searches-suggestions .latest-searches-list {
  padding-left: 20px;
  padding-right: 10px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden; }
  .latest-searches-suggestions .latest-searches-list .latest-searches-list-item {
    border-radius: 3px;
    font-size: 1rem;
    padding: 10px;
    color: #333333;
    border: 1px solid #d6d6d6;
    max-width: 30ch;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 10px;
    margin-bottom: 10px; }
    @media (max-width: 410px) {
      .latest-searches-suggestions .latest-searches-list .latest-searches-list-item {
        max-width: 22ch; } }
    @media (min-width: 411px) and (max-width: 480px) {
      .latest-searches-suggestions .latest-searches-list .latest-searches-list-item {
        max-width: 30ch; } }
  .latest-searches-suggestions .latest-searches-list .latest-searches-list-item:focus {
    outline: none; }

.popular-suggestions .popular-suggestions-header {
  display: flex;
  padding: 15px 20px 10px;
  align-items: center;
  justify-content: space-between; }
  .popular-suggestions .popular-suggestions-header .popular-suggestions-title {
    text-transform: uppercase;
    font-size: 1rem;
    padding: 0;
    font-weight: 600;
    color: #333333; }
  .popular-suggestions .popular-suggestions-header .popular-suggestions-clear-text {
    color: #f27a1a;
    font-size: 14px; }

.popular-suggestions .popular-suggestions-list {
  padding-left: 20px;
  padding-right: 10px;
  display: flex;
  flex-wrap: wrap;
  max-height: 135px;
  overflow: hidden; }
  .popular-suggestions .popular-suggestions-list .popular-suggestions-list-item {
    border-radius: 3px;
    font-size: 1rem;
    padding: 10px;
    color: #333333;
    border: 1px solid #d6d6d6;
    max-width: 30ch;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 10px;
    margin-bottom: 10px; }
    @media (max-width: 410px) {
      .popular-suggestions .popular-suggestions-list .popular-suggestions-list-item {
        max-width: 22ch; } }
    @media (min-width: 411px) and (max-width: 480px) {
      .popular-suggestions .popular-suggestions-list .popular-suggestions-list-item {
        max-width: 30ch; } }
  .popular-suggestions .popular-suggestions-list .popular-suggestions-list-item:focus {
    outline: none; }

@keyframes fadein {
  from {
    opacity: 0.99; }
  to {
    opacity: 1; } }

.q-disable-scroll {
  position: fixed;
  overflow: hidden;
  height: 100%;
  width: 100%; }

.modal-visible {
  -webkit-animation: fadein 0.01s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.01s;
  /* Firefox < 16 */
  -ms-animation: fadein 0.01s;
  /* Internet Explorer */
  -o-animation: fadein 0.01s;
  /* Opera < 12.1 */
  animation: fadein 0.01s; }

.modal-auto-focus-input {
  overflow: visible;
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  right: 0; }

.search-modal-wrapper {
  background-color: #ffffff !important;
  text-align: unset !important; }
  .search-modal-wrapper .search-modal-header {
    padding: 0 !important;
    border-bottom: 0.5px solid #c8c8c8 !important;
    height: 48px !important; }
    .search-modal-wrapper .search-modal-header h1 {
      padding: 0 !important;
      margin: 0 !important;
      width: 100% !important; }
  .search-modal-wrapper .search-modal-content {
    padding: 0 !important;
    margin: 50px 0 !important;
    border: none !important; }

.search-modal {
  height: 100%;
  width: 100%;
  background: white; }

.search-panel {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%; }
  .search-panel__icon {
    text-align: center;
    height: 45px;
    width: 35px;
    line-height: 44px !important;
    color: #f27a1a;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .search-panel__clear-icon {
    text-align: center;
    height: 45px;
    width: 35px;
    line-height: 48px !important;
    color: #d3d3d3;
    font-size: 18px; }
  .search-panel__input {
    color: #333;
    border-radius: 0;
    border: none;
    flex-grow: 1;
    -webkit-appearance: none;
    -webkit-padding-after: 0;
    -webkit-padding-before: 0;
    -webkit-padding-end: 0;
    -webkit-padding-start: 0; }
    .search-panel__input::placeholder {
      color: #c0c0c0;
      vertical-align: middle; }

.related-searches__title {
  color: #999999;
  font-size: 4vw;
  padding: 15px 15px 15px 0px; }

.suggestions__list {
  padding: 0 15px; }
  .suggestions__list .merchant-list-item {
    padding: 10px 0; }

.suggestions__list-boutique {
  padding: 0 15px; }

.suggestions__related-boutiques {
  background-color: #f5f5f5;
  height: 50px;
  align-items: center;
  display: flex;
  border: 0.5px solid #e6e6e6;
  font-size: 14px;
  padding-left: 15px; }

.latest-searches__header {
  display: flex;
  justify-content: space-between; }

.latest-searches__title {
  color: #999999;
  font-size: 4vw;
  padding: 15px; }

.latest-searches__clear-wrapper {
  display: flex;
  padding: 15px;
  align-items: center;
  width: 18vw;
  box-sizing: content-box;
  justify-content: space-between; }

.latest-searches__clear-icon {
  color: #666;
  font-size: 4vw; }

.latest-searches__clear-text {
  color: #666;
  font-size: 4vw;
  margin-bottom: 0; }

.latest-searches__list {
  padding: 0 15px;
  height: 80vh;
  overflow: scroll; }

.latest-searches__list-boutique {
  padding: 0 15px; }

.latest-searches__related-boutiques {
  background-color: #f5f5f5;
  height: 50px;
  align-items: center;
  display: flex;
  border: 0.5px solid #e6e6e6;
  font-size: 14px;
  padding-left: 15px; }

.latest-searches__list-item {
  padding: 12px 0;
  border-bottom: 1px solid #dadada;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .latest-searches__list-item:last-of-type {
    border-bottom: 0; }

.latest-searches__name {
  color: #333333;
  font-size: 14px;
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 5vw;
  margin-bottom: 0; }

.latest-searches__merchant-logo {
  width: 30px;
  height: 30px;
  border: 1px solid #e6e6e6;
  border-radius: 100%;
  margin-right: 10px; }

.latest-searches__type {
  color: #b4b4b4;
  font-size: 12px;
  line-height: initial; }

.modal-header {
  overflow: hidden; }

.smartbanner-show #search-fragment .modal {
  top: 65px; }

/*# sourceMappingURL=search.style.css.map*/