.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  font-weight: normal;
  height: 68px;
  line-height: 66px;
  outline: none;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

select:nth-of-type(1)+.nice-select {
  z-index: 10;
}

select:nth-of-type(2)+.nice-select {
  z-index: 9;
}

select:nth-of-type(3)+.nice-select {
  z-index: 8;
}

select:nth-of-type(4)+.nice-select {
  z-index: 7;
}

select:nth-of-type(5)+.nice-select {
  z-index: 5;
}

select:nth-of-type(6)+.nice-select {
  z-index: 6;
}

.nice-select.type2 {
  height: 60px;
  line-height: 58px;
}

.nice-select>.current {
  background-color: #F8F9FA;
  border-radius: 12px;
  border: solid 1px #F1F1F1;
  padding-left: 22px;
  padding-right: 34px;
  white-space: nowrap;
  display: block;
  width: 100%;
  overflow: hidden;
  color: #688BA6;
  font-size: 16px;
  font-weight: 500;
  text-overflow: ellipsis;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease 0s;
}

.nice-select.type2>.current {
  background-color: #FFFFFF;
  border-color: #F2F2F2;
  border-radius: 18px;
  color: #939393;
}

.nice-select:hover>.current,
.nice-select:hover>.multiple-options {
  border-color: #0d8bff !important;
}

.nice-select:active>.current,
.nice-select.open>.current,
.nice-select:focus>.current .nice-select:active>.multiple-options,
.nice-select.open>.multiple-options,
.nice-select:focus>.multiple-options {
  border-color: #0d8bff !important;
}

.nice-select:after {
  border-bottom: 2px solid #0d8bff;
  border-right: 2px solid #0d8bff;
  content: "";
  display: block;
  height: 10px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  z-index: 3;
  right: 19px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 10px;
}

.nice-select.type2:after {
  border-color: #303030;
  right: 25px;
  height: 8px;
  width: 8px;
}

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

.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  -webkit-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 .nice-select-dropdown {
  width: 100%;
  background-color: #ffffff;
  border-radius: 0 0 12px 12px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(34px);
  transform: scale(0.75) translateY(34px);
  -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: 2;
  opacity: 0;
  box-shadow: 0 4px 14px 0 rgba(44, 50, 57, 0.07);
  padding-top: 14px;
  margin-top: -14px;
}

.nice-select .list {
  border-radius: 0 0 12px 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  max-height: 165px;
  overflow-y: auto;
  padding: 0 15px;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  outline: none;
  padding: 12px 0;
  color: #414141;
  line-height: 1.2;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-bottom: 1px solid #ECF3F6;
}

.nice-select .option:last-child {
  border: none;
}

.nice-select .option:hover {
  color: #096FCD;
}

.nice-select .option.focus,
.nice-select .option.selected {
  color: #0d8bff;
}

.nice-select.has-multiple .option {
  position: relative;
}

.nice-select.has-multiple.open {
  pointer-events: none;
}

.nice-select.has-multiple.open .nice-select-dropdown {
  pointer-events: auto;
}

.nice-select.has-multiple .option:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0, -50%) scale(0);
  right: 0px;
  width: 24px;
  height: 24px;
  background: url('../img/circle-check.svg') center/100% no-repeat;
  transition: all 0.3s ease 0s;
}

.nice-select.has-multiple .option.selected:after {
  transform: translate(0, -50%) scale(1);
}

.nice-select .option.disabled {
  display: none;
}

.nice-select .optgroup {
  font-weight: bold;
}

.nice-select .list::-webkit-scrollbar {
  width: 6px;
  border-radius: 8px;
}
.nice-select .list::-webkit-scrollbar-thumb{
  border-radius: 8px;
  background-color: #0d8bff;
}

.nice-select .has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 36px;
  line-height: 22px;
}

.nice-select .multiple-options {
  background-color: #F8F9FA;
  border-radius: 12px;
  border: solid 1px #F1F1F1;
  padding-left: 22px;
  padding-right: 34px;
  white-space: nowrap;
  display: block;
  width: 100%;
  overflow: hidden;
  color: #688BA6;
  font-size: 16px;
  font-weight: 500;
  text-overflow: ellipsis;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease 0s;
}

.nice-select.type2 .multiple-options {
  background-color: #FFFFFF;
  border-color: #F2F2F2;
  border-radius: 18px;
  color: #939393;
}

.nice-select .has-multiple .multiple-options {
  display: block;
  line-height: 24px;
  padding: 0;
}

.nice-select .nice-select-search-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
}

.nice-select .nice-select-search {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  color: #444;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  margin: 0 10px 0 0;
  width: 100%;
  min-height: 36px;
  line-height: 22px;
  height: auto;
  outline: 0 !important;
  font-size: 20px;
}