.custom-select-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
  height: 42px;
  font-size: 13px;
  color: #666;
}
.custom-select-wrapper.disabled-select {
  pointer-events: none;
}

.custom-select {
  position: relative;
  cursor: pointer;
}

.custom-select-trigger {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 40px 10px 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 14px;
  position: relative;
  height: 42px;
}

.select-arrow {
  position: absolute;
  right: 14px;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.custom-select.open .select-arrow {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: 100%;
  transform: translateY(4px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
  border-radius: 6px;
  padding-top: 12px;
  padding-right: 8px;
  padding-bottom: 12px;
  padding-left: 8px;
  gap: 8px;
  border: 1px solid #A5A5A5;
}

.custom-select.open .custom-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-option {
  border-radius: 4px;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
  cursor: pointer;
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 14px;
  color: #A5A5A5;
  min-height: 29px;
}

.custom-option:hover {
  background-color: #f2f2f2;
}

.custom-option.selected {
  background-color: #F3D7D7;
  color: #D63B54;
}

.custom-option.placeholder {
  color: #aaa;
  pointer-events: none;
  background-color: #f9f9f9;
}

.custom-select-wrapper.disabled-select .custom-select-trigger {
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3));
}

.custom-select-wrapper.error .custom-select-trigger {
  border: 1px solid #d63b54;
}

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