.custom-select select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.custom-select-wrap {
  position: relative;
  display: block;
}

.custom-select-current {
  background-color: white;
  border: 1px solid rgba(42, 42, 42, 1);
  outline: none;
  border-radius: 15px;
  padding: 18px 20px;
  width: 100%;
  font-family: var(--font-rubik);
  font-size: 14px;
  line-height: 140%;
  color: var(--color-dark);
  display: block;
  font-weight: 600;
}

.custom-select-current:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url('/wp-content/themes/massivesecurity/assets/img/select.svg') no-repeat center center;
}

.custom-select-dropdown {
  position: absolute;
  left: 1px;
  right: 1px;
  top: calc(100% - 1px);
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 100;
  display: none;
  border-radius: 0 0 15px 15px;
}

.custom-select-wrap.open .custom-select-dropdown {
  display: block;
}

.custom-select-dropdown-item {
  padding: 0.5em 0.75em;
  cursor: pointer;
}

.custom-select-dropdown-item:hover {
  background: #f0f0f0;
}

.custom-select-dropdown-item.selected {
  background: #e0e0e0;
  font-weight: bold;
}

.custom-select-wrap.open .custom-select-current {
  border-radius: 15px 15px 0 0 ;
}
