
.naSelect {
    display: inline-block;
    width: 100%;
}

    .naSelect,
    .naSelect:not(.naSelectDisabled) *,
    .naSelectList,
    .naSelectList * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        cursor: pointer;
    }

.naSelectBody {
    display: -webkit-flex;
    display: flex;
    background-color: [neutral-2-background-color];
    color: [neutral-2-text-color];
    border: 1px solid [neutral-2-background-color];
    font-size: 11pt;
    font-family: 'Signika', sans-serif;
    border-radius: 4px;
    overflow: hidden;
    height: 30px;
}

.naSelectValue {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding: 5px 13px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.naSelectOpen {
    width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-right: 3px;
    background-image: url("selector.svg");
    background-size: 10px;
}

.naSelect.naSelectDisabled .naSelectOpen {
    display: none;
}

.naSelectList {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    z-index: 1;
    color: [neutral-1-background-color];
    font-size: 11pt;
    font-family: 'Signika', sans-serif;
    font-weight: 300;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    border: 1px solid #222;
}

    .naSelectList.naSelectActive {
        display: -webkit-flex;
        display: flex;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

.naSelect.naSelectActive .naSelectBody {
    border-radius: 4px 4px 0 0;
}

.naSelectListContent {
    max-height: 100%;
    overflow: hidden;
    position: relative;
}

.naSelectOption,
.naSelectActionOption,
.naSelectSeparator {
    background-color: [neutral-2-background-color];
    white-space: nowrap;
    padding: 3px 10px;
    vertical-align: middle;
    line-height: 24px;
    position: relative;
}

.naSelectOption {
    color: [neutral-2-text-color];
}

.naSelectActionOption {
    text-transform: uppercase;
    color: #888;
}

.naSelectSeparator,
.naSelectSeparator:hover,
.naSelectSeparator *,
.naSelectSeparator:hover * {
    cursor: default !important;
}

.naSelectSeparator {
    height: 1px;
    padding-top: 16px;
    padding-bottom: 16px;
}

    .naSelectSeparator .naSelectSeparatorText {
        float: left;
        line-height: 0px;
        height: 1px;
        vertical-align: middle;
        color: [neutral-5-color];
        font-weight: normal;
        margin-right: 8px;
        text-transform: uppercase;
        font-size: 0.9em;
    }

.naSelectOption:hover,
.naSelectOption.hover,
.naSelectActionOption:hover {
    background-color: [main-1-background-color];
    color: [main-1-text-color];
}

.naSelect.naSelectDisabled .naSelectValue {
    color: rgba(255,255,255,0.3);
}

.naSelect.naSelectDisabled {
    cursor: default;
}

.naSelectInvalid {
    border: 1px solid #ee4545 !important;
}

.naSelectOption.optionDisabled,
.naSelectValue.optionDisabled {
    color: #72808E !important;
}
