.checkboxSelectButton {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30px;
    border-left: 1px solid #ced4da;
    display: flex;
    cursor: pointer;
    border-radius: 0 0.25rem 0.25rem 0 !important;
    background-color: white;
    z-index: 1;
}

.min-max-select {
    position: relative;
    height: 28.4px;

}

.min-max-select-input {
}

.min-max-select-options {
    background-color: white;
    position: absolute;
    top: 28.6px;
    left: 0;
    width: 100%;
    z-index: 10000;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-height: 300px;
    overflow: auto;
}

.min-max-select-options div:first-child {
    padding-left: 0;
}

.min-max-select-options div {
    padding: 1px 1px 1px 15px;
    cursor: pointer;
    width: 100%;
    border-radius: 0.25rem;
}

.min-max-select-options div:hover {
    transition: all 0.1s;
    color: white;
    background-color: #0d6efd;;
}

.min-max-select-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 25px;
    display: flex;
    cursor: pointer;
    border-radius: 0 0.25rem 0.25rem 0 !important;
    background-color: white;
    z-index: 1;
    border: 1px solid #ced4da;
}

.min-max-select-btn:hover {
    transition: background-color 0.1s;
    background-color: #fafafa;
}

.checkboxSelectButton:hover {
    transition: background-color 0.1s;
    background-color: #fafafa;
}
.checkBoxClear {
    margin: 0 !important;
    border-radius: 0 !important;
}

.comboOptionHolder {
    height: 250px;
    overflow-y: auto;
    margin: 0px !important;
    background-color: #f1f4f5;
}
.comboSelectedOption {
    background-color: #1992c2;
    border-radius: 0.1rem;
    width: max-content;
    height: max-content;
    padding: 2px 4px;
    margin: 2px;
    cursor: pointer;

  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
    white-space: nowrap;
    transition: background-color 0.2s;
}

.comboSelectedOption:hover {
    background-color: #14779d;

}
.comboOptionHolder .option {
    padding: 3px 5px;
    font-size: 15px;
    display: flex;
}
.comboBoxCheckBox {
    width: 15px;
    height: 15px;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 5px;
}
.selectedOptions {
    height: 50px;
    overflow-y: auto;

    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.checkboxContainer {
    overflow-x: hidden;

    top: -2px;
    left: -1px;
    right: -1px;

    border: 1px solid #ced4da;

    display: flex;
    flex-direction: column;
    background-color: #ffffff;

    z-index: 999;

    position: absolute;
    box-shadow: 0 0 10px #0004;
    border-radius: 5px !important;

    animation-name: fadeIn;
}

.checkcomboBoxText {
    width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;

}
.checkcomboBoxDivs {
    height: 60px;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
}

.comboCheckboxSearchInput {

    margin: 5px;
    border-radius: 0.25rem;
    border: 1px solid #aaa;
}