
.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.select-chosen-value {
    border: 2px solid #29aae3;
    background: rgba(41, 170, 227, .05);
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    /*font-size: 16px;*/
    /*color: #fff;*/
    /*width: 220px;*/
    height: 48px;
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background-color: #c0392b;*/
    padding: 12px 15px;
    /*-moz-transition: all 0.2s ease-in;*/
    /*-o-transition: all 0.2s ease-in;*/
    /*-webkit-transition: all 0.2s ease-in;*/
    /*transition: all 0.2s ease-in;*/
}

.select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-color: #000 transparent transparent transparent;
    position: absolute;
    top: 20px;
    right: 10px;
}
.select-styled:hover {
    /*background-color: #b83729;*/
}

.select-styled:active, .select-styled.active {
    /*background-color: rgba(186, 24, 29, .05) !important;*/
    /*border: 2px solid #FF1F28;*/
}


.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    margin-top: 2px;
    padding: 0;
    list-style: none;
    /*background: rgba(186, 24, 29, .05) !important;*/
    background: #fff !important;
    border: 1px solid #c3c3c5;
}

.select-options li {
    margin: 0;
    padding: 8px 0;
    /*text-indent: 15px;*/
    /*border-left: 2px solid #FF1F28;*/
    /*border-right: 2px solid #FF1F28;*/
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.select-options li:hover {
    /*background-color: rgba(186, 24, 29, .05) !important;*/
    background-color: #29aae3;
    color: #fff;
}

.select-options li[rel="hide"] {
    display: none;
}
