.select-option{
    background-color:rgb(212, 209, 209);
    width: 50%;
    color: black;
}

.select-divisores{
    font-size: 1pt; 
    background-color: #000000;
}

.link-resource{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.buscador-rc{
    display: flex;
    flex-direction: column;
    width: 100%;
}


.select{
    background: #941a2c;
    border-radius: 50px 0  0 50px;
    color:white;
    padding: 10px 25px 10px 25px;
}

.select-filter{
    background: #941a2c;
    border-radius: 0 0 0 0;
    color:white;
    padding: 10px 25px 10px 25px;
    height: 100%;
}

.select-filter:focus { 
	background-color: #941a2c; 
}

#regresar{
    background: #941a2c;
    color:white;
    padding: 5px 15px 5px 15px;
    border-radius: 10px;
}

#opcion option{
    padding-top: 10px !important;
}

/****************************************************/

.ddl-select {
    visibility:hidden;
  }
  
  .ddl {
    position:relative;
    height:50px;
    width:100%;
    text-align:initial;
  }
  
   
  .ddl::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 12px;
    width: 10px;
    height: 2px;
    background: #fff;
    z-index: 99;
    transform: rotate(-40deg);
    transition: 0.5s;
  }
  
  .ddl::before {
    content: '';
    position: absolute;
    top: 25px;
    right: 19px;
    width: 10px;
    height: 2px;
    background: #fff;
    z-index: 99;
    transform: rotate(40deg);
    transition: 0.5s;
  }
  
  .ddl.active::after{
    right:28px;
  }
  
  .ddl.active::before{
    right:20px;
  }
  
  .ddl-input {
    height:100%!important;
    width:100%;
    cursor:pointer;
    color: #fff!important;
    background: #941a2c!important;
    padding: 10px 40px 10px 25px!important;
    border-radius: 3px 3px 0px 0px!important;
  }

  input#ddl_opcion::placeholder {
    color: white;
}
  
  .ddl.active .ddl-options {
    visibility:visible;
    opacity:1;
  }
  
  .ddl .ddl-options {
    position:absolute;
    width:100%;
    top:55px;
    background:#efefef;
    border-radius:10px;
    overflow:hidden;
    visibility:hidden;
    opacity:0;
    transition:0.25s;
    z-index: 999;
    border:1px solid #e9e9e9;
    box-shadow: 0 0 5px rgba(0,0,0,0.10);
  }
  
  .ddl .ddl-options > div {
    padding: 10px 20px;
    cursor:pointer;
    border-bottom: 2px solid #aaaaaa;
  }

  .ddl .ddl-options > div:last-child {
    border-width: 0px;
  }
  
  .ddl .ddl-options > div:hover {
    background: var(--bs-gray-600);
    color: #fff;
}

input#valor_busqueda {
  border-radius: 0px;
}

input#buscar {
  height: 100%;
  width: 100%;
  border-radius: 0px 4px 4px 0px !important;
  border-color: #333333; 
  background-color: #333333;
}

input#buscar:hover {
 border-color: #15365F!important; 
 background-color: #15365F!important;
}

@media (min-width: 992px){
    .buscador-rc {
      flex-direction: row;
      justify-content: center;
      align-items: stretch;
  }

  .ddl-input {
    border-radius: 4px 0  0 4px!important;
  }

  input#buscar {
    height: 100%;
}

  input#valor_busqueda {
    height: 100%;
    border-radius: 0px;
  }
}

#select_busqueda:focus {
    background-color: #941a2c;
}