.ws-explore-navbar {
  /* position: sticky; */
  top: 0;
  width: 100vw;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  /* background-color: #FFF; */
  z-index: 1;
}

.ws-explore-navbar .search-bar {
  position: relative;
  width: 80%;
  height: 2rem;
}
.ws-explore-navbar .search-bar #search_button {height: 2rem; position: relative; z-index: 2;}
.ws-explore-navbar .search-bar #search_button img {height: 100%;}
.ws-explore-navbar .search-bar input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  border-radius: 500px;
  text-indent: 15%;
  border: 2px solid #C2C2C2;
  background-color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  /* font-size: small; */
  /* background-color: #EEE; */
}
.ws-explore-navbar .search-bar input:focus {outline: none;}

.ws-explore-navbar #cancel_search {
  display: flex;
  align-items: center;
}

.ws-explore-tags {
  overflow-x: scroll;
  overflow-y: hidden;
  /* min-width: 100%; */
  margin: 10px 0 10px 2.5vw;
  white-space: nowrap;
}
.ws-explore-tags .tag {
  display: inline-block;
  margin-right: 5px;
  border-radius: 500px;
  /* border: 2px solid #C2C2C2; */
  padding: 5px 10px;
  font-size: 0.7rem;
}
.ws-explore-tags .tag.selected {
  border: none;
  background-image: linear-gradient(to right, #C58EBF 0%, #F38490 100%);
  color: #FFF;
  transition: 0.2s;
}
.ws-explore-tags .tag.selected::before {border: none; background: none;}

.ws-explore {position: relative; overflow-y: scroll; padding: 0 20px 50px;}
.ws-explore .gallery-item {display: inline-block; width: 45%; margin: 2.5%;}
.ws-explore .gallery-item img {width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center center; border-radius: 10px;}