.edd-root,
.edd-root *,
.edd-root *::before,
.edd-root *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.edd-root {
  display: inline-block;
  position: relative;
  width: 180px;
  user-select: none;
  font-family: "Inter", arial, helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1d2023;
  background-color: #fff;
  width: 100%;
}

.edd-root-disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* .edd-root::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #45bce7;
  transition: transform 150ms ease-out;
  transform: scaleX(0);
} */

.edd-root.edd-root-focused::after,
.edd-root.edd-root-invalid::after {
  transform: scaleX(1);
}

.edd-root.edd-root-invalid::after {
  background: rgb(255, 105, 105);
}

.edd-head {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  transition: border-color 200ms;
}
.edd-head {
  padding: 6px 10px;
  border: 1px solid #eeeff1;
  border-radius: 8px;
  padding-left: 16px;
}

.edd-value {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 25px 8px 0;
}

.edd-arrow {
  position: absolute;
  width: 14px;
  height: 10px;
  top: calc(50% - 5px);
  right: 10px;
  transition: transform 150ms;
  pointer-events: none;
  color: #666;
}
.edd-arrow {
  color: #01b075;
}

.edd-root-disabled .edd-arrow {
  color: #ccc;
}

.edd-arrow::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  top: 0;
  right: 2px;
  transform: rotate(45deg);
  transform-origin: 50% 25%;
}

.edd-root-open .edd-arrow {
  transform: rotate(180deg);
}

.edd-value,
.edd-option,
.edd-group-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.edd-root:not(.edd-root-disabled) .edd-value,
.edd-option {
  cursor: pointer;
}

.edd-select {
  position: absolute;
  opacity: 0;
  width: 100%;
  left: -100%;
  top: 0;
}

.edd-root-native .edd-select {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.edd-body {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;
  background: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  border-top: 0;
  border-right: 0;
}

.edd-root-open .edd-body {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
  transition: opacity 200ms,
    transform 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.edd-root-open-above .edd-body {
  bottom: 100%;
}

.edd-root-open-below .edd-body {
  top: 100%;
}
.edd-root-open-above .edd-body {
  margin-bottom: 10px;
}

.edd-root-open-below .edd-body {
  margin-top: 10px;
}

.edd-items-list {
  overflow: auto;
  max-height: 0;
  transition: max-height 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-overflow-scrolling: touch;
}

.edd-items-list::-webkit-scrollbar {
  width: 12px;
}

.edd-items-list::-webkit-scrollbar-track {
  background: #efefef;
}

.edd-items-list::-webkit-scrollbar-thumb {
  background: #ccc;
}

.edd-group-label {
  font-size: 13px;
  padding: 4px 8px 4px 0;
  color: #555;
  font-weight: 600;
}

.edd-group-has-label {
  padding-left: 22px;
}

.edd-option {
  position: relative;
  padding: 4px 8px 4px 22px;
  line-height: 28px;
}

.edd-option-selected::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #01b075;
  border-left: 2px solid #01b075;
  left: 6px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}

.edd-option-focused:not(.edd-option-disabled) {
  background-color: #eeeff1;
}

.edd-option-disabled,
.edd-group-disabled .edd-option {
  cursor: default;
  color: #ccc;
}

.edd-gradient-top,
.edd-gradient-bottom {
  content: "";
  position: absolute;
  left: 2px;
  right: 12px;
  height: 32px;
  background-image: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  background-repeat: repeat-x;
  background-size: 100% 200%;
  pointer-events: none;
  transition: opacity 100ms;
  opacity: 0;
}

.edd-gradient-top {
  background-position: bottom;
  top: 0;
}

.edd-gradient-bottom {
  background-position: top;
  bottom: 0;
}

.edd-body-scrollable .edd-gradient-top,
.edd-body-scrollable .edd-gradient-bottom {
  opacity: 1;
}

.edd-body-scrollable.edd-body-at-top .edd-gradient-top,
.edd-body-scrollable.edd-body-at-bottom .edd-gradient-bottom {
  opacity: 0;
}