/*
---------------------------------------------------------------------------------------
* Light SelectDropDown
---------------------------------------------------------------------------------------
*/

.Light_SelectDropDown {
    background-color: white;
}

    .Light_SelectDropDown[disabled] .DisplayFilterData_Ins {
        background-color: rgba(238, 238, 238, 1);
        border: solid 1px #bfbfbf;
        border-radius: 4px;
        height: 32px;
    }


    .Light_SelectDropDown .DisplayFilterData_Ins {
        background-color: white;
        border: solid 1px #bfbfbf;
        border-radius: 4px;
        height: 32px;
    }

        .Light_SelectDropDown .DisplayFilterData_Ins.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);
        }

        .Light_SelectDropDown .DisplayFilterData_Ins > input[type=text] {
            font-size: 14px;
            border: none;
            /*padding: 6px 12px;*/
            padding-bottom:0px;
            padding-top:6px;
            padding-left:12px;
            padding-right:12px;
            width: calc(100% - 50px);
            margin-left:1px;
            margin-top:1px;
        }

        .Light_SelectDropDown .DisplayFilterData_Ins > i {
            font-size: 16px;
            /*vertical-align: middle;*/
            color: black;
            cursor: pointer;
            margin-right: 2px;
        }

    .Light_SelectDropDown .SelectDropDown_Content_Ins {
        font-size: 14px;
        padding: 3px;
        background-color: white;
        border: solid 1px #bfbfbf;
        border-radius: 4px;
        display: none;
        position: absolute;
        width: calc(100% - 30px);
    }

        .Light_SelectDropDown .SelectDropDown_Content_Ins > label {
            font-size: 14px;
            padding: 7px 3px 7px 3px;
            line-height: normal;
            /*height: 16px;*/
            font-weight: 400;
            background-color: white;
            z-index: 9;
        }

        .Light_SelectDropDown .SelectDropDown_Content_Ins label:hover {
            background-color: #e9e9e9;
            color: black;
            cursor: pointer;
        }

    .Light_SelectDropDown .show_Ins {
        display: block;
    }


@media only screen and (max-width: 300px), (max-width: 500px) {

    /*
*--------------------------------------------------------------------------------------------------
* Light SelectDropDown
*--------------------------------------------------------------------------------------------------
*/
    .Light_SelectDropDown .DisplayFilterData_Ins > input[type=text] {
        font-size: 12px;
    }

    .Light_SelectDropDown .DisplayFilterData_Ins > i {
        font-size: 14px;
    }

    .Light_SelectDropDown .SelectDropDown_Content_Ins {
        font-size: 12px;
    }
}
