.select-box{
    & label{
        color: #181A17;
        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
    }
    & span{
        font-size: 12px;
        font-weight: 400;
        color: #b5b5b5;
        margin-bottom: 0;
    }
  
}
.dropdown-container {
  position: relative;
  width:100%;
}
.searchBar{
     width:100%;
     border: none !important;
     background-color: transparent !important;
     outline: none;
     padding: 0 !important;
     color: #000000;
}
.dropdown-selected {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #151515;
  border-radius: 8px;
  background-color: #fcfcfc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #000000;
  font-family: Inter;
  font-size: 15px;
  width:100%;
}
.dropdown-selected:after {
  content: "▼";
  font-size: 12px;
  color: #333;
}
.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  max-height: 260px;
  overflow-y: scroll;
  border: 1px solid #151515;
  border-radius: 8px;
  background-color: #f7f7f7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 10px;
  margin: 0;
}
.dropdown-options li {
  padding: 12px;
  font-size: 16px;
  color: #333;
  border-radius: 8px;
  list-style: none;
  cursor: pointer;
}
.dropdown-options li:hover:not(.custom-input-li) {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #F3E6E6;
    background: #FFF;
}

.custom-input-li {
  display: block;
  width: 100%;
  padding: 0!important;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  position: relative;
  margin-top: 2px;
}

.custom-input {
  border: none!important;
  padding-right: 40px; 
  background: #FFF!important; 
  margin-top: 0!important;
  border-radius: 10px!important;
}

.save-custom-option {
  cursor: pointer;
  color: #fff!important;
  background-color: var(--primary-color)!important;
  right: 0;
  top: 0;
  border-radius: 0 7px 7px 0;
  margin-left: -30px;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0!important;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}



.dropdown-options li.selected {
  background-color: #f0f0f0;
}
.document-section {
    color: #181A17;
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    margin-top: 21px;

    & h3{
        color: #181A17;
        font-family: Inter;
        font-size: 15px;
       
        font-weight: 700;
    }

}
.document-item {
    display: flex;
    align-items: center;
    font-size: 25px;
    border: none;
    cursor: pointer;
  
    & label{
        margin-bottom: 0;
        color: #181A17;
        font-size: 15px;
    }
    & input{
        width: 18px;
        height: 16px;
        border-radius: 2px;
        border: 1px solid #000;
        background: #F6F6F8;
        margin-right: 6px
    }
   
}
.form_label{
    margin-top: 0.5rem;
}