﻿/* -----------------------------------------------------------------------------------------------
    CheckBoxDropDownList
------------------------------------------------------------------------------------------------*/

.DropDownListContainer {
    position: absolute;
    z-index: 1000;
    background-color: white;
    resize: both;
    overflow: auto;
    border: 1px solid black;
    max-height: 300px;
    width: inherit;
    display: none;
    line-height: 1;
    padding-top: 3px;
}

    .DropDownListContainer input[type=checkbox] {
        margin-right: 3px;
        margin-bottom: 0px;
        margin-top: 0px;
        margin-left: 1px;
        width: 17px;
        height: 17px;
    }

.ChechBoxDropDownTextBoxContainer {
    display: flex;
    justify-content: space-between;
    border: 1px solid;
    padding-right: 2px;
}



.ChechBoxDropDownTextBox {
    flex-grow: 4;
    border: none;
}

    .ChechBoxDropDownTextBox:disabled {
        background-color: white;
    }

.DropDownListContainer label {
    font-weight: normal;
    margin-bottom: 0px;
    margin-top: 0px;
}



.FormViewTemplateLabel {
    font-weight: bold;
    padding-left: .3em;
    padding-right: .3em;
}
