.nice-select {
  -webkit-tap-highlight-color: transparent;
  background: #fff;
  border: solid 1px #ffffff;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  height: 54px;
  line-height: 52px;
  outline: none;
  border-radius: 4px;
  padding:0 16px;
  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;
  width: 100%; }
.nice-select:hover {
    /*border-color: #dbdbdb;*/
}
.nice-select span { display:block; height:52px; line-height:52px; font-family: 'Inter-Regular';font-size: 16px;color: #0B0B0B;letter-spacing: 0.055em;}
.nice-select:active, 
.nice-select.open, 
.nice-select:focus {
    border-color: #ffffff;    
}
.nice-select.open {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.nice-select:after {
   	content: '';
    font-weight: 900;
    display: block;
    font-size: 20px;
    color: #ffffff;
    height: 8px;
	 width:auto;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px; line-height: 0.5;
    top: 50%;
    border-top: 6px solid #111111;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;	
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.nice-select.open:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
.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); }
.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
.nice-select.disabled:after {
      border-color: #cccccc; }
.nice-select.wide {
    width: 100%; }
.nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
.nice-select.right {
    float: right; }
 .nice-select.right .list {
      left: auto;
      right: 0; }
.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
.nice-select.small:after {
      height: 4px;
      width: 4px; }
.nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
.nice-select .list {
      background: #fff;
      border-radius:0;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px;
      margin-top:0;
      opacity: 0;
      overflow: hidden auto;
      padding: 0 20px 9px;
      pointer-events: none;
      position: absolute;
      border:none;
      border-top:solid 1px rgba(209,209,209,0.50);
      top: 100%;
      left: -1px;
      right:-1px;
      max-height: 336px;
      -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
      transform-origin: 50% 0;
      -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;
}
.nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
.nice-select .option {
    cursor: pointer;
    line-height: 24px;
    padding:16px 0 15px;
    list-style: none;
    min-height: 30px;
    outline: none;
    text-align: left;
    font-size:15px;
    border-bottom:solid 1px #E7E7E7;
    font-family: 'Inter-Regular';
    color:#616161;
    position:relative;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.nice-select .option:last-child {
  border-bottom:none;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
/*.nice-select .option.focus, */
.nice-select .option.selected.focus {
	color: #999;
}
.nice-select .option:hover {
	background: none;
}
.nice-select .option.selected {
	
}
.nice-select .option.selected:hover {
      background:none;
}
.nice-select .option.disabled {
      background-color: transparent;
      color: #616161;
      cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }
