.select-wrapper {
    position: relative;
}

.select-wrapper select {
    background-color: transparent;
    border: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    /*position: absolute;*/
    padding-right: 3em
}

.select-wrapper {
    padding: 0;
}

.select-wrapper.clicked {
    padding: 0;
    border-radius: var(--input-radius) var(--input-radius) 0 0;
}

.select-wrapper:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    color: inherit;
    content: '\f078';
    display: block;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    padding: 0 1em;
    line-height: inherit;
    background-color: inherit;
    z-index: 1;
    height: 100%;
    border-radius: var(--input-radius);
}
.select-wrapper.clicked:before {
    content: '\f077';
}

.select-wrapper > div {

    padding: 0 3em 0 1em;
    text-align: left;
    white-space: nowrap;
    height: inherit;
    line-height: inherit;
    box-sizing: border-box;
    z-index: 1em;
    position: relative;
    background: transparent;
}


.select-wrapper ul.list {
    position: absolute;
    min-width: 100%;
    list-style: none;
    border: 1px solid silver;
    border-top: none;
    -moz-box-shadow: 0 14px 14px -10px #666;
    -webkit-box-shadow: 0 14px 14px -10px #666;
    box-shadow: 0 10px 8px 4px rgba(0,0,0,0.3);
    margin: -1px 0 0 -1px;
    z-index: 999;
    border-radius: 0 0 var(--input-radius) var(--input-radius);
    overflow: hidden;
}

.select-wrapper ul.list li {
    background-color: #f6f6f6;
    border-top: 1px dotted silver;
    text-align: left;
    padding: 0 1em;
    margin: 0 !important;
    white-space: nowrap;
    line-height: 2em;
    cursor: pointer;
}

.select-wrapper ul.list li.optgroup {
    color: #999;
    font-size: 0.8em;
    padding: 0 1.25em;
    line-height: 1.5em;

}

.select-wrapper ul.list li:first-child {
    border-top: none
}

.select-wrapper ul.list li:hover {
    background-color: #548ac8;
    color: white;
}
.select-wrapper ul.list li.optgroup:hover {
    background-color: #f6f6f6;
    color: #999;
}

.select-wrapper ul.list li.active {
    background-color: #005ba3;
    color: white;
    text-shadow: none
}