/* CSelector Style */
#c-selector {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  /* padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #e5e5e5; */
  position: relative;
  /* min-width: 240px;
    width: max-content;
    box-shadow: 4px 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px; */
  cursor: pointer;
}
#c-selector .label {
  margin-bottom: 0 !important;
}
#c-selector::after {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  border-left: 1px solid #666666;
  border-bottom: 1px solid #666666;
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  right: 10px;
}
.option-group {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 4px 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.4s;
  overflow-y: auto;
  z-index: 10;
}
#c-selector .option {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  margin-bottom: 0 !important;
}
#c-selector .option:hover {
  background: #e5e5e5;
}
.show-options {
  max-height: 1200px;
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}
