body.selModalBody {
  overflow: hidden;
}

.selModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  display: none;
}

.selModal .selModalInner {
  position: absolute;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 95%;
  max-width: 600px;
  max-height: 95%;
  border-radius: 0 0 5px 5px;
  overflow-y: hidden;
}

.selModal .selModalInner .selModalHeader {
  background-color: #FFF;
  text-align: right;
  padding: 10px;
  border-radius: 0;
  border-bottom: 1px solid #DDD;
}

.selModal .selModalInner .selModalHeader::after {
  content: "";
  display: block;
  clear: both;
}

.selModal .selModalInner .selModalList {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.selModal .selModalInner ul {
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #FFF;
  padding-bottom: 1px;
  box-sizing: border-box;
}

.selModal .selModalInner ul li {
  display: block;
  position: relative;
  margin: 0 0 -1px 0;
  padding: 10px 25px 10px 15px;
  cursor: pointer;
  box-sizing: border-box;
}

.selModal .selModalInner ul li:not(:last-child) {
  border-bottom: 1px solid #DDD;
}

.selModal .selModalInner ul li img {
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
  max-width: 40px;
}

.selModal .selModalInner ul li.selected,
.selModal .selModalInner ul li:hover,
.selModal .selModalInner ul li.totch {
  color: #FFF;
  background-color: #00B0F0;
}

.selModalOverlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.selModalCloseIcon {
  display: block;
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
  float: right;
}

.selModalCloseIcon span::before,
.selModalCloseIcon span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84%;
  height: 10%;
  margin: -8% 0 0 -42%;
  background: #555555;
}

.selModalCloseIcon span::before {
  transform: rotate(-45deg);
}

.selModalCloseIcon span::after {
  transform: rotate(45deg);
}

.selModalButton {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 22px 6px 12px;
  border: 1px solid #777;
  border-radius: 3px;
  background: #fff;
  color: #333;
  text-decoration: none;
  line-height: normal;
  cursor: pointer;
  text-align: left;
  font-size: inherit;
}

.selModalButton::before,
.selModalButton::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 7px;
  width: 0;
  height: 0;
  border: 4px dashed;
  border-color: #333 transparent;
  pointer-events: none;
}

.selModalButton::before {
  border-bottom-style: solid;
  border-top: none;
  top: 30%;
}

.selModalButton::after {
  border-top-style: solid;
  border-bottom: none;
  bottom: 30%;
}

.selModalButton.has-error {
  border: 1px solid #ff7f75;
  background-color: #f8ecec;
}

.color-1 .selModal .selModalInner ul li.selected,
.color-1 .selModal .selModalInner ul li:hover,
.color-1 .selModal .selModalInner ul li.totch {
  background-color: #C00;
}