/*Styling Selectbox*/
.dropdown {
  width: 100%;
  display: inline-block;
  background-color:transparent;
  transition: all .5s ease;
  position: relative;
  font-size: 13px;
  color: #222c52;
  height: 100%;
  text-align: left;
  border-radius: 5px;
  border: 2px solid #222c52;
  outline: none
}
.dropdown .select {
  cursor: pointer;
  display: block;
  padding: 10px;
  font-family: 'Rounded Mplus 1c', sans-serif;
  background-image: url("../img/home/formbar/select-arrow.png");
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: 11px 7px; 
}
.dropdown:active {
  outline: none;
  border-bottom: 2px solid #222c52;
  border-radius: 5px;
}
.dropdown.active:hover, .dropdown.active {
  border-radius: 5px;
  outline: none;
  border-bottom: 2px solid #222c52;

}
.dropdown .dropdown-menu {
  position: absolute;
  background-color: transparent;
  width: 100%;
  left: -2px;
  margin: 0;
  overflow: hidden;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 9999;
  font-size: 15px;
  border-right: 2px solid #222c52;
  border-left: 2px solid #222c52;
  border-bottom: 2px solid #222c52;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transform: translateY(-2px);
  padding-top: 4px !important;
}
.dropdown .dropdown-menu::-webkit-scrollbar {
  border-radius: 10px;
  width: 12px;
  background-color: #7f95be;
}
.dropdown .dropdown-menu::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #7f95be;

}
.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #fff;
  margin-right: 20px
}
.dropdown .dropdown-menu li {
  padding: 10px 0 10px 20px;
  transition: all .2s ease-in-out;
  cursor: pointer;
  background-color: #d9e5e9;
}
.dropdown .dropdown-menu {
  padding: 0;
  list-style: none;
  outline: none
}
.dropdown .dropdown-menu li:hover {
  background-color: #ffffff
}
.dropdown .dropdown-menu li:active {
  background-color: #ffffff
}