/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 03/08/2018, 13:26:37
    Author     : leandro.sena
*/

/***************  MULTSELECT BOX  *******************/

.ms-container{
    width: 100%;
    min-width: 250px;
    padding: 0px;
}
.ms-container .ms-selectable, 
.ms-container .ms-selection{
    border: 1px solid #ccc;
    border-radius: 7px;
    overflow: hidden;
    min-width: 200px;
}

.ms-container .custom-header{
    font-size: 13px;
    font-weight: bold;
    padding: 6px;
    background: #e8e8e8;
    border-bottom: none;
    text-align: center;
    border-radius: 6px 6px 0px 0px;
    color: #444;
}
.ms-container .ms-list{
    border: 3px solid #e8e8e8;
    border-top: 0px;
}


.ms-container .ms-elem-selectable{

}

.ms-container .ms-selection{

}
.ms-container .ms-focus{
    border-color:rgb(232, 232, 232) !important;
    box-shadow: none !important;
}

.ms-container .ms-selectable li.ms-elem-selectable, .ms-container .ms-selection li.ms-elem-selection{
    border-bottom: 1px #ddd solid;
    color: #888;
}

.ms-container .ms-selectable li.ms-hover, .ms-container .ms-selection li.ms-hover{
    border-color:transparent !important;   
    box-shadow: none !important;
    background: #d7e9ff !important;    
}

/* VERTICAL*/
.ms-vertical .ms-selectable, 
.ms-vertical .ms-selection{
    width:100% !important;
}
.ms-vertical .ms-selectable{
    margin-bottom: 50px;
}

/* FIMVE RTICAL */

@media (max-width: 780px){
    /* RESPONSIVO */
    .ms-container{
        background: transparent url('/core/styleguide/plugins/multi-select/img/switch2.png') no-repeat 50% 50%;
    }    
    .ms-container .ms-selectable{
        margin-bottom: 40px;
    }

    .ms-container .ms-selectable, 
    .ms-container .ms-selection{
        border: 1px solid #ccc;
        border-radius: 7px;
        overflow: hidden;
        width:100%;
        min-width: auto;

    }


}


/************** FIM MULTSELECT *************/