/*=================================================================================================*/
/* SEARCH
/*=================================================================================================*/

.homeSearchTabContainer {
  padding: 16px;
}

/* Searchbar */
#homeSearch {
  margin-top: 0px;
  width: auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0px 0px 15px 15px;
}

#homeSearch::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  transition: transform 0.2s;
}

#homeSearch:hover::before {
  transform: scale(1.02);
}

#homeSearchContainer {
  position: relative;
}

#homeSearchTitle {
  font-size: 32px;
}

/* Tabs */
.homeSearchNavbar {
  padding: 6px;
  display: flex;
  flex-wrap: wrap;
  width: auto;
}

.navTabButton {
  padding: 0px 0px 0px 6px;
  margin: 5px;
  font-size: 18px;
  background: none;
  color: #ffffff;
  border: none;
  font-family: "Maven Pro", sans-serif;
  width: auto;
  border-radius: 10px;
}

.navTabButton::after {
  content: "•";
  color: #ffffff;
  margin-left: 10px;
  font-weight: normal;
}

.navTabButton:last-child::after {
  content: none;
}

/* Compare Searchbar */
#homeSearchTabInputCompare {
  border-right: 3px solid;
  border-radius: 10px;
}

/*=================================================================================================*/
/* POPULAR PROFILES
/*=================================================================================================*/

#popularProfiles {
  overflow: hidden;
  margin-top: 0px;
  border-radius: 0px 0px 15px 15px;
  padding: 16px;
  position: relative;
  flex: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.popularTile {
  height: 38px;
  line-height: 38px;
  border-radius: 15px;
  display: flex;
  padding: 10px;
  transition: 0.2s;
}

.popularHead {
  border-radius: 8px;
  margin-right: 12px;
  width: 38px;
  height: 38px;
}

.popularEmoji {
  vertical-align: middle;
  margin-bottom: 8px;
  margin-left: 8px;
  height: 28px;
  width: 28px;
}

/*=================================================================================================*/
/* MEDIA QUERIES
/*=================================================================================================*/

@media only screen and (max-width: 880px) {
  #popularProfiles {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 881px) and (max-width: 1120px) {
  #popularProfiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
