/*
 * jQuery plugin - Twitter Bootstrap 3 extension
 * Custom Select for Bootstrap 3
 * By: LisaStoz 
 * Version 1.6
 * Last Modified: 02 January 2014
 *
 * Copyright 2013 LisaStoz
 */

.bootstrap-select .input-group-btn {
    position: static;
}

.bootstrap-select .dropdown-menu {
    width: 100%;
    min-width: 0;
    overflow-y: auto;
    outline: none;
}

.bootstrap-select .dropdown-menu a {
    overflow: hidden;
}

.bootstrap-select .dropdown-menu .disabled a {
    outline : none;
}

/* sizes */


.bootstrap-select .input-group-btn  .dropdown-menu li a {
    height: 32px;
    padding: 6px 20px;
    line-height: 1.42857;
}

.bootstrap-select.bootstrap-lg .input-group-btn button {
    padding: 10px 16px;
    height: 45px;
    line-height: 1.33em;
}

.bootstrap-select.bootstrap-lg .input-group-btn .dropdown-menu li a {
    height: 45px;
    line-height: 1.33em;
    font-size: 18px;
    padding: 10px 16px;
}

.bootstrap-select.bootstrap-sm .input-group-btn button {
    height: 30px;
    line-height: 1.33em;
    padding: 5px 10px;
}

.bootstrap-select.bootstrap-sm .input-group-btn .dropdown-menu li a {
    font-size: 12px;
    height: 30px;
    line-height: 1.6em;
    padding: 5px 10px;
}



/* colours */

.bootstrap-select .dropdown-menu > li > a:hover, .bootstrap-select .dropdown-menu > li > a:focus,
.bootstrap-select .dropdown-menu > li.active > a:hover, .bootstrap-select .dropdown-menu > li.active > a:focus {
    background: #ffffff;
    filter: none;
}
.bootstrap-select .dropdown-menu > li.active > a {
    background: #ebebeb;
    filter: none;
}

.bootstrap-select .primary.dropdown-menu > li > a:hover, .bootstrap-select .primary.dropdown-menu > li > a:focus,
.bootstrap-select .primary.dropdown-menu > li.active > a:hover, .bootstrap-select .primary.dropdown-menu > li.active > a:focus {
    background: #428bca;
    color: #FFFFFF;
}
.bootstrap-select .primary.dropdown-menu > li.active > a {	
    background: #3276b1;
    color: #FFFFFF;
}

.bootstrap-select .info.dropdown-menu > li > a:hover, .bootstrap-select .info.dropdown-menu > li > a:focus,
.bootstrap-select .info.dropdown-menu > li.active > a:hover, .bootstrap-select .info.dropdown-menu > li.active > a:focus {
    background: #5bc0de;
    color: #FFFFFF;
}
.bootstrap-select .info.dropdown-menu > li.active > a {
    background: #39b3d7;
    color: #FFFFFF;
}

.bootstrap-select .success.dropdown-menu > li > a:hover, .bootstrap-select .success.dropdown-menu > li > a:focus,
.bootstrap-select .success.dropdown-menu > li.active > a:hover, .bootstrap-select .success.dropdown-menu > li.active > a:focus {
    background: #5cb85c;
    color: #FFFFFF;
}
.bootstrap-select .success.dropdown-menu > li.active > a {
    background: #47a447;
    color: #FFFFFF;
}

.bootstrap-select .warning.dropdown-menu > li > a:hover, .bootstrap-select .warning.dropdown-menu > li > a:focus,
.bootstrap-select .warning.dropdown-menu > li.active > a:hover, .bootstrap-select .warning.dropdown-menu > li.active > a:focus {
    background: #AC780D;
    color: #FFFFFF;
}
.bootstrap-select .warning.dropdown-menu > li.active a {
    background: #AC780D;
    color: #FFFFFF;
}

.bootstrap-select .danger.dropdown-menu > li > a:hover, .bootstrap-select .danger.dropdown-menu > li > a:focus,
.bootstrap-select .danger.dropdown-menu > li.active > a:hover, .bootstrap-select .danger.dropdown-menu > li.active > a:focus {
    background: #d9534f;
    color: #FFFFFF;
    filter: none;
}
.bootstrap-select .danger.dropdown-menu > li.active > a {
    background: #d43f3a;
    color: #FFFFFF;
    filter: none;
}

.bootstrap-select .default.dropdown-menu > li > a:hover, .bootstrap-select .default.dropdown-menu > li > a:focus,
.bootstrap-select .default.dropdown-menu > li.active > a:hover, .bootstrap-select .default.dropdown-menu > li.active > a:focus {
    background: #ebebeb;
    color: #333333;
}
.bootstrap-select .default.dropdown-menu > li.active > a {
    background: #ebebeb;
    color: #333333;
}





















