@charset "utf-8";

/* CSS Document */
.SlectBox {
    width: 100%;
    padding: 5px 8px;
}

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 100%;
    width: 200px;
    border: none;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.SumoSelect>.optWrapper>.options>li label, .SumoSelect>.CaptionCont {
    user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

.SumoSelect {
    position: relative;
    outline: none;
    width: 100%;
}

.SumoSelect:focus>.CaptionCont, .SumoSelect:hover>.CaptionCont {
    box-shadow: 0px 0px 2px #7799D0;
    border-color: #7799D0;
}

.SumoSelect>.CaptionCont {
    position: relative;
    min-height: 18px;
    background-color: #fff;
    border: 2px solid #ececec;
    border-radius: 4px;
    margin: 0 0 8px;
    width: 100%;
}

.SumoSelect>.CaptionCont>span {
    display: block;
    padding-right: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: default;
    color: rgba(0, 0, 0, 0.75);
}

.SumoSelect>.CaptionCont>label {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 30px;
}

.SumoSelect>.CaptionCont>label>i {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABQCAYAAAC+neOMAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAA5tJREFUeJzt2s9rHGUYwPHvM9lpKjYQFENBEIzSelHwPxBMeuhNJYtxAioehKyiNw8ik148CFLqtpG9WEI6G38h1EhPQgTvnjVCD4pVPBg8eKhJ5vHS3Wzipju7O+/7TuH5nmZnZncePpmEd4eAZVmWZVmWZVmWZVmWZVmWZVnWEEmRk9I0jU6fOfPYvsgD5PkfjST5RUTU9XCuaq6tPRhFk7NM5Lf3pqd/euv8+duD3nNXqDRNo5mzZxuq+o4gD3cPKD9C/m5jaemrEub2VvPatScj5ENE5nt2/6Oqn8Qn4vder9f/Pu69x0K1Wq147/6pDYQXjjtHlZU3ll66MOLcXmu22/NRrtcRua/vCarbTERzjcXFX/sd7gvVarXi3VNTnwo8P3gEvdBIkpXiI/vvyvrGOY30usDJu52ncFMieaYfVnR0R7q1Vds9NZUVQwKQ9EqWrRSc2XtFkQAEZjXX71prnz9y9NghqHRrqzbz2+/rAgvDjVNNrGGQOgnM7tX2/od1CGrm1q0PEF4cbaxqYY2C1NOjuxO7m5du3Jjs7OhCfZRlT6jy9njjVQOr2W7Pj4EEgIg8VdvZea3zOurZWBCRQuuqAZcIitVst+dF+XocpJ66f4IOfvVUHi/hg+8UBqtkJODApAslogNXp0NexCtW+Uig8G9nu/eO+qGsCxzkB8sFEoCgXZPeO+ozhZ0yL3Tnk51iuUICEGh1trtQy0myI+jLqrpf9gVdYa1m2ZwrJJSPl5Pk287LQ+uoRpJsRsLivYC1mmVzObLpBAldf+hE7c3ePX2XA6tZtpArGyIy4WCIsb8bOkeK41fr9fqhm+XYdVNVsUIgwYDnUVXDCoUEBZ5wVgUrJBIUfBQcGuvy+sazRPpNKCQoCAXhsKqABENAgX+sqiDBkFDgD6tKSDACFLjH0jz6vkpIMCIUuMVS1X1HP4SRkGAMKHB9Z5Xd6EgwJhTcK1jjIUEJUFB1rPGRoCQoqCpWOUhQIhRUDas8JCgZCqqCVS4SOICC0FjlI4EjKAiF5QYJHEKBbyx3SOAYCnxhuUUCD1Dg/LuhcyTwBAWusPwggUcoKBvLHxJ4hoKysPwiQQAoGBfLPxIEgoJRscIgQUAoGBYrHBIEhoKiWGGRoM+/T/tuOUm+EOE5Vf3r6DFV3Ud5/8/t7VdCIkEF7qhOF69enY7jyQWBp4EY+FlEv1xOkpuhZ7Msy7Isy7Isy7IsyxrcfzNeLxtxSlaeAAAAAElFTkSuQmCC');
    width: 9px;
    height: 16px;
    display: block;
    position: absolute;
    top: 4px;
    left: 0px;
    right: -12px;
    bottom: 0px;
    margin: 5px auto auto auto;
    background-repeat: no-repeat;
    background-size: 100%;
    filter: brightness(0.1);
}

.SumoSelect>.optWrapper {
    top: 30px;
    width: 100%;
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
    -webkit-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
    -moz-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
    -ms-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
    -o-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: -100;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
    border-radius: 3px;
    overflow: hidden;
}

.SumoSelect>.optWrapper.open {
    top: 35px;
    visibility: visible;
    opacity: 1;
    z-index: 1000;
}

.SumoSelect>.optWrapper>.options {
    list-style: none;
    display: block;
    padding: 0px;
    margin: 0px;
    overflow: auto;
    border-radius: 2px;
    /*Set the height of pop up here (only for desktop mode)*/
    max-height: 250px;
    /*height*/
}

.SumoSelect>.optWrapper.isFloating>.options {
    max-height: 100%;
    box-shadow: 0px 0px 100px #595959;
}

.SumoSelect>.optWrapper>.options>li {
    padding: 6px 6px;
    border-bottom: 1px solid #F3F3F3;
    position: relative;
}

.SumoSelect>.optWrapper>.options>li:first-child {
    border-radius: 2px 2px 0px 0px;
}

.SumoSelect>.optWrapper>.options>li:last-child {
    border-bottom: none;
    border-radius: 0px 0px 2px 2px;
}

.SumoSelect>.optWrapper>.options>li:hover {
    background-color: #E4E4E4;
}

.SumoSelect>.optWrapper>.options>li.sel {
    background-color: #a1c0e4;
}

.SumoSelect>.optWrapper>.options>li label {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.SumoSelect>.optWrapper>.options>li span {
    display: none;
}

/*Floating styles*/
.SumoSelect>.optWrapper.isFloating {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 90%;
    bottom: 0px;
    margin: auto;
    max-height: 90%;
}

/*Hover*/
/*.SumoSelect:hover > .CaptionCont > label { background-color: #F1F1F1; }*/

/*disabled state*/
.SumoSelect>.optWrapper>.options>li.disabled {
    background-color: inherit;
    pointer-events: none;
}

.SumoSelect>.optWrapper>.options>li.disabled * {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /* IE 5-7 */
    filter: alpha(opacity=50);
    /* Netscape */
    -moz-opacity: 0.5;
    /* Safari 1.x */
    -khtml-opacity: 0.5;
    /* Good browsers */
    opacity: 0.5;
}


/*styling for multiple select*/
.SumoSelect>.optWrapper.multiple>.options>li {
    padding-left: 35px;
    cursor: pointer;
}

.SumoSelect>.optWrapper.multiple>.options>li span,
.SumoSelect .select-all>span {
    position: absolute;
    display: block;
    width: 30px;
    top: 0px;
    bottom: 0px;
    margin-left: -35px;
}

.SumoSelect>.optWrapper.multiple>.options>li span i,
.SumoSelect .select-all>span i {
    position: absolute;
    margin: auto;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 14px;
    height: 14px;
    border: 1px solid #AEAEAE;
    border-radius: 2px;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.SumoSelect>.optWrapper>.MultiControls {
    display: none !important;
    border-top: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.13);
    border-radius: 0px 0px 3px 3px;
}

.SumoSelect>.optWrapper.multiple.isFloating>.MultiControls {
    display: none;
    margin-top: 5px;
    position: absolute;
    bottom: 0px;
    width: 98%;
}

.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls {
    display: none;
}

.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls>p {
    padding: 6px;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p {
    display: none;
    cursor: pointer;
    padding: 12px;
    width: 98%;
    box-sizing: border-box;
    text-align: center;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p:hover {
    background-color: #f1f1f1;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p.btnOk {
    border-right: 1px solid #DBDBDB;
    border-radius: 0px 0px 0px 3px;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p.btnCancel {
    border-radius: 0px 0px 3px 0px;
}

/*styling for select on popup mode*/
.SumoSelect>.optWrapper.isFloating>.options>li {
    padding: 12px 6px;
}

/*styling for only multiple select on popup mode*/
.SumoSelect>.optWrapper.multiple.isFloating>.options>li {
    padding-left: 35px;
}

.SumoSelect>.optWrapper.multiple.isFloating {
    padding-bottom: 43px;
}

/*selected state
    .SumoSelect > .optWrapper.multiple > .options > li.selected span i:after,
    .SumoSelect .select-all.selected > span i:after{content: '';position: absolute;width: 11px;height: 11px;top: 2px;left: 2px;background-color: rgb(17, 169, 17);border-radius: 2px;box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);}
    */
.SumoSelect>.optWrapper.multiple>.options>li.selected span i,
.SumoSelect .select-all.selected>span i,
.SumoSelect .select-all.partial>span i {
    background-color: #1169A9;
    box-shadow: none;
    border-color: transparent;
}

/*disabled state*/
.SumoSelect.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.SumoSelect.disabled>.CaptionCont {
    border-color: #ccc;
    box-shadow: none;
}

/**Select all button**/
.SumoSelect .select-all {
    border-radius: 3px 3px 0px 0px;
    position: relative;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    padding: 8px 0px 3px 35px;
    height: 20px;
}

.SumoSelect .select-all>span i {
    cursor: pointer;
}

.SumoSelect .select-all.partial>span i {
    background-color: #ccc;
}



/*styling for optgroups*/
.SumoSelect>.optWrapper>.options>li.optGroup {
    padding-left: 5px;
    text-decoration: underline;
}