.logout-and-select-jobs {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.select-container--jobs {
  display: flex;
  position: relative;

}

.select-container--jobs .select-inner {
  background: none;
  padding: 0;
  color: white;
  border: 0;
  font-size: 14px;
  padding-right: 40px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}


.select-container--jobs .select-inner p {
  max-width: 120px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}

.select-container--jobs::after {
  content: "";
  mask-image: url("/wp-content/themes/Divi-Child/images/icons8-expand-arrow-50.png");
  background-repeat: no-repeat;
  mask-size: 20px;
  display: block;
  position: absolute;
  right: 0rem;
  top: 5px;
  height: 20px;
  width: 20px;
  background: white;
  pointer-events: none;
}

.select-container--jobs option {
  display: none;
}

.select-container--jobs select:focus + .select-dropdown,
.select-dropdown:hover,
.select-dropdown li button:active,
.select-dropdown li button:hover,
.select-inner--active + .select-dropdown {
  /* display: block; */
  opacity: 1 !important;
  pointer-events: all !important;
}

.select-container--jobs .select-dropdown {
  /* display: none; */
  position: absolute;
  top: 120%;
  right: 0;
  opacity: 0;
  width: fit-content;
  pointer-events: none;
  list-style: none;
  padding: 20px;
  background-color: #1a3c34 !important;
  border: 0;
  border-top: 2px solid #01dddd;
  z-index: 123123;
  border-radius: 0;
}
.select-container--jobs .select-dropdown li {
  text-align: left;
  border: none;
}
.select-container--jobs .select-dropdown li button {
  text-align: left;
  padding: 0;
  border: 0;
  font-size: 14px;
  color: white;
  line-height: 20px;
  padding: 6px 20px;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.select-container--jobs .select-dropdown li:hover {
  background: inherit;
}

.horizontal-separator {
  width: 2px;
  background: #01dddd;
  height: 100%;
  display: inline-block;
  height: 18px;
}

.logout-and-select-jobs .horizontal-separator:last-child {
  display: none;
}
