.gs-main-btn {
  display: flex;
  flex-direction: column;
  gap: 1px;

  cursor: pointer;
}

.gs-main-btn span:last-child {
  font-size: 11px;
}

#ang-multi-select .multi-select {
  /* width: 260px; */
  position: relative;
  font-family: "Jost", sans-serif;
}

#ang-multi-select .select-box svg {
  stroke-width: 4;
  width: 15px;
  height: 15px;
  color: #858585;
}

#ang-multi-select .select-box {
  /* border: 1px solid #bfc7d1; */
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding-left: 23px;
  padding-right: 2px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
}

@-moz-document url-prefix() {
  #ang-multi-select .select-box {
    background-color: #e9ecef;
  }
}

#ang-multi-select .searchBox {
  font-size: 16px !important;
}

/* .main_home_page #ang-multi-select .select-box {
            height: 58px;
        } */

.search_page_multiselect #ang-multi-select .select-box {
  height: 47px;
  font-size: 14px;
  color: #000000;
  /* width: 250px; */
}

.search_page_multiselect #ang-multi-select .select-box svg {
  margin-top: 6px;
}

.search_page_multiselect #ang-multi-select .multi-select {
  width: 260px;
}

#ang-multi-select .dropdown {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 100;
}

#ang-multi-select .optionsList {
  max-height: 250px;
  overflow-y: auto;
}

#ang-multi-select .optionsList::-webkit-scrollbar {
  width: 6px;
}

#ang-multi-select .optionsList::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

#ang-multi-select .search-box {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

#ang-multi-select .search-box input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  /* 🔥 overflow fix */
}

#ang-multi-select .option {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

#ang-multi-select .option:hover {
  background: #f0f0f0;
}

#ang-multi-select .option.selected {
  background: #2f3b4a;
  color: #fff;
}

#ang-multi-select .option input {
  accent-color: #4caf50;
  pointer-events: none;
  /* 🔥 checkbox click issue fix */
}

#ang-multi-select .arrow {
  transition: transform 0.3s ease;
}

/* 🔥 jab open ho */
#ang-multi-select .arrow.rotate {
  transform: rotate(180deg);
}

/* .select2-container--default .select2-search--inline .select2-search__field {
            color: aliceblue;
        } */

/* gs-announcement-bar css */
.gs-announcement-bar {
  width: 100%;
  /* background: linear-gradient(90deg, #ff6b00 0%, #ff8c00 50%, #ff6b00 100%); */
  background-color: #ff8c00;
  padding: 9px 0;
  text-align: center;
  position: relative;
  z-index: 9999;
  border-bottom: 2px solid #e05500;
}

.gs-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 16px;
}

.gs-ann-badge {
  background: #fff;
  color: #ff6b00;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
}

.gs-ann-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.gs-ann-divider {
  color: rgba(255, 255, 255, 0.4);
}

.gs-ann-link {
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: underline;
  font-family: "Jost", sans-serif;
}

.gs-ann-link:hover {
  color: #ffe0c2;
}

@media (max-width: 600px) {
  .gs-ann-text {
    font-size: 0.9rem;
  }

  .gs-ann-divider {
    display: none;
  }

  .gs-ann-link {
    font-size: 12px;
  }
}
