﻿body {
}



.ButtonsRadioList label {
    display: block;
    border: solid 1px #E3E3E3;
    padding: 5px 10px;
    background-color: #E3E3E3;
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;
}


.ButtonsRadioList input[type="radio"] {
    display: none;
    
     
}

.ButtonsRadioList input:checked + label {
    background-color: #1C264C;
    color: White;
    height: 50px;
    display:flex;
    align-items:center;
    
}


.CompletionList {
    border: solid 2px #E3E3E3;
    margin: 1px;
    height: auto;
    max-height: 35%;
    width: auto;
    overflow: auto;
    font-size: 15px;
    background-color: #FFFFFF;
    cursor: pointer;
    font-family: Open Sans !important;

}

.CompletionListItem {
    color: black;
    background-color: white;
    font-size: 15px;
    cursor: pointer;  
     
    font-family: Open Sans !important;
}

.CompletionListHighlightedItem {
    color: black;
    background-color: #D6DFDF;
    font-size: 15px;
    cursor: pointer;
    
    font-family: Open Sans !important;
}

.CompletionList::-webkit-scrollbar  {
    width: 8px; /* width of the entire scrollbar */
}

.CompletionList::-webkit-scrollbar-thumb {
    background-color: rgba(28, 38, 76); /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid rgba(28, 38, 76); /* creates padding around scroll thumb */
}
.scrollCustom::-webkit-scrollbar {
    width: 5px; /* width of the entire scrollbar */
}

.scrollCustom::-webkit-scrollbar-thumb {
    background-color: rgba(28, 38, 76); /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid rgba(28, 38, 76); /* creates padding around scroll thumb */
}

.scrollCustomGrid::-webkit-scrollbar {
    width:1px; /* width of the entire scrollbar */
}

.scrollCustomGrid::-webkit-scrollbar-thumb {
    background-color: rgba(28, 38, 76); /* color of the scroll thumb */
    border-radius: 5px; /* roundness of the scroll thumb */
    border: 1px solid rgba(28, 38, 76); /* creates padding around scroll thumb */
}


.templeteF{
   
}

.tooltipLabel {
    cursor: pointer;
    font-size: 6px;
}

.custom-select{
    margin-top:6px;
    cursor:pointer;
}

.FixedHeader th {
    background-color: #1C264C !important;
    color: white !important;
    top: 0;
    position: sticky;
    z-index:10;
}

.my-popup-class {
    z-index: 1; /* Asegúrate de que esté por encima de otros elementos */
    /* Para asegurar la posición */
}

.popupBack {
    z-index: -1; /* Asegúrate de que esté por encima de otros elementos */
     /* Para asegurar la posición */
}

.suggestions {
    border: 1px solid #ddd;
    max-height: 150px;
    overflow-y: auto;
    position: absolute; /* Cambia a absolute para flotar sobre el contenido */
    background: white;
    z-index: 1000; /* Asegúrate de que esté por encima de otros elementos */
    width: calc(100% - 2px); /* Ajustar el ancho para que coincida con el input */
    margin-top: 5px; /* Separar ligeramente del input */
    display: none; /* Inicialmente oculto */
}

.suggestionsinput {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.containerfind {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky; /* Esto es importante para el posicionamiento del div de sugerencias */
}



.finderNew option {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
    border-bottom: 1px solid #D6DFDF;
    font-size: 12px;
}

    .finderNew option:hover {
        color: black;
        background-color: #D6DFDF;
        font-size: 12px;
        cursor: pointer;
        font-family: Open Sans !important;
    }

.finderNew option.selected {
    background-color: #007bff;
    color: white;
}

select:disabled {
    height: 33px;
    border: 1px solid #ccc;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 5px;
    font-size: 0.9em;
    cursor: not-allowed;
    padding-inline: 1em !important;
    font-size: 14px !important;
    width: 100% !important;
}

/*.input[readonly] {
    display: flex;
    background-color:white;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 33px;
    width: 100%;
    padding: 5px 10px;
    font-size: 14px !important;
    cursor: not-allowed;
}*/

 