.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #eaeaea;
  border-radius: 10px;
  border: solid 1px #e8e8e8;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 16px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 100%;

}


/** select dropdown indicator icon properties **/
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

/** Select dropdown indicator rotation when clicked **/
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg);
}

/** Select drop down list size and width **/
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
     transform: scale(1) translateY(0);
     width: 100%;
}


/** The Actual select dialog visible when the select option is clicked **/
  .nice-select .list {
    background-color: #fff;

    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
/** Select option scale up animation **/
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

/** Select option dialog properties **/
  .nice-select .option {
    cursor: pointer;
    min-height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 5px;
    margin-right: 5px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

/** last select item padding from the bottom **/
.nice-select .option:last-child {
    list-style: none;
    margin-bottom: 5px;
}

/** select option hover properties **/
    .nice-select .option:hover {
      background-color: #e7f0ff;
      border-radius: 10px;
      color: #007BFF;
}

/** selectected option menu font color **/
    .nice-select .option.selected {
      font-weight: bold;
      color: #007BFF;
}

/** Disabled option menu font color **/
    .nice-select .option.disabled {
      color: #999;
      background-color: transparent;
      cursor: default;
}
