.edd-root,
.edd-root *,
.edd-root *::before,
.edd-root *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.edd-root {
  display: block;
  position: relative;
  width: 100%;
  user-select: none;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  color: #000; }

.edd-root-disabled {
  color: #ccc;
  cursor: not-allowed; }

.edd-head {
  overflow: hidden;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; }
  @media screen and (min-width: 0rem) and (max-width: 47.9375rem) {
    .edd-head {
      padding: 1rem; } }
  @media screen and (min-width: 48rem) {
    .edd-head {
      padding: 2rem; } }

.edd-root-has-value .edd-head {
  background-color: #fff;
  box-shadow: 0 3px 20px 2px rgba(0, 0, 0, 0.15); }

.edd-root-focused .edd-head {
  outline: 1px solid #cf000d; }

.edd-root-invalid .edd-head {
  border-color: #cf000d; }

.edd-arrow {
  position: relative;
  width: 18px;
  height: 10px;
  transition: transform 150ms;
  pointer-events: none;
  color: #cf000d; }

.edd-arrow::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 2px solid #cf000d;
  border-bottom: 2px solid #cf000d;
  top: -5px;
  left: 3px;
  transform: rotate(45deg);
  transform-origin: 50% 50%; }

.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;
  border: 1px solid #eee;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;
  background: white; }

.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-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-group-label {
  font-size: 12px;
  font-weight: 400;
  padding: 12px 10px 4px; }

.edd-option {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  transition: background-color 250ms, color 250ms, border-color 250ms; }

.edd-group-has-label .edd-option {
  padding-left: 14px; }

.edd-option-selected {
  font-weight: 600;
  color: #cf000d; }

.edd-option-focused:not(.edd-option-disabled) {
  background: #cf000d;
  border-bottom-color: #cf000d;
  color: white; }

.edd-option-disabled,
.edd-group-disabled .edd-option {
  cursor: default;
  color: #ccc; }

/*# sourceMappingURL=solution-select.css.map */