.custom-dropdown-items {
  position: relative;
}

.new-message-header-indicator {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #ef4444;
  border-radius: 50%;
  color: white;
  top: 11px;
  right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1020;
  transition: transform 0.8s ease;
  z-index: 1020 !important;
}

.main-header.hidden {
  transform: translateY(-100%);
}

.mask-header3 {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 120%;
  height: auto;
  z-index: 1;
}

.btn-header-search-icon {
  background-color: #40E0D0;
}

.btn-header-search-icon:hover {
  background-color: #2d9f94 !important;
}

.header-top-style {
  background-color: #40E0D0 !important;
  position: relative;
}

.input-wrap-style {
  /* border: 1px solid #40E0D0 !important; */
  border: none !important;
}

.mr-20px {
  margin-right: 20px !important;
}

.filtering-btn-style {
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
}

@media only screen and (max-width: 1500px) {
  .mask-header3 {
    width: 150%;
    bottom: -19px;
  }
}

@media only screen and (max-width: 1000px) {
  .mask-header3 {
    width: 250%;
    bottom: -22px;
  }
}

@media only screen and (max-width: 768px) {
  .mask-header3 {
    width: 350%;
    bottom: -13px;
  }

  .main-header,
  .mobile-btm-menu {
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }


  /* Slide header up */
  .main-header.hidden {
    transform: translateY(-100%);
  }

  /* Slide bottom menu down */
  .mobile-btm-menu.hidden {
    transform: translateY(100%);
  }
}

@media only screen and (max-width: 400px) {
  .mask-header3 {
    width: 450%;
    bottom: -20px;
  }
}