.option select{
  max-width: 290px;
  padding: 5px 30px 5px 5px !important;
  border: 1px solid var(--grey);
  border-radius: 0 !important;
  font-size: 14px;
  line-height: 17px;
  color: var(--grey);
  font-style: normal;
  font-weight: 500;
  height: 37px;
}
.nice-select {
  position: relative;
  width: 100%;
  max-width: 290px;
  height: 37px;
  display: flex;
  padding: 5px 30px 5px 10px !important;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: var(--grey);
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 0 !important;
  border: 1px solid var(--grey);
  box-sizing: border-box;
  outline: none;
  -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;
  cursor: pointer;
}

.nice-select:hover, .nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: var(--grey);
  box-shadow: none !important;
}

.nice-select:after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  height: 10px;
  width: 10px;

  display: block;
  pointer-events: none;
  margin-top: -5px;

  border-bottom: 1px solid var(--grey);
  border-right: 1px solid var(--grey);
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -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;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.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 .current{
  display: block;
  padding: 0 10px 0 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.nice-select .list {
  background: #fff;
  border-radius: 0;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.32);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -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;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  list-style: none;
  outline: none;
  padding: 10px 18px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

@media (min-width: 640px) {
  .nice-select {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .nice-select {
    width: 100%;
    font-size: 14px;
    line-height: 17px;
  }
}