/* Estilo para el input */
#myInput {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

/*
 #brow {
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    background-color: #fff;
}

#brow option {
    padding: 8px;
    cursor: pointer;
}
*/

/* Estilo cuando el input está enfocado */
#myInput:focus {
    border-color: #007bff;
    /* Cambia el color del borde al enfocar */
}

/*----------------------------------*/
/* Estilo para el input */
#myInputDocs {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

/*
#browDocs {
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    background-color: #fff;
}

#browDocs option {
    padding: 8px;
    cursor: pointer;
}
*/

/* Estilo cuando el input está enfocado */
#myInputDocs:focus {
    border-color: #007bff;
    /* Cambia el color del borde al enfocar */
}

div.custom-select{
    width: -webkit-fill-available;
}

div.custom-select datalist {
    position: absolute;
    border-top: none;
    font-family: sans-serif;
    width: 350px;
    padding: 5px;
    height: 150px;
    overflow-y: auto    
}

option {
    background-color: white;
    padding: 4px;
    margin-bottom: 1px;
    font-size: 18px;
    cursor: pointer;
}

.info{
    padding: 12px!important;
}

.quest_{
    padding-bottom: 0px;
}

.input-group{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    
    margin-left: 10px; 
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #172b4d;
    text-align: center;
    white-space: nowrap;
    background-color: #fafbfc;
    border: 2px solid #dfe1e6;
    border-radius: 3px;
    margin-bottom: 8px;
}

.input-group{
    flex-wrap: nowrap;
}

.cursor-pointer{
    cursor: pointer;
}

.d-flex{
    display: flex;
}