.app-select {
  width: 100%;
  position: relative;
}

.app-select::-webkit-scrollbar-thumb {
  background-color: #2188D9;
}

.app-select .app-select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: .3s;
  width: 100%;
  background: #FFFFFF;
  appearance: none;
  outline: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #D0D0D2;
  padding: 0 0 4px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.app-select .app-select-toggle .app-select-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.app-select .app-select-toggle .app-select-label .placeholder {
  color: #B8B9BC;
}

.app-select .app-select-toggle .app-select-label .selected-item {
  color: #4F4F4F;
}

.app-select .app-select-toggle .app-select-icon {
  color: #A0A0A0;
  transition: .3s;
}

.app-select .app-select-toggle:focus {
  border-color: #2188D9;
}

.app-select .app-select-toggle:focus .app-select-icon {
  color: #2188D9;
}

.app-select .app-select-toggle[readonly],
.app-select .app-select-toggle[disabled] {
  cursor: not-allowed;
  color: #B8B9BC;
  border-color: #D0D0D2;
}

.app-select .app-select-toggle.active {
  border-color: #2188D9;
}

.app-select .app-select-toggle.active .app-select-icon {
  transform: rotate(180deg);
  color: #2188D9;
}

.app-select .app-select-dropdown-wrapper {
  top: 115%;
  width: inherit;
}

.app-select .app-select-dropdown-wrapper .action-menu-body {
  max-height: 256px;
  overflow: auto;
}

.app-select .app-select-dropdown-wrapper .no-options-found {
  background: #FFFFFF;
  color: #B8B9BC;
  padding: 8px 16px;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.app-select .app-select-dropdown-wrapper .select-all {
  font-weight: 500;
}

.app-select .view-form-icon {
  position: absolute;
  right: 30px;
  top: 0;
  color: #b8b9bc;
  cursor: pointer;
}

.app-select .view-form-icon:hover {
  color: #2188D9;
}

.app-select .preview-form-tooltip {
  width: 120px;
}

.app-select search-box {
  width: 100%;
}