/*!
 * Virtual Select v1.0.41
 * https://sa-si-dev.github.io/virtual-select
 * Licensed under MIT (https://github.com/sa-si-dev/virtual-select/blob/master/LICENSE)
 */

@keyframes vscomp-animation-spin {
  to {
    transform: rotateZ(360deg)
  }
}

.select-popup-active {
  overflow: hidden !important
}

.select-ele {
  display: inline-block;
  /* max-width: 250px; */
  width: 100%;
}
.select-ele.w100 {
  max-width: inherit;
  width: 100%;
}

.select-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  position: relative;
  font-size: 16px;
  color: #111;
  text-align: left;
  width: 100%
}

.select-wrapper *,
.select-wrapper *::before,
.select-wrapper *::after {
  box-sizing: border-box
}

.select-wrapper:focus {
  outline: none
}

.select-dropbox-wrapper {
  left: 0;
  position: absolute;
  top: 0
}

.select-toggle-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 48px;
  padding: 0 30px 0 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
}

.select-value {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.select-arrow {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px
}

.select-arrow::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url('../img/icon/ico_chevron_down.svg') center/100% no-repeat;
  transform: rotate(0deg);
  transition: transform 0.2s linear;
}

.select-clear-icon {
  height: 12px;
  position: relative;
  width: 12px
}

.select-clear-icon::before,
.select-clear-icon::after {
  background-color: #999;
  content: "";
  height: 12px;
  left: 5px;
  position: absolute;
  top: 0;
  width: 2px
}

.select-clear-icon::before {
  transform: rotate(45deg)
}

.select-clear-icon::after {
  transform: rotate(-45deg)
}

.select-clear-icon:hover::before,
.select-clear-icon:hover::after {
  background: #333
}

.select-clear-button {
  align-items: center;
  border-radius: 50%;
  display: none;
  height: 24px;
  justify-content: center;
  margin-top: -12px;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 24px
}

.select-clear-button:hover {
  background: #ccc
}

.select-clear-button:hover .select-clear-icon::before,
.select-clear-button:hover .select-clear-icon::after {
  background-color: #333
}

.select-dropbox-close-button {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  bottom: -48px;
  cursor: pointer;
  display: none;
  height: 40px;
  justify-content: center;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  width: 40px
}

.select-value-tag.more-value-count {
  white-space: nowrap
}

.select-dropbox-container {
  width: 100%;
  z-index: 2
}

.select-dropbox {
  background-color: #fff;
  /* border: 1px solid #111; */
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 100%
}

.select-options-container {
  max-height: 210px;
  overflow: auto;
  position: relative
}

.select-options-bottom-freezer {
  bottom: 0;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0
}

.select-option {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  height: 40px;
  padding: 0 15px;
  position: relative
}

.select-option.selected {
  background-color: #F9F9F9
}

.select-option.focused {
  border-bottom: 1px solid #eee;
  background-color: #F9F9F9;
}

.select-option.disabled {
  cursor: default;
  opacity: .5
}

.select-option.group-title .select-option-text {
  cursor: default;
  opacity: .6
}

.select-option.group-title.selected {
  background-color: rgba(0, 0, 0, 0)
}

.select-option.group-option {
  padding-left: 30px
}

.select-new-option-icon {
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px
}

.select-new-option-icon::before {
  border: 15px solid #512da8;
  border-bottom-color: rgba(0, 0, 0, 0);
  border-left-color: rgba(0, 0, 0, 0);
  content: "";
  position: absolute;
  right: 0;
  top: 0
}

.select-new-option-icon::after {
  align-items: center;
  color: #fff;
  content: "+";
  display: flex;
  font-size: 18px;
  height: 15px;
  justify-content: center;
  position: absolute;
  right: 1px;
  top: 0;
  width: 15px
}

.select-option-text {
  /* overflow: hidden; */
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  width: 100%
}

.select-option-description {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
  font-size: 13px;
  line-height: 15px;
  width: 100%
}

.select-search-container {
  align-items: center;
  border-bottom: 1px solid #ddd;
  display: flex;
  height: 40px;
  padding: 0 5px 0 15px;
  position: relative
}

.select-search-label,
.select-live-region,
.select-dropbox-container-top,
.select-dropbox-container-bottom {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px
}

.select-search-input {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  color: inherit;
  font-size: 15px;
  height: 38px;
  padding: 10px 0;
  width: calc(100% - 30px)
}

.select-search-input:focus {
  outline: none
}

.select-search-clear {
  align-items: center;
  color: #999;
  cursor: pointer;
  display: flex;
  font-size: 25px;
  height: 30px;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  visibility: hidden;
  width: 30px
}

.select-search-clear:hover {
  color: inherit
}

.select-no-options,
.select-no-search-results {
  align-items: center;
  display: none;
  justify-content: center;
  padding: 20px 10px
}

.select-options-loader {
  display: none;
  padding: 20px 0;
  text-align: center
}

.select-options-loader::before {
  animation: vscomp-animation-spin .8s infinite linear;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: -4px -5px 3px -3px rgba(0, 0, 0, .3);
  content: "";
  display: inline-block;
  height: 40px;
  opacity: .7;
  width: 40px
}

.select-ele[disabled] {
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.select-ele[disabled] .select-wrapper {
  opacity: .7;
  pointer-events: none
}
.select-ele[disabled] {
  .select-toggle-button {
    border: 1px solid #eee;
    background-color: #F9F9F9;
    color: #999;
  }
  .select-arrow {
    opacity: 0.3;
  }
}

.select-wrapper .checkbox {
  display: inline-flex;
  height: 20px;
  margin-right: 8px;
  position: relative;
  width: 20px
}

.select-wrapper .checkbox::after {
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: #fff url('../img/icon/ico_check_g.svg') center no-repeat;
  background-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  vertical-align: top;
  content:'';
}

.select-wrapper .checkbox.checked::after {
  top: 1px;
  left: 1px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff url('../img/icon/ico_check_r.svg') center no-repeat;
  background-size: 16px;
  content:'';
}

.select-wrapper.show-as-popup .select-dropbox-container {
  align-items: center;
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 1;
  overflow: auto;
  padding: 0 10px;
  position: fixed;
  top: 0;
  width: 100vw
}

.select-wrapper.show-as-popup .select-dropbox {
  margin-top: -24px;
  max-height: calc(80% - 48px);
  max-width: 500px;
  position: relative;
  width: 80%
}

.select-wrapper.show-as-popup .select-dropbox-close-button {
  display: flex
}

.select-wrapper.popup-position-left .select-dropbox-container {
  justify-content: flex-start
}

.select-wrapper.popup-position-right .select-dropbox-container {
  justify-content: flex-end
}

.select-wrapper.has-select-all .select-toggle-all-button {
  align-items: center;
  cursor: pointer;
  display: flex
}

.select-wrapper.has-select-all .select-search-input,
.select-wrapper.has-select-all .select-toggle-all-label {
  width: calc(100% - 55px)
}

.select-wrapper.has-select-all .select-toggle-all-label {
  display: none
}

.select-wrapper:not(.has-search-input) .select-toggle-all-button {
  width: 100%
}

.select-wrapper:not(.has-search-input) .select-toggle-all-label {
  display: inline-block
}

.select-wrapper.multiple .select-option .select-option-text {
  width: calc(100% - 30px)
}

.select-wrapper.multiple .select-option .select-option-description {
  padding-left: 30px
}

.select-wrapper.multiple .select-option.selected .checkbox::after {
  position: absolute;
  top: 1px;
  left: 1px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('../img/icon/ico_check_r.svg') center no-repeat;
  background-size: 16px;
  content:'';
}

/* .select-wrapper.focused .select-toggle-button,
.select-wrapper:focus .select-toggle-button {
  border: 1px solid #111;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2)
} */
.select-wrapper.focused .select-toggle-button .select-arrow::after {
  transform: rotate(180deg);
}

.select-wrapper.closed .select-dropbox-container,
.select-wrapper.closed.select-dropbox-wrapper {
  display: none
}

.select-wrapper:not(.has-value) .select-value {
  opacity: .5
}

.select-wrapper.has-clear-button.has-value .select-clear-button {
  display: flex
}

.select-wrapper.has-clear-button .select-toggle-button {
  padding-right: 54px
}

.select-wrapper.has-no-options .select-options-container,
.select-wrapper.has-no-search-results .select-options-container {
  display: none
}

.select-wrapper.has-no-options .select-no-options {
  display: flex
}

.select-wrapper.has-no-search-results .select-no-search-results {
  display: flex
}

.select-wrapper.has-search-value .select-search-clear {
  visibility: visible
}

.select-wrapper.has-no-options .select-toggle-all-button {
  opacity: .5;
  pointer-events: none
}

.select-wrapper.keep-always-open .select-toggle-button {
  padding-right: 24px
}

.select-wrapper.keep-always-open .select-clear-button {
  right: 5px
}

.select-wrapper.keep-always-open .select-arrow {
  display: none
}

.select-wrapper.keep-always-open .select-dropbox-container {
  position: relative;
  z-index: 1
}

.select-wrapper.keep-always-open .select-dropbox {
  transition-duration: 0s;
  border: 1px solid #ddd;
  box-shadow: none
}

/* .select-wrapper.keep-always-open.focused,
.select-wrapper.keep-always-open:focus,
.select-wrapper.keep-always-open:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2)
} */

.select-wrapper.server-searching .select-options-list {
  display: none
}

.select-wrapper.server-searching .select-options-loader {
  display: block
}

.select-wrapper.has-error .select-toggle-button {
  border-color: #b00020
}

.select-wrapper.show-value-as-tags .select-toggle-button {
  padding: 4px 22px 0 10px
}

.select-wrapper.show-value-as-tags .select-value {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  min-height: 28px;
  overflow: auto;
  text-overflow: unset;
  white-space: normal
}

.select-wrapper.show-value-as-tags .select-value-tag {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 20px;
  display: inline-flex;
  font-size: 12px;
  line-height: 16px;
  margin: 0 4px 4px 0;
  max-width: 100%;
  padding: 2px 3px 2px 8px
}

.select-wrapper.show-value-as-tags .select-value-tag.more-value-count {
  padding-right: 8px
}

.select-wrapper.show-value-as-tags .select-value-tag-content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 20px)
}

.select-wrapper.show-value-as-tags .select-value-tag-clear-button {
  align-items: center;
  display: flex;
  height: 20px;
  justify-content: center;
  width: 20px
}

.select-wrapper.show-value-as-tags .select-value-tag-clear-button .select-clear-icon {
  transform: scale(0.8)
}

.select-wrapper.show-value-as-tags .select-arrow {
  height: 34px
}

.select-wrapper.show-value-as-tags .select-clear-button {
  margin-top: 0;
  top: 5px
}

.select-wrapper.show-value-as-tags.has-value .select-arrow {
  display: none
}

.select-wrapper.show-value-as-tags.has-value .select-clear-button {
  right: 2px
}

.select-wrapper.show-value-as-tags:not(.has-value) .select-toggle-button {
  padding-bottom: 2px
}

.select-wrapper.show-value-as-tags:not(.has-value) .select-value {
  align-items: center;
  padding-bottom: 3px
}
/* 
.ui_select.text-direction-rtl {
  direction: rtl
}

.ui_select.text-direction-rtl .select-toggle-button {
  padding: 7px 10px 7px 30px
}

.ui_select.text-direction-rtl .select-arrow {
  left: 0;
  right: auto
}

.ui_select.text-direction-rtl .select-clear-button {
  left: 30px;
  right: auto !important
}

.ui_select.text-direction-rtl .checkbox {
  margin-left: 10px;
  margin-right: 0
}

.ui_select.text-direction-rtl .checkbox.checked::after {
  transform: rotate(45deg) translate(-4px, 1px)
}

.ui_select.text-direction-rtl .select-search-container {
  padding: 0 15px 0 5px
}

.ui_select.text-direction-rtl .select-toggle-all-label {
  text-align: right
}

.ui_select.text-direction-rtl .select-option {
  text-align: right
}

.ui_select.text-direction-rtl .select-option.group-option {
  padding-right: 30px
}

.ui_select.text-direction-rtl .select-new-option-icon {
  left: 0;
  right: auto
}

.ui_select.text-direction-rtl .select-new-option-icon::before {
  border-left-color: #512da8;
  border-right-color: rgba(0, 0, 0, 0)
}

.ui_select.text-direction-rtl .select-new-option-icon::after {
  left: 1px;
  right: auto
}

.ui_select.text-direction-rtl.multiple .select-option.selected .checkbox::after {
  transform: rotate(45deg) translate(-4px, 1px)
}

.ui_select.text-direction-rtl.has-clear-button .select-toggle-button {
  padding-left: 54px
}

.ui_select.text-direction-rtl.keep-always-open .select-toggle-button {
  padding-left: 24px
}

.ui_select.text-direction-rtl.keep-always-open .select-clear-button {
  left: 5px
}

.ui_select.text-direction-rtl.show-value-as-tags .select-toggle-button {
  padding: 4px 10px 0 22px
}

.ui_select.text-direction-rtl.show-value-as-tags .select-value-tag {
  margin: 0 0 4px 4px;
  padding: 2px 8px 2px 3px
}

.ui_select.text-direction-rtl.show-value-as-tags .select-value-tag.more-value-count {
  padding-left: 8px
}

.ui_select.text-direction-rtl.show-value-as-tags.has-value .select-clear-button {
  left: 2px
} */

/*!
 * Popover v1.0.12
 * https://sa-si-dev.github.io/popover
 * Licensed under MIT (https://github.com/sa-si-dev/popover/blob/master/LICENSE)
 */
.pop-comp-wrapper {
  display: none;
  position: absolute;
  top: -5px;
  left: 0;
  opacity: 0;
  color: #000;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2);
  text-align: left;
  flex-wrap: wrap;
  z-index: 1
}

.pop-comp-arrow {
  position: absolute;
  z-index: 1;
  width: 16px;
  height: 16px;
  overflow: hidden;
  pointer-events: none
}

.pop-comp-arrow::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.pop-comp-content {
  position: relative;
  z-index: 2
}

.pop-comp-wrapper.position-bottom>.pop-comp-arrow {
  margin-left: -8px;
  left: 0;
  top: -15px
}

.pop-comp-wrapper.position-bottom>.pop-comp-arrow::before {
  box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, .14)
}

.pop-comp-wrapper.position-top>.pop-comp-arrow {
  margin-left: -8px;
  left: 0;
  bottom: -15px
}

.pop-comp-wrapper.position-right>.pop-comp-arrow {
  margin-top: -8px;
  top: 0;
  left: -15px
}

.pop-comp-wrapper.position-left>.pop-comp-arrow {
  margin-top: -8px;
  top: 0;
  right: -15px
}

.pop-comp-disable-events {
  pointer-events: none
}