.custom-multi-select {
  position: relative;
  border: none;
  height: 48px;
  background-color: #ffffff;
  border-radius: 30px;
}
.custom-multi-select .original {
  display: none;
}
.custom-multi-select .selected {
  cursor: pointer;
  height: 100%;
  font-size: 16px;
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #0b152b;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
}
.custom-multi-select .selected span {
  display: block;
  overflow: hidden;
  padding-left: 14px;
  padding-right: 46px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-overflow: ellipsis;
}
.custom-multi-select .selected:after {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 14px;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-image: url("/files/theme/i/icons/select2-arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.custom-multi-select .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  /*max-height:100vh; overflow:auto;*/
  background-color: #ffffff;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}
.custom-multi-select .dropdown .inner {
  padding: 20px 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.custom-multi-select .dropdown .option {
  position: relative;
  padding: 5px 20px;
  padding-left: 52.5px;
  color: #0b152b;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55555556;
}
.custom-multi-select .dropdown .option:before {
  content: "";
  display: block;
  width: 19px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 20px;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-image: url("/files/theme/i/icheck/multiselect-unchecked.svg");
}
.custom-multi-select .dropdown .option.active {
  background-color: #f5f1ec;
}
.custom-multi-select .dropdown .option.active:before {
  background-image: url("/files/theme/i/icheck/multiselect-checked.svg");
}
.custom-multi-select .dropdown .option:hover {
  background-color: #f5f1ec;
}
.custom-multi-select .dropdown .button-wrap {
  text-align: right;
  margin-top: 10px;
  padding: 0 15px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.custom-multi-select.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-multi-select.open .selected:after {
  -moz-transform: translate(0, -50%) rotate(-180deg);
  -webkit-transform: translate(0, -50%) rotate(-180deg);
  -o-transform: translate(0, -50%) rotate(-180deg);
  -ms-transform: translate(0, -50%) rotate(-180deg);
  transform: translate(0, -50%) rotate(-180deg);
}
.custom-multi-select.open .dropdown {
  opacity: 1;
  pointer-events: all;
  border-top: 1px solid #0b152b;
}
.rsce_form_openeyes .form-wrap .custom-multi-select {
  border-color: #ffffff;
}
.rsce_form_openeyes .form-wrap .custom-multi-select .dropdown {
  background-color: #000;
}
.rsce_form_openeyes .form-wrap .custom-multi-select .dropdown:hover {
  color: #ffffff;
}
.rsce_form_openeyes .form-wrap .custom-multi-select .dropdown:hover.active {
  color: #ffffff;
}
