.nice-select.form-control {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px 15px 8px 10px !important;
  border: solid 1px #d2d9de;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: normal;
  height: 39px;
  line-height: 1.42857;
  outline: none;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    font-family: fontawesome;
    content: '\f0d7';
    display: block;
    height: 5px;
	font-size: 14px;
    margin-top: 3px;
    pointer-events: none;
    position: absolute;
    right: 7px;
    top: 18%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
    .nice-select span.current{
      display: block;
      overflow: hidden;
    }
  .nice-select.open .list {
    display: block;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select-list .list {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, 0.15);
    overflow: auto;
    /*Dont change this height this is used to calculate scroll operation*/
    max-height: 240px;
    padding: 0;
    top: 100%;
    left: 0;
	width: 100%; }
    .nice-select-list .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select-list .option {
    cursor: pointer;
	font-size: 14px;
    list-style: none;
	padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-width: 0px 0px 1px 0px;
    border-style: solid;
    border-color: #e5e5e5;
    min-height: 40px;
    line-height: 1.42857;
    outline: none;
	color: #4a4a4a;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
    .nice-select-list .option:hover{
      background-color: #f5f5f5; }
	.nice-select-list .option:last-child{
	  border-bottom: 0px; }
	.nice-select.disabled {
    color: #4a4a4a;
    background-color: #eeeeee;
    pointer-events: none; }
	.nice-select-list.ui-multiselect-menu {
	  padding: 0px;
	  margin: 0px;
	}