
.s-hidden {
    visibility:hidden;
    padding-right:10px;
}

.select {
    
    width: 100%;
    
    font-size: 1rem;
    line-height: 1.4;
    color: #0F4E57;
    font-weight: normal;
    text-transform: uppercase;
    transition: all 0.3s ease;
    

}
.styledSelect {
    position:absolute;
    padding: .4rem .5rem;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-color:white;
    height: 36.78px;
    font-weight:normal;
    border-bottom: 2px dotted #0F4E57;
    background: url(../images/forms/select.png) no-repeat;
    background-size: 1.2rem;
    background-position-y: center;
    background-position-x: calc(100% - .5rem);
    margin-top: 16px;

    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.styledSelect:active, .styledSelect.active {
    background-color:#eee;
}
.options {
    display:none;
    position:absolute;
    top:100%;
    right:0;
    left:0;
    z-index:999;
    margin:0 0;
    padding:0 0;
    list-style:none;
    color:white;
    border:1px solid #ccc;
    background-color:#104E57;
    -webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
    overflow-y: scroll;
    max-height: 500px;
}

.options li:first-child {
    margin:0 0;
    padding:0;
    border-bottom: 0px dotted #fff;
}
.options li {
    margin:0 0;
    padding:7px;
    border-bottom: 1px dotted #fff;
}
.options li:hover {
    background-color:#71A9B4;
    color:white;
}