﻿/*=========================MULTI SELECT=========================*/

.ms-parent {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    /*margin-top: -3px;*/
    margin-right: 20px;
}

.ms-choice {
    height: 34px;
    line-height: 34px;
    text-align: left;
    white-space: nowrap;
    display: block;
    width: 100%;
    background-color: #fff;
    font-family: 'OpenSans-Regular', sans-serif !important;
    font-weight: bold;
    color: #444;
    border: 2px solid #d9d9d9;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 13px;
    outline: none;
    margin-left: 0 !important;
}

    .ms-choice.disabled {
        background-color: #f4f4f4;
        background-image: none;
        border: 1px solid #ddd;
        cursor: default;
    }

    .ms-choice > span {
        position: absolute;
        top: 0;
        left: 0;
        right: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        padding-left: 8px;
    }

        .ms-choice > span.placeholder {
            color: #333;
        }

    .ms-choice > div, .ms-choice > div.open {
        position: relative;
        top: -3px;
        right: -160px;
        float: left;
    }

        .ms-choice > div:before {
            content: "\f078";
            font-family: FontAwesome;
            font-style: normal;
            font-weight: normal;
            text-decoration: inherit;
        }

        .ms-choice > div.open:before {
            content: "\f077";
            font-family: FontAwesome;
            font-style: normal;
            font-weight: normal;
            text-decoration: inherit;
        }

.ms-drop {
    width: inherit;
    overflow: hidden;
    display: none;
    margin-top: -1px;
    padding: 0;
    position: absolute;
    z-index: 1000;
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
}

    .ms-drop.top, .ms-drop.bottom {
        top: 100%;
    }

.listStateSelected {
    width: 185px !important;
}

    .listStateSelected .ms-choice > div, .listStateSelected .ms-choice > div.open {
        right: -156px;
    }

    .listStateSelected .ms-drop {
        width: auto;
    }

.ms-drop ul {
    overflow: hidden;
    margin: 0;
    padding: 5px 8px;
}

div.custom-select {
    display: inline-block;
    position: relative;
    width: initial;
    height: initial;
    padding: initial;
    line-height: initial;
    color: initial;
    vertical-align: middle;
    border: initial;
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    text-indent: 0.01px !important;
    text-overflow: '' !important;
}

.select-paging-filter {
    width: 150px;
    background-color: rgba(255, 255, 255, 0);
}

select {
    padding: 5px;
    border: 2px solid #d9d9d9;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'OpenSans-Light', sans-serif !important;
    font-size: 13px;
}

