/* SEARCH STYLES */


.MPSearchBox {
  background: white;
  border: 1px solid gainsboro;
  border-radius: 10px;
  padding: 5px 10px;
  margin: 0px 15px;
}

.MPSearcWrapper {
    display: flex;
    gap: .5em;
}
.MPSearchIcon {
    color: #9e9e9e;
    font-size: 16px;
    align-self: center;
}

.MPSearchInput {
    border: none;
    background: none;
    font-size: 17px;
    width: 100%;
}

a.MPSearchIconLink {
    color: #9e9e9e !important;
}

.MPSearchBarHolder {
    width: 100%;
}

.MPSearchInput:focus {
    outline-color: transparent;
    outline-style: none;
    background: rgb(249, 249, 249);
}

/* SEARCH SMALL VIEW STYLES */

.MPSearchBoxSmall {
    background: white;
    border: 1px solid gainsboro;
    border-radius: 5px;
    padding: 0px 5px;
  }
  
  .MPSearcWrapperSmall {
      display: flex;
      gap: .5em;
  }
  .MPSearchIconSmall {
      color: #9e9e9e;
      font-size: 12px;
      align-self: center;
  }
  
  .MPSearchInputSmall {
      border: none;
      background: none;
      font-size: 13px;
      width: 100%;
  }
  
  a.MPSearchIconLinkSmall {
      color: #9e9e9e !important;
  }
  
  .MPSearchBarHolderSmall {
      width: 100%;
      line-height: 0;
      align-self: center;
      margin-top: -2px;
  }

  .MPSearchInputSmall:focus {
    outline-color: transparent;
    outline-style: none;
    background: rgb(249, 249, 249);
}