




.custom-select {

  box-sizing: border-box;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  position: relative;

}

.select-box {
  background-color: #ffffff;
  border: 1px solid #ced4da;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 10px;
  cursor: pointer;
}

.selected-options {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
}

.tag {
  background-color: #f2f2f2;
  color: #000;
  border-radius: 5px;
  margin-right: 5px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
}

.tick-mark {
  margin-left: 5px;
  color: green;
}

.remove-tag {
  margin-left: 6px;
  cursor: pointer;
}

.arrow {
  margin: 0 10px;
}

.options {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #ced4da;
  border-top: none;
  max-height: 225px;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.open .options {
  display: block;
}

.options-search-tags {
  background-color: #ffffff;
  border: 1px solid #ced4da;
  padding: 8px 0px;
  margin: 8px;
}

.search-tags {
  width: 90%;
  margin-left: 10px;
  margin-right: 10px;
  border: none;
  outline: none;
  padding: 8px;
  font-size: 14px;
}

.clear {
  /* position: absolute; */
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  color: #000;
  top: 26px;
  left: auto;
  right: 15px;
}

.option {
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.option .tick-mark {
  margin-left: auto;
  display: none;
}

.option.active .tick-mark {
  display: block;
  margin-left: auto;
  color: green;
}

.option:active {
  color: #000;
  background-color: #f2f2f2;
  border-bottom: 1px solid #eaeaea;
}

.tag:hover,
.option:hover {
  background-color: #eaeaea;
}

.no-result-message {
  padding: 0px 0px 12px 12px;
}

.error {
  color: #ff1a2a;
}




.option.hidden {
  display: none;
}


/* html */


.container {
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.searchcontainer{
  font-family: "REM", sans-serif;
  width: 100%;
  margin-top: 10px;
}


.btn_submit:hover {
  background-color: #45a049;
}

.btn_submit {
  padding: 17px 24px;
  background-color: #4caf50;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.arrow {
  margin-left: auto; /* Added margin-right */
}

.reset-btn {
  
  background-color: transparent;
  border: none;
  border-left: #c2bdbd 1px solid;
  padding: 15px 20px;
  outline: none;
  cursor: pointer;
}

.reset-btn:hover {
  color: red;
  background-color: #fdfdfd;
}