﻿#inputRadio input
{
    visibility: hidden;
}

#inputRadio label
{
    cursor: pointer;
    display: block;
    margin-right: 18px;
    padding-left: 26px;
    position: relative;
}

#inputRadio label:hover::after
{
    border: 1px solid #999;
}

#inputRadio label::after
{
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: block;
    content: '';
    height: 16px;
    width: 16px;
    left: 0;
    margin-top: -9px;
    margin-left: -2px;
    position: absolute;
    top: 50%;
    z-index: 1;
}

#inputRadio input[type="radio"]:checked + label
{
    color: tomato;
}

#inputRadio input[type="radio"]:checked + label::before
{
    background: #333;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 2px;
    position: absolute;
    top: 5.1px;
    width: 10px;
    z-index: 5;
}

#inputRadio input[type="radio"]:checked + label::after
{
    background: #fff;
    border: 1px solid #999;
}

#inputRadio [id*=rbFilter]
{
    margin-bottom: -10px;
}

#inputRadio table td {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 13px;
}

div.multi-select
{
    border: 1px solid #d9d9d9;
    background-color: White;
    height: 32px;
    padding: 5px;
    width: 100%;
}

.multi-select input[type="text"]
{
    border: none 1px;
    height: 17px;
    color: black;
    width: 85%;
}

.multi-select img
{
    cursor: hand;
    height: 16px;
    width: 16px;
    float: right;
}

div.select-options
{
    border: 1px solid #d9d9d9;
    background-color: #FFFFFF;
    display: none;
    overflow: auto;
    scrollbar-face-color: white;
    scrollbar-highlight-color: whitesmoke;
    scrollbar-arrow-color: black;
    scrollbar-track-color: white;
    border-bottom: groove 1px #5b5c71;
    scrollbar-darkshadow-color: whitesmoke;
    height: 250px;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.select-option
{
    font-size: 12px;
}

.option-container:hover
{
    background-color: #d9d9d9;
}

.select-option label
{
    display: inline;
}

.option-container
{
    padding: 5px;
    color: #000000;
}



