﻿ComboBox {
}

.ComboBox input[type="text"][readonly="readonly"] {
    padding-right: 20px;
    cursor: pointer;
    background-color: white;
}

.Contenedor_ComboBox {
    max-height: 350px;
    overflow: auto;
    width: calc(100% - 14px);
    position: absolute;
    border: 1px solid rgb(204,204,204);
    z-index: 100;
    background-color: white;
    top: 59px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-top: none;
    display: none;
}

.focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.ShowIn {
    display: block;
    z-index: 1000;
}

.RowComboBox {
    cursor: pointer;
    margin-left: 6px;
    margin-right: 6px;
    display: flex;
}

    .RowComboBox .columnComboBox {
        margin: 5px;
    }

        .RowComboBox .columnComboBox:first-child {
            margin-left: 2px;
            display: none;
        }

[data-multiselect="true"] .RowComboBox .columnComboBox:first-child {
    display: inherit;
}

[data-multiselect="True"] .RowComboBox .columnComboBox:first-child {
    display: inherit;
}

.RowComboBox .columnComboBox:last-child {
    margin-right: 0;
}


.RowComboBox:first-child {
    margin-top: 7px;
}

.RowComboBox:last-child {
    margin-bottom: 7px;
}


.RowComboBox:nth-child(even) {
    background-color: #e9e9e9;
}

.RowComboBox:nth-child(odd) {
    background-color: white;
}

.RowComboBox:nth-child(even):hover {
    background-color: #bebebe;
}

.RowComboBox:nth-child(odd):hover {
    background-color: #bebebe;
}

.RowComboBox.Selected_ComboBox {
    background-color: #0085B8;
    color: white;
}

    .RowComboBox.Selected_ComboBox:hover {
        background-color: #00b8ff;
        color: white;
    }
