

/*Styling Selectbox*/
.dropdown {
    color: #000;
    display: block;
    width: 100%;
    height: 60px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    font-size: 15px;
    
}
.dropdown .select {
    cursor: pointer;
    display: block;
    padding: 2mm;
    border-color: var(--primary-color);

}
.dropdown .select > i {
    font-size: 15px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
}
.dropdown:hover {
    box-shadow: 0 0 4px #ff730b;
}
.dropdown:active {
    background-color: #ff730b;
}
.dropdown.active:hover,
.dropdown.active {
    box-shadow: 0 0 4px #ff730b;
    background-color: #f8f8f8
}
.dropdown.active .select > i {
    transform: rotate(-90deg)
}
.dropdown .dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px #ff730b;
    overflow: hidden;
    display: none;
    max-height: 600px;
    overflow-y: auto;
    z-index: 9
}
.dropdown .dropdown-menu li {
    padding: 5px;
    transition: all .2s ease-in-out;
    cursor: pointer
} 
.dropdown .dropdown-menu {
    padding: 0;
    list-style: none
}
.dropdown .dropdown-menu li:hover {
    background-color: #f2f2f2
}
.dropdown .dropdown-menu li:active {
    background-color: #e2e2e2
}