.searchbar {
  background: #ff0000;
  padding: 0px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.searchbar .searchbar-part .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  align-items: center;
}
.searchbar .searchbar-part .container .left {
  display: flex;
  flex-direction: row;
}
.searchbar .searchbar-part .container .left .logo img {
  width: 70px;
  height: 39px;
  padding: 5px;
}
.searchbar .searchbar-part .container .left .loyaltypart a {
  display: flex;
  flex-direction: row;
  color: white;
  margin-left: 10px;
}
.searchbar .searchbar-part .container .left .loyaltypart a img {
  width: 25px;
  height: 25px;
  margin-top: 12px;
}
.searchbar .searchbar-part .container .left .loyaltypart a p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 15px;
  margin-left: 5px;
}
.searchbar .searchbar-part .container .left .loyaltypart a p span {
  font-weight: 700;
}
.searchbar .searchbar-part .container .mid .search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 700px;
  background: rgb(255, 255, 255);
  border-radius: 30px;
  position: relative;
  transition: border-radius 0.3s ease;
}
.searchbar .searchbar-part .container .mid .search.suggestions-visible {
  border-radius: 0;
}
.searchbar .searchbar-part .container .mid .search .search__input {
  color: rgb(6, 30, 65);
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
  padding: 10px 20px;
  width: 100%;
  border: none;
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
  outline: none;
  transition: all 0.5s ease;
}
.searchbar .searchbar-part .container .mid .search .search__input::-webkit-input-placeholder {
  color: rgb(6, 30, 65);
  font-weight: 100;
}
.searchbar .searchbar-part .container .mid .search .search__button {
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchbar .searchbar-part .container .mid .search .search__button:hover {
  cursor: pointer;
}
.searchbar .searchbar-part .container .mid .search .search__button .search__icon {
  height: 25px;
  width: 25px;
  fill: white;
  background: #00a44c;
  padding: 5px;
  border-radius: 100px;
}
.searchbar .searchbar-part .container .mid .suggestionsList {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 100%;
  max-height: 300px;
  border-radius: 0;
  overflow-y: auto;
  background-color: rgb(255, 255, 255);
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  padding-top: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}
.searchbar .searchbar-part .container .mid .suggestionsList.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.searchbar .searchbar-part .container .mid .suggestionsList::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  margin-top: 5px;
}
.searchbar .searchbar-part .container .mid .suggestionsList::-webkit-scrollbar-thumb {
  background: rgba(109, 160, 203, 0.4);
}
.searchbar .searchbar-part .container .mid .suggestionsList::-webkit-scrollbar-track {
  background: transparent;
}
.searchbar .searchbar-part .container .mid .suggestionsList li {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.searchbar .searchbar-part .container .mid .suggestionsList li:last-child {
  border-bottom: none;
}
.searchbar .searchbar-part .container .mid .suggestionsList li:hover {
  background-color: #e7f1fb;
}
.searchbar .searchbar-part .container .mid .suggestionsList li:focus {
  outline: none;
  background-color: #e7f1fb;
  color: white;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container {
  padding: 0 15px;
  box-sizing: border-box;
  width: 100%;
  max-width: 700px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container.suggestions-visible {
  border-radius: 0;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-header .history-title {
  font-size: 12px;
  color: rgb(6, 30, 65);
  font-weight: 500;
  margin: 0;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-header .clear-history-button {
  color: rgb(6, 30, 65);
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 12px;
  text-align: right;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-header .clear-history-button:hover {
  color: #474545;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-label {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  color: rgb(47, 60, 72);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-list li img.history-item-icon {
  width: 10px;
  height: 10px;
  margin-right: 5px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-list li .delete-icon {
  width: 10px;
  height: 10px;
  margin-left: auto;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-list li .delete-icon:hover {
  opacity: 1;
}
.searchbar .searchbar-part .container .mid .suggestionsList .trending-container {
  display: flex;
  flex-direction: column;
  padding: 5px 15px;
  border-top: 1px solid rgba(109, 160, 203, 0.4);
  border-bottom: 1px solid rgba(109, 160, 203, 0.4);
  box-sizing: border-box;
  width: 100%;
}
.searchbar .searchbar-part .container .mid .suggestionsList .trending-container .label {
  font-size: 12px;
  color: rgb(6, 30, 65);
  font-weight: 500;
}
.searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down .owl-stage-outer {
  width: 100% !important;
}
.searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down .owl-stage-outer .owl-stage {
  display: flex;
  width: auto !important;
}
.searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down .owl-stage-outer .owl-stage .owl-item {
  width: auto !important;
}
.searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down .owl-stage-outer .owl-stage .owl-item .trending-item {
  padding: 5px;
  border-radius: 40px;
  background-color: rgb(255, 0, 0);
  font-size: 12px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0px 3px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down .owl-stage-outer .owl-stage .owl-item .trending-item:hover {
  background-color: rgb(238, 2, 2);
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 15px;
  box-sizing: border-box;
  width: 100%;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .owl-carousel .owl-dots.disabled,
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .owl-carousel .owl-nav.disabled {
  display: none !important;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .related-label {
  font-size: 12px;
  color: rgb(6, 30, 65);
  font-weight: 500;
  margin-right: 5px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down .owl-stage-outer {
  margin: 0 10px 0 30px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down .owl-stage-outer .owl-stage {
  display: flex;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down .owl-stage-outer .owl-stage .owl-item {
  width: auto !important;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down .owl-stage-outer .owl-stage .owl-item .related-item {
  padding: 5px;
  border-radius: 40px;
  background-color: rgb(109, 160, 203);
  font-size: 12px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0px 3px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down .owl-stage-outer .owl-stage .owl-item .related-item:hover {
  background-color: rgb(98, 150, 192);
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .owl-theme .owl-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .owl-theme .owl-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background: transparent;
  border: 1px solid rgb(109, 160, 203);
  border-radius: 100%;
  font-size: 20px;
  color: rgb(109, 160, 203);
  cursor: pointer;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .owl-prev,
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .owl-next {
  position: absolute;
  transform: translateY(-50%);
  padding: 5px;
}
.searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .owl-prev {
  left: -10px;
  padding: 10px;
}
@media (max-width: 768px) {
  .searchbar .searchbar-part .container .mid .suggestionsList {
    z-index: 1000;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .history-container {
    padding: 0 10px;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-header .history-title {
    font-size: 10px;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-header .clear-history-button {
    font-size: 10px;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .history-container .history-list li {
    font-size: 10px;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container {
    padding: 5px;
    flex-wrap: wrap;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .related-label {
    font-size: 10px;
    margin: 0;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down .owl-stage-outer {
    margin: 0;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down .owl-stage-outer .owl-stage {
    display: flex;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down .owl-stage-outer .owl-stage .owl-item .related-item {
    font-size: 10px;
    padding: 3px;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .owl-theme .owl-nav {
    display: none;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .trending-container {
    padding: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .trending-container .label {
    font-size: 10px;
    margin: 0;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down .owl-stage-outer {
    margin: 0;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down .owl-stage-outer .owl-stage {
    display: flex;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down .owl-stage-outer .owl-stage .owl-item .trending-item {
    font-size: 10px;
    padding: 3px;
  }
}
@media (min-width: 768px) and (max-width: 1450px) {
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container {
    display: flex;
    flex-wrap: wrap;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .related-label {
    font-size: 12px;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down {
    width: 100%;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .related-products-container .down .owl-item .related-item {
    font-size: 12px;
    padding: 5px;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .trending-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .trending-container .label {
    font-size: 12px;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down {
    width: 100%;
  }
  .searchbar .searchbar-part .container .mid .suggestionsList .trending-container .down .owl-item .trending-item {
    font-size: 12px;
    padding: 5px;
  }
}
.searchbar .searchbar-part .container .right {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.searchbar .searchbar-part .container .right .buttons {
  display: flex;
  flex-direction: row;
}
.searchbar .searchbar-part .container .right a {
  font-size: 14px;
  color: white;
  margin-left: 40px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchbar .searchbar-part .container .right a .icon-right {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.searchbar .searchbar-part .container .right a p {
  display: flex;
  flex-direction: column;
}
.searchbar .searchbar-part .container .right a p span {
  font-weight: 600;
}
.searchbar .searchbar-part .container .right a img {
  width: 30px;
  height: 30px;
}
.searchbar .searchbar-part .container .right .profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchbar .searchbar-part .container .right .profile-container a {
  font-size: 14px;
  color: white;
  margin-left: 40px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchbar .searchbar-part .container .right .profile-container a .icon-right {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.searchbar .searchbar-part .container .right .profile-container a p {
  display: flex;
  flex-direction: column;
}
.searchbar .searchbar-part .container .right .profile-container a p span {
  font-weight: 600;
}
.searchbar .searchbar-part .container .right .profile-container a img {
  width: 30px;
  height: 30px;
}
.searchbar .searchbar-part .container .right .cart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2px;
}
.searchbar .searchbar-part .container .right .cart .cart-icon {
  position: relative; /* Required to position the badge relative to the icon */
  display: inline-block;
}
.searchbar .searchbar-part .container .right .cart .cart-icon img {
  width: 30px;
  height: 30px;
}
.searchbar .searchbar-part .container .right .cart .cart-icon .cart-badge {
  position: absolute;
  top: 7px;
  right: 2px;
  background-color: #1ca800;
  color: white;
  padding: 3px 6px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  transform: translate(50%, -50%);
}
.searchbar .searchbar-part .container .right .cart p {
  color: #f2f8fd;
  font-size: 10px;
  color: white;
  margin-left: 40px;
  font-weight: 400;
  margin-top: -5px;
  text-align: center;
}
.searchbar .searchbar-part .mobiledown {
  display: none;
}
@media only screen and (max-width: 1450px) {
  .searchbar .searchbar-part .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .searchbar .searchbar-part .container .left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }
  .searchbar .searchbar-part .container .left .logo img {
    width: 53px;
    height: 33px;
    margin-top: 10px;
  }
  .searchbar .searchbar-part .container .left .loyaltypart {
    display: none;
  }
  .searchbar .searchbar-part .container .mid {
    flex: 3;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  .searchbar .searchbar-part .container .mid .search {
    width: 100%;
    margin: 0 auto;
    margin-top: 5px;
  }
  .searchbar .searchbar-part .container .mid .search .search__input {
    font-size: 11px;
    font-weight: 300;
  }
  .searchbar .searchbar-part .container .mid .search .search__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none;
  }
  .searchbar .searchbar-part .container .mid .search .search__button .search__icon {
    height: 15px;
    width: 15px;
    fill: white;
    border-radius: 100px;
    background: #00a44c;
    padding: 5px;
    margin-right: 8px;
    margin-bottom: 3px;
  }
  .searchbar .searchbar-part .container .right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  .searchbar .searchbar-part .container .right .buttons {
    display: none;
  }
  .searchbar .searchbar-part .mobiledown {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 5px;
  }
  .searchbar .searchbar-part .mobiledown .left {
    margin-left: 10px;
    margin-top: 0px;
  }
  .searchbar .searchbar-part .mobiledown .left a {
    display: flex;
    flex-direction: row;
    color: white;
    margin-left: 10px;
    margin-top: 2px;
  }
  .searchbar .searchbar-part .mobiledown .left a img {
    width: 18px;
    height: 16px;
    margin-top: 10px;
  }
  .searchbar .searchbar-part .mobiledown .left a p {
    color: rgb(255, 255, 255);
    font-size: 10px;
    font-weight: 400;
    line-height: 0px;
    letter-spacing: 0px;
    text-align: left;
    margin-top: 18px;
    margin-left: 5px;
  }
  .searchbar .searchbar-part .mobiledown .left a p span {
    font-weight: 700;
  }
  .searchbar .searchbar-part .mobiledown .right {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
  }
  .searchbar .searchbar-part .mobiledown .right .buttons {
    display: flex;
    flex-direction: row;
  }
  .searchbar .searchbar-part .mobiledown .right a {
    color: rgb(255, 255, 255);
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0px;
    text-align: left;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .searchbar .searchbar-part .mobiledown .right a .icon-right {
    width: 15px;
    height: 15px;
  }
  .searchbar .searchbar-part .mobiledown .right a p {
    display: flex;
    flex-direction: column;
  }
  .searchbar .searchbar-part .mobiledown .right a p span {
    font-weight: 600;
  }
  .searchbar .searchbar-part .mobiledown .right a img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  .searchbar .searchbar-part .mobiledown .right .profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.searchbar .departmentsandtags {
  width: 100%;
  background-color: white;
}
.searchbar .departmentsandtags .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.searchbar .departmentsandtags .container .navbar-categories {
  color: black;
  position: absolute;
  border: none;
  padding: 0px;
  margin: 0px;
  /* First-level dropdown */
  /* Second-level dropdowns */
}
.searchbar .departmentsandtags .container .navbar-categories .navbar-menu {
  list-style: none;
  display: flex;
  justify-content: left;
  position: relative;
  padding: 0px;
  margin: 0px;
}
.searchbar .departmentsandtags .container .navbar-categories .navbar-menu > li {
  position: relative;
  color: black;
}
.searchbar .departmentsandtags .container .navbar-categories .navbar-menu > li > a {
  text-decoration: none;
  display: block;
  color: black;
  margin-top: 5px;
}
.searchbar .departmentsandtags .container .navbar-categories .dropdown-button {
  margin-top: 5px;
  margin-bottom: 5px;
  box-sizing: border-box;
  border: 1px solid rgb(124, 160, 190);
  border-radius: 262px;
  background: rgba(196, 196, 196, 0);
  padding: 10px 20px;
  margin: 0px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  color: rgb(6, 30, 65);
  font-size: 13px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0px;
  text-align: left;
}
.searchbar .departmentsandtags .container .navbar-categories .dropdown-button img {
  margin-left: 5px;
  width: 10px;
  height: 10px;
  margin-top: 3px;
}
.searchbar .departmentsandtags .container .navbar-categories .dropdown-button:hover,
.searchbar .departmentsandtags .container .navbar-categories .dropdown-menu li:hover {
  background-color: #e7f1fb;
}
.searchbar .departmentsandtags .container .navbar-categories .first-level {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: yellow;
  display: none;
  overflow-y: auto;
  z-index: 1;
  background-color: #f9f9f9;
  width: 200px;
  height: 500px;
  box-shadow: 0px 8px 16px 0px rgb(124, 160, 190);
  overflow-y: scroll;
  padding: 0px;
  margin-top: 0px;
}
.searchbar .departmentsandtags .container .navbar-categories .first-level li {
  color: black;
  padding: 12px 16px;
  padding-right: 20px;
  display: block;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
}
.searchbar .departmentsandtags .container .navbar-categories .first-level li:hover {
  background-color: #e7f1fb;
}
.searchbar .departmentsandtags .container .navbar-categories .second-level {
  list-style: none;
  position: absolute;
  top: 43px; /* Align with the first level */
  left: 200px; /* Position second level to the right of the first level */
  width: 200px;
  height: 500px;
  display: none;
  overflow-y: auto;
  z-index: 2;
  background-color: red;
  cursor: pointer;
  background-color: #e7f1fb;
  box-shadow: 0px 8px 16px 0px rgb(124, 160, 190);
  overflow-y: scroll;
  padding: 0px;
}
.searchbar .departmentsandtags .container .navbar-categories .second-level li {
  color: black;
  padding: 12px 16px;
  padding-right: 20px;
  display: block;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
}
.searchbar .departmentsandtags .container .navbar-categories .second-level li:hover {
  background-color: white;
}
.searchbar .departmentsandtags .container .navbar-categories .dropdown-item a {
  color: black;
  padding: 10px;
  display: block;
  text-decoration: none;
}
.searchbar .departmentsandtags .container .navbar-categories nav ul li ul li {
  padding: 25px 10px;
}
.searchbar .departmentsandtags .container .services {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 135px;
}
.searchbar .departmentsandtags .container .services button {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  border-radius: 262px;
  border: 1px solid rgb(124, 160, 190);
  border-radius: 262px;
  background: rgba(196, 196, 196, 0);
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
}
.searchbar .departmentsandtags .container .services button:hover {
  background-color: #e7f1fb;
}
.searchbar .departmentsandtags .container .services button p {
  color: rgb(6, 30, 65);
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0px;
  text-align: left;
}
.searchbar .departmentsandtags .container .services button img {
  margin-left: 5px;
  width: 14px;
  height: 17px;
  margin-top: -2px;
}
.searchbar .departmentsandtags .container .horizontalline {
  border: 0.1px solid rgb(124, 160, 190);
  height: 25px;
  margin-right: 20px;
  margin-top: 10px;
}
.searchbar .departmentsandtags .container .tags {
  display: flex;
  flex-direction: row;
}
.searchbar .departmentsandtags .container .tags a {
  padding: 0px;
  margin: 0px;
  margin-right: 17px;
  color: rgb(60, 85, 106);
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0px;
  text-align: center;
  white-space: nowrap;
  margin-top: 15px;
  transition: 0.2s all ease-in-out;
}
.searchbar .departmentsandtags .container .tags a:hover {
  color: rgb(0, 0, 0);
}
.searchbar .departmentsandtags .container::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1450px) {
  .searchbar .departmentsandtags {
    justify-content: center;
    top: 99px;
  }
  .searchbar .departmentsandtags .container {
    display: flex;
    flex-direction: row;
  }
  .searchbar .departmentsandtags .container .navbar-categories {
    color: black;
    position: absolute;
    border: none;
    padding: 0px;
    margin: 0px;
    background-color: white;
    /* First-level dropdown */
    /* Second-level dropdowns */
  }
  .searchbar .departmentsandtags .container .navbar-categories .navbar-menu {
    list-style: none;
    display: flex;
    justify-content: left;
    position: relative;
    padding: 0px;
    margin: 0px;
    margin-top: 2px;
  }
  .searchbar .departmentsandtags .container .navbar-categories .navbar-menu > li {
    position: relative;
    color: black;
  }
  .searchbar .departmentsandtags .container .navbar-categories .navbar-menu > li > a {
    text-decoration: none;
    display: block;
    color: black;
    margin-top: 5px;
  }
  .searchbar .departmentsandtags .container .navbar-categories .dropdown-button {
    margin-top: 3px;
    margin-bottom: 5px;
    box-sizing: border-box;
    border: 1px solid rgb(124, 160, 190);
    border-radius: 262px;
    background: rgba(196, 196, 196, 0);
    padding: 9px 20px;
    margin: 0px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    color: rgb(6, 30, 65);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0px;
    text-align: left;
  }
  .searchbar .departmentsandtags .container .navbar-categories .dropdown-button img {
    margin-left: 5px;
    width: 10px;
    height: 10px;
    margin-top: 3px;
  }
  .searchbar .departmentsandtags .container .navbar-categories .dropdown-button:hover,
  .searchbar .departmentsandtags .container .navbar-categories .dropdown-menu li:hover {
    background-color: #e7f1fb;
  }
  .searchbar .departmentsandtags .container .navbar-categories .first-level {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: yellow;
    display: none;
    overflow-y: auto;
    z-index: 1;
    background-color: #f9f9f9;
    width: 150px;
    height: 500px;
    box-shadow: 0px 8px 16px 0px rgb(124, 160, 190);
    overflow-y: scroll;
    padding: 0px;
    margin-top: 0px;
  }
  .searchbar .departmentsandtags .container .navbar-categories .first-level li {
    color: black;
    padding: 12px 16px;
    padding-right: 20px;
    display: block;
    text-align: left;
    cursor: pointer;
    font-size: 10px;
  }
  .searchbar .departmentsandtags .container .navbar-categories .first-level li:hover {
    background-color: #e7f1fb;
  }
  .searchbar .departmentsandtags .container .navbar-categories .second-level {
    list-style: none;
    position: absolute;
    top: 43px; /* Align with the first level */
    left: 150px; /* Position second level to the right of the first level */
    width: 150px;
    height: 500px;
    display: none;
    overflow-y: auto;
    z-index: 2;
    background-color: red;
    cursor: pointer;
    background-color: #e7f1fb;
    box-shadow: 0px 8px 16px 0px rgb(124, 160, 190);
    overflow-y: scroll;
    padding: 0px;
  }
  .searchbar .departmentsandtags .container .navbar-categories .second-level li {
    color: black;
    padding: 12px 16px;
    padding-right: 20px;
    display: block;
    text-align: left;
    cursor: pointer;
    font-size: 10px;
  }
  .searchbar .departmentsandtags .container .navbar-categories .second-level li:hover {
    background-color: white;
  }
  .searchbar .departmentsandtags .container .navbar-categories .dropdown-item a {
    color: black;
    padding: 10px;
    display: block;
    text-decoration: none;
  }
  .searchbar .departmentsandtags .container .navbar-categories nav ul li ul li {
    padding: 25px 10px;
  }
  .searchbar .departmentsandtags .container .services {
    margin-top: 7px;
    margin-left: 120px;
  }
  .searchbar .departmentsandtags .container .services button p {
    font-size: 10px;
    font-weight: 600;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
  }
  .searchbar .departmentsandtags .container .tags a {
    font-size: 10px;
  }
}/*# sourceMappingURL=navigation-bar.css.map */