/* Custom-Selects
   ========================================================================== */
.custom-select-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    max-width: 350px;
    box-sizing: border-box;
}
.custom-select-wrap .select-style {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px 30px 10px 15px;
    white-space: nowrap;
    border-radius: 3px;
    border: 1px solid #bfbfbf;
    background: #fff;
    box-sizing: border-box;
}
.custom-select-wrap .select-style .svg-icon-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -6px;
    width: 15px;
    height: 12px;
}
.custom-select-wrap .select-style .svg-icon-arrow path {
    fill: #00c;
}
.custom-select-wrap .select-text {
    display: block;
    font-weight: normal;
    color: #7f7f7f;
    font-size: 14px;
    line-height: 23px;
    font-family: verdana, sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-select-wrap select {
    position: relative;
    cursor: pointer;
    width: 100%;
    min-width: 120px;
    height: 45px;
    margin: 0;
    padding: 0 40px 0 10px;
    border: 0;
    border-radius: 0;
    vertical-align: top;
    opacity: 0.001;
    box-sizing: border-box;
}