/* Estilos do multiselect */
@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-Regular.ttf') format('truetype');
  }

.custom-multiselect {
    position: relative;
    display: inline-block;
    width: 100%;     
  }
  
  .custom-multiselect button {
    height: 48px;
    border-radius: 8px;
    display: block;
    width: 100%;
    padding: 15px;
    border: 1px solid #E4E4E4;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    text-align: left; 
    margin-bottom: 15px;
    color: #787878;
  }

  .custom-multiselect button:active {
    border-color: #5E17CF;
  }

  .custom-multiselect button:hover {
    border-color: #5E17CF
  }
  
  
  
  .custom-multiselect .multiselect-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; /* Ocupar 100% da largura da div */
    display: none;
    list-style: none;
    margin-top: -15px;
    padding-left: 15px;
    border: 1px solid #E4E4E4;
    background-color: #fff;
    z-index: 1;
    border-radius: 8px;
    font-size: 15px;
  }
  
  .custom-multiselect .multiselect-list li {
    padding: 4px;
    height: 44px;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
  }

  .custom-multiselect .multiselect-list li label {
    display: flex;
    align-items: center; /* Centraliza verticalmente o conteúdo dentro do label */
  }

  .custom-multiselect .multiselect-list li:has(input[type="checkbox"]:checked) {
    background-color: #FAFAFA;
  }  
  
  .custom-multiselect .multiselect-list li:hover {
    background-color: #f2f2f2;
  }
  
  .custom-multiselect .multiselect-checkbox {
    margin-right: 8px;
  }

  .selected-options {
    margin-top: 8px;
    font-size: 12px;
    color: #888;
  }

  .selected-options-description {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px;
  font-size: 12px;
  color: #555;
  background-color: #f9f9f9;
  margin-top: 8px;
}

.btnSelectedOptions{
    border: none;
    border-radius: 32px;
    padding: 8px 12px 8px 12px;
    background-color: #EFE4FF;
    color: #5E17CF;
    font-weight: bold;
    margin: 5px;
    height: 28px;;
    gap: 8px;
}

.btnSelectedOptions:hover{    
    color: #EFE4FF;
    background-color: #5E17CF;
    font-weight: bold;
}

.selectAllCheckbox:before  {
    border-radius: 0;
    border: 2px solid white;
    border-left: 0;
    border-top: 0;
    width: 5px; 
    top: 5px;
    content: '';  
    opacity: 0;
    transition: all 300ms ease-in-out;
    position: absolute;
}

.selectAllCheckbox {
    border-radius: 4px;
    border: solid 2px #787878;
    margin: 0px 10px 0px 0px;
    justify-items: center;
    cursor: pointer;
    appearance: none;
    width: 16px;
    height: 16px; 
    position: relative;
    display: inline-flex; 
    flex-direction: row;
    justify-content: center;
    outline: none;
    background-color: white;
  }  
   
  .selectAllCheckbox:checked {
    border-color: #863BFF; /* Cor da borda quando marcada */
    background-color: #863BFF;
  }
  
  .selectAllCheckbox:checked:before {
    opacity: 1;
  }
  
  .selectAllCheckbox:focus {
    box-shadow: 0 0 5px #863BFF;
  }
  
  