/************************************
MINIMALECT 0.9
A minimalistic select replacement

jQuery 1.7+ required.
Developed by @groenroos
http://www.groenroos.fi

Github: http://git.io/Xedg9w

Licensed under the MIT license.

************************************/
.minict_wrapper
{
    position: relative;

    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box; 
    width: 300px;
    height: 35px;

    color: #333;
    border: 1px solid #f6f6f6;
    border-radius: 3px;
    background: #fff;
}

.minict_wrapper *
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.minict_wrapper.disabled
{
    background: #f5f5f5;
    text-shadow: 0 1px 0 #fff;
}

.minict_wrapper.disabled span
{
    color: #bbb !important;
}

.minict_wrapper:after
{
    font-size: 10px;
    line-height: 32px;

    position: absolute;
    top: 0;
    right: 0;

    display: block;

    width: 33px;
    height: 33px;

    content: '\25BC';
    text-align: center;

    color: #666;
}

.minict_wrapper.active:after
{
    content: '\25B2';

}

.minict_wrapper.disabled:after
{
    color: #bbb;
}

.minict_wrapper span
{
    font-family: 'Segoe UI', Segoe, 'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 23px;

    display: block;
    overflow: hidden;

    width: 100%;
    height: 32px;
    padding: 4px 53px 0 6px;

    cursor: default;
    white-space: nowrap;
    text-overflow: ellipsis; 

    color: #333;
    border: 0;
    outline: none;
    background: none;
}

.minict_wrapper span:empty:before
{
    line-height: 23px;
    line-height: 1em; 

    content: attr(data-placeholder);

    color: #666;
}

.minict_wrapper ul
{
    position: absolute;
    z-index: 999999; 
    top: 33px;
    left: 0;

    display: none;
    overflow-y: auto;

    width: 100%;
    width: -webkit-calc(100% + 2px);
    width:    -moz-calc(100% + 2px);
    width:         calc(100% + 2px);
    max-height: 350px;
    margin: 0 -1px;
    padding: 0;

    list-style: none;

    border: 1px solid #e5e5e5;
    border-top: 1px solid #f9f9f9;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.minict_wrapper ul li
{
    font-size: 1em;
    line-height: 32px;

    height: 35px;
    padding: 0 10px;

    list-style: none;

    cursor: pointer;

    background: #fff;
}

.minict_wrapper ul li:hover
{
    color: #111; 
    background: #fcfcfc;
}

.minict_wrapper ul li.minict_group
{
    font-weight: bold;

    cursor: default; 

    color: #444;
    background: #f6f6f6;
}

.minict_wrapper ul li.minict_empty
{
    font-size: 14px;
    line-height: 50px;

    display: none;

    height: 55px;

    text-align: center;

    color: #bbb;
    background: #fff !important;
}

.minict_wrapper ul li.disabled
{
    cursor: default;

    color: #bbb; 
    background: #fff !important;
}

.minict_wrapper ul li.selected
{
    color: #819a9a;
    background: #f8f9f9;
}

.minict_wrapper ul li.highlighted
{
    color: #fff;
    background: #819a9a;
}

.minict_wrapper ul li.hidden
{
    display: none;
}

.minict_wrapper .minict_reset
{
    font-size: 18px;
    line-height: 30px;

    position: absolute;
    top: 0;
    right: 35px;
    bottom: 0;

    display: none;

    width: 20px;

    -webkit-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out; 
    text-align: center;
    text-decoration: none;

    color: #a9a9a9;
}

.minict_wrapper .minict_reset:hover
{
    -webkit-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out; 

    color: #e0e0e0;
}

.minict_wrapper .minict_reset:active
{
    color: #636363;
}

.minict_wrapper.disabled .minict_reset
{
    display: none;
}

/*TOSHIBA thema-----*/



