.frmHtml .nice-select {
  position: relative;
  /*.current {
            color: var(--placeholder);
        }
        .nulltext {
            color: var(--placeholder);
        }*/
}
.frmHtml .nice-select.distance {
  border-radius: 10px;
}
.frmHtml .nice-select.distance.open .current,
.frmHtml .nice-select.distance.open .nulltext {
  border-radius: 10px 10px 0 0;
  border-color: var(--focusedColor);
  border-bottom: 0;
}
.frmHtml .nice-select.distance .list-container {
  border-radius: 0 0 10px 10px;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: var(--focusedColor);
}
.frmHtml .nice-select .current,
.frmHtml .nice-select .nulltext {
  display: block;
  transition: all 0.2s linear;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #fff;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  font-family: var(--basicfont);
  font-size: var(--fontsize);
  font-weight: 400;
  resize: none;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: var(--inputSizeVer) var(--inputSizeHor);
}
.frmHtml .nice-select .current {
  color: var(--fontcolor);
}
.frmHtml .nice-select .nulltext {
  color: var(--placeholder);
}
.frmHtml .nice-select select {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.frmHtml .nice-select .clearButton {
  position: absolute;
  z-index: 5;
  right: 40px;
  top: 50%;
  margin-top: -20px;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  color: var(--placeholder);
  cursor: pointer;
  transition: all 0.2s linear;
  font-size: 20px;
  display: none;
  font-family: Garamond, "Apple Garamond";
}
@media (hover: hover) {
  .frmHtml .nice-select .clearButton:hover {
    color: var(--focusedColor);
  }
}
.frmHtml .nice-select:after {
  border-bottom: 2px solid var(--color1);
  border-right: 2px solid var(--color1);
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  margin-top: -8px;
  pointer-events: none;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  transition: all 0.2s linear;
}
@media (hover: hover) {
  .frmHtml .nice-select:hover .current,
  .frmHtml .nice-select:hover .nulltext {
    border: 1px solid var(--focusedColor);
  }
  .frmHtml .nice-select:hover:after {
    border-bottom: 2px solid var(--focusedColor);
    border-right: 2px solid var(--focusedColor);
  }
}
.frmHtml .nice-select .list-container {
  display: none;
  width: 100%;
  background: #fff;
  border: 1px solid var(--grey1);
  padding: 0;
  position: absolute;
  left: 0;
  z-index: 9;
  top: 100%;
}
.frmHtml .nice-select .list-container .list-search {
  position: relative;
}
.frmHtml .nice-select .list-container .list-search input {
  border: 0 !important;
}
.frmHtml .nice-select .list-container .list-search input:not(:placeholder-shown) + .close {
  display: block;
}
.frmHtml .nice-select .list-container .list-search .close {
  display: none;
  width: 30px;
  height: 30px;
  background: var(--defaultColor);
  color: var(--fontcolor);
  text-align: center;
  line-height: 30px;
  position: absolute;
  right: 10px;
  top: 50%;
  cursor: pointer;
  text-decoration: none;
  margin-top: -15px;
}
.frmHtml .nice-select .list-container .noResults {
  padding: var(--inputSizeVer) var(--inputSizeHor);
  display: block;
}
.frmHtml .nice-select .list-container .list {
  border-radius: 0;
  padding: 10px 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  max-height: 150px;
}
.frmHtml .nice-select .list-container .list .option {
  cursor: pointer;
  list-style: none;
  line-height: normal;
  padding: 10px 40px 10px var(--inputSizeHor);
  color: var(--focusedColor);
  position: relative;
}
.frmHtml .nice-select .list-container .list .option:after {
  display: none;
  content: '';
  width: 10px;
  height: 5px;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: var(--inputSizeHor);
  border: 2px solid var(--focusedColor);
  border-top: none !important;
  border-right: none !important;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.frmHtml .nice-select .list-container .list .option:before {
  display: none;
}
.frmHtml .nice-select .list-container .list .option:hover {
  background: #f1f1f1;
}
.frmHtml .nice-select .list-container .list .option.selected {
  font-weight: bold;
}
.frmHtml .nice-select .list-container .list .option.selected:after {
  display: block;
}
.frmHtml .nice-select.edge .list-container {
  bottom: 100%;
  top: auto;
}
.frmHtml .nice-select.open .current,
.frmHtml .nice-select.open .nulltext {
  color: var(--focusedColor);
}
.frmHtml .nice-select.open:after {
  border-bottom: 2px solid var(--focusedColor);
  border-right: 2px solid var(--focusedColor);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.frmHtml .nice-select.open .list-container {
  display: block;
}
.frmHtml .nice-select.disabled .current,
.frmHtml .nice-select.disabled .nulltext {
  color: var(--disabledColor);
  border: 1px solid var(--disabledColor);
}
.frmHtml .nice-select.disabled:after {
  border-color: var(--disabledColor);
}
.frmHtml .nice-select .option.disabled {
  color: var(--disabledColor);
  cursor: default;
}
