.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: #495057;
    width: 100%;
    height: 52px;
}

.select-styled {
    position: absolute; 
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.select-styled:after {
    content: "\25BC";
    height: 15px;
    font-size: 16px;
    line-height: 1;
    right: 1rem;
    top: 33px;
}

.select-styled p {
    margin-bottom: 0px !important;
}


.select-options {
    display: none; 
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #ced4da;
    max-height: 300px;
    overflow-y: scroll;
}

.select-options li {
    margin: 0;
    padding: 12px 5px;
    text-indent: 15px;
    border-top: 1px #fff;
}

.select-options li:hover {
    background-color: #eee;
}