.s-hidden {
    visibility:hidden;
    padding-right:10px;
}
div.select{
    cursor:pointer;
    display:inline-block;
    position:relative;
    padding: 8px 20px;
    background: #7c4a97;
    color: #fff;
    border: 1px solid #703b94;
    font-weight: 700;
    min-width: 100px;
}
div.select:hover,div.select:focus{
    background-color: #1DA1F2;
    border-color: #1DA1F2;
}
.select .styledSelect {
    position:absolute;
    top:0;
    right:-1px;
    bottom:0;
    left:-1px;
    text-align: center;
    padding: 13px 20px;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}
.select .styledSelect:after {
    content:"";
    width:0;
    height:0;
    border:5px solid transparent;
    border-color:#fff transparent transparent transparent;
    position:absolute;
    top: 17px;
    right: 15px;
}
.select .options {
    display:none;
    position:absolute;
    top:100%;
    right:0;
    left:0;
    text-align: center;
    z-index:999;
    margin:0 0;
    padding:0 0;
    list-style:none;
    border:1px solid #ccc;
    background-color:white;
}
.select .options li {
    margin:0 0;
    padding:0 10px;
    font-size: 14px;
    color: #000;
}
.select .options li:hover {
    background-color:#39f;
    color:white;
}