.custom-dropdown {
  --border: #d0d0d0;
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  font-family: Roboto, sans-serif;
  position: relative;
}

.custom-dropdown .cd-content {
  border: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
  background: #fff;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 15px 30px;
  display: flex;
}

.custom-dropdown .cd-text {
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  display: flex;
}

.custom-dropdown .col-title {
  color: #333;
  padding: 7px 0;
  font-size: 16px;
  font-weight: 500;
}

.custom-dropdown .pad-top {
  margin-top: 16px;
}

.custom-dropdown .cd-label {
  color: #474747;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: all .18s;
}

.custom-dropdown .cd-value {
  color: #474747;
  opacity: 0;
  transform-origin: 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 0;
  font-size: 20px;
  font-weight: 400;
  transition: all .18s;
  overflow: hidden;
}

.custom-dropdown.has-value .cd-label {
  color: #a9a9a9;
  padding-top: 4px;
  font-size: 14px;
}

.custom-dropdown.has-value .cd-value {
  opacity: 1;
  color: #474747;
  height: auto;
  font-size: 20px;
}

.custom-dropdown .cd-arrow svg {
  display: block;
}

.custom-dropdown .cd-arrow {
  flex: none;
  margin-left: 20px;
}

.custom-dropdown .cd-panel, .custom-dropdown .cd-panel-disabled {
  box-sizing: border-box;
  z-index: 50;
  background: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 18px;
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  box-shadow: 0 10px 30px #0000001f;
}

.custom-dropdown.open:not(.disabled) .cd-panel {
  gap: 20px;
  display: flex;
}

.custom-dropdown.open.disabled .cd-panel-disabled {
  display: block;
}

.custom-dropdown .cd-col {
  flex-direction: column;
  flex: 1 1 0;
  gap: 8px;
  display: flex;
}

.custom-dropdown .cd-option {
  text-align: left;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px;
  transition: background .12s, color .12s, transform .12s;
}

.custom-dropdown .cd-option:hover {
  background: #0000000a;
}

.custom-dropdown .cd-option.selected {
  color: var(--green-color);
  background: #01cc5d1f;
}

.custom-dropdown .cd-option.option-title {
  font-weight: 500;
}

@media (width <= 720px) {
  .custom-dropdown .cd-panel {
    flex-direction: column;
  }
}
/*# sourceMappingURL=configurare-pachet.15a0ea04.css.map */
