#s-wrapper {
  display: none; }
  #s-wrapper.active {
    display: block; }

#search-overlay {
  display: none;
  top: 0;
  position: fixed;
  z-index: 4;
  background: var(--search-overlay-bg);
  width: 100%;
  height: 100%;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px); }
  #search-overlay.active {
    display: block; }
  #search-overlay.noblur {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px); }

#no-results-wrapper {
  padding-left: 28px;
  padding-top: 7px;
  display: flex;
  gap: 3px;
  flex-direction: column;
  font-weight: 350;
  color: var(--text-color-accent); }
  #no-results-wrapper svg {
    fill: var(--text-color-accent); }

#live-search-wrapper {
  width: 100%; }
  #live-search-wrapper.active {
    z-index: 8;
    position: absolute;
    width: 100%; }
    #live-search-wrapper.active .inner {
      border: 1px solid var(--color-cta); }
  #live-search-wrapper.m-active {
    z-index: 8;
    position: absolute;
    width: 100%; }
    #live-search-wrapper.m-active .inner {
      border: 1px solid var(--color-cta); }
  #live-search-wrapper .inner {
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--context-nav-bg-color);
    border-radius: 7px;
    width: 100%;
    height: 50px;
    align-items: center;
    padding: 0;
    margin-top: 11px; }
    #live-search-wrapper .inner input {
      border: none;
      width: 100%;
      font-size: 16px;
      height: 48px;
      border-radius: 7px;
      padding: 0 60px 0 28px;
      background: transparent;
      color: var(--text-color-accent); }
      #live-search-wrapper .inner input:hover, #live-search-wrapper .inner input:focus, #live-search-wrapper .inner input:active {
        outline: 0;
        cursor: pointer;
        background-color: var(--background-color); }
    #live-search-wrapper .inner .search-controls {
      display: flex;
      flex-direction: row;
      position: absolute;
      z-index: 1;
      right: 14px;
      padding: 7px;
      height: 28px;
      align-items: center;
      justify-content: space-between;
      gap: 14px; }
      #live-search-wrapper .inner .search-controls .clear-search {
        opacity: 0;
        transition: all 300ms linear; }
        #live-search-wrapper .inner .search-controls .clear-search.active {
          opacity: 1; }
      #live-search-wrapper .inner .search-controls .clear-search, #live-search-wrapper .inner .search-controls .do-search {
        cursor: pointer; }
      #live-search-wrapper .inner .search-controls svg {
        width: 18px;
        height: 18px;
        fill: #ccc; }
        #live-search-wrapper .inner .search-controls svg:hover {
          opacity: 1;
          fill: #fff; }
      #live-search-wrapper .inner .search-controls .clear-search svg {
        width: 14px;
        height: 14px; }

#search-results {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px; }
  #search-results.m-mode {
    position: absolute;
    z-index: -1;
    padding-top: 3px;
    overflow-y: scroll;
    overflow: hidden;
    overflow-y: scroll;
    height: calc(100vh - 128px); }
  #search-results .search-item {
    display: flex; }
    #search-results .search-item > a {
      display: flex;
      border: 0.1px solid var(--border-color);
      background: var(--context-nav-bg-color);
      padding: 12px 14px;
      width: 100%;
      align-items: center;
      gap: 3px;
      justify-content: space-between;
      text-decoration: none;
      border-radius: 7px;
      color: var(--text-color-accent);
      transition: all 100ms linear; }
      #search-results .search-item > a:hover {
        text-decoration: none;
        opacity: 1;
        border: 0.1px solid var(--color-cta); }
      #search-results .search-item > a .s-item-label {
        line-height: 18px;
        font-size: 13px;
        font-weight: 500; }
      #search-results .search-item > a .img-holder {
        background-color: #fff !important;
        width: 60px;
        height: 60px;
        display: block;
        border-radius: 7px;
        background-position-x: center !important;
        background-size: 72% !important;
        background-position-y: center !important; }
      #search-results .search-item > a svg {
        fill: var(--border-color);
        width: 18px; }

/*Tablet*/
@media only screen and (min-width: 768px) {
  #s-wrapper {
    display: block; }
  #live-search-wrapper {
    width: auto; }
    #live-search-wrapper .inner {
      margin-top: inherit; } }
