﻿/* The container must be positioned relative: */
.bv-custom-select {
    position: relative;
    display: inline-block;
    min-width: 80px;
}

.bv-custom-select select {
    display: none;
}

.bv-custom-select .select-selected {
    background-color: #4a8f9e;
    border-radius: 4px;
}

.bv-custom-select .select-selected:after {
    position: absolute;
    content: "";
    top: calc(50% - 8px);
    right: 6px;
    width: 16px;
    height: 16px;
    background: url(../images/bv-custom-select-nav.svg) left top no-repeat;
    background-size: cover;
}

.bv-custom-select .select-selected.select-arrow-active {

}

.bv-custom-select .select-selected.select-arrow-active:after {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.bv-custom-select .select-items div, .bv-custom-select .select-selected {
    color: #fff;
    padding: 4px 30px 4px 20px;
    cursor: pointer;
    font-size: 1em;
    line-height: 22px;
    height: 30px;
}

.bv-custom-select .select-items {
    position: absolute;
    background-color: #999;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.bv-custom-select .select-hide {
    display: none;
}

.bv-custom-select .select-items div:hover, .bv-custom-select .same-as-selected {
    background-color: #4a8f9e;
}
