/* Default Select */
select.form-control{

}

/* Select Custom Styling */

.custom-select-style-container{
    width: 100%;
}

.custom-select-style-container label{
    display: block;
}

.custom-select-style-container .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 0.625rem;
}

.custom-select-style-container .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 1rem;
    color: #666666;
    height: 52px;
    width: 100%;
}

.custom-select-style-container .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 34px;
    color: #000;
    border-radius: 0.1875rem;
    height: calc(2em + 1.125rem + 2px);
    padding: 0.475rem 1rem 0.375rem;
    border: 1px solid #D1D4D3;
}

.custom-select-style-container .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #666 transparent transparent transparent;
    position: absolute;
    top: 1.35rem;
    right: 0.5rem;
}

.custom-select-style-container .select-styled:hover {

}

.custom-select-style-container .select-styled:active, .select-styled.active {

}

.custom-select-style-container .select-styled:active:after, .select-styled.active:after {

}

.custom-select-style-container .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 #D1D4D3;
    margin-top: 0.0625rem;
    border-radius: 0.1875rem;
}

.custom-select-style-container .select-options li {
    margin: 0;
    padding: 0.5rem 1rem;
    border: 0;
    -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;
}

.custom-select-style-container .select-options li:hover {

}

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