


/*Styling Selectbox*/
.dropdown1 {
  width: 300px;
  display: inline-block;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 2px rgb(204, 204, 204);
  transition: all .5s ease;
  position: relative;
  font-size: 14px;
  color: #474747;
  height: 100%;
  text-align: left
}
.dropdown1 .select {
    cursor: pointer;
    display: block;
    padding: 10px
}
.dropdown1 .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
}
.dropdown1:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
}
.dropdown1:active {
    background-color: #f8f8f8
}
.dropdown1.active:hover,
.dropdown1.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8
}
.dropdown1.active .select > i {
    transform: rotate(-90deg)
}
.dropdown1 .dropdown-menu1 {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9
}
.dropdown1 .dropdown-menu1 li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
} 
.dropdown1 .dropdown-menu1 {
    padding: 0;
    list-style: none
}
.dropdown1 .dropdown-menu1 li:hover {
    background-color: #f2f2f2
}
.dropdown1 .dropdown-menu1 li:active {
    background-color: #e2e2e2
}