/* Nice Select CSS */
.nice-select {
  float: none;
  color: #9d9d9d;
  width: 170px;
  border: none;
  background: #f7f7f7;
  height: 52px;
  line-height: 54px;
  border-radius: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 1px solid #ededed;
}
.nice-select:hover, .nice-select:active {
  border-color: #d4d4d4;
}
.nice-select.open, .nice-select:focus {
  border-color: #d4d4d4;
}
.nice-select:after {
  right: 10px;
  width: auto;
  height: auto;
  border-top: 6px solid #9d9d9d;
  border-bottom: none;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.nice-select.open {
  border-color: #dadada;
}
.nice-select.open:after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.nice-select .current {
  display: block;
  overflow: hidden;
  clear: both;
  text-overflow: ellipsis;
  font-size: 15px;
}
.nice-select .list {
  width: 250px;
  min-width: 250px;
  max-height: 200px;
  margin: 0;
  overflow-y: auto;
  color: #404040;
  -webkit-border-radius: 0;
  border-radius: 0;
  z-index: 2;
}
.nice-select .option {
  min-height: 10px;
  padding: 10px;
  line-height: 1.42857143;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  font-weight: 400;
  background: #ffffff;
  color: #707070;
}
.nice-select.small{
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
}
@media (max-width: 479px) {
  .nice-select {
   width: 100%;
   border-radius: 100px;
   margin-bottom: 15px;
  }
  .nice-select .list {
    width: 100%;
  }  
}