/**
 *
*/

.sb-select2 .item,
.sb-select2 .selected {
    font-size: 14px;
    margin: 0;
    cursor:pointer;
}
.sb-select2 .item {
    padding:8px 8px 0;
}
.sb-select2 .selected {
    padding:8px 10px;
}
.sb-select2 .list.__open .item {
    display: block;
}

.sb-select2 .list{
    /*border: 1px solid #4b666e;*/
    position: relative;
}
.sb-select2 .selected{
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}
.sb-select2 .selected:after{
    content: '';
    position: relative;
    top: -2px;
    /*left:15px;*/
    margin-left: 5px;
    display: block;
    width: 6px;
    height: 6px;
    transform: rotate(
            45deg);
    border-right: 1px solid #8C8C8C;
    border-bottom: 1px solid #8C8C8C;
    box-sizing: border-box;
}
.sb-select2 .select{
    position: absolute;
    top:100%;
    left:0;
    width:100%;
    opacity: 0;
    visibility: hidden;
    height: 0;
    max-height: 250px;
    overflow: auto;
    background-color: #fff;
    transition-property:opacity, visibility;
    transition-duration: .3s;
}

.sb-select2 .__open .selected {
    box-shadow: 0 5px 20px 1px rgba(227, 227, 227, 0.7);
    background-color: #fff;
}
.sb-select2 .__open .select{
    opacity: 1;
    visibility: visible;
    height: auto;
    /*max-height: 250px;*/
    /*overflow: auto;*/
    box-shadow: 0 10px 20px 1px rgba(227, 227, 227, 0.7);
    background-color: #fff;
    /*padding: 8px;*/
    padding-top:8px;
    box-sizing: border-box;
    z-index: 1024;
}
.sb-select2 .__open .selected:after{
    transform: rotate(225deg);
}

.sb-select2 .item.__active{
    white-space: nowrap;
}