.custom-select {
  position: relative;
  display: inline-block;
  border: 1px solid #E1E1E1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-select .select-menu {
  display: none;
  text-align: left;
  position: absolute;
  background: #fff;
  min-height: 40px;
  max-height: 220px;
  width: 250px;
  top: 100%;
  left: 0;
  z-index: 999;
  margin-top: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.1);
}

.custom-select .select-menu .search-bar {
  position: relative;
}

.custom-select .select-menu .search-bar input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #E1E1E1;
  height: 40px;
  padding-left: 40px;
  outline: none;
}

.custom-select .select-menu .search-bar .fa-search {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 15px;
  color: #C1C1C1;
}

.custom-select .select-menu .search-bar input:focus {
  outline: none;
}

.custom-select .select-menu .mCSB_scrollTools {
  width: 4px;
}

.custom-select .select-menu .mCSB_container_wrapper>.mCSB_container {
  padding-right: 0;
}

.custom-select .select-menu .mCSB_container_wrapper {
  margin-right: 0;
}

.custom-select .select-menu .mCSB_draggerRail {
  background-color: #E0E1E2;
}

.custom-select .select-menu .mCSB_dragger_bar {
  background-color: #8C8E90;
}

.custom-select .selected-value {
  height: 100%;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  padding: 2.5px 15px;
}

.custom-select .selected-value > .fa {
  font-size: 10px;
  vertical-align: top;
  margin-top: 3.5px;
  margin-left: 8px;
  color: #00d0ba;
}

.custom-select.disabled > .selected-value > .fa {
  color: #e0e0e0;
}

.custom-select .select-menu .search-bar.ng-hide + ul {
  height: 100%;
}

.custom-select .select-menu .search-bar + ul {
  height: calc(100% - 40px);
  padding: 0;
}

.custom-select .select-menu .search-bar + ul li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #E1E1E1;
  padding: 5px 15px;
}

.custom-select .select-menu .search-bar + ul li span {
  display: inline-block;
  vertical-align: middle;
}

.custom-select .select-menu .search-bar + ul li table {
  width: 100%;
  table-layout: fixed;
}

.custom-select .select-menu .search-bar + ul li table td {
  width: 10%;
}

.custom-select .select-menu .search-bar + ul li table td:last-of-type {
  width: 55%;
  font-size: 14px;
  padding-left: 5px;
}

.custom-select .select-menu .search-bar + ul li .currency-name {
  width: 30%;
  text-transform: uppercase;
  font-weight: bold;
}

.custom-select .select-menu .search-bar + ul li .currency-icon {
  width: 10%;
  font-size: 12px;
  vertical-align: middle;
  color: #00d0ba;
}

@media (min-width: 768px) {
  .custom-select .selected-value {
    font-size: 20px;
  }

  .custom-select .selected-value > .fa {
    font-size: 14px;
    margin-top: 7px;
  }
}

@media (min-width: 991px) {

}